/* 新闻轮播图样式 */
.news-swiper-container {
    position: relative;
  /*  width: 50%;*/
    float: left;
}

.news-prev-btn,
.news-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    cursor: pointer;
    width: 42px !important;
    height: 44px !important;
}

.news-prev-btn {
    left: 10px;
}

.news-next-btn {
    right: 10px;
}

.news-slide-content {
    position: relative;
}

.news-slide-content .left-image {
    width: 100%;
    height: auto;
}

.news-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.8);
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0 10px;
}

.news-list {
    width: 50%;
    float: right;
    margin-left: 20px;
}

/* 清除浮动 */
.news-container::after {
    content: "";
    display: table;
    clear: both;
}

/* 精彩图集轮播图样式 */
.jctj-swiper-container {
     margin: 0px auto;
    width: 956px;
}

.jctj-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.jctj-pagination {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

.jctj-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.jctj-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
.slide-caption {
    color: white;
    font-size: 24px;
    margin-top: 10px;
    text-align: center;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 0;
    overflow: hidden;
}

/* 只有当前激活的幻灯片显示图说 */
.pic-box .swiper-slide-active .slide-caption {
    opacity: 1;
    height: auto;
}

/* 视频弹窗样式 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 1200px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
        width: 35px;
        height: 35px;
    }
}