 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: linear-gradient(135deg, #fbfbfc 0%, #f5f3f0 100%);
        color: #1e1e2a;
    }

    .container {
        max-width: 1480px;
        margin: 0 auto;
        padding: 0 30px;
    }

    /* 导航栏样式 */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        flex-wrap: wrap;
        position: relative;
        background: white;
    }

    .logo {
        font-weight: 700;
        font-size: 1.8rem;
        letter-spacing: -0.02em;
        background: linear-gradient(130deg, #2b2b3a, #5b4b5b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .logo span {
        background: none;
        -webkit-text-fill-color: #b59f7b;
        font-weight: 300;
    }

    /* 下拉菜单容器 */
    .dropdown {
        position: relative;
    }
    
    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 5px;
        cursor: pointer;
        color: #333;
        transition: color 0.2s;
    }
    
    .dropdown-trigger:hover {
        color: #b59f7b;
    }
    
    .dropdown-trigger i {
        transition: transform 0.3s;
    }
    
    .dropdown-trigger:hover i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: none;
        z-index: 1000;
        padding: 8px 0;
        margin-top: 5px;
        border: 1px solid #f0eae4;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
        transition: all 0.2s;
        border-left: 3px solid transparent;
    }
    
    .dropdown-menu a:hover {
        background-color: #f8f7fa;
        color: #b59f7b;
        border-left-color: #b59f7b;
        padding-left: 25px;
    }
    
    .dropdown-menu a i {
        color: #b59f7b;
        width: 20px;
        margin-right: 8px;
    }

    /* HERO 大图 */
    .hero-banner {
        width: 100%;
        height: 600px;
        background-image: url('https://www.tigerclub.vip/uploads/regions/banner.jpg');
        background-size: cover;
        background-position: center 30%;
        margin: 0 0 3rem 0;
        border-radius: 0 0 3rem 3rem;
        box-shadow: 0 20px 30px -8px rgba(0,0,0,0.2);
    }

    /* 通用样式 */
    .section-title {
        font-size: 2.2rem;
        font-weight: 600;
        margin-bottom: 2.5rem;
        position: relative;
        display: inline-block;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 70%;
        height: 4px;
        background: #b59f7b;
        border-radius: 4px;
    }

    /* 地区卡片样式 */
    .region-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid #f0eae4;
        position: relative;
        margin-bottom: 20px;
    }

    .region-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(181,159,123,0.15);
    }

    .region-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 400px;
    }

    .region-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .region-card:hover .region-img {
        transform: scale(1.08);
    }

    .country-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(30, 30, 42, 0.85);
        backdrop-filter: blur(5px);
        color: white;
        padding: 6px 15px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(255,255,255,0.2);
        z-index: 2;
    }

    .country-badge i {
        color: #b59f7b;
        font-size: 0.8rem;
    }

    .region-info {
        padding: 20px;
    }

    .region-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1e1e2a;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .region-description {
        color: #6f6f8a;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-view {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #b59f7b;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: gap 0.3s ease;
    }

    .btn-view:hover {
        gap: 12px;
        color: #1e1e2a;
    }

    /* 栅格系统 */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-right: 15px;
        padding-left: 15px;
    }
    
    @media (max-width: 992px) {
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    
    @media (max-width: 768px) {
        .col-sm-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }

    /* 伴游资讯样式 */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 40px 0;
    }

    .news-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
        border: 1px solid #f0eae4;
        position: relative;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    }

    .news-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #b59f7b, #e0d5c8, #b59f7b);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .news-card:hover::before {
        transform: scaleX(1);
    }

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(181,159,123,0.15);
    }

    .news-thumb {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card:hover .news-thumb {
        transform: scale(1.05);
    }

    .news-body {
        padding: 20px;
    }

    .news-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1e1e2a;
        margin-bottom: 10px;
        line-height: 1.4;
        transition: color 0.2s;
    }

    .news-card:hover .news-title {
        color: #b59f7b;
    }

    .news-date {
        color: #9898a8;
        font-size: 0.8rem;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .news-date i {
        color: #b59f7b;
        margin-right: 4px;
    }

    .news-summary {
        color: #6f6f8a;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-read-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #b59f7b;
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: all 0.2s;
    }

    .news-read-more:hover {
        gap: 10px;
        color: #a08b6b;
    }

    /* 招聘信息样式 */
    .jobs-panel {
        background: linear-gradient(145deg, #fff9f5, #ffffff);
        border-radius: 2rem;
        padding: 2.5rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        border: 1px solid #f0eae4;
        margin: 40px 0;
    }

    .jobs-panel h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e1e2a;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .jobs-panel h3:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: #b59f7b;
        border-radius: 3px;
    }

    .jobs-panel p {
        color: #6f6f8a;
        line-height: 1.8;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }

/* 真实评价板块样式 */
.testimonials-intro {
    background: linear-gradient(135deg, #fff9f5, #ffffff);
    border-radius: 24px;
    padding: 30px 35px;
    margin-bottom: 40px;
    border: 1px solid #f0eae4;
    color: #6f6f8a;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-intro i {
    color: #b59f7b;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonials-intro::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: rgba(181,159,123,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-intro::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(181,159,123,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* 评价图片网格 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid #f0eae4;
    aspect-ratio: 3 / 4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(181,159,123,0.2);
    border-color: #b59f7b;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.08);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,30,42,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    backdrop-filter: blur(3px);
}

.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
}

.testimonial-overlay i {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #b59f7b;
}

.testimonial-overlay span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* 模态框导航 */
.modal-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e1e2a;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.modal-nav-btn:hover {
    background: #b59f7b;
    transform: scale(1.05);
}

#imageCounter {
    color: #6f6f8a;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 60px;
    text-align: center;
}

/* 响应式 */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-intro {
        padding: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
    .testimonial-content {
        flex: 1;
    }

    .testimonial-stars {
        color: #f5b342;
        margin-bottom: 0.6rem;
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-style: italic;
        color: #2f2f3a;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-author {
        font-weight: 600;
        color: #1e1e2a;
        font-size: 0.9rem;
    }

    .testimonial-title {
        font-size: 0.8rem;
        color: #8d8d9c;
    }

    footer {
        background: #1b1b26;
        color: #d6d6de;
        padding: 3rem 0;
        border-radius: 4rem 4rem 0 0;
        margin-top: 6rem;
    }

    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 20px;
        }
        
        .news-grid {
            grid-template-columns: 1fr;
        }
        
        .hero-banner {
            height: 300px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .testimonial-card {
            flex-direction: column;
        }
        
        .testimonial-img {
            width: 100%;
            height: 180px;
        }
    }