/* 轮播图容器样式 */
.swiper-container.web_swiper {
    width: 100%;
    height: 600px; /* 可以根据需要调整高度 */
    position: relative;
    overflow: hidden;
}

/* 轮播图幻灯片样式 */
.swiper-container.web_swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 轮播图图片样式 */
.swiper-container.web_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 分页指示器样式 */
.swiper-pagination.web_swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

/* 箭头按钮样式 */
.swiper-button-prev.web_swiper-btn-prev,
.swiper-button-next.web_swiper-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* 合同展示轮播图样式 */
.swiper-container.home_contract-swiper {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.swiper-container.home_contract-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-container.home_contract-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}