* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, sans-serif; }
        body { background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #f5e6d3; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 玫瑰金-粉金主色调 */
        :root { --rose-gold: #e8b4b8; --pink-gold: #d4a0a7; --deep-rose: #c08497; --gold-light: #f0d5c9; --metal: #b8a9a0; }
        /* 导航 */
        nav { background: rgba(26,26,46,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(232,180,184,0.3); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .nav-links { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
        .nav-links a { color: var(--gold-light); text-decoration: none; font-size: 1rem; letter-spacing: 1px; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.3s; font-weight: 400; }
        .nav-links a:hover { border-bottom-color: var(--rose-gold); color: #fff; text-shadow: 0 0 8px rgba(232,180,184,0.5); }
        /* H1 区 */
        .hero-section { text-align: center; padding: 60px 20px 30px; }
        .hero-section h1 { font-size: 2.8rem; background: linear-gradient(135deg, #f5d5c9, #e8b4b8, #d4a0a7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; letter-spacing: 2px; margin-bottom: 20px; }
        .hero-section p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; color: #dccfc7; }
        /* 通用卡片金属质感 */
        .card-metal { background: linear-gradient(145deg, rgba(40,35,50,0.7), rgba(30,25,40,0.8)); border: 1px solid rgba(232,180,184,0.25); border-radius: 24px; padding: 28px 24px; backdrop-filter: blur(6px); box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,215,200,0.08); }
        .section-title { font-size: 1.8rem; font-weight: 700; color: var(--rose-gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
        .section-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--rose-gold), transparent); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
        .grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
        img { max-width: 100%; border-radius: 16px; display: block; height: auto; border: 1px solid rgba(232,180,184,0.15); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        .mt-40 { margin-top: 40px; }
        .mb-24 { margin-bottom: 24px; }
        .btn-rose { background: linear-gradient(135deg, #d4a0a7, #e8b4b8); border: none; color: #1a1a2e; font-weight: 700; padding: 12px 36px; border-radius: 40px; font-size: 1rem; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(212,160,167,0.3); }
        .btn-rose:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212,160,167,0.5); }
        /* 新闻列表 */
        .news-item { padding: 20px 0; border-bottom: 1px solid rgba(232,180,184,0.15); }
        .news-item:last-child { border: none; }
        .news-date { color: var(--metal); font-size: 0.85rem; margin-bottom: 6px; letter-spacing: 0.5px; }
        .news-title { font-size: 1.3rem; font-weight: 600; color: var(--gold-light); margin-bottom: 8px; }
        .news-summary { color: #b8a9a0; line-height: 1.6; }
        /* FAQ */
        .faq-q { font-weight: 600; color: var(--rose-gold); margin-top: 20px; margin-bottom: 8px; font-size: 1.1rem; }
        .faq-a { color: #dccfc7; line-height: 1.7; padding-left: 4px; margin-bottom: 18px; }
        /* 页脚 */
        footer { background: rgba(16,16,30,0.9); border-top: 1px solid rgba(232,180,184,0.2); margin-top: 60px; padding: 40px 0 20px; text-align: center; color: #a09088; font-size: 0.9rem; }
        footer a { color: var(--pink-gold); text-decoration: none; margin: 0 6px; }
        footer a:hover { text-decoration: underline; }
        .footer-links { margin: 20px 0 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
        .footer-addr { margin: 12px 0; }
        .copyright { opacity: 0.7; font-size: 0.8rem; margin-top: 20px; }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .nav-links { gap: 16px; }
        }
        /* geo-intro */
        .geo-box { background: rgba(232,180,184,0.08); border-left: 4px solid var(--rose-gold); padding: 20px 24px; border-radius: 12px; margin: 20px 0; }
        .geo-box p { line-height: 1.8; }
        .tag { display: inline-block; background: rgba(212,160,167,0.2); color: var(--rose-gold); padding: 2px 14px; border-radius: 20px; font-size: 0.8rem; border: 1px solid rgba(232,180,184,0.3); }
        .stats-number { font-size: 2.4rem; font-weight: 800; color: var(--rose-gold); line-height: 1.2; }
        .stats-label { color: #b8a9a0; font-size: 0.9rem; }
        .testimonial-card { background: rgba(30,25,40,0.6); border-radius: 20px; padding: 20px; border: 1px solid rgba(232,180,184,0.15); }
        .testimonial-card p { font-style: italic; color: #dccfc7; }
        .testimonial-author { color: var(--pink-gold); margin-top: 12px; font-weight: 500; }