* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(135deg, #fff7ed 0%, #fef2e0 100%); color: #2d1b0e; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: linear-gradient(135deg, #f97316 0%, #4a2c0a 100%); padding: 16px 0; box-shadow: 0 4px 20px rgba(249,115,22,0.3); position: sticky; top: 0; z-index: 100; }
        nav .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; padding: 8px 18px; border-radius: 30px; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); transition: all 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { background: #fff; color: #4a2c0a; transform: translateY(-2px); }
        .nav-icon { color: #fff; font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }
        /* H1 */
        h1 { font-size: 2.6rem; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 40px 0 10px; text-align: center; }
        .subhead { text-align: center; color: #6b4226; max-width: 800px; margin: 0 auto 30px; font-size: 1.1rem; }
        /* 卡片毛玻璃 */
        .glass-card { background: rgba(255,255,255,0.55); backdrop-filter: blur(12px); border-radius: 28px; padding: 30px; border: 1px solid rgba(249,115,22,0.2); box-shadow: 0 8px 32px rgba(249,115,22,0.08); transition: transform 0.3s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(249,115,22,0.15); }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 30px; color: #4a2c0a; text-align: center; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: #f97316; margin: 10px auto 0; border-radius: 4px; }
        /* 网格 */
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; }
        .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 30px 0; }
        .grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 30px 0; }
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
        img { max-width: 100%; border-radius: 20px; display: block; width: 100%; height: 200px; object-fit: cover; margin: 15px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .btn { display: inline-block; background: linear-gradient(135deg, #f97316, #e05a0a); color: #fff; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: all 0.3s; border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(249,115,22,0.3); }
        .btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }
        /* FAQ */
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid rgba(249,115,22,0.2); padding-bottom: 20px; }
        .faq-item h3 { color: #4a2c0a; font-size: 1.2rem; margin-bottom: 10px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
        .faq-item p { color: #3d2b1a; padding-left: 28px; }
        /* 新闻 */
        .news-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); border-radius: 24px; padding: 24px; border: 1px solid rgba(249,115,22,0.15); margin-bottom: 20px; transition: all 0.3s; }
        .news-card:hover { background: rgba(255,255,255,0.8); }
        .news-date { color: #f97316; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
        .news-card h3 { color: #4a2c0a; margin-bottom: 10px; }
        .news-card p { color: #3d2b1a; }
        /* 页脚 */
        footer { background: linear-gradient(135deg, #4a2c0a 0%, #2d1b0e 100%); color: #f5e6d3; padding: 40px 0 20px; margin-top: 60px; }
        footer a { color: #fbbf24; text-decoration: none; }
        footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 20px; }
        .footer-info { text-align: center; font-size: 0.9rem; opacity: 0.8; }
        /* 统计数字 */
        .stat-number { font-size: 2.4rem; font-weight: 800; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        /* 其他 */
        .hero-section { text-align: center; padding: 40px 0; }
        .hero-section img { max-height: 280px; width: auto; margin: 20px auto; }
        .geo-text { background: rgba(255,255,255,0.5); backdrop-filter: blur(6px); border-radius: 24px; padding: 24px; margin: 20px 0; }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 10px; }
        .mt-30 { margin-top: 30px; }
        .mb-20 { margin-bottom: 20px; }
        .text-center { text-align: center; }
        .badge { display: inline-block; background: #f97316; color: #fff; border-radius: 30px; padding: 4px 14px; font-size: 0.8rem; font-weight: 600; }