.swiper-container {
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
.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: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 27px 44px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
}
.swiper-button-prev {
  left: 10px;
  right: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2044%22%3E%3Cpath%20d%3D%22M0%2C22L22%2C0l6.1%2C6.1L6.1%2C22l12%2C12L22%2C40L0%2C22z%22%20fill%3D%22%23009900%22%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next {
  right: 10px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2044%22%3E%3Cpath%20d%3D%22M27%2C22L5%2C44l-6.1-6.1L10.9%2C22L-1.1%2C10L5%2C0L27%2C22z%22%20fill%3D%22%23009900%22%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 10;
}
.swiper-pagination-fraction {
  bottom: 10px;
  font-size: 14px;
  color: #009900;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #009900;
  opacity: 0.2;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
