.swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
}
/*包裹自定义分页器的div的位置等CSS样式*/

.swiper-pagination-custom {
    bottom: 10px;
    left: 0;
    width: 100%;
}
/*自定义分页器的样式，这个你自己想要什么样子自己写*/

.swiper-pagination-customs {
    width: 30px;
    height: 4px;
    display: inline-block;
    background: #000;
    opacity: .3;
    margin: 0 5px;
}
/*自定义分页器激活时的样式表现*/

.swiper-pagination-customs-active {
    opacity: 1;
    background-color: #F78E00;
}