* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            background: linear-gradient(145deg, #fbe9e7, #fce4ec);
            color: #3e2c2c;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 30px;
        }
        /* 导航 */
        nav {
            background: rgba(255, 245, 245, 0.65);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 12px 30px;
            margin: 20px 0 30px;
            box-shadow: 0 10px 30px rgba(210, 120, 120, 0.15);
            border: 1px solid rgba(255, 215, 215, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #5a3d3d;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            transition: 0.3s;
            background: rgba(255, 220, 215, 0.2);
            letter-spacing: 0.5px;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #f5b7b1, #f8a5a5);
            color: #fff;
            box-shadow: 0 4px 12px rgba(245, 150, 140, 0.4);
        }
        .logo-icon {
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(135deg, #d4a09e, #b87370);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 600;
            background: linear-gradient(135deg, #b87370, #d4a09e, #f0c0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 15px 0 10px;
            letter-spacing: 1px;
            text-shadow: 0 4px 20px rgba(180, 100, 100, 0.2);
        }
        .geo-sub {
            text-align: center;
            font-size: 1.15rem;
            color: #6b4a4a;
            max-width: 900px;
            margin: 0 auto 30px;
            background: rgba(255, 235, 230, 0.5);
            padding: 20px 30px;
            border-radius: 40px;
            backdrop-filter: blur(4px);
            border: 1px solid #f0d0ca;
        }
        /* 卡片通用金属质感 */
        .card-metal {
            background: rgba(255, 245, 240, 0.6);
            backdrop-filter: blur(8px);
            border-radius: 48px;
            padding: 30px 35px;
            margin: 30px 0;
            border: 1px solid rgba(255, 200, 190, 0.5);
            box-shadow: 0 20px 40px rgba(150, 80, 70, 0.08), inset 0 2px 4px rgba(255, 255, 255, 0.7);
        }
        .card-metal h2 {
            font-size: 2rem;
            font-weight: 500;
            background: linear-gradient(135deg, #b87370, #d4a09e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            display: inline-block;
            border-bottom: 3px solid #ecc7c0;
            padding-bottom: 6px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 25px;
        }
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
        .stat-item, .advantage-item, .feature-item, .partner-item, .testimonial-item, .timeline-item, .event-item {
            background: rgba(255, 235, 230, 0.4);
            backdrop-filter: blur(4px);
            border-radius: 32px;
            padding: 22px 20px;
            border: 1px solid #f5d6d0;
            transition: 0.2s;
            box-shadow: 0 6px 14px rgba(160, 100, 90, 0.06);
        }
        .stat-item:hover, .advantage-item:hover {
            transform: translateY(-5px);
            border-color: #ecc0b8;
            box-shadow: 0 12px 28px rgba(180, 100, 90, 0.12);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 600;
            background: linear-gradient(145deg, #b87370, #d4a09e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        img {
            width: 100%;
            height: auto;
            border-radius: 28px;
            box-shadow: 0 8px 20px rgba(120, 70, 60, 0.1);
            object-fit: cover;
            aspect-ratio: 16/9;
            margin: 10px 0;
            border: 2px solid rgba(255, 215, 205, 0.3);
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .btn-rose {
            display: inline-block;
            background: linear-gradient(135deg, #d4a09e, #b87370);
            color: #fff;
            padding: 12px 32px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 6px 18px rgba(180, 100, 90, 0.2);
            transition: 0.3s;
            border: none;
        }
        .btn-rose:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 28px rgba(180, 100, 90, 0.3);
        }
        /* 新闻列表 */
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid #f0d6d0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-item h3 {
            font-size: 1.4rem;
            font-weight: 500;
            color: #5a3d3d;
        }
        .news-date {
            color: #9a7a7a;
            font-size: 0.9rem;
            margin-right: 15px;
        }
        .news-summary {
            color: #5f4a4a;
            margin-top: 8px;
        }
        /* FAQ */
        .faq-item {
            margin: 18px 0;
            padding: 18px 22px;
            background: rgba(245, 225, 220, 0.3);
            border-radius: 30px;
            border-left: 6px solid #d4a09e;
        }
        .faq-item strong {
            color: #6b3f3f;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
        }
        /* 页脚 */
        footer {
            margin-top: 60px;
            padding: 40px 30px 20px;
            background: rgba(200, 160, 150, 0.15);
            backdrop-filter: blur(8px);
            border-radius: 60px 60px 30px 30px;
            border-top: 1px solid #ecc8c0;
            text-align: center;
            color: #5a3d3d;
        }
        footer a {
            color: #7a5550;
            text-decoration: none;
            margin: 0 8px;
            transition: 0.2s;
        }
        footer a:hover {
            color: #b87370;
        }
        .footer-links {
            margin: 18px 0;
        }
        .friend-links {
            margin: 20px 0 10px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 16px;
        }
        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
            margin-top: 25px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.0rem; }
            .container { padding: 15px; }
            nav { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; }
        }