        /* ========== 全局重置 & 与首页完全统一的风格 ========== */
        *{margin:0;padding:0;box-sizing:border-box;}
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #f9fafc;
            color: #0b1e33;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        
        /* 头部 — 毛玻璃现代 (同首页) */
        header {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid #eef2f6;
        }
        .header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 14px 0;
        }
        .logo-area h1 {
            font-size: 1.9rem;
            font-weight: 750;
            background: linear-gradient(145deg, #0f2b4b, #2563eb);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo-area p {
            font-size: 0.75rem;
            color: #54708f;
            margin-top: 4px;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-links {
            display: flex;
            gap: 1.4rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: #1e2f44;
            transition: color 0.15s;
            font-size: 0.95rem;
        }
        .nav-links a:hover, .nav-links a.active { color: #2563eb; }

        /* 页面标题 */
        .page-hero {
            text-align: center;
            margin: 48px 0 32px;
        }
        .page-hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0b1e2e, #1e4bd2);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        .badge-solution {
            display: inline-block;
            background: #dbeafe;
            color: #1e4bd2;
            padding: 8px 28px;
            border-radius: 60px;
            font-weight: 650;
            margin-top: 16px;
            border: 1px solid #bdd3ff;
        }

        /* 症状分类快速入口 */
        .symptom-tabs {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 40px 0 20px;
        }
        .symptom-tab {
            background: white;
            border: 1.5px solid #d4e2f5;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.15s;
            color: #1e3b63;
        }
        .symptom-tab:hover, .symptom-tab.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }

        /* 解决方案卡片 (症状 → 解决方案) */
        .solution-cards {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin: 40px 0 50px;
        }
        .solution-card {
            background: white;
            border-radius: 40px;
            padding: 36px 40px;
            box-shadow: 0 20px 30px -10px rgba(0,35,70,0.06);
            border: 1px solid #eaf0fa;
            transition: all 0.2s;
        }
        .solution-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }
        .solution-icon {
            font-size: 2.8rem;
            background: #eef4ff;
            width: 70px;
            height: 70px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .solution-header h2 {
            font-size: 2rem;
            font-weight: 750;
            flex: 1;
        }
        .severity-badge {
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 700;
        }
        .severity-high { background: #fee2e2; color: #b91c1c; }
        .severity-medium { background: #fef3c7; color: #b45309; }
        .severity-low { background: #dcfce7; color: #166534; }

        .steps-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 30px;
        }
        .steps-list {
            list-style: none;
        }
        .steps-list li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 1.05rem;
        }
        .step-num {
            background: #1e3b63;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        .cmd-box {
            background: #0a1c2f;
            border-radius: 30px;
            padding: 24px 22px;
            color: #bdd3ff;
            font-family: 'SF Mono', monospace;
        }
        .cmd-title {
            color: white;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cmd-code {
            background: #1e3347;
            padding: 12px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            white-space: pre-wrap;
            word-break: break-all;
        }
        .copy-cmd {
            background: #2563eb;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
        }

        /* 额外快速修复卡片 */
        .quick-fixes {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .quick-card {
            background: white;
            border-radius: 28px;
            padding: 24px 22px;
            border: 1px solid #eaf0fa;
        }
        .quick-emoji { font-size: 2rem; margin-bottom: 12px; }
        .quick-card h4 { font-size: 1.3rem; margin-bottom: 12px; }

        /* 底部下载号召 */
        .cta-solution {
            background: #0f2b4b;
            border-radius: 60px;
            padding: 48px 40px;
            margin: 60px 0 40px;
            color: white;
            text-align: center;
        }
        .cta-solution h3 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; }
        .btn-light-large {
            background: white;
            color: #0f2b4b;
            padding: 16px 52px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.3rem;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            transition: 0.2s;
        }
        .btn-light-large:hover { background: #e0edff; transform: scale(1.02); }

        footer {
            background: #0b1a2a;
            color: #b0c7de;
            padding: 40px 0 24px;
            margin-top: 20px;
            border-top: 1px solid #1e3347;
        }
        .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
        .footer-copyright {
            text-align: center;
            padding-top: 32px;
            font-size: 0.85rem;
            border-top: 1px solid #1e3347;
            margin-top: 24px;
        }

        @media (max-width: 800px) {
            .steps-container { grid-template-columns: 1fr; }
            .quick-fixes { grid-template-columns: 1fr; }
            .solution-header { flex-wrap: wrap; }
        }