.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.indicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}
.indicator.active {
  background-color: #fff;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: PingFang SC, PingFang SC;
  font-size: 40px;
  color: white;
  background: #bcbfce;
  width: 60px;
  height: 60px;
  z-index: 100;
  border-radius: 50%;
  /* opacity: 0; */
  transition: opacity 0.3s ease-in-out;
}
.prev::before,
.next::before {
  position: absolute;
  left: calc(50% - 5px);
  top: calc(50% - 10px);
  content: "";
  transform: rotate(-135deg);
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.next::before {
  left: calc(50% - 15px);
  transform: rotate(45deg);
}
.next {
  right: 0;
}
.slider:hover .prev,
.slider:hover .next {
  opacity: 1;
}
.hiddenMove .prev,
.hiddenMove .next {
  display: none;
}

.indicatorsTop .slide-track {
  height: calc(100vh - 40px);
}

.indicatorsColor .indicator {
  background: #c4c6d5;
}
.indicatorsColor .indicator.active {
  background-color: #e76833;
}
