/* 新闻头条样式 */
.headline-container {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.headline-container:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.headline-header {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 0;
    align-items: stretch;
    min-height: 65px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.headline-title-section {
    background: white;
    color: #252d84;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.headline-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 45, 132, 0.05) 0%, rgba(37, 45, 132, 0.02) 100%);
    z-index: 0;
}

.headline-title-section::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid white;
    z-index: 1;
}

.headline-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.headline-title i {
    font-size: 1.4rem;
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px 0 0  0;
    background: white;
}

.headline-main {
    padding: 0 20px;
    margin-bottom:5px;
}

.headline-main-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.headline-main-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.headline-main-tag {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    letter-spacing: 0.5px;
}

.headline-main-title {
    flex: 1;
    font-weight: 700;
    color: var(--dark-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.4rem;
    line-height: 1.3;
    position: relative; 
    text-align: center;
    margin-bottom: 5px;
}

.headline-main-title a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 5px;
}

.headline-main-title a:hover {
    background: linear-gradient(135deg, var(--accent-red) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline-main-title a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-gold) 100%);
}

.headline-main-title a:hover::after {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-red) 0%, #dc2626 100%);
}

.headline-main-desc {
    color: var(--medium-text);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 轮播图样式 */
.enhanced-carousel {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)))!important;
}

.carousel-left {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-blue);
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.3) 0%, rgba(26, 35, 126, 0.1) 100%);
    z-index: 1;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 0.6rem;
    z-index: 20;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-blue);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 20;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* 右侧新闻标题区域样式 */
.carousel-right {
    display: flex;
    flex-direction: column;
    background: white;
    height: 400px;
}

.carousel-text-item {
    display: flex;
    align-items: center;
    padding: 0;
    height: calc(100% / 5);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    text-decoration: none;
}

.carousel-text-item:last-child {
    border-bottom: none;
}

.carousel-text-item:hover {
    background: linear-gradient(90deg, rgba(26, 35, 126, 0.05) 0%, transparent 100%);
}

.carousel-text-item.active {
    background: linear-gradient(90deg, rgba(26, 35, 126, 0.1) 0%, rgba(26, 35, 126, 0.05) 100%);
    border-right: 4px solid var(--primary-blue);
}

.carousel-text-content {
    flex: 1;
    padding: 1.2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-text-title {
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-text-item.active .carousel-text-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.carousel-text-item:hover .carousel-text-title {
    color: var(--primary-blue);
}

.carousel-text-desc {
    font-size: 0.8rem;
    color: var(--medium-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 右侧指示器样式 */
.carousel-text-indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-text-item.active .carousel-text-indicator {
    opacity: 1;
}

.carousel-text-indicator::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.3);
    animation: indicator-pulse 2s infinite;
}

@keyframes indicator-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.3);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.1);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.3);
    }
}

/* 轮播图超链接样式 */
.carousel-slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: block;
}

.carousel-slide-link:hover ~ .carousel-slide::before {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(26, 35, 126, 0.2) 100%);
}

/* 统计数据样式 */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.35rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.8rem;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--medium-text);
    font-weight: 500;
}

/* 特色卡片样式 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.feature-card {
    padding: 1.8rem 1.2rem;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.2rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background: var(--gradient-secondary);
}

/* 选项卡样式 */
.tab-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom:1rem;
}

.tab-button {
    padding: 0.6rem 0.3rem;
    background: transparent;
    border: none;
    color: var(--medium-text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
    border-radius: 4px;
}

.tab-button.active {
    color: var(--primary-blue);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
}

.tab-button:hover:not(.active) {
    background: rgba(26, 35, 126, 0.05);
    color: var(--primary-blue);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    flex: 1;
}

.tab-content.active {
    display: block;
}

/* 公告通知样式 */
.announcement-container {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
}

.announcement-item {
    display: flex;
    align-items: flex-start;
    padding: 0.88rem;
    background: white;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
    backdrop-filter: blur(5px);
}

.announcement-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--accent-gold);
}

.announcement-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
}

.announcement-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark-text);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-date {
    font-size: 0.75rem;
    color: var(--medium-text);
}

.announcement-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    margin-right: 0.5rem;
    border-radius: 3px;
}

.tag-new {
    background: #FF3B30;
    color: white;
}

.tag-hot {
    background: #FF9500;
    color: white;
}

.tag-official {
    background: var(--primary-blue);
    color: white;
}

.tag-important {
    background: var(--accent-gold);
    color: white;
}
#about,#video-showcase{max-height:640px;}
#nwes,.festival-section {max-height:802px;}
/* 新闻图文样式 */
.news-with-image {
    display: grid;
    grid-template-columns:0.8fr 2fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-image {
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-radius: 4px;
}

.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-content p {
    display: -webkit-box !important;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-list-title, .transition-colors, .border-b p {
    display: -webkit-box !important;
    -webkit-line-clamp:1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 政府徽章样式 */
.government-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-radius: 3px;
}

.official-stamp {
    position: relative;
    padding-left: 2rem;
}

.official-stamp::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    border-radius: 50%;
}

/* 地图容器样式 */
.map-container {
    width: 100%;
    height: 300px;
    background: #f8fafc;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-text);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.map-placeholder p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.map-placeholder .map-legend {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.map-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.map-legend-laos {
    background: var(--primary-blue);
}

.map-legend-thailand {
    background: #EF4444;
}

.map-legend-myanmar {
    background: #10B981;
}

.map-legend-special-zone {
    background: var(--accent-gold);
}

/* 旅游文化样式 */
.tourism-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tourism-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.tourism-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tourism-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.tourism-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.4rem;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

/* 为视频播放按钮添加相对定位 */
.tourism-item .relative {
    position: relative;
}

/* 视频播放按钮样式 */
.tourism-item .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10;
}

.tourism-item .video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.05);
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.45rem;
}

.service-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.8rem;
    flex-shrink: 0;
    border-radius: 4px;
}

/* 视频展示样式 - 更新版 */
#video-showcase .main-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

#video-showcase .video-thumbnail {
    width: 100%;
    height: 151px;
    object-fit: cover;
}

#video-showcase .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

#video-showcase .video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.05);
}

#video-showcase .main-video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.6rem;
    font-size: 0.9rem;
}

/* 官方媒体样式 */
    /* 社交媒体矩阵样式 */
        .social-media-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        
        .social-media-card {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .social-media-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .social-media-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
        }
        
        .social-media-wechat {
            background: linear-gradient(135deg, #07C160 0%, #06AD56 100%);
        }
        
        .social-media-weibo {
            background: linear-gradient(135deg, #E6162D 0%, #C51225 100%);
        }
        
        .social-media-facebook {
            background: linear-gradient(135deg, #1877F2 0%, #0A5AC2 100%);
        }
        
        .social-media-tiktok {
            background: linear-gradient(135deg, #000000 0%, #333333 100%);
        }
        
        .social-media-youtube {
            background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
        }
        
        .social-media-linkedin {
            background: linear-gradient(135deg, #0A66C2 0%, #084E9E 100%);
        }
        
        .social-media-title {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }
        
        .social-media-id {
            color: var(--medium-text);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            height: 40px;
        }
        
        .social-media-btn {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .social-media-btn:hover {
            background: var(--gradient-secondary);
            transform: translateY(-2px);
        }
            .contact-card {
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }
        
        .contact-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        
        .contact-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.8rem;
        }
        
        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            border-radius: 12px;
            margin-right: 1.2rem;
        }
        
        .contact-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        .contact-card-subtitle {
            color: var(--medium-text);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }
        
             /* 微信二维码悬浮效果 */
        .wechat-qr-container {
            position: relative;
            display: inline-block;
        }
        
        .wechat-qr-code {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            width: 130px;
            background: white;
            box-shadow: var(--shadow-lg);
            padding: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .wechat-qr-code::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: white;
        }
        
        .wechat-qr-container:hover .wechat-qr-code {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-12px);
        }
        
        .qr-image {
            width: 100%;
            height: auto;
        }
        
        .qr-text {
            text-align: center;
            font-size: 0.7rem;
            color: var(--medium-text);
            margin-top: 5px;
        }

/* 节庆活动样式 */
.festival-section {
    position: relative;
    overflow: hidden;
}

.festival-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-item {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.2;
}

.decoration-item:nth-child(1) {
    top: 10%;
    left: 5%;
}

.decoration-item:nth-child(2) {
    top: 20%;
    right: 10%;
}

.decoration-item:nth-child(3) {
    bottom: 15%;
    left: 15%;
}

.festival-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.festival-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.festival-item:hover::before {
    width: 8px;
}

.festival-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.festival-image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

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

.festival-item:hover .festival-image img {
    transform: scale(1.05);
}

.festival-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--gradient-secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.festival-content {
    flex: 1;
}

.festival-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.festival-title {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--primary-blue);
    font-size: 1.1rem;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.festival-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.festival-item:hover .festival-title::after {
    width: 100%;
}

.festival-date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--medium-text);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
}

.festival-date i {
    margin-right: 0.3rem;
    color: var(--accent-gold);
}

.festival-desc {
    font-size: 0.85rem;
    color: var(--medium-text);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.festival-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.festival-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary-blue);
    border-radius: 3px;
}

.festival-progress {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.festival-status {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--medium-text);
    white-space: nowrap;
}

/* 招商政策紧凑布局 */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.policy-item {
    padding: 1.2rem;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.policy-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.policy-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.policy-title i {
    margin-right: 0.4rem;
    color: var(--accent-gold);
}

.policy-desc {
    color: var(--medium-text);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 主内容区域间距优化 */
.main-content {
    padding: 1rem 0;
}

.content-section {
    margin-bottom: 2.5rem;
}

/* 浮动动画 */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 计数器动画 */
.counter {
    display: inline-block;
}

/* 进度条样式 */
.progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: width 1s ease;
}

/* 统一投资合作和旅游文化高度样式 */
.uniform-section {
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.uniform-section .tab-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.uniform-section .tab-content {
    flex: 1;
}

/* 投资合作模块 */
#investment.uniform-section .feature-grid {
    height: 100%;
    min-height: 266px;
}

#investment.uniform-section .feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#investment.uniform-section .feature-card p {
    flex-grow: 1;
}

#investment.uniform-section .policy-grid {
    height: 100%;
}

#investment.uniform-section .policy-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#investment.uniform-section .policy-desc {
    flex-grow: 1;
}

/* 旅游文化模块的特定调整 */
#tourism.uniform-section .tourism-gallery {
    height: 100%;
 /*   min-height: 300px;*/
}

#tourism.uniform-section .service-item {
    margin-bottom: 1.8rem;
}

#tourism.uniform-section .tab-content#travel-guide {
    padding-top: 10px;
}

/* 按钮底部对齐 */
.uniform-section .button-container {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* 广告位样式 */
.advertisement-section {
    margin: 2rem 0;
}

.advertisement-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.ad-item {
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    height: 180px;
}

.ad-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ad-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.ad-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.ad-item:hover .ad-image img {
    transform: scale(1.1);
}

.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 35, 126, 0.9) 0%, rgba(26, 35, 126, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-item:hover .ad-overlay {
    opacity: 1;
}

.ad-overlay-content {
    text-align: center;
    color: white;
    padding: 1.5rem;
}

.ad-overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ad-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 通栏广告样式 */
.full-width-ad {
    background: var(--light-bg);
    margin: 10px  0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.full-width-ad .container {
    padding: 0;
}

.ad-banner-link {
    display: block;
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.ad-banner-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.ad-banner-link:hover .ad-banner-img {
    transform: scale(1.03);
}

.ad-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 35, 126, 0.8) 0%, rgba(26, 35, 126, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding-left: 40px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ad-banner-content {
    color: white;
    max-width: 600px;
}

.ad-banner-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.ad-banner-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.ad-banner-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ad-banner-link:hover .ad-banner-btn {
    background: var(--primary-blue);
    transform: translateX(5px);
}

/* 居中的节目标题样式 */
.section-title-center {
    text-align: center;
    width: 100%;
}

.section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .carousel-left {
        height: 350px;
    }
    
    .carousel-right {
        height: 350px;
    }
    
    .carousel-content {
        left: 30px;
        bottom: 70px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advertisement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ad-item {
        height: 160px;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enhanced-carousel {
        display: flex;
        flex-direction: column;
        height: auto;
    }
     .carousel-left {
        height: 250px;
        order: 2;
    }
    
    .carousel-right {
        order: 1;
        height: auto;
        display: none;
    }
    
    .carousel-controls {
        bottom: 20px;
        right: 10px;
    }
    #about,#video-showcase,#nwes,.festival-section{max-height:100%;}
    section {
        margin: 10px!important;
    }
    
    .carousel-text-item {
        padding: 0.8rem;
        min-height: 60px;
    }
    
    .carousel-text-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .carousel-text-desc {
        font-size: 0.75rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .tourism-gallery {
        grid-template-columns:repeat(2, 1fr);
    }
    #video-showcase .video-thumbnail{height:160px;}
    .tourism-item img{height:120px;}
    .news-with-image {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 200px;
    }
    
   /* .headline-header {
        flex-direction: column;
    }*/
    
    .headline-title-section {
        width: 40px;
      /*  padding: 10px 20px;
        justify-content: flex-start;*/
    }
    
    .headline-title-section::after {
        display: none;
    }
    
    .headline-content {
        width: 100%;
            padding: 10px 0 0 0;
    }
    
    .headline-secondary {
        flex-direction: column;
    }
    
    .headline-secondary-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 20px;
    }
    
    .headline-secondary-item:last-child {
        border-bottom: none;
    }
    
    .headline-main, .headline-secondary-item {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .headline-main-title {
        font-size: 1.3rem;
        white-space: normal;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .headline-main-title a {
        padding-bottom: 0px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .headline-main-desc {
        font-size: 0.8rem;
    }
    
    .uniform-section {
        min-height: auto;
    }
    
    #investment.uniform-section .feature-grid,
    #investment.uniform-section .policy-grid{
        min-height: auto;
        grid-template-columns: repeat(2, 1fr);
    }
    .social-media-grid     {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links-container div{width: 100%;}
    .social-media-card {
  
     padding: 0.6rem;
}
    #tourism.uniform-section .tourism-gallery {
        min-height: auto;
        grid-template-columns: repeat(2, 1fr);
    }
    
    #investment.uniform-section .feature-card,
    #investment.uniform-section .policy-item {
        min-height: auto;
    }
    
    .advertisement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .ad-item {
        height: 150px;
    }
    
    .ad-overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .ad-overlay-content p {
        font-size: 0.8rem;
    }
    
    .full-width-ad {
        padding: 5px 10px;
    }
    
    .full-width-ad .container {
        padding: 0;
    }
    
    .ad-banner-link {
        height: 100px;
    }
    
    .ad-banner-overlay {
        padding-left: 20px;
    }
    
    .ad-banner-content h3 {
        font-size: 1.3rem;
    }
    
    .ad-banner-content p {
        font-size: 0.85rem;
    }
    
    .ad-banner-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .media-tabs {
        flex-direction: row;
        align-items: center;
    }
    
    .media-tab-button {
        justify-content: center;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-img {
        height: 100px;
    }
    
    .platform-footer {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }
    
    .platform-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline-main-title {
        font-size: 1.1rem;
    }
    
    .headline-title {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .headline-main {
        padding: 0 8px;
    }
    
    .advertisement-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .ad-item {
        height: 180px;
    }
    
    .ad-banner-link {
        height: 80px;
    }
    
    .ad-banner-overlay {
        padding-left: 15px;
    }
    
    .ad-banner-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .ad-banner-content p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        display: none;
    }
    
    .ad-banner-btn {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }
    
}
     
     /* 谷歌地图容器样式 */
.map-link {
    display: block;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.map-link:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.map-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.map-link:hover .google-map-img {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 35, 126, 0.8) 0%, rgba(26, 35, 126, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-overlay-content i {
    font-size: 1.2rem;
}

.map-overlay-content span {
    font-size: 0.9rem;
    font-weight: 600;
}

.map-note {
    font-size: 0.75rem;
    color: var(--medium-text);
    text-align: center;
    margin-top: 0.5rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .map-image {
        height: 200px;
    }
    
    .map-overlay-content span {
        font-size: 0.8rem;
    }
}



/* 手机版公告通知样式 */
.mobile-announcement-section {
    margin-top: 1rem;
    display: none; /* 默认隐藏，通过媒体查询显示 */
}

/* 移动端显示公告通知 */
@media (max-width: 768px) {
    .mobile-announcement-section {
        display: block;
    }
    
    /* 隐藏桌面版右侧的公告通知（如果需要） */
    .w-full.lg\\:w-1\\/3 .card:first-child {
        display: none;
    }
}

/* 如果希望移动端公告通知有特殊样式 */
@media (max-width: 768px) {
    .mobile-announcement-section .card {
        margin: 0 10px; /* 添加左右边距 */
    }
    
    .mobile-announcement-section .section-title {
        font-size: 1.2rem;
        padding-bottom: 0.5rem;
    }
}


/* 双按钮地图容器样式 */
.map-container .map-buttons-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.map-container:hover .map-buttons-overlay {
    opacity: 1;
}

/* 地图按钮样式 */
.map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.google-map-btn {
    background: white;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.google-map-btn:hover {
    background: #4285F4;
    color: white;
    transform: translateY(-2px);
}

.baidu-map-btn {
    background: #2932E1;
    color: white;
    border: 2px solid #2932E1;
}

.baidu-map-btn:hover {
    background: white;
    color: #2932E1;
    transform: translateY(-2px);
}

.map-button i {
    font-size: 1.1rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .map-buttons-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .map-button {
        padding: 0.6rem 1rem;
        min-width: 130px;
        font-size: 0.9rem;
    }
    
    .map-button i {
        font-size: 1rem;
    }
}

/* 在非常小的屏幕上调整 */
@media (max-width: 480px) {
    .map-buttons-overlay {
        flex-direction: column;
    }
    
    .map-button {
        width: 90%;
        min-width: auto;
    }
}
/* 无图标的简洁版友情链接样式 */
.friend-links-tab-section {
    margin-top: 2rem;
}

/* 图标链接网格布局（保持原有class名，实际无图标） */
.icon-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.8rem;
}

/* 简单链接按钮样式 */
.simple-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-text);
    line-height: 1.3;
    min-height: 50px;
    word-break: break-word;
    position: relative;
    overflow: hidden;
}

.simple-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.1), transparent);
    transition: left 0.5s;
}

.simple-link-btn:hover::before {
    left: 100%;
}

.simple-link-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}



/* 响应式调整 */
@media (max-width: 1200px) {
    .icon-links-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .icon-links-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.7rem;
    }
    
    .simple-link-btn {
        padding: 0.7rem 0.4rem;
        font-size: 0.82rem;
        min-height: 45px;
    }
}

@media (max-width: 768px) {
    .icon-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .simple-link-btn {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .tab-buttons .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .icon-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .simple-link-btn {
        padding: 0.7rem 0.4rem;
        font-size: 0.78rem;
        min-height: 35px;
    }
    
    /* 移动端Tab按钮调整 */
    .tab-buttons .tab-button {
        flex: 1;
       /* min-width: 45%; */
        margin-bottom: 0.3rem;
        text-align: center;
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .icon-links-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .simple-link-btn {
        padding: 0.8rem;
        font-size: 0.8rem;
        min-height: 40px;
    }
}
/* 资源下载卡片样式 (原节庆活动区域替换) */
.download-section {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.download-item {
    display: flex;
    align-items: center;
    padding: 1rem 0.8rem;
    background: #f9fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    margin-bottom: 0.8rem;
}

.download-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-gold);
    background: white;
}

.download-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 1rem;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.download-content {
    flex: 1;
}

.download-title {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.download-meta {
    font-size: 0.75rem;
    color: var(--medium-text);
    display: flex;
    gap: 1rem;
}

.download-btn {
    background: transparent;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.download-btn:hover {
    background: var(--primary-blue);
    color: white;
}
     /* 确保交通指南卡片与旅游选项卡风格统一 */
        .transport-mini-card {
            background: white;
            border-radius: 12px;
            padding: 18px 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            border-left: 4px solid #f59e0b;
            transition: all 0.2s;
        }
        .transport-mini-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        .transport-mini-title {
            font-weight: 600;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        .transport-mini-title i {
            color: #f59e0b;
            width: 20px;
        }
        .transport-mini-desc {
            color: #64748b;
            font-size: 13px;
            line-height: 1.5;
            padding-left: 28px;
        }
        .transport-mini-footer {
            margin-top: 10px;
            padding-left: 28px;
            font-size: 12px;
            color: #3b82f6;
        }
        .transport-mini-footer i {
            margin-right: 4px;
        }
        /* 调整选项卡内容容器，使交通指南与住宿推荐并排 */
        .tab-double-column {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .tab-double-column > div {
            flex: 1 1 200px;
            min-width: 0;
        }
        @media (max-width: 500px) {
            .tab-double-column {
                flex-direction: column;
            }
        }
        .guide-highlight {
            background: #fef3c7;
            border-radius: 20px;
            padding: 2px 10px;
            font-size: 12px;
            font-weight: 500;
            color: #92400e;
            display: inline-block;
            margin-left: 8px;
        }