* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, Helvetica, Arial, sans-serif; background: #0d0b10; color: #f0e6ef; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        /* 玫瑰金到粉金主色调 */
        :root { --rose-gold: #e8b4b8; --pink-gold: #f2c9c9; --deep-rose: #c78a8f; --gold-light: #f0d9d0; --dark-bg: #1a1218; --card-bg: #261e26; --metal-border: linear-gradient(145deg, #d4afb0, #a87d7f); }
        /* 导航 */
        .navbar { background: rgba(13, 11, 16, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid #3e2e34; position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .nav-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
        .nav-links a { color: #f0d9d0; text-decoration: none; font-weight: 500; font-size: 15px; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.3s; letter-spacing: 0.5px; }
        .nav-links a:hover { border-bottom-color: #e8b4b8; color: #ffd9d9; }
        .nav-extra a { color: #b8a0a8; font-size: 14px; margin-left: 10px; }
        /* 通用卡片 */
        .card { background: var(--card-bg); border-radius: 24px; padding: 28px; margin-bottom: 30px; border: 1px solid #3e2a32; background-image: linear-gradient(145deg, #2a1e26, #1e141c); box-shadow: 0 12px 30px rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
        .metal-card { background: linear-gradient(145deg, #2f2028, #1f141c); border: 1px solid #5a3e44; box-shadow: 0 8px 20px rgba(180, 130, 140, 0.15); }
        h1, h2, h3 { font-weight: 600; letter-spacing: 0.5px; }
        h1 { font-size: 2.4rem; background: linear-gradient(135deg, #f7d9d9, #eab8b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 20px rgba(232, 180, 184, 0.3); margin-bottom: 20px; }
        h2 { font-size: 1.8rem; color: #f7d9d9; margin-bottom: 20px; border-left: 4px solid #e8b4b8; padding-left: 16px; }
        .text-rose { color: #f0c8cb; }
        .btn-rose { background: linear-gradient(145deg, #d49a9f, #bc7e84); border: none; color: #1a1218; font-weight: 600; padding: 12px 28px; border-radius: 40px; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 14px rgba(180, 100, 110, 0.3); }
        .btn-rose:hover { transform: scale(1.02); background: #e0a7ac; }
        img { max-width: 100%; height: auto; border-radius: 20px; display: block; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; }
        /* 新闻 */
        .news-item { padding: 18px 0; border-bottom: 1px solid #3a2a30; }
        .news-item:last-child { border-bottom: none; }
        .news-date { color: #b09098; font-size: 0.9rem; margin-bottom: 6px; display: inline-block; background: #2a1e26; padding: 2px 12px; border-radius: 30px; }
        .news-title { font-size: 1.2rem; font-weight: 600; color: #f2d5d0; }
        .news-summary { color: #c8b4b8; font-size: 0.95rem; margin-top: 8px; }
        /* FAQ */
        .faq-item { margin-bottom: 20px; border-bottom: 1px dashed #3e2a34; padding-bottom: 20px; }
        .faq-q { font-weight: 600; color: #f2c9c9; font-size: 1.1rem; margin-bottom: 10px; }
        .faq-a { color: #d4c0c4; }
        /* 页脚 */
        .footer { background: #0f0b10; border-top: 1px solid #2e2026; padding: 40px 0 20px; margin-top: 30px; }
        .footer a { color: #c8a8b0; text-decoration: none; margin: 0 10px; }
        .footer a:hover { color: #f0c0c8; }
        .footer-links { text-align: center; margin-bottom: 16px; }
        .footer-info { text-align: center; color: #8a7a80; font-size: 0.85rem; }
        /* 响应式 */
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 1.8rem; } .nav-links { justify-content: center; } }
        /* 图片占位样式 */
        .img-fit { object-fit: cover; width: 100%; height: 200px; border-radius: 16px; }
        .hero-section { padding: 50px 0 30px; text-align: center; }
        .hero-img { max-height: 380px; margin: 20px auto; border-radius: 28px; }
        .stat-number { font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, #f7d9d9, #eab8b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .partner-img { width: 100px; height: auto; opacity: 0.7; margin: 10px; }
        .tag { background: #2a1a24; padding: 4px 14px; border-radius: 30px; color: #e8b4b8; font-size: 0.8rem; display: inline-block; }
        hr { border: none; border-top: 1px solid #3a2a30; margin: 20px 0; }