* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }
        body { background: linear-gradient(135deg, #fdf8f0 0%, #fce9d8 100%); color: #2d1b0e; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(255,255,255,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 8px 32px rgba(249,115,22,0.12); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(249,115,22,0.15); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; flex-wrap: wrap; }
        .logo { font-weight: 800; font-size: 1.6rem; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
        .nav-links a { text-decoration: none; color: #4a2c0a; font-weight: 600; font-size: 0.98rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.25s; }
        .nav-links a:hover { border-bottom-color: #f97316; color: #f97316; }
        /* 头部H1 */
        .hero-section { padding: 40px 0 20px; text-align: center; }
        .hero-section h1 { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, #f97316, #b45309); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; line-height: 1.2; }
        .hero-section .geo-desc { max-width: 900px; margin: 0 auto; font-size: 1.1rem; color: #5a3e2a; }
        /* 网格卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin: 40px 0; }
        .card-glass { background: rgba(255,255,240,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 32px; padding: 28px 22px; box-shadow: 0 12px 40px rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); transition: all 0.3s; }
        .card-glass:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(249,115,22,0.18); }
        .card-glass img { width: 100%; height: 180px; object-fit: cover; border-radius: 20px; margin-bottom: 18px; background: #f1e5d6; }
        .card-glass h3 { font-size: 1.4rem; margin-bottom: 8px; color: #4a2c0a; }
        .card-glass p { color: #5f4a34; }
        /* 区块标题 */
        .section-title { font-size: 2.2rem; font-weight: 700; margin: 48px 0 24px; color: #3d2414; position: relative; display: inline-block; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, #f97316, #fbbf24); border-radius: 4px; margin-top: 6px; }
        /* 新闻 */
        .news-list { margin: 32px 0; }
        .news-item { background: rgba(255,255,245,0.7); backdrop-filter: blur(8px); border-radius: 24px; padding: 22px 26px; margin-bottom: 20px; border: 1px solid rgba(249,115,22,0.12); transition: 0.2s; }
        .news-item:hover { border-color: #f97316; }
        .news-date { font-size: 0.85rem; color: #b45309; font-weight: 600; margin-bottom: 6px; }
        .news-item h4 { font-size: 1.3rem; margin-bottom: 8px; color: #3d2414; }
        .news-item p { color: #5a4030; }
        /* FAQ */
        .faq-item { background: rgba(255,255,245,0.5); border-radius: 20px; padding: 20px 24px; margin-bottom: 16px; border-left: 5px solid #f97316; }
        .faq-item strong { font-size: 1.15rem; color: #4a2c0a; display: block; margin-bottom: 8px; }
        .faq-item p { color: #4f3826; }
        /* 页脚 */
        footer { background: #2d1b0e; color: #f0e4d8; padding: 48px 0 32px; margin-top: 60px; border-radius: 48px 48px 0 0; }
        footer a { color: #fbbf24; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 20px; }
        .footer-meta { text-align: center; font-size: 0.9rem; opacity: 0.8; line-height: 2; }
        .footer-meta p { margin: 4px 0; }
        /* 数据统计 */
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 24px; text-align: center; }
        .stat-number { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg,#f97316,#b45309); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        /* 通用 */
        .flex-center { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; justify-content: center; }
        .mt-2 { margin-top: 20px; }
        .mb-2 { margin-bottom: 20px; }
        hr { border: none; height: 1px; background: linear-gradient(90deg,transparent,#f97316,transparent); margin: 30px 0; }
        .img-round { border-radius: 24px; width: 100%; height: auto; max-height: 220px; object-fit: cover; }
        @media (max-width: 640px) { 
            .nav-inner { flex-direction: column; gap: 12px; }
            .hero-section h1 { font-size: 1.9rem; }
            .nav-links { gap: 14px; }
        }