
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .sge7h-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sge7h-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .sge7h-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .sge7h-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #4a5568;
        }

        .sge7h-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .sge7h-nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .sge7h-nav-link {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .sge7h-nav-link:hover {
            color: #667eea;
        }

        .sge7h-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s ease;
        }

        .sge7h-nav-link:hover::after {
            width: 100%;
        }

        .sge7h-main {
            margin-top: 80px;
            background: white;
            border-radius: 20px 20px 0 0;
            overflow: hidden;
        }

        .sge7h-hero {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .sge7h-hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .sge7h-hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .sge7h-download-btn {
            display: inline-block;
            background: #fff;
            color: #f5576c;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .sge7h-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .sge7h-content {
            padding: 80px 0;
        }

        .sge7h-section {
            margin-bottom: 80px;
        }

        .sge7h-section-title {
            font-size: 32px;
            color: #2d3748;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .sge7h-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .sge7h-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .sge7h-feature-card {
            background: #f7fafc;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .sge7h-feature-card:hover {
            transform: translateY(-5px);
            border-color: #667eea;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .sge7h-feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: #667eea;
        }

        .sge7h-feature-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2d3748;
        }

        .sge7h-feature-desc {
            color: #718096;
            line-height: 1.8;
        }

        .sge7h-specs-table {
            background: #f7fafc;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 30px;
        }

        .sge7h-table {
            width: 100%;
            border-collapse: collapse;
        }

        .sge7h-table th {
            background: #667eea;
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: bold;
        }

        .sge7h-table td {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .sge7h-table tr:hover {
            background: #edf2f7;
        }

        .sge7h-install-steps {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            border-radius: 20px;
            margin: 50px 0;
        }

        .sge7h-steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .sge7h-step-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .sge7h-step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: white;
            color: #667eea;
            border-radius: 50%;
            line-height: 50px;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .sge7h-step-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .sge7h-cta-section {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            margin: 50px 0;
            border-radius: 20px;
        }

        .sge7h-cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .sge7h-cta-desc {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .sge7h-cta-btn {
            display: inline-block;
            background: white;
            color: #4facfe;
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .sge7h-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .sge7h-footer {
            background: #2d3748;
            color: white;
            padding: 50px 0 30px;
            text-align: center;
        }

        .sge7h-footer-content {
            margin-bottom: 30px;
        }

        .sge7h-footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .sge7h-footer-link {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .sge7h-footer-link:hover {
            color: white;
        }

        .sge7h-copyright {
            color: #718096;
            font-size: 14px;
            border-top: 1px solid #4a5568;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .sge7h-nav-menu {
                display: none;
            }

            .sge7h-hero-title {
                font-size: 32px;
            }

            .sge7h-hero-subtitle {
                font-size: 16px;
            }

            .sge7h-section-title {
                font-size: 24px;
            }

            .sge7h-features-grid {
                grid-template-columns: 1fr;
            }

            .sge7h-steps-grid {
                grid-template-columns: 1fr;
            }

            .sge7h-cta-title {
                font-size: 28px;
            }

            .sge7h-footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
    