        :root {
            --primary: #7c3aed;
            --primary-soft: #ede9fe;
            --accent: #06b6d4;
            --accent-soft: #ecfeff;
            --text: #1e293b;
            --text-muted: #64748b;
            --bg: #f8fafc;
            --card: #ffffff;
            --border: rgba(226, 232, 240, 0.85);
            --glass: rgba(255, 255, 255, 0.72);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
            --radius: 14px;
            --radius-sm: 8px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 15px;
        }
        body {
            font-family: var(--font-stack);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ===== Header & Navigation (与首页一致) ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--glass);
            backdrop-filter: blur(16px) saturate(140%);
            -webkit-backdrop-filter: blur(16px) saturate(140%);
            border-bottom: 1px solid var(--border);
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
        }
        .nav-container {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 24px;
            gap: 20px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.3px;
            white-space: nowrap;
        }
        .logo img {
            height: 30px;
            width: auto;
            display: block;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            gap: 6px;
            list-style: none;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 24px;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover {
            background: var(--primary-soft);
            color: var(--primary);
        }
        .nav-links a.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .breadcrumb-wrap {
            max-width: 1240px;
            margin: 0 auto;
            padding: 16px 24px 0;
        }
        .breadcrumb {
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .sep {
            color: #cbd5e1;
            user-select: none;
        }

        /* ===== Main Layout ===== */
        .container {
            max-width: 1240px;
            margin: 28px auto 50px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2.8fr 1fr;
            gap: 36px;
            align-items: start;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        @media (max-width: 640px) {
            .nav-container {
                flex-direction: column;
                gap: 10px;
                padding: 12px 16px;
            }
            .nav-links a {
                padding: 6px 12px;
                font-size: 0.85rem;
            }
            .container {
                padding: 0 12px;
                margin-top: 18px;
            }
            article {
                padding: 24px 18px !important;
            }
        }

        article {
            background: var(--card);
            padding: 40px 36px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        article h1 {
            font-size: 2rem;
            margin-bottom: 18px;
            color: #0f172a;
            line-height: 1.35;
            letter-spacing: -0.4px;
        }
        article h2 {
            font-size: 1.4rem;
            margin: 36px 0 14px;
            padding-left: 14px;
            border-left: 4px solid var(--primary);
            color: #1e293b;
        }
        article h3 {
            font-size: 1.12rem;
            margin: 22px 0 10px;
            color: #334155;
            font-weight: 600;
        }
        article p {
            margin-bottom: 16px;
            color: #475569;
            text-align: justify;
            hyphens: auto;
        }
        article ul {
            margin-bottom: 18px;
            padding-left: 22px;
            color: #475569;
        }
        article li {
            margin-bottom: 7px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf4ff 0%, #f0f9ff 100%);
            border: 1px solid #e8d5f5;
            padding: 22px 24px;
            border-radius: var(--radius-sm);
            margin: 24px 0;
            position: relative;
        }
        .highlight-box::before {
            content: '📦';
            position: absolute;
            top: -14px;
            left: 18px;
            font-size: 1.4rem;
            background: #fff;
            padding: 0 8px;
            border-radius: 50%;
        }

        /* ===== 下载卡片网格 ===== */
        .download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 28px 0;
        }
        @media (max-width: 640px) {
            .download-grid {
                grid-template-columns: 1fr;
            }
        }
        .download-card {
            background: #fafbfc;
            border: 1px solid #e8ecf1;
            border-radius: var(--radius-sm);
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            transition: all var(--transition);
        }
        .download-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
            transform: translateY(-2px);
        }
        .platform-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .platform-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }
        .platform-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
            flex: 1;
            margin-bottom: 16px;
        }
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            padding: 12px 18px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.2s, transform 0.1s;
            align-self: flex-start;
        }
        .download-btn:hover {
            background: #6d28d9;
            transform: scale(1.02);
        }
        .download-btn.win { background: #2563eb; }
        .download-btn.win:hover { background: #1d4ed8; }
        .download-btn.mac { background: #1e293b; }
        .download-btn.mac:hover { background: #0f172a; }
        .download-btn.android { background: #16a34a; }
        .download-btn.android:hover { background: #15803d; }
        .download-btn.ios { background: #db2777; }
        .download-btn.ios:hover { background: #be185d; }

        /* ===== 安装步骤时间线 ===== */
        .timeline {
            position: relative;
            padding-left: 28px;
            margin: 24px 0;
            border-left: 2px dashed #d1d5db;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 22px;
            padding-left: 18px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 5px;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px var(--primary);
        }
        .timeline-item h4 {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 4px;
        }
        .timeline-item p {
            font-size: 0.9rem;
            color: #64748b;
            margin: 0;
        }

        /* ===== 规格表格 ===== */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 22px 0;
            font-size: 0.9rem;
            border-radius: var(--radius-sm);
            overflow: hidden;
        }
        .spec-table th,
        .spec-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e8ecf1;
        }
        .spec-table th {
            background: #f8fafc;
            font-weight: 600;
            color: #1e293b;
            white-space: nowrap;
        }
        .spec-table tr:hover td {
            background: #fafbfc;
        }

        /* ===== 校验码框 ===== */
        .verify-box {
            background: #1e293b;
            color: #cbd5e1;
            padding: 18px 20px;
            border-radius: var(--radius-sm);
            font-family: 'SF Mono', 'Cascadia Code', monospace;
            font-size: 0.82rem;
            line-height: 1.7;
            overflow-x: auto;
            margin: 20px 0;
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* ===== 侧边栏 ===== */
        aside {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: sticky;
            top: 90px;
        }
        @media (max-width: 1024px) {
            aside {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 16px;
            }
            aside .widget {
                flex: 1 1 240px;
                min-width: 220px;
            }
        }
        .widget {
            background: var(--card);
            padding: 22px 20px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
        }
        .widget h4 {
            font-size: 1rem;
            margin-bottom: 12px;
            color: #0f172a;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 8px;
            font-weight: 600;
        }
        .widget ul {
            list-style: none;
            padding-left: 0;
        }
        .widget li {
            margin-bottom: 10px;
        }
        .widget a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
            transition: color var(--transition);
            display: inline-block;
        }
        .widget a:hover {
            color: var(--primary);
        }
        .widget .tag {
            display: inline-block;
            background: var(--primary-soft);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 0.78rem;
            font-weight: 500;
            margin: 2px 3px;
        }
        .widget .tag-accent {
            background: var(--accent-soft);
            color: #0891b2;
        }

        /* ===== 页脚 ===== */
        footer {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 40px 24px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1240px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 28px;
        }
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        .footer-brand h5 {
            font-size: 1.05rem;
            color: #0f172a;
            margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 0.84rem;
            color: var(--text-muted);
            margin: 0;
        }
        .footer-links h5 {
            font-size: 0.95rem;
            color: #0f172a;
            margin-bottom: 12px;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: color var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            max-width: 1240px;
            margin: 24px auto 0;
            padding-top: 18px;
            border-top: 1px solid #f1f5f9;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }