* { 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, #fdf2f8 0%, #fff7ed 50%, #fef3c7 100%); color: #1f2937; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航栏 */
        .navbar { background: linear-gradient(135deg, #f43f5e, #ec4899, #8b5cf6); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 8px 32px rgba(244,63,94,0.25); }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 22px; font-weight: 800; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.2); letter-spacing: 1px; }
        .nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; padding: 6px 14px; border-radius: 20px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); font-weight: 500; font-size: 14px; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
        .nav-links a:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(244,63,94,0.4); }
        /* H1 */
        .hero-section { background: linear-gradient(135deg, #ffedd5, #fce7f3, #ede9fe); padding: 60px 0 40px; text-align: center; border-bottom: 4px solid rgba(244,63,94,0.2); }
        .hero-section h1 { font-size: 2.6rem; background: linear-gradient(135deg, #f43f5e, #ec4899, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; font-weight: 800; }
        .hero-section p { font-size: 1.1rem; color: #4b5563; max-width: 800px; margin: 0 auto; line-height: 1.8; }
        /* 通用区块 */
        section { padding: 48px 0; }
        .section-title { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 32px; background: linear-gradient(135deg, #f43f5e, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .card { background: linear-gradient(135deg, #fff7ed, #fce7f3); border-radius: 20px; padding: 24px; box-shadow: 0 8px 24px rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.1); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(244,63,94,0.2); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
        .card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #1f2937; }
        .card p { color: #6b7280; font-size: 0.95rem; }
        /* 新闻列表 */
        .news-list { display: flex; flex-direction: column; gap: 24px; }
        .news-item { background: linear-gradient(135deg, #fff7ed, #fce7f3); border-radius: 16px; padding: 24px; box-shadow: 0 4px 16px rgba(244,63,94,0.08); border-left: 6px solid transparent; border-image: linear-gradient(135deg, #f43f5e, #8b5cf6) 1; transition: all 0.3s; }
        .news-item:hover { box-shadow: 0 8px 24px rgba(244,63,94,0.18); transform: translateX(4px); }
        .news-item .date { font-size: 0.85rem; color: #ec4899; font-weight: 600; margin-bottom: 6px; }
        .news-item h3 { font-size: 1.2rem; font-weight: 700; color: #1f2937; margin-bottom: 8px; }
        .news-item p { color: #6b7280; font-size: 0.95rem; line-height: 1.7; }
        /* FAQ */
        .faq-item { background: #fff; border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); border: 1px solid rgba(244,63,94,0.08); }
        .faq-item h4 { font-size: 1.05rem; font-weight: 700; color: #f43f5e; margin-bottom: 8px; }
        .faq-item p { color: #4b5563; font-size: 0.95rem; line-height: 1.7; }
        /* 数据统计 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
        .stat-card { background: linear-gradient(135deg, #f43f5e, #8b5cf6); color: #fff; border-radius: 20px; padding: 28px 20px; text-align: center; box-shadow: 0 8px 24px rgba(244,63,94,0.3); }
        .stat-card .num { font-size: 2.2rem; font-weight: 800; }
        .stat-card .label { font-size: 0.95rem; opacity: 0.9; margin-top: 6px; }
        /* 页脚 */
        .footer { background: #1f2937; color: #d1d5db; padding: 40px 0 20px; margin-top: 48px; }
        .footer a { color: #f9a8d4; text-decoration: none; }
        .footer a:hover { color: #fff; text-decoration: underline; }
        .footer .links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; font-size: 14px; }
        .footer .info { text-align: center; font-size: 13px; line-height: 2; }
        .footer .copyright { text-align: center; margin-top: 16px; border-top: 1px solid #374151; padding-top: 16px; font-size: 13px; }
        /* 图片与响应式 */
        img { max-width: 100%; height: auto; display: block; }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 1.8rem; }
            .navbar .container { flex-direction: column; align-items: flex-start; }
            .nav-links { width: 100%; justify-content: flex-start; }
        }