
        * {
            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: sticky;
            top: 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: #667eea;
        }

        .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: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

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

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

        .sge7h-main {
            padding: 60px 0;
        }

        .sge7h-hero {
            text-align: center;
            margin-bottom: 80px;
        }

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

        .sge7h-hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .sge7h-download-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
        }

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

        .sge7h-download-card {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

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

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

        .sge7h-platform-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .sge7h-version-info {
            color: #666;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .sge7h-download-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .sge7h-download-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .sge7h-features-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 60px;
        }

        .sge7h-section-title {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

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

        .sge7h-feature-item {
            text-align: center;
            padding: 20px;
        }

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

        .sge7h-feature-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .sge7h-feature-desc {
            color: #666;
            line-height: 1.6;
        }

        .sge7h-system-requirements {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
        }

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

        .sge7h-requirement-card {
            background: #f8f9ff;
            border-radius: 10px;
            padding: 25px;
        }

        .sge7h-requirement-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #667eea;
        }

        .sge7h-requirement-list {
            list-style: none;
        }

        .sge7h-requirement-list li {
            padding: 5px 0;
            color: #666;
            position: relative;
            padding-left: 20px;
        }

        .sge7h-requirement-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
        }

        .sge7h-cta-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            margin-bottom: 60px;
        }

        .sge7h-cta-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .sge7h-cta-desc {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .sge7h-cta-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .sge7h-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }

        .sge7h-footer {
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .sge7h-footer-section h3 {
            margin-bottom: 15px;
            color: #667eea;
        }

        .sge7h-footer-section p,
        .sge7h-footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
        }

        .sge7h-footer-section a:hover {
            color: #667eea;
        }

        .sge7h-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            color: rgba(255, 255, 255, 0.6);
        }

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

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

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

            .sge7h-download-section,
            .sge7h-features-section,
            .sge7h-system-requirements,
            .sge7h-cta-section {
                padding: 30px 20px;
            }

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