* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'Noto Sans SC', sans-serif; background: linear-gradient(145deg, #1a0f14 0%, #2a1a20 100%); color: #f5e6e0; line-height: 1.7; }
        a { color: #f7d6c4; text-decoration: none; transition: 0.3s; }
        a:hover { color: #ffb8a0; text-shadow: 0 0 10px rgba(255, 150, 120, 0.3); }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航栏 */
        nav { background: rgba(26, 15, 20, 0.85); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255, 200, 180, 0.1); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
        nav .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #f7c9b0, #e8a28c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: 0.25s; }
        .nav-links a:hover { border-bottom-color: #f7c9b0; }
        /* H1 */
        h1 { font-size: 3rem; font-weight: 700; text-align: center; margin: 48px 0 16px; background: linear-gradient(135deg, #fadbd0, #eab09a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 3px; }
        @media (max-width: 600px) { h1 { font-size: 2rem; } }
        /* 通用卡片 */
        .card { background: rgba(255, 220, 200, 0.06); border: 1px solid rgba(255, 200, 180, 0.12); border-radius: 28px; padding: 32px; backdrop-filter: blur(6px); box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 200, 180, 0.05); margin-bottom: 32px; }
        .card h2, .card h3 { color: #f7d6c4; margin-bottom: 16px; font-weight: 500; }
        .card h2 { font-size: 1.8rem; border-left: 4px solid #f7c9b0; padding-left: 16px; }
        .card p { color: #dccbc4; margin-bottom: 12px; }
        /* 图片网格 */
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin: 24px 0; }
        .img-grid img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(255, 200, 180, 0.15); box-shadow: 0 8px 24px rgba(0,0,0,0.4); transition: 0.3s; }
        .img-grid img:hover { transform: scale(1.02); border-color: #f7c9b0; }
        /* 新闻卡片 */
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .news-item { background: rgba(255, 210, 190, 0.05); border-radius: 20px; padding: 24px; border: 1px solid rgba(255, 200, 180, 0.08); transition: 0.3s; }
        .news-item:hover { background: rgba(255, 210, 190, 0.08); border-color: #f7c9b0; }
        .news-item .date { color: #c8a898; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 8px; }
        .news-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
        .news-item p { color: #cbb8b0; }
        /* FAQ */
        .faq-item { border-bottom: 1px solid rgba(255, 200, 180, 0.08); padding: 20px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { color: #f7c9b0; font-size: 1.2rem; margin-bottom: 10px; }
        .faq-item p { color: #d4c0b8; }
        /* 统计数字 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
        .stat-num { font-size: 2.8rem; font-weight: 700; background: linear-gradient(135deg, #f7d6c4, #eab09a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #b8a098; font-size: 0.95rem; margin-top: 6px; }
        /* 愿景/合作等 */
        .flex-row { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; }
        .flex-row .text { flex: 1; min-width: 280px; }
        .flex-row .img-box { flex: 1; min-width: 280px; }
        .flex-row .img-box img { width: 100%; border-radius: 20px; border: 1px solid rgba(255, 200, 180, 0.1); }
        /* 口碑 */
        .review-card { background: rgba(255, 210, 190, 0.05); padding: 24px; border-radius: 20px; border: 1px solid rgba(255, 200, 180, 0.06); }
        .review-card p { font-style: italic; }
        .review-card .author { margin-top: 12px; color: #c8a898; }
        /* 页脚 */
        footer { background: rgba(10, 6, 8, 0.9); border-top: 1px solid rgba(255, 200, 180, 0.08); padding: 48px 0 24px; margin-top: 60px; }
        footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
        footer .col { flex: 1; min-width: 200px; }
        footer .col h3 { color: #f7d6c4; margin-bottom: 16px; }
        footer .col p, footer .col a { color: #b8a098; font-size: 0.9rem; }
        footer .links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
        footer .links a { margin-right: 12px; }
        footer .bottom { width: 100%; text-align: center; border-top: 1px solid rgba(255, 200, 180, 0.06); padding-top: 24px; margin-top: 24px; color: #8a7a72; font-size: 0.8rem; }
        .btn-cta { display: inline-block; padding: 12px 32px; background: linear-gradient(135deg, #f7c9b0, #d99a82); color: #1a0f14; font-weight: 600; border-radius: 40px; transition: 0.3s; margin-top: 12px; }
        .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(247, 201, 176, 0.2); }
        hr { border: none; border-top: 1px solid rgba(255, 200, 180, 0.08); margin: 40px 0; }