        /* ===== 全局与创意字体 ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: #f8fafc;
            color: #0f172a;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航栏（与首页统一） ===== */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(226,232,240,0.8);
        }
        .nav-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.7rem 0;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 22px;
            box-shadow: 0 4px 10px rgba(30,60,114,0.3);
        }
        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(120deg, #0f2b4d, #1f6392);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1e293b;
            transition: color 0.2s, transform 0.2s;
            font-size: 0.95rem;
            position: relative;
            padding: 0.25rem 0;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #2563eb;
            transform: translateY(-1px);
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: #2563eb;
            border-radius: 2px;
        }

        /* ===== 页面头部（创意渐变） ===== */
        .page-header {
            background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 60%, #f1f5f9 100%);
            padding: 3rem 0 2.5rem;
            text-align: center;
            border-bottom: 1px solid #e9eef3;
            margin-bottom: 3rem;
        }
        .page-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #0c4a6e, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.8rem;
        }
        .page-header p {
            font-size: 1.1rem;
            color: #475569;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== 通用卡片样式 ===== */
        .section-block {
            margin-bottom: 3.5rem;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #0f172a 0%, #2c3e66 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            border-radius: 4px;
            margin: 0.8rem auto 0;
        }

        /* 下载卡片双列 */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .download-card {
            background: white;
            border-radius: 2rem;
            padding: 2.2rem 2rem;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .download-card:hover {
            transform: translateY(-5px);
        }
        .platform-icon {
            font-size: 3.2rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }
        .download-card h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .version-badge {
            background: #eef2ff;
            color: #4338ca;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .feature-list {
            list-style: none;
            text-align: left;
            width: 100%;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            color: #334155;
        }
        .feature-list li {
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feature-list i {
            color: #10b981;
            font-size: 0.8rem;
        }
        .btn-download {
            background: #1e3a8a;
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s;
            box-shadow: 0 4px 12px rgba(30,58,138,0.2);
            margin-top: auto;
        }
        .btn-download:hover {
            background: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 16px 28px -8px rgba(37,99,235,0.4);
        }

        /* 辅助资源区块 */
        .other-resources {
            background: white;
            border-radius: 1.8rem;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid #edf2f7;
        }
        .other-resources h3 {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }
        .resource-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
        }

        /* 对比表格 */
        .compare-wrapper {
            overflow-x: auto;
            border-radius: 1.5rem;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            background: white;
            margin-top: 1rem;
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
        }
        .compare-table th {
            background: #f8fafc;
            padding: 1.2rem 1rem;
            font-weight: 600;
            color: #1e293b;
            text-align: left;
            border-bottom: 2px solid #e2e8f0;
        }
        .compare-table td {
            padding: 1rem 1rem;
            border-bottom: 1px solid #f1f5f9;
            color: #334155;
        }
        .tag {
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }
        .tag-blue { background: #dbeafe; color: #1e40af; }
        .tag-orange { background: #ffedd5; color: #c2410c; }
        .tag-green { background: #d1fae5; color: #065f46; }

        /* 场景卡片 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .scene-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            border-left: 4px solid #2563eb;
            transition: 0.2s;
        }
        .scene-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }
        .scene-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        .scene-card p {
            color: #475569;
            font-size: 0.9rem;
        }

        /* FAQ 区块 */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.2rem;
        }
        .faq-item {
            background: white;
            border-radius: 1.2rem;
            padding: 1.5rem;
            border-left: 4px solid #3b82f6;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }
        .faq-item strong {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        /* CTA 返回下载 */
        .cta-download {
            background: linear-gradient(105deg, #eef2ff 0%, #ffffff 80%);
            border-radius: 2rem;
            padding: 2.5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            border: 1px solid #e0e7ff;
            margin: 3rem 0 2rem;
        }

        /* 页脚 */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 2rem 0;
            text-align: center;
            margin-top: 3rem;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .download-grid {
                grid-template-columns: 1fr;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .nav-flex {
                flex-direction: column;
                gap: 12px;
            }
        }