* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: linear-gradient(135deg, #fff7ed, #fef3c7); color: #4a2c0a; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(90deg, #f97316, #4a2c0a); padding: 16px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(249,115,22,0.3); }
        .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
        .nav-links a { color: #fff; text-decoration: none; padding: 8px 20px; border-radius: 30px; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); font-weight: 600; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
        .nav-links a:hover { background: #fff; color: #f97316; transform: translateY(-2px); }
        /* 通用卡片 */
        .card { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 24px; padding: 32px; margin: 32px 0; box-shadow: 0 8px 32px rgba(249,115,22,0.12); border: 1px solid rgba(255,255,255,0.4); }
        /* 标题 */
        h1 { font-size: 2.8rem; background: linear-gradient(135deg, #f97316, #ea580c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 40px 0 16px; text-align: center; font-weight: 800; letter-spacing: -0.02em; }
        h2 { font-size: 2rem; color: #4a2c0a; margin-bottom: 24px; position: relative; display: inline-block; }
        h2::after { content: ''; display: block; width: 60%; height: 4px; background: linear-gradient(90deg, #f97316, transparent); margin-top: 8px; border-radius: 4px; }
        /* 图片 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 24px 0; }
        .img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: transform 0.3s; }
        .img-grid img:hover { transform: scale(1.03); }
        /* Hero */
        .hero { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(74,44,10,0.05)); border-radius: 32px; padding: 60px 40px; text-align: center; margin: 40px 0; }
        .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 24px; color: #7a5a3a; }
        .btn { display: inline-block; background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; padding: 14px 40px; border-radius: 40px; text-decoration: none; font-weight: 700; font-size: 1.1rem; transition: all 0.3s; box-shadow: 0 6px 20px rgba(249,115,22,0.4); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(249,115,22,0.5); }
        /* 新闻 */
        .news-item { background: #fff; border-radius: 20px; padding: 24px; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); border-left: 4px solid #f97316; transition: all 0.3s; }
        .news-item:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(249,115,22,0.1); }
        .news-item .date { color: #f97316; font-size: 0.9rem; font-weight: 600; }
        .news-item h3 { font-size: 1.3rem; margin: 8px 0; color: #4a2c0a; }
        .news-item p { color: #6b4a2a; }
        /* FAQ */
        .faq-item { border-bottom: 1px solid rgba(249,115,22,0.2); padding: 20px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h4 { color: #f97316; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
        .faq-item p { color: #5a3a1a; margin-top: 8px; }
        /* 统计 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; text-align: center; }
        .stat-number { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #f97316, #d97706); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #7a5a3a; font-weight: 500; }
        /* 页脚 */
        .footer { background: #4a2c0a; color: #f5e6d3; padding: 40px 0; margin-top: 60px; border-radius: 40px 40px 0 0; }
        .footer a { color: #fbd38d; text-decoration: none; transition: color 0.3s; }
        .footer a:hover { color: #fff; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
        .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .hero { padding: 40px 20px; }
            .nav-links { gap: 8px; }
            .nav-links a { padding: 6px 14px; font-size: 0.9rem; }
        }