* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, sans-serif; background: linear-gradient(145deg, #fdf6f0 0%, #f5e6d8 100%); color: #2d1b0e; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        header { background: linear-gradient(135deg, #f97316 0%, #d95f0e 60%, #4a2c0a 100%); padding: 12px 0; box-shadow: 0 8px 24px rgba(249,115,22,0.3); position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px 28px; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; padding: 6px 14px; border-radius: 30px; transition: all 0.3s; font-size: 0.95rem; letter-spacing: 0.5px; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
        .nav-links a:hover { background: #fff; color: #f97316; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
        /* H1 */
        h1 { text-align: center; font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 40px 0 10px; text-shadow: 0 2px 8px rgba(249,115,22,0.2); }
        .subtitle { text-align: center; color: #7a5a3a; margin-bottom: 32px; font-size: 1.1rem; }
        /* 卡片通用 */
        .card { background: rgba(255,248,240,0.7); backdrop-filter: blur(8px); border-radius: 28px; padding: 28px 32px; margin: 36px 0; box-shadow: 0 10px 30px rgba(74,44,10,0.08), 0 2px 8px rgba(249,115,22,0.06); border: 1px solid rgba(255,255,255,0.4); transition: transform 0.3s; }
        .card:hover { transform: translateY(-4px); }
        h2 { font-size: 2rem; margin-bottom: 20px; color: #4a2c0a; border-left: 6px solid #f97316; padding-left: 18px; }
        h3 { font-size: 1.3rem; color: #4a2c0a; margin: 16px 0 8px; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
        .flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }
        img { max-width: 100%; border-radius: 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); object-fit: cover; height: auto; width: 100%; }
        .img-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 20px 0; }
        .img-group img { width: calc(33% - 12px); min-width: 180px; flex: 1; }
        /* 新闻 */
        .news-item { background: rgba(255,255,255,0.5); border-radius: 20px; padding: 20px; margin-bottom: 20px; border-left: 4px solid #f97316; }
        .news-item .date { font-size: 0.85rem; color: #c07a3a; font-weight: 600; margin-bottom: 6px; }
        .news-item p { color: #3a2a1a; }
        /* FAQ */
        .faq-item { border-bottom: 1px solid #e8d7c4; padding: 20px 0; }
        .faq-item:last-child { border: none; }
        .faq-q { font-weight: 700; font-size: 1.15rem; color: #4a2c0a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-a { margin-top: 12px; color: #3a2a1a; padding-left: 8px; }
        /* 页脚 */
        footer { background: #2d1b0e; color: #e0cfbe; padding: 40px 0 20px; margin-top: 60px; }
        footer a { color: #fbbf77; text-decoration: none; margin: 0 6px; }
        footer a:hover { color: #fff; }
        .footer-links { text-align: center; margin: 16px 0; font-size: 0.9rem; }
        .footer-info { text-align: center; font-size: 0.85rem; opacity: 0.8; }
        .footer-info p { margin: 6px 0; }
        /* 按钮 */
        .btn { display: inline-block; background: linear-gradient(135deg, #f97316, #d95f0e); color: #fff; padding: 14px 36px; border-radius: 60px; font-weight: 700; text-decoration: none; transition: all 0.3s; box-shadow: 0 6px 14px rgba(249,115,22,0.3); border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 10px 24px rgba(249,115,22,0.4); }
        /* 数据统计 */
        .stat-number { font-size: 2.5rem; font-weight: 800; color: #f97316; }
        /* 响应式 */
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } h1 { font-size: 2rem; } .nav-links { gap: 8px; } .nav-links a { font-size: 0.8rem; padding: 4px 10px; } .img-group img { width: calc(50% - 8px); } }
        .glow-text { color: #f97316; }
        .bg-warm { background: rgba(249,115,22,0.06); border-radius: 24px; padding: 24px; }