        /* ==================== CSS 变量与全局样式（与首页/下载页统一基调） ==================== */
        :root {
            --accent: #0ea5e9;
            --accent-glow: #38bdf8;
            --accent-deep: #0369a1;
            --surface: #ffffff;
            --surface-alt: #f0f9ff;
            --card-bg: #f8fcff;
            --text-primary: #0c1929;
            --text-secondary: #334155;
            --text-muted: #64748b;
            --border: #e0f0fe;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 8px 24px rgba(14, 165, 233, 0.08);
            --shadow-lg: 0 20px 48px rgba(14, 165, 233, 0.12);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 24px;
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
            --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Noto Sans SC', system-ui, sans-serif;
            color: var(--text-primary);
            background: var(--surface);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==================== 头部导航（与首页完全一致） ==================== */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.7rem clamp(1.5rem, 5vw, 6rem);
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            border-bottom: 1px solid rgba(14, 165, 233, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: transform var(--transition);
            flex-shrink: 0;
        }
        .logo-wrap:hover {
            transform: scale(1.03);
        }
        .logo-wrap img {
            height: 38px;
            width: auto;
            border-radius: 8px;
        }
        .logo-wrap .logo-text {
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
        }
        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            padding: 6px 2px;
            transition: color var(--transition);
            white-space: nowrap;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2.5px;
            background: var(--accent);
            border-radius: 2px;
            transition: all var(--transition);
            transform: translateX(-50%);
        }
        nav a:hover,
        nav a.active {
            color: var(--accent);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 80%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            color: var(--text-primary);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* ==================== 页面 Hero 横幅 ==================== */
        .page-hero {
            padding: 3rem clamp(1.5rem, 5vw, 6rem) 2rem;
            text-align: center;
            background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background-image:
                radial-gradient(1.5px 1.5px at 30% 40%, var(--accent-glow) 50%, transparent 100%),
                radial-gradient(2px 2px at 70% 60%, #0284c7 50%, transparent 100%),
                radial-gradient(1px 1px at 55% 25%, var(--accent) 50%, transparent 100%);
            opacity: 0.35;
            animation: gentleDrift 18s linear infinite;
        }
        @keyframes gentleDrift {
            0%, 100% { transform: translate(0, 0); }
            33% { transform: translate(6px, -4px); }
            66% { transform: translate(-4px, 6px); }
        }

        .page-hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(56, 189, 248, 0.06));
            color: var(--accent-deep);
            padding: 8px 20px;
            border-radius: 99px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(14, 165, 233, 0.15);
            position: relative;
            z-index: 1;
        }
        .page-hero .hero-tag .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s ease-in-out infinite;
            display: inline-block;
        }
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
            50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            letter-spacing: -0.04em;
            margin-bottom: 1rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }
        .page-hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent) 0%, #0369a1 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* ==================== 内容区块通用 ==================== */
        .content-section {
            padding: 3.5rem clamp(1.5rem, 5vw, 6rem);
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 2.8rem;
        }
        .section-header h2 {
            font-size: clamp(1.7rem, 3vw, 2.2rem);
            letter-spacing: -0.03em;
            margin-bottom: 0.7rem;
            font-weight: 800;
        }
        .section-sub {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 580px;
            margin: 0 auto;
        }
        .section-divider {
            width: 45px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
            margin: 0.8rem auto 0;
            opacity: 0.6;
        }

        /* ==================== 配置步骤卡片（创意主区块） ==================== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
            margin-top: 2rem;
        }
        .step-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .step-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #38bdf8);
            transform: scaleX(0);
            transition: transform var(--transition);
        }
        .step-card:hover::after {
            transform: scaleX(1);
        }
        .step-card:hover {
            transform: translateY(-6px);
            background: #fff;
            box-shadow: var(--shadow-lg);
            border-color: rgba(14, 165, 233, 0.25);
        }
        .step-number {
            width: 48px;
            height: 48px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            margin: 0 auto 1.2rem;
            transition: transform var(--transition);
        }
        .step-card:hover .step-number {
            transform: scale(1.1);
            background: var(--accent-deep);
        }
        .step-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
        }
        .step-card p {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.6;
        }
        .step-card .step-icon {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 0.8rem;
            display: block;
        }

        /* ==================== 配置文件模拟窗口 ==================== */
        .code-mock {
            background: #0f172a;
            border-radius: var(--radius-lg);
            padding: 1.8rem;
            margin: 2rem 0 1rem;
            border: 1px solid #1e293b;
            font-family: var(--font-mono);
            font-size: 0.88rem;
            color: #e2e8f0;
            overflow-x: auto;
            position: relative;
        }
        .code-mock::before {
            content: 'config.yaml';
            position: absolute;
            top: 10px;
            right: 18px;
            background: #334155;
            color: #cbd5e1;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 4px;
            letter-spacing: 0.05em;
        }
        .code-mock .comment { color: #94a3b8; }
        .code-mock .key { color: #38bdf8; }
        .code-mock .string { color: #fbbf24; }

        /* ==================== 标签提示框 ==================== */
        .tips-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 2rem 0;
            justify-content: center;
        }
        .tip-badge {
            background: var(--surface-alt);
            border: 1px solid var(--border);
            border-radius: 99px;
            padding: 10px 20px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all var(--transition);
        }
        .tip-badge i {
            color: var(--accent);
        }
        .tip-badge:hover {
            background: #e0f2fe;
            border-color: var(--accent-glow);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        /* ==================== 常见问题手风琴 ==================== */
        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 2rem;
        }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #fff;
            transition: all var(--transition);
        }
        .faq-question {
            padding: 1rem 1.5rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--surface-alt);
            transition: background var(--transition);
            font-size: 0.98rem;
            gap: 1rem;
        }
        .faq-question:hover {
            background: #e0f2fe;
        }
        .faq-question i {
            color: var(--accent);
            transition: transform var(--transition);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0 1.5rem;
            color: var(--text-secondary);
            line-height: 1.65;
            font-size: 0.93rem;
        }
        .faq-item.open .faq-answer {
            max-height: 200px;
            padding: 1rem 1.5rem 1.5rem;
        }
        .faq-item.open .faq-question i {
            transform: rotate(180deg);
        }

        /* ==================== 页脚（与首页完全一致） ==================== */
        footer {
            background: #0c1929;
            color: #94a3b8;
            padding: 4rem clamp(1.5rem, 5vw, 6rem) 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-brand h4 {
            color: #fff;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.65;
            opacity: 0.8;
        }
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-social a {
            color: #94a3b8;
            transition: color var(--transition);
            text-decoration: none;
        }
        .footer-social a:hover {
            color: var(--accent-glow);
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .footer-links a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 0.65rem;
            font-size: 0.9rem;
            transition: color var(--transition);
            padding-left: 14px;
            position: relative;
        }
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all var(--transition);
            color: var(--accent-glow);
        }
        .footer-links a:hover {
            color: #fff;
            padding-left: 18px;
        }
        .footer-links a:hover::before {
            opacity: 1;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            margin-top: 3rem;
            padding-top: 1.8rem;
            text-align: center;
            font-size: 0.82rem;
            max-width: 1200px;
            margin-inline: auto;
            opacity: 0.7;
            line-height: 1.7;
        }

        /* ==================== 响应式 ==================== */
        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }
        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                padding: 0.8rem 1.2rem;
                gap: 0.6rem;
            }
            nav {
                gap: 0.8rem;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                order: 3;
                padding-top: 0.3rem;
            }
            .menu-toggle {
                display: block;
                order: 2;
            }
            .logo-wrap {
                order: 1;
            }
            .page-hero {
                padding: 2.5rem 1.2rem 2rem;
            }
            .steps-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.8rem;
            }
        }
        @media print {
            header, footer, .menu-toggle {
                display: none;
            }
            body {
                font-size: 14px;
                color: #000;
                background: #fff;
            }
        }