/* Swiper 简化版 CSS (4.5.x) - 用于横向轮播 */
.swiper-container {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
  color: #2dbb55;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-top: 2px solid;
  border-right: 2px solid;
}
.swiper-button-prev {
  left: 10px;
}
.swiper-button-prev::before {
  transform: rotate(-135deg);
}
.swiper-button-next {
  right: 10px;
}
.swiper-button-next::before {
  transform: rotate(45deg);
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 10;
}
.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background: #2dbb55;
}
