/* 轮播图的样式 */
.banner {
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}
.swiper-container-horizontal{
	position: relative;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 70px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 1rem;
  height: 4px;
  border-radius: 0;
  margin-right: 0.2rem;
}

.swiper-pagination-bullet-active {
  background: #0d6ac7;
  width: 1rem !important;
}
/*左右按钮改变了颜色和加粗的样式*/
.prev_div {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-button-next {
  background-image: url('../images/next.png');
}
.swiper-button-prev {
  background-image: url('../images/prev.png');
}
