/* 自定义swiper */

.swiper {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-wrapper,
.swiper-slide,
.swiper_item {
  width: 100%;
  height: 100%;
}
.swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}

.swiper_item {
  display: block;
}
.swiper_title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 80px 10px 14px;
  user-select: none;
  text-align: left;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
.swiper_title .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.swiper-pagination_container {
  position: absolute;
  width: 200px;
  bottom: 0px;
  right: 20px;
  z-index: 999;
  background-color: #fff;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 12px;
  border-radius: 10px;
}
.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper_navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.swiper_button_prev {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 50%;
  width: 27px;
  height: 44px;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.swiper_button_prev i {
  color: #fff;
  font-size: 22px;
}
.swiper_button_next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 27px;
  height: 44px;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.swiper_button_next i {
  color: #fff;
  font-size: 22px;
}
