* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: #faf3f0;
            color: #2d2a2b;
            line-height: 1.6;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 215, 190, 0.2) 0%, transparent 50%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 玫瑰金到粉金主色调 */
        :root {
            --rose-gold: #e8a87c;
            --pink-gold: #f3cfb3;
            --metal-light: #f9e6da;
            --metal-dark: #c2957b;
            --accent: #b8735c;
            --card-bg: #fff6f0;
            --shadow: 0 8px 32px rgba(184, 115, 92, 0.15);
            --gradient: linear-gradient(135deg, #e8a87c, #f3cfb3, #f9e6da);
        }
        /* 导航 */
        .navbar {
            background: rgba(255, 246, 240, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(232, 168, 124, 0.2);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--accent);
            letter-spacing: 1px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            -webkit-text-fill-color: initial;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: #4a3f3c;
            font-weight: 500;
            transition: 0.3s;
            position: relative;
            padding: 4px 0;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rose-gold);
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        /* 通用卡片 */
        .card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(232, 168, 124, 0.15);
            backdrop-filter: blur(4px);
            transition: transform 0.3s ease, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(184, 115, 92, 0.2);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #3d2f2a;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 4px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        img {
            max-width: 100%;
            border-radius: 16px;
            object-fit: cover;
            height: auto;
        }
        .img-round {
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        /* hero */
        .hero {
            padding: 60px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2d1f1a;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #5a4b46;
            max-width: 720px;
            margin: 0 auto 24px;
        }
        .hero-img {
            margin-top: 20px;
        }
        .hero-img img {
            max-height: 400px;
            width: 100%;
            object-fit: cover;
            border-radius: 32px;
        }
        /* geo-intro */
        .geo-intro {
            padding: 40px 0;
        }
        .geo-intro p {
            font-size: 1.1rem;
            color: #3d2f2a;
            max-width: 900px;
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            padding: 20px 10px;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            color: #6b5a54;
            font-weight: 500;
        }
        /* 核心优势 */
        .advantage-card {
            text-align: center;
            padding: 32px 16px;
        }
        .advantage-card h3 {
            margin: 12px 0 8px;
            color: #3d2f2a;
        }
        /* 新闻 */
        .news-item {
            padding: 16px 0;
            border-bottom: 1px solid rgba(232, 168, 124, 0.2);
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item h3 {
            font-size: 1.2rem;
            color: #2d1f1a;
            margin-bottom: 6px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .news-item h3:hover {
            color: var(--accent);
        }
        .news-meta {
            font-size: 0.85rem;
            color: #8c7a72;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #4a3f3c;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(232, 168, 124, 0.15);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-q {
            font-weight: 600;
            color: #3d2f2a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-a {
            margin-top: 12px;
            color: #5a4b46;
            padding-left: 8px;
        }
        /* CTA */
        .cta-section {
            background: var(--gradient);
            border-radius: 32px;
            padding: 48px 32px;
            text-align: center;
            color: #2d1f1a;
        }
        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 24px;
        }
        .btn {
            display: inline-block;
            background: #2d1f1a;
            color: #f9e6da;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            box-shadow: 0 4px 16px rgba(45, 31, 26, 0.3);
        }
        .btn:hover {
            background: #4a3f3c;
            transform: scale(1.02);
        }
        /* 页脚 */
        .footer {
            background: #2d1f1a;
            color: #e6d5cc;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-radius: 32px 32px 0 0;
        }
        .footer a {
            color: #f3cfb3;
            text-decoration: none;
            transition: 0.3s;
        }
        .footer a:hover {
            color: white;
        }
        .footer-info {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: space-between;
            margin-bottom: 24px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
            padding: 16px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 16px;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 12px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                gap: 16px;
                justify-content: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }