        :root {
            --red: #ef443b;
            --red-dark: #c0392b;
            --text: #1a1a1a;
            --text2: #4a4a4a;
            --gray-light: #f7f8fa;
            --gray-border: #e8eaef;
            --white: #fff;
            --radius: 16px;
            --radius-sm: 8px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --max-w: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            color: var(--text);
            background: #fefefe;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* ===== 导航栏（与首页完全一致） ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 64px;
            display: flex;
            align-items: center;
            padding: 0 5%;
            justify-content: space-between;
            transition: var(--transition);
        }
        .nav-logo img {
            height: 28px;
            width: auto;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            padding: 8px 14px;
            border-radius: 20px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover {
            background: #fff0ef;
            color: var(--red);
        }
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .btn-nav-dl {
            background: var(--red);
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            padding: 9px 20px;
            border-radius: 22px;
            transition: var(--transition);
            white-space: nowrap;
        }
        .btn-nav-dl:hover {
            background: var(--red-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 14px rgba(239, 68, 59, 0.35);
        }

        /* ===== 教程页主体容器 ===== */
        .guide-wrapper {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 150px 5% 100px;
            display: flex;
            gap: 50px;
        }
        .guide-content {
            flex: 1;
            max-width: 800px;
        }
        .guide-header {
            margin-bottom: 40px;
            border-bottom: 1px solid #f3f4f6;
            padding-bottom: 30px;
        }
        .guide-header h1 {
            font-size: clamp(2.2rem, 4vw, 3rem);
            line-height: 1.2;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 16px;
        }
        .guide-header h1 .hl {
            background: linear-gradient(135deg, #ef443b 0%, #ee6b3b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .guide-meta {
            font-size: 0.95rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* 快速入门步骤卡片 */
        .quick-start-cards {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .quick-card {
            flex: 1 1 200px;
            background: #fff;
            border: 1px solid #f0f0f0;
            border-radius: 16px;
            padding: 25px 20px;
            text-align: center;
            transition: 0.3s;
        }
        .quick-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(239, 68, 68, 0.08);
        }
        .step-num {
            display: inline-block;
            background: var(--red);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        .quick-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1f2937;
        }
        .quick-card p {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
        }

        /* 文章富文本 */
        .article-body h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1f2937;
            margin: 45px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-body h2::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 28px;
            background: var(--red);
            border-radius: 3px;
        }
        .article-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #374151;
            margin: 30px 0 15px;
        }
        .article-body p {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 400;
        }
        .article-body p strong {
            font-weight: 700;
            color: #000;
        }
        .guide-media-box {
            margin: 35px 0;
            background: #f9fafb;
            border: 1px dashed #d1d5db;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            padding: 20px;
        }
        .guide-media-box img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 6px;
            background: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        .image-caption {
            font-size: 0.85rem;
            color: #9ca3af;
            margin-top: 12px;
            font-weight: 500;
        }
        .info-note {
            background: rgba(239, 68, 68, 0.04);
            border-left: 4px solid var(--red);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        .info-note p {
            margin-bottom: 0;
            font-weight: 500;
            color: #374151;
            font-size: 0.98rem;
        }
        .article-body ol {
            margin: 20px 0 30px 20px;
        }
        .article-body ol li {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 12px;
            font-weight: 400;
        }
        .tips-checklist {
            background: #fff7ed;
            border: 1px solid #fed7aa;
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
        }
        .tips-checklist h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #c2410c;
            margin-bottom: 15px;
        }
        .tips-checklist ul {
            list-style: none;
        }
        .tips-checklist li {
            padding: 8px 0;
            border-bottom: 1px dashed #fed7aa;
            font-size: 1rem;
            color: #374151;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .tips-checklist li::before {
            content: "✦";
            color: var(--red);
            font-weight: 700;
        }

        /* 侧边栏 */
        .guide-sidebar {
            width: 280px;
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sticky-card {
            background: #f9fafb;
            border-radius: 16px;
            padding: 30px;
            border: 1px solid #f3f4f6;
        }
        .sticky-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }
        .sticky-card ul {
            list-style: none;
        }
        .sticky-card li {
            margin-bottom: 15px;
        }
        .sticky-card a {
            text-decoration: none;
            color: #4b5563;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .sticky-card a:hover {
            color: var(--red);
        }

        /* ===== 页脚（与首页完全一致） ===== */
        .footer {
            background: #111;
            color: #ccc;
            padding: 60px 5% 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            max-width: var(--max-w);
            margin: 0 auto;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 28px;
            height: 2px;
            background: var(--red);
            border-radius: 1px;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: #aaa;
            font-size: 13px;
            transition: var(--transition);
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            max-width: var(--max-w);
            margin: 40px auto 0;
            padding-top: 20px;
            border-top: 1px solid #2a2a2a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: #777;
        }
        .footer-bottom a {
            color: #999;
            margin-left: 16px;
            transition: var(--transition);
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .guide-wrapper {
                flex-direction: column;
                padding-top: 120px;
            }
            .guide-sidebar {
                display: none;
            }
            .quick-start-cards {
                flex-direction: column;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }