* {
  margin: 0;
  padding: 0;
}

.slide-box {
  position: relative;
  margin: 30px auto;
  height: 300px;
  max-width: 1200px;
  min-width: 700px;
  padding-bottom: 120px;
  /* background-color: antiquewhite; */
}

.banner-box {
  position: relative;
  height: 100%;
  width: 100%;
}

.banner-item {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 90%;
  /* background-color: #fff; */
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 0;
}

.banner-item>img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transform: opacity 0.5s;
  object-fit: cover;
}

.banner-item.left {
  left: 35%;
  transform: translateX(-35%);
  z-index: 50;
}

.banner-item.right {
  left: 65%;
  transform: translateX(-65%);
  z-index: 50;
}

.banner-item.middle {
  width: 550px;
  height: 100%;
  z-index: 100;
}

.banner-item.middle>img {
  opacity: 1;
}

.slide-left-btn,
.slide-right-btn {
  position: absolute;
  top: 32%;
  z-index: 200;
  width: 60px;
  /* height: 40px; */
  font-size: 30px;
  font-weight: 900;
  color: #b4b4b4;
  border: none;
  background: none;
}

/* .slide-left-btn:hover,
.slide-right-btn:hover {
  color: #fff;
} */

.slide-left-btn {
  left: 18.5%;
}

.slide-right-btn {
  right: 17.5%;
}

.pagination-box {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination-box>span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: #D9D9D9;
}

.pagination-box>span.chose {
  background-color: #26B1FF;
}