.slideshowBox {
  width: 1200px;
  height: 580px;
  overflow: hidden;
  position: relative;
}

.left_btn {
  position: absolute;
  width: 58px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  left: -58px;
  opacity: 0;
  transition: 1s;
  z-index: 999;
  cursor: pointer;
}

.right_btn {
  position: absolute;
  width: 58px;
  height: 100px;
  top: 50%;
  transform: translateY(-50%);
  right: -58px;
  opacity: 0;
  transition: 1s;
  z-index: 999;
  cursor: pointer;
}

.left_btn img,
.right_btn img {
  width: 100%;
  height: 100%;
}

.slideshowBox:hover .left_btn {
  left: 0px;
  opacity: 1;
}

.slideshowBox:hover .right_btn {
  right: 0px;
  opacity: 1;
}

.imageBox {
  position: absolute;
  width: 700px;
  height: 390px;
  top: 15%;
  /* transform: translateY(-50%); */
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 0 10px #aaaaaa; */
  transition: 1s;
}

.imageBox img {
  width: 100%;
  height: 100%;
  transition: 1s;
}

.box_title {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  background-color: #616161b3;
}

.box_title span {
  display: block;
  width: 80%;
  /* background-color: #6cf; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.indicators {
  display: flex;
  align-items: center;
  position: absolute;
  right: 160px;
  bottom: 65px;
  padding: 0 10px;
  z-index: 99999;
}

.indicators li {
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background-color: #b2adad;
  margin-right: 15px;
  cursor: pointer;
}

.indicators li:last-child {
  margin-right: 0;
}

.indicators .active {
  background-color: #2c78ca;
}

.slideshowBox #last {
  transform: translateX(0);
  z-index: 9;
  opacity: 1;
}
.slideshowBox #first {
  transform: translateX(250px) scale(1.3);
  z-index: 99;
  opacity: 1;
}
.slideshowBox #second {
  transform: translateX(500px);
  z-index: 9;
  opacity: 1;
}
.slideshowBox #left {
  transform: translateX(-100px);
  z-index: 1;
  opacity: 0;
}
.slideshowBox #right {
  transform: translateX(500px);
  z-index: 1;
  opacity: 0;
}

.slideshowBox #first .box_title {
  display: block;
}

.slideshowBox #first:hover img {
  transform: scale(1.1);
  transition: 1s;
}
