.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    position: absolute;
    top: 45%;
    outline: none;
    border: none;
    user-select: none;
    -webkit-user-select: none;
}

.swiper-container-1 .swiper-button-next {
    right: 50px;
    font-size: 24px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.swiper-container-1 .swiper-button-prev {
    left: 50px;
    font-size: 24px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.swiper-container-3 .swiper-button-next {
    right: 0;
    font-size: 12px;
    width: 40px;
    height: 50px;
    line-height: 60px;
    background: #194d8a61;
    opacity: 0;
    /* 初始隐藏 */
}

.swiper-container-3 .swiper-button-prev {
    left: 0;
    font-size: 12px;
    width: 40px;
    height: 50px;
    line-height: 60px;
    background: #194d8a61;
    opacity: 0;
    /* 初始隐藏 */
}

/* 鼠标移入时显示按钮 */
.swiper-container-3:hover .swiper-button-next,
.swiper-container-3:hover .swiper-button-prev {
    opacity: 1;
    /* 鼠标移入时显示按钮 */
}

.swiper-container-1:hover .swiper-button-next,
.swiper-container-1:hover .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.2);
}

.swiper-slide .banner {
    transition: transform 0.3s ease;
}

.swiper-slide:hover .banner {
    transform: scale(1.1);
}

.swiper-container {
    position: relative;
    /* 确保分页指示器能够浮动 */
    width: 100%;
    height: 100%;
}

/* 分页指示器的样式 */
.swiper-pagination {
    position: absolute;
    bottom: 0px;
    /* 距离底部10px */
    right: 10px;
    /* 取消右侧的距离，紧贴右边 */
    z-index: 10;
    /* 确保它显示在轮播图的上面 */
    text-align: right;
    width: auto;
    /* 让宽度适应内容 */
    outline: none;
    border: none;
    user-select: none;
    -webkit-user-select: none;
}

/* 你可以根据需要调整指示器的样式 */
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    /* 指示器的颜色 */
    width: 12px;
    /* 每个指示器的宽度 */
    height: 12px;
    /* 每个指示器的高度 */
    border-radius: 50%;
    /* 使指示器成为圆形 */
    margin: 0 5px;
    /* 让分页指示器之间有间隔 */
}

.swiper-pagination-bullet-active {
    background-color: #fff;
    /* 当前活动指示器的颜色 */
}