
        * {
            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%);
        }

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

        .j990-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;
        }

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

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

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

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

        .j990-nav-link {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 25px;
        }

        .j990-nav-link:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .j990-main-content {
            padding: 60px 0;
            min-height: 80vh;
        }

        .j990-hero-section {
            text-align: center;
            margin-bottom: 60px;
        }

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

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

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

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

        .j990-download-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

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

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

        .j990-platform-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #2d3748;
        }

        .j990-version-info {
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .j990-version-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .j990-version-label {
            color: #4a5568;
            font-weight: 500;
        }

        .j990-version-value {
            color: #2d3748;
            font-weight: bold;
        }

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

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

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

        .j990-section-title {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
            color: #2d3748;
        }

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

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

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

        .j990-feature-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2d3748;
        }

        .j990-feature-desc {
            color: #4a5568;
            line-height: 1.6;
        }

        .j990-security-section {
            background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
            color: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            margin-bottom: 40px;
        }

        .j990-security-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .j990-security-desc {
            font-size: 16px;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }

        .j990-footer {
            background: rgba(45, 55, 72, 0.95);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .j990-footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #e2e8f0;
        }

        .j990-footer-section p,
        .j990-footer-section a {
            color: #a0aec0;
            text-decoration: none;
            line-height: 1.8;
        }

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

        .j990-copyright {
            border-top: 1px solid #4a5568;
            padding-top: 20px;
            color: #a0aec0;
        }

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

            .j990-main-title {
                font-size: 32px;
            }

            .j990-download-section,
            .j990-features-section {
                padding: 20px;
            }

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