* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, sans-serif; background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 30%, #f48fb1 70%, #f06292 100%); color: #3e2c2f; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        header { background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(18px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); padding: 16px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.5); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo-area { font-size: 1.5rem; font-weight: 700; background: linear-gradient(135deg, #c2185b, #e91e63); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #4a2c34; text-decoration: none; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { border-bottom-color: #e91e63; color: #c2185b; }
        /* Hero */
        .hero { padding: 60px 0; text-align: center; }
        .hero h1 { font-size: 2.8rem; background: linear-gradient(135deg, #880e4f, #c2185b, #e91e63); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; font-weight: 800; letter-spacing: 2px; }
        .hero p { font-size: 1.2rem; max-width: 780px; margin: 0 auto 30px; color: #4a2c34; opacity: 0.9; }
        .hero img { max-width: 100%; height: auto; border-radius: 32px; box-shadow: 0 20px 60px rgba(233,30,99,0.25); margin: 20px 0; }
        /* 通用卡片/区块 */
        .section-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border-radius: 48px; padding: 40px 36px; margin: 40px 0; box-shadow: 0 16px 48px rgba(0,0,0,0.06); border: 1px solid rgba(255,255,255,0.7); }
        .section-title { font-size: 2rem; font-weight: 700; margin-bottom: 28px; background: linear-gradient(135deg, #ad1457, #e91e63); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
        .stat-item { text-align: center; padding: 20px; background: rgba(255,255,255,0.5); border-radius: 30px; border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
        .stat-number { font-size: 2.4rem; font-weight: 800; color: #c2185b; }
        .stat-label { color: #5c3a42; font-size: 1rem; margin-top: 6px; }
        .feature-icon { font-size: 2.5rem; margin-bottom: 12px; }
        .feature-card { background: rgba(255,255,255,0.5); border-radius: 30px; padding: 24px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5); transition: transform 0.2s; }
        .feature-card:hover { transform: translateY(-4px); }
        .img-fluid { width: 100%; height: auto; border-radius: 24px; margin: 16px 0; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
        /* 新闻 */
        .news-item { background: rgba(255,255,255,0.5); border-radius: 28px; padding: 24px; margin-bottom: 18px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5); }
        .news-item h3 { font-size: 1.3rem; color: #2a1b1f; }
        .news-date { font-size: 0.85rem; color: #b05a6a; font-weight: 500; margin: 6px 0 10px; }
        .news-item p { color: #4a2c34; }
        /* FAQ */
        .faq-item { background: rgba(255,255,255,0.4); border-radius: 30px; padding: 20px 24px; margin-bottom: 14px; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.4); }
        .faq-item strong { color: #c2185b; font-size: 1.1rem; display: block; margin-bottom: 8px; }
        /* 页脚 */
        footer { background: rgba(255,255,255,0.3); backdrop-filter: blur(16px); padding: 40px 0 20px; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.4); }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin-bottom: 20px; }
        .footer-links a { color: #4a2c34; text-decoration: none; font-size: 0.95rem; }
        .footer-links a:hover { color: #c2185b; }
        .footer-bottom { text-align: center; font-size: 0.9rem; color: #5c3a42; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 20px; }
        .footer-bottom a { color: #4a2c34; text-decoration: none; margin: 0 8px; }
        .footer-bottom a:hover { color: #c2185b; }
        .img-gallery { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin: 20px 0; }
        .img-gallery img { width: 240px; height: 160px; object-fit: cover; border-radius: 28px; box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
        hr { border: none; height: 1px; background: linear-gradient(90deg, transparent, rgba(233,30,99,0.3), transparent); margin: 20px 0; }
        .geo-text { font-size: 1.05rem; line-height: 1.8; }
        @media (max-width: 640px) { .hero h1 { font-size: 1.9rem; } .section-card { padding: 24px 18px; } }