/* 内容容器 */
.news-container {
    max-width: 1400px;
    margin: 40px auto;
    display: flex; 
    flex-direction: row;;
    gap: 40px;
}
.news-list-container {
    max-width: 1760px;
    margin: 40px auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

/* 城市名称 */
.city-name h1 {
    font-size: 34px;
    font-weight: 700;
    color: #333; 
}

/* 服务图标区域 */
.service-icons {
    display: flex; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px; 
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 95px;
    flex-shrink: 0;
    margin-right: 40px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #47c255 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-text {
    font-size: 14px;
    color: #333;
    text-align: center;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.4;
    max-width: 100%;
}

/* 城市介绍区域 */
.city-description {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px; 
    margin-top: -20px;
    position: relative;
    z-index: 1;
}

.city-description p {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-indent: 2em;
}

.city-more {
    text-align: right;
}

.more-link {
    font-size: 18px;
    color: #00275E;
    text-decoration: none;
    font-weight: 500;
}

.more-link:hover {
    text-decoration: underline;
}

/* 图片展示区域 */
.city-images {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2; 
    padding: 15px; 
}

.main-image {
    flex: 2;
    overflow: hidden; 
}

.main-image img {
    width: 100%; 
    height:100%;
    object-fit: cover;
}

.side-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-image-item {
    flex: 1;
    overflow: hidden; 
}

.side-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 城市区域通用样式 */
.city-section { 
    padding: 30px; 
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    color: #0A275E;
    margin: 0;
}
 
.section-grid {
    display: grid;
    gap: 20px;
}

.section-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.section-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.section-card { 
    overflow: hidden;
    background-color: #f8f9fa;
    border: 1px solid #E9E9E9;
}

.section-card img {
    width: 100%; 
    height: 219px;
    object-fit: cover;
}

.section-card .card-title {
    display: block;
    padding: 15px;
    font-size: 24px;
    color: #000;
    text-align: left;
    background-color: #fff;
}

.section-card .card-desc {
    padding: 0 15px 15px;
    font-size: 13px;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background-color: #fff;
}

/* 主内容区域 */
.city-main-content {
    display: flex;
    gap: 60px;
}

.main-content-left {
    flex: 2;
}

.main-content-right {
    flex: 1;
}

/* 标签页容器 */
.tab-container {
    background-color: #fff; 
    overflow: hidden;
}

.tab-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-item {
    padding: 15px 50px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #00275E;
    font-size: 36px;
    border-bottom-color: #00275E;
    font-weight: 400;
}

.tab-content {
    padding: 20px 0;
}

/* 酒店列表 */
.hotel-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-item {
    display: flex;
    gap: 20px;
    border: 1px solid #E9E9E9;
}

.hotel-item a {
    display: flex;
    gap: 20px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.hotel-item img {
    width: 335px;
    height: 214px;
    object-fit: cover; 
}

.hotel-info {
    padding: 20px;
    flex: 1;
}

.hotel-info h3 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0 0 10px 0;
}

.hotel-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 侧边栏盒子 */
.sidebar-box {
    background-color: #fff; 
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.title-line {
    width: 6px;
    height: 24px;
    background-color: #00275e;
    margin-right: 10px;
    flex-shrink: 0;
}

.box-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0A275E;
    margin: 0;
    flex: 1;
}
 
.event-item {
    overflow: hidden;
}

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

.event-title {
    display: block; 
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* 新闻列表 */
.sidebar-box .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box .news-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
}

.sidebar-box .news-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 10px;
}

.sidebar-box .news-list li:last-child {
    padding-bottom: 0;
}

/* 视频项 */
.video-item {
    position: relative; 
    overflow: hidden;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.play-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0066cc;
}

/* 交通方式图标 */
.transport-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.transport-item {
    display: flex;
    align-items: center; 
    padding: 12px 16px;
    gap: 8px;
    border: 2px solid #0b265b;
    border-radius: 4px;
    background-color: #fff;
}

.transport-item img {
    width: 24px;
    height: 24px;
}

.transport-text {
    font-size: 18px;
    color: #0A275E;
    font-weight: 700;
}

/* 左侧详情内容 */
.news-detail-content {
    flex: 5;
    flex-direction: column;
    background-color: white;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* 新闻标题 */
.news-title {
    font-size: 28px;
    font-weight: 700;
    color: #0A275E;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* 新闻元信息 */
.news-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

/* 新闻内容 */
.news-body {
    font-size: 19px;
    line-height: 2;
    color: #333;
}

  

.news-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0A275E;
    margin: 30px 0 20px 0;
}

.news-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    display: block;
}

/* 新闻列表内容区域 */
.news-list-content {
    flex: 2; 
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 1px dashed #eee;
    gap: 12px;
}

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

.news-dot {
    width: 15px;
    height: 15px;
    background-color: #0066cc;
    border-radius: 50%;
    flex-shrink: 0;
}

.news-list-content .news-title {
    flex: 2;
    font-size: 22px;
    color: #001528;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-list-title {
    flex: 1;    
    font-family: '思源黑体 CN Bold', '思源黑体 CN Regular', '思源黑体 CN', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    color: #001528;
    line-height: 38px;
}

.news-date {
    font-size: 16px;
    color: #999;
    flex-shrink: 0;
    margin-left: 15px;
}

/* 右侧栏 */
.news-sidebar {
    flex: 1;
    max-width: 300px;
}

.news-sidebar .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-sidebar .news-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
    word-break: break-all;
}

.news-sidebar .news-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* 新闻图片列表项 */
.news-pic-item {
    display: flex; 
    margin: 24px;
    border: 1px dashed #e0e6ec;
}

.news-pic-item:last-child {
    border-bottom: none;
}

.news-pic-image {
    width: 342px;
    height: 228px; 
}

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

.news-pic-content {
    padding: 15px 20px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-pic-list-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.news-pic-desc {
    font-size: 18px;
    color: #454D54;
    line-height: 1.8;
    margin: 0 0 20px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-pic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-pic-source
.news-pic-date {
    font-size: 16px;
    color: #A1A5A8;
}

/* 分页区域 */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    border-top: 1px dashed #eee;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-btn:hover:not(.active) {
    border-color: #0066cc;
    color: #0066cc;
}

.page-btn.active {
    background-color: #0066cc;
    border-color: #0066cc;
    color: #fff;
}

.page-btn.last-btn {
    width: auto;
    padding: 0 12px;
}

/* 热门资讯列表 */
.hot-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-news-list li {
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
}

.hot-news-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #666666;
    font-size: 18px;
}

/* 侧边栏图片 */
.sidebar-image {
    width: 100%;
    overflow: hidden;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 侧边栏模块 */
.sidebar-module {
    background-color: white;
    padding: 25px 0;
    margin-bottom: 20px; 
}

/* 侧边栏分隔线 */
.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 15px 0;
}

/* 模块标题 */
.module-title {
    font-size: 24px;
    font-weight: 600;
    color: #0A275E;
    padding-left: 10px;
    border-left: 5px solid #0A275E;
    margin-bottom: 20px;
}

/* 精彩推荐 */
.recommend-item {
    margin-bottom: 20px;
}

.recommend-item:last-child {
    margin-bottom: 0;
}

.recommend-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 12px;
}

.recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recommend-title {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-date {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

/* 联合会动态 */
/* .news-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 10px;
} */

.news-list li a {
    font-size: 18px;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
} 
.sidebar-more a {
    font-size: 18px;
    color: #0A275E;
    text-decoration: none;
}
 
/* 底部图片推荐 */
.bottom-recommend {
    margin-top: 30px;
}

.bottom-recommend-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.bottom-recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 活动列表 */
.activity-list-content {
    flex: 2;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.activity-card {
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.activity-card-image {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.activity-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}

.activity-card-info {
    padding: 20px;
}

.activity-card-title {
    color: #666666;
    font-size: 24px;
    font-weight: 400;  
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-card-theme {
    font-size: 16px;
    color: #666;
    margin: 0 0 16px 0;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-card-date-wrap,
.activity-card-location-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.activity-card-date {
    font-size: 14px;
    color: #666;
}

.activity-card-location {
    font-size: 14px;
    color: #666;
}

.location-icon {
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 7 8 11.7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .news-container {
        width: 90%;
    }
    
    .service-icons {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .service-item {
        flex: 0 0 calc(16.66% - 17px);
    }
    
    .section-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .news-container {
        flex-direction: column;
    }
    
    .news-sidebar {
        width: 100%;
    }
    
    .city-images {
        flex-direction: column;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .city-main-content {
        flex-direction: column;
    }
    
    .hotel-item {
        flex-direction: column;
    }
    
    .hotel-item img {
        width: 100%;
        height: 200px;
    }
    
    .section-grid.three-col,
    .section-grid.four-col {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .service-item {
        flex: 0 0 100%;
    }
}

.activity-list-content .page {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}

.activity-list-content .page.active {
    display: flex;
}

.activity-list-content .page a,
.activity-list-content .page span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.activity-list-content .page a:hover {
    background-color: #e6f0ff;
    color: #0066cc;
}

.activity-list-content .page a.page_current,
.activity-list-content .page span.page_current {
    background-color: #0066cc;
    color: #fff;
}

.activity-list-content .page .prev,
.activity-list-content .page .next {
    font-size: 16px;
}

.activity-list-content .page .last {
    width: auto;
    padding: 0 12px;
}