/* 整体容器样式 */

.swiper-container {
    height: auto;
    margin: 0 auto;
}
@media screen and (min-width: 1280px){
    .swiper-container {
        width: 1200px;
    }
    .swiper-slide {
        width: 380px !important;
        height: 400px; /* 可以根据实际内容调整高度 */
    }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .swiper-container {
        width: 780px;
        padding-left: 4px;

    }
    .swiper-slide {
        width: 380px !important;
        height: 400px; /* 可以根据实际内容调整高度 */
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px){
    .swiper-container {
        width: 660px;

    }
    .swiper-slide {
        width: 320px !important;
        height: 340px; /* 可以根据实际内容调整高度 */
    }
    .swiper-button-next, .swiper-button-prev{
        position: relative;
        display: none;
    }

    .swiper-pagination{
        top:  20px!important;
    }

}
.swiper-container_wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* 每个小块的样式 */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination{
    position: relative;
    top: 32px;
    line-height: 4px;
}
.swiper-pagination-bullet{
    width: 24px;
    height: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-pagination-bullet-active {
    width: 72px;
    background: #000000;
}

.swiper-button-next, .swiper-button-prev{
    height: 22px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px!important;
    color: rgba(0, 0, 0, 0.8)!important;
}
.swiper-button-next, .swiper-container-rtl{
    right: 0;
}
.swiper-button-prev:after {
    margin-left: -16px;
}