* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: linear-gradient(135deg, #0b1120 0%, #1a1a2e 100%); color: #e2e8f0; line-height: 1.6; min-height: 100vh; }
        a { color: #fbbf24; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #ffd966; }
        img { max-width: 100%; height: auto; display: block; border-radius: 12px; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(11, 17, 32, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(251, 191, 36, 0.15); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
        .nav-links a { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.5px; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #fbbf24; }
        .logo { font-size: 1.3rem; font-weight: 700; color: #fbbf24; letter-spacing: 1px; }
        /* 通用组件 */
        h1, h2, h3 { font-weight: 700; letter-spacing: 0.5px; }
        h1 { font-size: 2.5rem; color: #fbbf24; text-align: center; margin: 40px 0 20px; }
        h2 { font-size: 2rem; color: #fbbf24; margin-bottom: 24px; }
        .glass-card { background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .glass-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .section-padding { padding: 60px 0; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
        @media (max-width: 968px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 1.8rem; } }
        .btn { display: inline-block; background: #fbbf24; color: #0b1120; font-weight: 700; padding: 12px 32px; border-radius: 40px; border: none; cursor: pointer; transition: all 0.3s; font-size: 1rem; }
        .btn:hover { background: #ffd966; transform: scale(1.02); color: #0b1120; }
        .text-gold { color: #fbbf24; }
        .text-muted { color: #94a3b8; }
        .mt-2 { margin-top: 16px; }
        .mb-2 { margin-bottom: 16px; }
        .mb-3 { margin-bottom: 24px; }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
        /* Hero */
        .hero { text-align: center; padding: 80px 0 60px; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 24px auto; }
        .hero img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 28px; margin-top: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
        /* 数据统计 */
        .stat-item { text-align: center; padding: 24px; }
        .stat-number { font-size: 2.8rem; font-weight: 800; color: #fbbf24; }
        .stat-label { font-size: 0.95rem; color: #94a3b8; margin-top: 8px; }
        /* 核心优势 */
        .advantage-icon { font-size: 2.5rem; margin-bottom: 16px; }
        /* 品牌故事 */
        .story-text { font-size: 1.05rem; max-width: 800px; }
        /* 合作伙伴 */
        .partner-logo { padding: 20px; text-align: center; font-weight: 600; font-size: 1.1rem; color: #cbd5e1; }
        /* 口碑 */
        .review-text { font-style: italic; margin-bottom: 12px; }
        .review-author { font-weight: 600; color: #fbbf24; }
        /* FAQ */
        .faq-item { margin-bottom: 20px; }
        .faq-question { font-weight: 600; font-size: 1.1rem; color: #fbbf24; margin-bottom: 8px; cursor: pointer; }
        .faq-answer { padding-left: 8px; border-left: 3px solid #fbbf24; }
        /* 新闻 */
        .news-card { padding: 24px; }
        .news-date { color: #94a3b8; font-size: 0.85rem; margin-bottom: 8px; }
        .news-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
        .news-summary { color: #cbd5e1; }
        /* 页脚 */
        footer { background: rgba(0,0,0,0.5); backdrop-filter: blur(12px); border-top: 1px solid rgba(251, 191, 36, 0.1); padding: 40px 0 20px; margin-top: 60px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; margin-bottom: 24px; }
        .footer-links a { color: #94a3b8; font-size: 0.9rem; }
        .footer-links a:hover { color: #fbbf24; }
        .footer-address { text-align: center; color: #64748b; font-size: 0.85rem; margin-bottom: 12px; }
        .footer-copy { text-align: center; color: #475569; font-size: 0.8rem; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; }
        .friend-links { text-align: center; margin: 16px 0; font-size: 0.9rem; }
        .friend-links a { color: #94a3b8; margin: 0 6px; }
        .friend-links a:hover { color: #fbbf24; }
        /* 图片 */
        .img-grid img { width: 100%; height: 200px; object-fit: cover; }
        @media (max-width: 640px) { .img-grid img { height: 150px; } }
        /* geo */
        .geo-text { max-width: 900px; margin: 0 auto 40px; text-align: center; font-size: 1.05rem; color: #cbd5e1; }