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

        :root {
            --brand: #0f62fe;
            --brand-hover: #0043ce;
            --brand-light: #eef2ff;
            --dark: #0f2b3d;
            --dark-mid: #1a4a6f;
            --text: #0f172a;
            --text-sub: #2d3e50;
            --text-muted: #475569;
            --text-light: #5b6e8c;
            --border: #eef2f6;
            --border-light: #edf2f7;
            --bg-card: #fefefe;
            --bg-subtle: #f9fafb;
            --bg-footer: #fafcff;
            --white: #ffffff;
            --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
            --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.04), 0 8px 10px -6px rgba(0,0,0,0.03);
            --shadow-lg: 0 20px 35px -12px rgba(0,0,0,0.07);
            --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
            --radius-sm: 12px;
            --radius: 24px;
            --radius-lg: 36px;
            --radius-xl: 48px;
            --radius-full: 9999px;
            --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Helvetica, 'Noto Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #ffffff;
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== HEADER（与首页完全一致） ========== */
        .header {
            position: sticky;
            top: 0;
            background-color: rgba(255,255,255,0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.03);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo {
            font-weight: 800;
            font-size: 1.75rem;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #0F2B3D 0%, #1A4A6F 60%, #2b6a9f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .logo-badge {
            background-color: #eef2ff;
            padding: 0.2rem 0.65rem;
            border-radius: 40px;
            font-size: 0.68rem;
            font-weight: 700;
            color: #1e3a8a;
            letter-spacing: -0.01em;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1e293b;
            transition: color var(--transition);
            font-size: 0.95rem;
            white-space: nowrap;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brand);
            border-radius: 2px;
            transition: width var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--brand);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .btn-primary-sm {
            background: var(--brand);
            color: white;
            border: none;
            padding: 0.5rem 1.3rem;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            font-size: 0.9rem;
            white-space: nowrap;
            display: inline-block;
            box-shadow: 0 2px 8px rgba(15,98,254,0.2);
        }
        .btn-primary-sm:hover {
            background: var(--brand-hover);
            box-shadow: 0 4px 14px rgba(15,98,254,0.3);
            transform: translateY(-1px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.4rem;
            flex-direction: column;
            gap: 5px;
            z-index: 101;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: all var(--transition);
        }

        /* ========== 页面通用样式 ========== */
        .page-hero {
            max-width: 1280px;
            margin: 2rem auto 3rem;
            padding: 2rem;
            text-align: center;
        }

        .page-badge {
            background: var(--brand-light);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--brand);
            margin-bottom: 1.2rem;
        }

        .page-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.025em;
            background: linear-gradient(135deg, #0a2540 0%, #1a4a6f 35%, #2b6a9f 70%, #0f62fe 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--text-sub);
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.65;
        }

        .section {
            max-width: 1280px;
            margin: 4rem auto;
            padding: 2rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 2.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
            color: var(--dark);
        }
        .section-sub {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ========== 首屏：动态工作流下载入口（4卡） ========== */
        .workflow-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .wf-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            padding: 2rem 1.8rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            transition: all var(--transition);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .wf-card:hover {
            border-color: var(--brand);
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        .wf-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .wf-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }
        .wf-card p {
            font-size: 0.95rem;
            color: #334155;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .wf-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            justify-content: center;
        }
        .btn-wf-primary {
            background: var(--brand);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            transition: all var(--transition);
        }
        .btn-wf-primary:hover {
            background: var(--brand-hover);
            transform: translateY(-1px);
        }
        .btn-wf-secondary {
            background: transparent;
            border: 1px solid #cbd5e1;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            color: #1e293b;
            font-size: 0.9rem;
            transition: all var(--transition);
        }
        .btn-wf-secondary:hover {
            background: #f8fafc;
            border-color: #94a3b8;
        }

        /* ========== 系统版本矩阵 ========== */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        .platform-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .platform-card:hover {
            border-color: #cbdffc;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .platform-icon {
            font-size: 2.8rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        .platform-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .platform-card p {
            font-size: 0.9rem;
            color: #334155;
            line-height: 1.6;
            min-height: 100px;
        }
        .btn-platform {
            display: inline-block;
            margin-top: 1rem;
            background: var(--brand);
            color: white;
            padding: 0.6rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
        }
        .btn-platform:hover {
            background: var(--brand-hover);
            box-shadow: 0 4px 14px rgba(15,98,254,0.3);
        }

        /* ========== 工作流中心 ========== */
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .flow-card {
            background: var(--bg-subtle);
            border-radius: var(--radius);
            padding: 1.8rem;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .flow-card:hover {
            border-color: #cbdffc;
            background: white;
            box-shadow: var(--shadow-md);
        }
        .flow-steps {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
            margin: 1rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .flow-steps span {
            background: var(--brand-light);
            padding: 0.25rem 0.7rem;
            border-radius: 20px;
            color: var(--brand);
            font-weight: 500;
        }
        .flow-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .flow-card .btn-flow {
            display: inline-block;
            margin-top: 1rem;
            font-weight: 600;
            color: var(--brand);
            text-decoration: none;
        }

        /* 模式选择卡片 */
        .mode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .mode-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.8rem 1.5rem;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .mode-card:hover {
            border-color: var(--brand);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .mode-icon {
            font-size: 2.8rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        .mode-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
        }
        .mode-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0.5rem 0 1rem;
        }
        .btn-mode {
            display: inline-block;
            background: var(--brand-light);
            color: var(--brand);
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
        }
        .btn-mode:hover {
            background: var(--brand);
            color: white;
        }

        /* 排行榜 */
        .rank-list {
            max-width: 700px;
            margin: 0 auto;
            counter-reset: rank;
        }
        .rank-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: white;
            border-radius: var(--radius);
            padding: 1.2rem 2rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            counter-increment: rank;
            transition: all var(--transition);
        }
        .rank-item:hover {
            border-color: #cbdffc;
            box-shadow: var(--shadow-md);
        }
        .rank-pos {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand);
            min-width: 50px;
            text-align: center;
        }
        .rank-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }
        .rank-content p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .rank-btn {
            margin-left: auto;
            font-weight: 600;
            color: var(--brand);
            text-decoration: none;
            white-space: nowrap;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            margin-bottom: 0.75rem;
            background: white;
            overflow: hidden;
            transition: all var(--transition);
        }
        .faq-item summary {
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--dark);
        }
        .faq-item summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--brand);
            margin-left: 1rem;
        }
        .faq-item[open] summary::after {
            content: '−';
        }
        .faq-answer {
            padding: 0 1.5rem 1.3rem;
            color: #334155;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        .article-card {
            background: var(--bg-subtle);
            border-radius: var(--radius);
            padding: 1.5rem;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
            text-decoration: none;
            color: inherit;
        }
        .article-card:hover {
            border-color: #cbdffc;
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .article-card h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.4rem;
        }
        .article-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .cta-banner {
            background: linear-gradient(105deg, #0f2b3d 0%, #1b4a6e 45%, #1a5480 100%);
            margin: 4rem auto;
            max-width: 1100px;
            border-radius: var(--radius-xl);
            padding: 3.5rem 2.5rem;
            text-align: center;
            color: white;
        }
        .btn-white {
            background: white;
            color: #0f2b3d;
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 1.5rem;
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(0,0,0,0.25);
        }

        /* 页脚 */
        .footer {
            border-top: 1px solid var(--border);
            margin-top: 4rem;
            background-color: var(--bg-footer);
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2.5rem;
        }
        .footer-col h4 {
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }
        .footer-col a {
            display: block;
            color: #475569;
            text-decoration: none;
            margin-bottom: 0.7rem;
            font-size: 0.9rem;
            transition: color var(--transition);
        }
        .footer-col a:hover { color: var(--brand); }
        .copyright {
            text-align: center;
            padding: 1.5rem;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-light);
        }

        @media (max-width: 780px) {
            .page-title { font-size: 2rem; }
        }
        @media (max-width: 680px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                background: white;
                border-radius: var(--radius-sm);
                padding: 1rem;
                box-shadow: var(--shadow-lg);
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                border: 1px solid var(--border);
            }
            .nav-links.open { display: flex; }
            .mobile-menu-btn { display: flex; }
            .rank-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
            .rank-btn { margin-left: 0; }
        }