* { 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, #fdf6f0 0%, #fce9d8 100%); color: #2d1b0a; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(90deg, #f97316, #4a2c0a); padding: 15px 0; box-shadow: 0 4px 20px rgba(249,115,22,0.3); position: sticky; top: 0; z-index: 100; }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .navbar .logo { font-size: 1.8rem; font-weight: 800; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }
        .navbar .logo span { color: #ffd966; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 8px 14px; border-radius: 30px; transition: all 0.3s; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
        .nav-links a:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
        /* 通用 */
        h1 { font-size: 2.6rem; background: linear-gradient(135deg, #f97316, #b85e0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 30px 0 15px; text-align: center; }
        h2 { font-size: 2rem; color: #4a2c0a; margin: 30px 0 20px; border-left: 6px solid #f97316; padding-left: 18px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 25px 0; }
        .card { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 24px; padding: 24px; box-shadow: 0 8px 32px rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.15); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(249,115,22,0.2); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 15px; }
        .card h3 { color: #4a2c0a; font-size: 1.2rem; margin-bottom: 10px; }
        .card p { color: #5a3d1a; font-size: 0.95rem; }
        .btn { display: inline-block; background: linear-gradient(135deg, #f97316, #d96b0a); color: #fff; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 700; box-shadow: 0 6px 20px rgba(249,115,22,0.35); transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 10px 30px rgba(249,115,22,0.5); }
        .stats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; background: rgba(249,115,22,0.08); padding: 30px; border-radius: 40px; margin: 40px 0; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 2.6rem; font-weight: 800; color: #f97316; }
        .stat-label { font-size: 1rem; color: #4a2c0a; }
        .geo-section { background: rgba(249,115,22,0.06); border-radius: 30px; padding: 30px; margin: 30px 0; }
        .faq-item { margin-bottom: 20px; }
        .faq-question { font-weight: 700; color: #4a2c0a; background: rgba(249,115,22,0.1); padding: 14px 20px; border-radius: 16px; cursor: default; }
        .faq-answer { padding: 14px 20px; color: #3d2b0f; background: rgba(255,255,255,0.5); border-radius: 0 0 16px 16px; }
        .news-list .news-item { padding: 20px; margin-bottom: 20px; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border-radius: 20px; border-left: 5px solid #f97316; }
        .news-date { font-size: 0.85rem; color: #b85e0a; font-weight: 600; }
        .footer { background: linear-gradient(135deg, #4a2c0a, #2d1b0a); color: #f5e6d3; padding: 40px 0 20px; margin-top: 50px; }
        .footer a { color: #fbbf77; text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer .links { margin: 15px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
        .footer .copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; text-align: center; font-size: 0.9rem; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 10px; }
            .nav-links a { font-size: 0.85rem; padding: 6px 12px; }
        }