* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #faf3f5;
            color: #3d2c3a;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 玫瑰金与粉金主调 */
        :root {
            --rose-gold: #e8b4b8;
            --pink-gold: #d4a3a8;
            --dark-rose: #b57c84;
            --light-pink: #fce4ec;
            --gold-shimmer: #f2d5d0;
            --card-bg: rgba(255, 245, 245, 0.75);
            --metal-border: linear-gradient(145deg, #f1d6d0, #dbb7b9);
        }
        h1, h2, h3 {
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #4a2e3a;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #d48a8a, #b76e79);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 40px 0 20px;
        }
        /* 导航 */
        nav {
            background: rgba(255, 240, 242, 0.8);
            backdrop-filter: blur(8px);
            border-bottom: 2px solid var(--rose-gold);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 4px 20px rgba(200, 140, 150, 0.15);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 26px;
        }
        .nav-links a {
            text-decoration: none;
            color: #5a3f4a;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 40px;
            background: rgba(255, 220, 220, 0.3);
            transition: 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: var(--rose-gold);
            color: #fff;
            border-color: #d38a92;
            box-shadow: 0 0 15px #e8b4b8;
        }
        /* 卡片金属质感 */
        .card {
            background: var(--card-bg);
            border-radius: 28px;
            padding: 28px 24px;
            margin: 30px 0;
            backdrop-filter: blur(4px);
            box-shadow: 0 10px 30px rgba(190, 130, 140, 0.15), inset 0 0 0 1px rgba(255, 215, 215, 0.5);
            border: 1px solid #f0d5d0;
            transition: transform 0.2s ease;
        }
        .card:hover {
            transform: scale(1.01);
            box-shadow: 0 16px 40px rgba(180, 110, 130, 0.2);
        }
        .flex-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .flex-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.05);
            display: block;
            margin: 12px auto;
            height: auto;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(145deg, #ecc4c4, #d6a0a8);
            color: white;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
            border: none;
        }
        .btn:hover {
            background: #c9868e;
            box-shadow: 0 6px 20px #dba7af;
            transform: translateY(-2px);
        }
        footer {
            background: #2b1e24;
            color: #e3cdd2;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 4px solid var(--rose-gold);
        }
        footer a {
            color: #f0ced3;
            text-decoration: none;
            transition: 0.2s;
        }
        footer a:hover {
            color: #f7b0b0;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px 20px;
            margin: 20px 0 16px;
            font-size: 0.95rem;
        }
        .footer-meta {
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.8;
            border-top: 1px solid #4f343e;
            padding-top: 18px;
        }
        .news-item {
            border-bottom: 1px solid #edd6da;
            padding: 18px 0;
        }
        .news-item h3 {
            font-size: 1.3rem;
        }
        .news-date {
            color: #a7747c;
            font-size: 0.9rem;
            font-weight: 300;
            margin-bottom: 6px;
        }
        .faq-item {
            margin: 24px 0;
        }
        .faq-item h4 {
            color: #8a5b65;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .geo-text {
            font-size: 1.1rem;
            background: #fdeef0;
            padding: 24px;
            border-radius: 28px;
            line-height: 1.8;
        }
        .stats-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #b46e7a;
        }
        .stats-label {
            font-weight: 300;
            color: #695058;
        }
        .center {
            text-align: center;
        }
        .section-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(135deg, #c0838a, #a86270);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
            .nav-links a { font-size: 0.9rem; padding: 4px 14px; }
        }