*{margin: 0; padding: 0;}
.swiper-container {
    position: relative;
    overflow: hidden;
    width:100%;
    height: auto;
}
.swiper-wrapper {
    position: relative;
    display: flex;
}
.swiper-slide {
    flex-shrink: 0;
    position: relative;
}
.swiper-slide img{
    display: block;
    width:100%;
    height: auto;
}
.swiper-button-next,.swiper-button-prev {
    position: absolute;
    top: 50%;
    margin-top: -23px;
    width: 32px;
    height: 46px;
    z-index: 10;
    cursor: pointer;
}
.swiper-button-prev {
    background-image: url(ButtonLeft.png);
    left: 0px;
    right: auto;
}
.swiper-button-next {
    background-image: url(ButtonRight.png);
    right: 0px;
    left: auto;
}
.swiper-pagination {
    position: absolute;
    z-index: 10;
    bottom:20px;
    left:50%;
    transform: translateX(-50%);
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    cursor: pointer;
    border-radius: 100%;
    margin:0 3px;
    border:1px solid #fff;
}
.swiper-pagination-bullet-active {
    background: #fff
}

