* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
        body { background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%); min-height: 100vh; color: #1e293b; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(12, 74, 110, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.15); position: sticky; top: 0; z-index: 100; padding: 14px 0; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a { color: #f1f5f9; text-decoration: none; font-weight: 500; font-size: 1rem; letter-spacing: 0.3px; transition: 0.2s; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #2dd4bf; color: #ccfbf1; }
        .logo { font-size: 1.4rem; font-weight: 700; background: linear-gradient(135deg, #2dd4bf, #a5f3fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* H1 */
        h1 { font-size: 2.6rem; font-weight: 800; color: #0c4a6e; margin: 40px 0 20px; line-height: 1.2; text-align: center; }
        h1 span { background: linear-gradient(135deg, #0d9488, #0c4a6e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* 卡片磨砂玻璃 */
        .glass-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border-radius: 28px; border: 1px solid rgba(255,255,255,0.5); box-shadow: 0 12px 40px rgba(12,74,110,0.08); padding: 32px; margin-bottom: 36px; position: relative; overflow: hidden; }
        .glass-card::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(13,148,136,0.02) 20px, rgba(13,148,136,0.02) 40px); pointer-events: none; }
        .glass-card h2 { font-size: 2rem; margin-bottom: 24px; color: #0c4a6e; border-left: 6px solid #0d9488; padding-left: 16px; }
        .glass-card p { line-height: 1.8; font-size: 1.05rem; color: #334155; }
        /* 图片网格 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 20px; margin: 24px 0; }
        .img-grid img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,0.06); transition: 0.3s; }
        .img-grid img:hover { transform: scale(1.02); }
        /* 新闻 */
        .news-list { display: flex; flex-direction: column; gap: 28px; }
        .news-item { background: rgba(255,255,255,0.5); backdrop-filter: blur(6px); border-radius: 18px; padding: 24px; border-left: 4px solid #0d9488; transition: 0.2s; }
        .news-item h3 { font-size: 1.25rem; color: #0c4a6e; margin-bottom: 8px; }
        .news-item .date { font-size: 0.85rem; color: #64748b; margin-bottom: 10px; display: inline-block; background: #e2e8f0; padding: 2px 12px; border-radius: 20px; }
        .news-item p { color: #475569; line-height: 1.7; }
        /* FAQ */
        .faq-grid { display: grid; gap: 20px; }
        .faq-item { background: rgba(255,255,255,0.4); backdrop-filter: blur(4px); border-radius: 20px; padding: 20px 24px; border: 1px solid rgba(13,148,136,0.15); }
        .faq-item h3 { font-size: 1.1rem; color: #0f766e; margin-bottom: 10px; font-weight: 600; }
        .faq-item p { color: #334155; line-height: 1.7; }
        /* 统计 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 24px; text-align: center; }
        .stat-item { background: rgba(255,255,255,0.5); backdrop-filter: blur(8px); border-radius: 20px; padding: 28px 16px; }
        .stat-item .num { font-size: 2.6rem; font-weight: 800; color: #0d9488; }
        .stat-item .label { color: #475569; margin-top: 6px; font-size: 0.95rem; }
        /* 优势 */
        .adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
        .adv-item { background: rgba(255,255,255,0.45); backdrop-filter: blur(6px); border-radius: 20px; padding: 24px; border: 1px solid rgba(13,148,136,0.1); }
        .adv-item h3 { color: #0c4a6e; margin-bottom: 8px; }
        /* 合作伙伴 */
        .partner-logos { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
        .partner-logos img { height: 48px; opacity: 0.7; transition: 0.3s; }
        .partner-logos img:hover { opacity: 1; }
        /* 页脚 */
        footer { background: #0c4a6e; color: #cbd5e1; padding: 40px 0 24px; margin-top: 60px; }
        footer a { color: #99f6e4; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: center; margin-bottom: 20px; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; font-size: 0.9rem; }
        .footer-bottom p { margin: 4px 0; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 16px; flex-wrap: wrap; }
            .glass-card { padding: 20px; }
        }
        .geo-text { font-size: 1.05rem; line-height: 1.8; color: #1e293b; }
        .btn { display: inline-block; background: linear-gradient(135deg, #0d9488, #0c4a6e); color: #fff; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.3s; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,148,136,0.3); }
        .cta-wrap { text-align: center; margin: 30px 0; }