* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #2d1b69 50%, #1a0a2e 100%); color: #e0d4f7; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: rgba(26, 10, 46, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(217, 70, 239, 0.2); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, #d946ef, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nav-links { display: flex; gap: 28px; }
        .nav-links a { color: #c4b5fd; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: 0.3s; }
        .nav-links a:hover { color: #d946ef; text-shadow: 0 0 12px #d946ef; }
        /* 通用标题 */
        h1 { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #f0abfc, #d946ef); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 40px 0 16px; text-align: center; line-height: 1.2; }
        h2 { font-size: 2rem; font-weight: 700; color: #e9d5ff; margin-bottom: 24px; text-align: center; }
        h2 span { border-bottom: 3px solid #d946ef; padding-bottom: 6px; }
        /* 卡片 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
        .card { background: rgba(46, 16, 80, 0.5); border: 1px solid rgba(217, 70, 239, 0.3); border-radius: 20px; padding: 24px; backdrop-filter: blur(4px); box-shadow: 0 0 20px rgba(217, 70, 239, 0.1); transition: 0.3s; }
        .card:hover { border-color: #d946ef; box-shadow: 0 0 30px #d946ef, inset 0 0 30px rgba(217, 70, 239, 0.05); transform: translateY(-4px); }
        .card img { width: 100%; border-radius: 12px; margin-bottom: 14px; object-fit: cover; height: 180px; }
        .card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #f0d4ff; }
        .card p { color: #b8a5d4; line-height: 1.6; font-size: 0.95rem; }
        /* 特色区域 */
        .hero-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; position: relative; }
        .hero-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(217, 70, 239, 0.15), transparent 70%); pointer-events: none; }
        .hero-content { max-width: 800px; position: relative; z-index: 2; }
        .hero-content p { font-size: 1.2rem; color: #c4b5fd; margin: 20px 0 32px; line-height: 1.7; }
        .btn-glow { display: inline-block; background: linear-gradient(135deg, #d946ef, #7c3aed); padding: 14px 40px; border-radius: 50px; color: #fff; font-weight: 700; text-decoration: none; font-size: 1.1rem; box-shadow: 0 0 30px rgba(217, 70, 239, 0.4); transition: 0.3s; border: none; cursor: pointer; }
        .btn-glow:hover { box-shadow: 0 0 50px #d946ef; transform: scale(1.05); }
        /* 统计 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 40px 0; }
        .stat-item { background: rgba(46, 16, 80, 0.6); border-radius: 16px; padding: 24px; text-align: center; border: 1px solid rgba(217, 70, 239, 0.2); }
        .stat-number { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #d946ef, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #a78bfa; margin-top: 8px; font-size: 1rem; }
        /* 优势 */
        .advantage-icon { font-size: 2.5rem; margin-bottom: 12px; }
        /* FAQ */
        .faq-item { background: rgba(46, 16, 80, 0.4); border: 1px solid rgba(217, 70, 239, 0.2); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px; transition: 0.3s; }
        .faq-item:hover { border-color: #d946ef; }
        .faq-question { font-weight: 700; font-size: 1.1rem; color: #f0d4ff; margin-bottom: 8px; }
        .faq-answer { color: #b8a5d4; line-height: 1.7; }
        /* 新闻 */
        .news-item { background: rgba(46, 16, 80, 0.4); border: 1px solid rgba(217, 70, 239, 0.2); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
        .news-date { color: #a78bfa; font-size: 0.85rem; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 700; color: #f0d4ff; margin-bottom: 8px; }
        .news-summary { color: #b8a5d4; line-height: 1.7; }
        /* 页脚 */
        footer { background: rgba(26, 10, 46, 0.95); border-top: 1px solid rgba(217, 70, 239, 0.2); margin-top: 60px; padding: 40px 0 24px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
        .footer-col h4 { color: #d946ef; margin-bottom: 16px; font-size: 1.1rem; }
        .footer-col p, .footer-col a { color: #9a85c0; line-height: 1.8; font-size: 0.9rem; text-decoration: none; display: block; }
        .footer-col a:hover { color: #d946ef; }
        .footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(217, 70, 239, 0.15); text-align: center; color: #7c6aa0; font-size: 0.85rem; }
        .footer-bottom a { color: #a78bfa; text-decoration: none; margin: 0 6px; }
        .footer-bottom a:hover { color: #d946ef; }
        .friend-links { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
        .friend-links a { color: #a78bfa; text-decoration: none; padding: 0 8px; border-right: 1px solid #4a3770; }
        .friend-links a:last-child { border-right: none; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .nav-links { gap: 12px; flex-wrap: wrap; justify-content: center; }
            .nav-links a { font-size: 0.85rem; }
        }
        /* geo */
        .geo-box { background: rgba(46, 16, 80, 0.3); border-radius: 24px; padding: 32px; margin: 32px 0; border: 1px solid rgba(217, 70, 239, 0.15); }
        .geo-box p { line-height: 1.8; color: #c4b5fd; }
        .img-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 32px 0; }
        .img-row img { width: 200px; height: 140px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(217, 70, 239, 0.3); transition: 0.3s; }
        .img-row img:hover { border-color: #d946ef; box-shadow: 0 0 20px #d946ef; }
        .cta-section { text-align: center; padding: 60px 0; }
        .brand-story { padding: 40px 0; }
        .brand-story p { max-width: 800px; margin: 0 auto; text-align: center; color: #c4b5fd; line-height: 1.8; }