.swiper-container{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /*超出部分隐藏*/
  overflow: hidden;
}
.swiper-wrapper{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  display: flex;
}
.swiper-slide{
  position: relative;
}
.swiper-pagination{
  width: 100%;
  position: absolute;
  bottom: 18%;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-pagination span{
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
}
.swiper-pagination span.active{
  width: 15px;
  height: 15px;
  border-radius: 8px;
}











