* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: linear-gradient(135deg, #fdf2f8 0%, #fff1f2 50%, #fce7f3 100%); min-height: 100vh; color: #1a1a2e; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: linear-gradient(135deg, #ff6b6b, #ff8e53, #c084fc); padding: 16px 0; box-shadow: 0 8px 32px rgba(255,107,107,0.3); position: sticky; top: 0; z-index: 1000; }
        .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 24px; }
        .nav-links a { color: white; text-decoration: none; font-weight: 600; padding: 8px 18px; border-radius: 30px; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); transition: all 0.3s; letter-spacing: 0.5px; }
        .nav-links a:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        /* 标题区 */
        .hero-section { background: linear-gradient(135deg, #ff6b6b, #ff8e53, #a855f7); padding: 60px 0 80px; text-align: center; color: white; margin-bottom: 30px; clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
        .hero-section h1 { font-size: 2.8rem; font-weight: 800; text-shadow: 0 4px 20px rgba(0,0,0,0.2); margin-bottom: 20px; }
        .hero-section p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; opacity: 0.95; }
        /* 通用卡片 */
        .card { background: linear-gradient(135deg, #fff5f5, #fef3c7, #ede9fe); border-radius: 24px; padding: 30px; box-shadow: 0 10px 40px rgba(255,107,107,0.1); margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.6); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(255,107,107,0.15); }
        h2 { font-size: 2rem; background: linear-gradient(135deg, #ff6b6b, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; text-align: center; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
        img { max-width: 100%; border-radius: 16px; height: auto; display: block; width: 100%; object-fit: cover; }
        .img-rounded { border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.05); }
        .btn { display: inline-block; padding: 12px 32px; background: linear-gradient(135deg, #ff6b6b, #a855f7); color: white; border-radius: 40px; text-decoration: none; font-weight: 700; transition: all 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(168,85,247,0.3); }
        .emoji-big { font-size: 2.4rem; margin-bottom: 8px; }
        /* 页脚 */
        .footer { background: linear-gradient(135deg, #1e1b4b, #2e1065); color: #e0e7ff; padding: 40px 0 20px; margin-top: 40px; border-radius: 40px 40px 0 0; }
        .footer a { color: #c4b5fd; text-decoration: none; transition: 0.3s; }
        .footer a:hover { color: white; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 20px; }
        .footer-info { text-align: center; line-height: 2; font-size: 0.95rem; }
        .footer-info p { margin: 4px 0; }
        /* 新闻卡片 */
        .news-item { padding: 20px; border-left: 4px solid #ff6b6b; background: rgba(255,255,255,0.5); border-radius: 0 16px 16px 0; margin-bottom: 16px; }
        .news-date { color: #a855f7; font-weight: 700; font-size: 0.9rem; }
        /* FAQ */
        .faq-item { padding: 18px 0; border-bottom: 1px solid rgba(168,85,247,0.15); }
        .faq-q { font-weight: 700; font-size: 1.1rem; color: #6d28d9; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .faq-a { color: #334155; line-height: 1.7; padding-left: 28px; }
        /* 图片自适应 */
        .img-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 20px 0; }
        .img-gallery img { height: 180px; object-fit: cover; border-radius: 16px; }
        @media (max-width: 640px) { .hero-section h1 { font-size: 2rem; } .container { padding: 0 12px; } }