/* 全站统一CSS - 玫瑰金到粉金，金属质感，浪漫轻奢 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #f9e6e0 0%, #f5d8d0 100%);
            color: #3d2c2a;
            line-height: 1.7;
        }
        a {
            color: #b76e79;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #9c4d58;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        header {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(183, 110, 121, 0.25);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(183, 110, 121, 0.08);
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #cf8c94, #b76e79);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            color: #5a3f3c;
        }
        .nav-links a:hover {
            border-bottom-color: #b76e79;
            color: #b76e79;
        }
        /* H1区 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 30px;
        }
        .hero-title h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(145deg, #d9a7a0, #b7727c, #a85963);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(183, 110, 121, 0.2);
            letter-spacing: 1px;
        }
        .hero-sub {
            margin-top: 16px;
            font-size: 1.1rem;
            color: #6a4f4c;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            background: rgba(255, 240, 235, 0.5);
            padding: 12px 24px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(183, 110, 121, 0.2);
        }
        /* 通用卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 40px 0;
        }
        .card {
            background: rgba(255, 245, 240, 0.7);
            backdrop-filter: blur(6px);
            border-radius: 28px;
            padding: 28px 22px;
            box-shadow: 0 10px 30px rgba(183, 110, 121, 0.12), inset 0 1px 0 rgba(255, 215, 200, 0.4);
            border: 1px solid rgba(183, 110, 121, 0.15);
            transition: 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(183, 110, 121, 0.2);
        }
        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: #7f4f54;
            border-left: 5px solid #b76e79;
            padding-left: 14px;
        }
        .card p, .card li {
            color: #4d3735;
        }
        .card img {
            width: 100%;
            border-radius: 18px;
            margin-bottom: 14px;
            object-fit: cover;
            height: 180px;
            background: #edd6d0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin: 60px 0 30px;
            background: linear-gradient(135deg, #b76e79, #cf8c94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }
        .section-title::after {
            content: '✦';
            display: block;
            font-size: 1.2rem;
            color: #b76e79;
            margin-top: 6px;
            -webkit-text-fill-color: #b76e79;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255, 240, 235, 0.5);
            backdrop-filter: blur(4px);
            border-radius: 24px;
            padding: 20px 26px;
            margin-bottom: 18px;
            border: 1px solid rgba(183, 110, 121, 0.2);
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #7f4f54;
            margin-bottom: 12px;
            cursor: default;
        }
        .faq-item p {
            color: #4d3735;
        }
        /* 新闻列表 */
        .news-item {
            background: rgba(255, 245, 240, 0.6);
            backdrop-filter: blur(6px);
            border-radius: 24px;
            padding: 20px 24px;
            margin-bottom: 20px;
            border: 1px solid rgba(183, 110, 121, 0.15);
            transition: 0.2s;
        }
        .news-item:hover {
            background: rgba(255, 235, 225, 0.7);
        }
        .news-item .date {
            font-size: 0.85rem;
            color: #b76e79;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .news-item h4 {
            font-size: 1.2rem;
            color: #5a3f3c;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #4d3735;
        }
        /* 页脚 */
        footer {
            background: rgba(255, 240, 235, 0.6);
            backdrop-filter: blur(10px);
            border-top: 2px solid rgba(183, 110, 121, 0.2);
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        footer .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        footer .footer-links a {
            margin: 0 10px 0 0;
            white-space: nowrap;
        }
        footer .footer-bottom {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(183, 110, 121, 0.15);
            text-align: center;
            font-size: 0.9rem;
            color: #6a4f4c;
        }
        footer .footer-bottom a {
            margin: 0 8px;
        }
        .friend-links {
            margin: 10px 0;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
        }
        /* CTA 按钮 */
        .cta-button {
            display: inline-block;
            background: linear-gradient(145deg, #cf8c94, #b76e79);
            color: #fff;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            box-shadow: 0 8px 20px rgba(183, 110, 121, 0.3);
            transition: 0.3s;
        }
        .cta-button:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 30px rgba(183, 110, 121, 0.4);
            color: #fff;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin: 30px 0;
        }
        .stat-item {
            text-align: center;
            background: rgba(255, 240, 235, 0.5);
            padding: 24px 36px;
            border-radius: 32px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(183, 110, 121, 0.2);
        }
        .stat-item .num {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(145deg, #b76e79, #cf8c94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .geo-box {
            background: rgba(255, 245, 240, 0.5);
            border-radius: 28px;
            padding: 30px;
            margin: 30px 0;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(183, 110, 121, 0.15);
        }
        .geo-box p {
            font-size: 1.05rem;
        }
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .partner-item {
            background: rgba(255, 240, 235, 0.4);
            padding: 14px 28px;
            border-radius: 40px;
            border: 1px solid rgba(183, 110, 121, 0.2);
            font-weight: 500;
            color: #5a3f3c;
        }
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        @media (max-width: 600px) {
            .mission-vision { grid-template-columns: 1fr; }
        }