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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* 导航栏样式 */
        .yewq9-navbar {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .yewq9-navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .yewq9-logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

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

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

        .yewq9-nav-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: opacity 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }

        .yewq9-nav-link:hover {
            opacity: 0.8;
            border-bottom-color: white;
        }

        /* 主容器 */
        .yewq9-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* 英雄区 */
        .yewq9-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin-top: 0;
        }

        .yewq9-hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .yewq9-hero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 300;
        }

        .yewq9-cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .yewq9-btn-primary {
            background: #FFD700;
            color: #333;
            padding: 16px 40px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .yewq9-btn-primary:hover {
            background: #FFC700;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .yewq9-btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 40px;
            border: 2px solid white;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .yewq9-btn-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-2px);
        }

        /* 版本信息 */
        .yewq9-version-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 6px;
            display: inline-block;
            font-size: 14px;
            margin-top: 20px;
        }

        /* 下载平台区 */
        .yewq9-download-section {
            background: white;
            padding: 80px 20px;
        }

        .yewq9-section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
            position: relative;
            padding-bottom: 20px;
        }

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

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

        .yewq9-platform-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .yewq9-platform-card:hover {
            border-color: #667eea;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
            transform: translateY(-5px);
        }

        .yewq9-platform-icon {
            font-size: 48px;
            margin-bottom: 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .yewq9-platform-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }

        .yewq9-platform-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .yewq9-platform-specs {
            background: #f5f5f5;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: left;
            font-size: 13px;
            color: #555;
        }

        .yewq9-spec-item {
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }

        .yewq9-btn-download {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            width: 100%;
        }

        .yewq9-btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        }

        /* 功能特性区 */
        .yewq9-features-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

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

        .yewq9-feature-item {
            text-align: center;
        }

        .yewq9-feature-icon {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .yewq9-feature-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #333;
        }

        .yewq9-feature-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* 系统要求区 */
        .yewq9-requirements-section {
            background: white;
            padding: 80px 20px;
        }

        .yewq9-requirements-container {
            max-width: 900px;
            margin: 0 auto;
        }

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

        .yewq9-requirement-box {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }

        .yewq9-requirement-label {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .yewq9-requirement-text {
            font-size: 15px;
            color: #333;
            line-height: 1.6;
        }

        /* 常见问题区 */
        .yewq9-faq-section {
            background: #f8f9fa;
            padding: 80px 20px;
        }

        .yewq9-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .yewq9-faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .yewq9-faq-question {
            padding: 20px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333;
            transition: background 0.3s ease;
            border-bottom: 1px solid #e0e0e0;
        }

        .yewq9-faq-question:hover {
            background: #f5f5f5;
        }

        .yewq9-faq-arrow {
            font-size: 20px;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .yewq9-faq-answer {
            padding: 20px;
            background: #fafafa;
            color: #555;
            line-height: 1.8;
            display: none;
        }

        .yewq9-faq-item.yewq9-active .yewq9-faq-answer {
            display: block;
        }

        .yewq9-faq-item.yewq9-active .yewq9-faq-arrow {
            transform: rotate(180deg);
        }

        /* 页脚 */
        .yewq9-footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 20px 30px;
        }

        .yewq9-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .yewq9-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .yewq9-footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .yewq9-footer-link {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 10px;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        .yewq9-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            font-size: 13px;
            color: #999;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .yewq9-hero-title {
                font-size: 32px;
            }

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

            .yewq9-nav-menu {
                gap: 15px;
            }

            .yewq9-nav-link {
                font-size: 12px;
            }

            .yewq9-section-title {
                font-size: 28px;
            }

            .yewq9-cta-group {
                flex-direction: column;
            }

            .yewq9-btn-primary,
            .yewq9-btn-secondary {
                width: 100%;
            }

            .yewq9-platforms-grid {
                grid-template-columns: 1fr;
            }

            .yewq9-features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .yewq9-requirements-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .yewq9-navbar-container {
                flex-direction: column;
                gap: 15px;
            }

            .yewq9-nav-menu {
                gap: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .yewq9-hero {
                padding: 50px 20px;
            }

            .yewq9-hero-title {
                font-size: 24px;
            }

            .yewq9-hero-subtitle {
                font-size: 14px;
            }

            .yewq9-download-section,
            .yewq9-features-section,
            .yewq9-requirements-section,
            .yewq9-faq-section {
                padding: 40px 20px;
            }

            .yewq9-section-title {
                font-size: 22px;
            }
        }
    