* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%); color: #f0e6ff; font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(26, 10, 46, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(217, 70, 239, 0.2); position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
        .logo { font-size: 1.6rem; font-weight: 800; background: linear-gradient(90deg, #d946ef, #f0abfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { color: #e9d5ff; text-decoration: none; font-size: 1rem; font-weight: 500; transition: 0.3s; }
        .nav-links a:hover { color: #d946ef; text-shadow: 0 0 12px #d946ef; }
        /* 通用 */
        h1 { font-size: 3rem; font-weight: 800; text-align: center; margin: 60px 0 16px; background: linear-gradient(90deg, #f0abfc, #d946ef, #f0abfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        h2 { font-size: 2.2rem; font-weight: 700; margin: 48px 0 24px; color: #f0abfc; border-left: 4px solid #d946ef; padding-left: 16px; }
        .hero { text-align: center; padding: 80px 0 40px; }
        .hero p { font-size: 1.2rem; color: #c4b5fd; max-width: 800px; margin: 0 auto 32px; }
        .hero-img { max-width: 100%; border-radius: 20px; box-shadow: 0 0 40px rgba(217,70,239,0.3); margin: 24px 0; }
        .btn { display: inline-block; background: linear-gradient(135deg, #d946ef, #a21caf); color: #fff; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; border: none; cursor: pointer; }
        .btn:hover { transform: scale(1.05); box-shadow: 0 0 24px #d946ef; }
        /* 卡片 */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
        .card { background: rgba(255,255,255,0.04); border: 1px solid rgba(217,70,239,0.25); border-radius: 20px; padding: 28px; backdrop-filter: blur(4px); transition: 0.3s; }
        .card:hover { border-color: #d946ef; box-shadow: 0 0 30px rgba(217,70,239,0.2); transform: translateY(-4px); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #f0abfc; }
        .card p { color: #c4b5fd; }
        /* 新闻 */
        .news-date { color: #a78bfa; font-size: 0.9rem; margin-bottom: 8px; }
        /* FAQ */
        .faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(217,70,239,0.15); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; }
        .faq-item h4 { color: #f0abfc; font-size: 1.1rem; margin-bottom: 8px; }
        .faq-item p { color: #c4b5fd; }
        /* 统计 */
        .stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; text-align: center; margin: 40px 0; }
        .stat { flex: 1 1 180px; }
        .stat-num { font-size: 3rem; font-weight: 800; background: linear-gradient(90deg, #d946ef, #f0abfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #a78bfa; font-size: 1rem; margin-top: 4px; }
        /* 合作伙伴 */
        .partner-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: center; }
        .partner-grid img { width: 100px; height: auto; opacity: 0.7; transition: 0.3s; filter: grayscale(0.5); }
        .partner-grid img:hover { opacity: 1; filter: grayscale(0); }
        /* 页脚 */
        footer { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(217,70,239,0.2); padding: 48px 24px 24px; margin-top: 80px; }
        .footer-inner { max-width: 1280px; margin: 0 auto; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 24px; }
        .footer-links a { color: #a78bfa; text-decoration: none; font-size: 0.95rem; }
        .footer-links a:hover { color: #d946ef; }
        .footer-info { text-align: center; color: #7c6a9e; font-size: 0.9rem; line-height: 2; }
        .footer-info a { color: #a78bfa; text-decoration: none; }
        .footer-info a:hover { color: #d946ef; }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 16px; flex-wrap: wrap; }
            .grid-3 { grid-template-columns: 1fr; }
        }