* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #f0e6d6; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: rgba(20, 20, 40, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(232, 175, 160, 0.3); padding: 14px 0; position: sticky; top: 0; z-index: 99; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.7rem; font-weight: 700; background: linear-gradient(135deg, #e8b0a0, #d4a08a, #f5c3b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #f0e6d6; text-decoration: none; font-weight: 500; font-size: 1rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.3s; }
        .nav-links a:hover { border-bottom-color: #e8b0a0; color: #f5d6c0; }
        /* H1 */
        h1 { text-align: center; padding: 60px 20px 20px; font-size: 2.6rem; background: linear-gradient(135deg, #f5d6c0, #e8b0a0, #d4a08a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .geo-desc { max-width: 900px; margin: 0 auto 40px; text-align: center; font-size: 1.1rem; color: #d9c8b8; padding: 0 20px; }
        /* 卡片通用 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; padding: 30px 0; }
        .card { background: rgba(255, 245, 235, 0.07); backdrop-filter: blur(6px); border: 1px solid rgba(232, 175, 160, 0.25); border-radius: 28px; padding: 28px 22px; transition: all 0.3s; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
        .card:hover { transform: translateY(-6px); border-color: #e8b0a0; box-shadow: 0 16px 48px rgba(232, 175, 160, 0.2); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; border: 1px solid rgba(232, 175, 160, 0.2); }
        .card h3 { font-size: 1.4rem; margin-bottom: 10px; color: #f5d6c0; }
        .card p { color: #cbb8a8; font-size: 0.95rem; }
        .badge { display: inline-block; background: rgba(232, 175, 160, 0.2); padding: 4px 14px; border-radius: 30px; font-size: 0.8rem; color: #e8b0a0; margin-bottom: 10px; }
        /* 区块标题 */
        .section-title { font-size: 2rem; text-align: center; margin: 50px 0 20px; color: #f5d6c0; position: relative; }
        .section-title::after { content: ''; display: block; width: 80px; height: 3px; background: linear-gradient(90deg, #e8b0a0, #d4a08a); margin: 12px auto; border-radius: 4px; }
        /* FAQ */
        .faq-item { margin-bottom: 24px; background: rgba(255,245,235,0.05); border-radius: 24px; padding: 20px 24px; border-left: 4px solid #e8b0a0; }
        .faq-question { font-weight: 600; font-size: 1.15rem; color: #f5d6c0; margin-bottom: 8px; }
        .faq-answer { color: #cbb8a8; }
        /* 新闻 */
        .news-item { margin-bottom: 30px; border-bottom: 1px solid rgba(232, 175, 160, 0.15); padding-bottom: 24px; }
        .news-date { color: #d4a08a; font-size: 0.9rem; margin-bottom: 6px; }
        .news-title { font-size: 1.3rem; color: #f5d6c0; margin-bottom: 8px; }
        .news-summary { color: #b8a898; }
        /* 页脚 */
        footer { background: rgba(10, 10, 25, 0.9); border-top: 1px solid rgba(232, 175, 160, 0.2); padding: 40px 0 20px; margin-top: 60px; }
        .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
        .footer-col { flex: 1 1 220px; }
        .footer-col h4 { color: #f5d6c0; margin-bottom: 12px; font-size: 1.1rem; }
        .footer-col p, .footer-col a { color: #b8a898; font-size: 0.9rem; line-height: 1.8; text-decoration: none; display: block; }
        .footer-col a:hover { color: #e8b0a0; }
        .footer-bottom { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(232,175,160,0.1); color: #887a6e; font-size: 0.85rem; }
        .footer-links a { color: #d4a08a; margin: 0 6px; text-decoration: none; }
        .footer-links a:hover { text-decoration: underline; }
        /* 英雄区 */
        .hero { padding: 50px 0; text-align: center; }
        .hero h2 { font-size: 2.2rem; color: #f5d6c0; }
        .hero p { max-width: 700px; margin: 16px auto; color: #d9c8b8; }
        .cta-btn { display: inline-block; background: linear-gradient(135deg, #e8b0a0, #d4a08a); color: #1a1a2e; font-weight: 700; padding: 14px 44px; border-radius: 50px; text-decoration: none; margin-top: 20px; transition: 0.3s; box-shadow: 0 8px 24px rgba(232, 175, 160, 0.3); }
        .cta-btn:hover { transform: scale(1.04); box-shadow: 0 12px 36px rgba(232, 175, 160, 0.5); }
        /* 数据统计 */
        .stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 30px 0; }
        .stat-item { text-align: center; background: rgba(255,245,235,0.06); padding: 24px 32px; border-radius: 28px; min-width: 160px; border: 1px solid rgba(232,175,160,0.15); }
        .stat-number { font-size: 2.6rem; font-weight: 700; background: linear-gradient(135deg, #f5d6c0, #e8b0a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #cbb8a8; margin-top: 6px; }
        /* 品牌故事 */
        .story-content { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; padding: 30px 0; }
        .story-text { flex: 1 1 300px; }
        .story-text p { margin-bottom: 16px; color: #d9c8b8; }
        .story-image { flex: 1 1 300px; }
        .story-image img { width: 100%; border-radius: 28px; border: 1px solid rgba(232,175,160,0.2); }
        /* 核心优势 */
        .advantage-icon { font-size: 2rem; margin-bottom: 10px; }
        /* 合作伙伴 */
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 20px 0; }
        .partner-logos span { background: rgba(255,245,235,0.06); padding: 12px 28px; border-radius: 40px; border: 1px solid rgba(232,175,160,0.15); color: #d4a08a; }
        /* 愿景使命 */
        .mission-grid { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
        .mission-card { flex: 1 1 260px; text-align: center; padding: 30px 20px; }
        .mission-card h3 { color: #f5d6c0; margin-bottom: 10px; }
        /* 用户口碑 */
        .testimonial { background: rgba(255,245,235,0.05); border-radius: 28px; padding: 24px; border: 1px solid rgba(232,175,160,0.1); margin-bottom: 20px; }
        .testimonial p { font-style: italic; color: #d9c8b8; }
        .testimonial-author { margin-top: 12px; color: #e8b0a0; font-weight: 600; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 14px; }
            .nav-links a { font-size: 0.9rem; }
        }