        /* 蔚蓝 · 方案选择器风格 */
        *{margin:0;padding:0;box-sizing:border-box;}
        body{
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background:#f5faff; color:#1a2a3a; line-height:1.5;
        }
        @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');
        .container{max-width:1280px; margin:0 auto; padding:0 24px;}
        
        /* 导航 — 蓝色基调 */
        .navbar{
            background:rgba(255,255,255,0.96); box-shadow:0 2px 12px rgba(0,70,120,0.04);
            position:sticky; top:0; z-index:50; border-bottom:1px solid #c2d9f0;
            backdrop-filter: blur(4px);
        }
        .nav-flex{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; padding:0.7rem 0;}
        .logo-area{display:flex; align-items:center; gap:10px;}
        .logo-icon{background:#1a73e8; width:38px; height:38px; border-radius:14px; display:flex; align-items:center; justify-content:center; color:white; font-weight:700; font-size:20px; box-shadow:0 4px 8px rgba(26,115,232,0.15);}
        .logo-text{font-size:1.6rem; font-weight:700; color:#0b3b66; letter-spacing:-0.3px;}
        .nav-links{display:flex; gap:22px; align-items:center; flex-wrap:wrap;}
        .nav-links a{text-decoration:none; font-weight:550; color:#1e4460; transition:all 0.15s; font-size:0.98rem; padding:6px 0; border-bottom:2px solid transparent;}
        .nav-links a:hover, .nav-links a.active{color:#1a73e8; border-bottom-color:#1a73e8;}
        
        .page-header{padding:2.5rem 0 1.5rem; text-align:center; background:linear-gradient(105deg, #f2f8ff 0%, #ffffff 100%);}
        .page-header h1{font-size:2.8rem; font-weight:800; color:#0a3360; margin-bottom:0.5rem;}
        .section-title{font-size:2rem; font-weight:700; color:#0a3360; margin:2rem 0 1.2rem;}
        
        /* 方案选择器网格 */
        .scheme-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:2rem 0;}
        .scheme-card{background:white; border-radius:32px; padding:2rem 1.8rem; border:1px solid #d0e1f5; transition:0.2s; cursor:pointer; box-shadow:0 8px 18px rgba(0,0,0,0.02);}
        .scheme-card:hover{border-color:#1a73e8; transform:translateY(-5px); box-shadow:0 20px 30px -10px rgba(26,115,232,0.1);}
        .scheme-card.active{border:2px solid #1a73e8; background:#f5faff;}
        .scheme-icon{font-size:2.8rem; color:#1a73e8; margin-bottom:1.2rem;}
        .scheme-card h3{font-size:1.7rem; margin-bottom:0.8rem; color:#0a3360;}
        .scheme-desc{color:#34608a; margin-bottom:1.8rem;}
        .scheme-badge{display:inline-block; background:#e3f0ff; color:#1a73e8; padding:4px 16px; border-radius:40px; font-weight:600; font-size:0.8rem;}
        
        /* 步骤展开区 */
        .steps-container{background:white; border-radius:32px; padding:2.2rem; margin:2rem 0; border:1px solid #d0e1f5; display:none;}
        .steps-container.show{display:block;}
        .step-list{margin:1.5rem 0;}
        .step-item{display:flex; gap:1.2rem; margin-bottom:1.5rem; align-items:flex-start;}
        .step-num{background:#1a73e8; color:white; width:36px; height:36px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-weight:700; flex-shrink:0;}
        .step-content{flex:1;}
        .code-block{background:#f0f5ff; border-radius:16px; padding:1rem 1.2rem; font-family: monospace; margin:0.8rem 0; border:1px dashed #1a73e8; word-break:break-all;}
        
        /* 联动提示 */
        .link-tun{background:#ecf5fe; border-radius:28px; padding:2rem; margin:2.5rem 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; border:1px solid #b7d2f0;}
        
        /* 底部号召 */
        .cta-download{background:#0a3360; border-radius:3rem; padding:2.2rem 2.8rem; margin:3rem 0; color:white; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap;}
        .cta-btn{background:#f5c542; color:#0a2d4a; padding:16px 38px; border-radius:60px; font-weight:800; text-decoration:none; font-size:1.2rem;}
        
        /* footer */
        .footer{background:#e2edf7; color:#1b3f60; padding:2.8rem 0; margin-top:4rem; border-top:1px solid #b8cee8;}
        .footer-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; padding-bottom:2rem; border-bottom:1px solid #b1c6e0;}
        .footer a{color:#1b4a70; text-decoration:none;}
        .sitemap-row{margin-top:2rem; text-align:center;}
        
        @media (max-width:800px){
            .scheme-grid{grid-template-columns:1fr;}
        }