.section .high {
  top: 35%;
}

.section .white {
  color: #fff;
}

.section .low {
  margin-top: 100px;
}

.section .section-des .follow {
  color: #fff;
  background-color: rgba(0, 170, 238, .8);
}

/* 滑动列表 */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel .box {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  transition: all 1s ease-out;
}

.carousel .box img {
  width: 100vw;
  display: block;
}

.carousel li {
  float: left;
}

.carousel .controls {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.carousel .controls li {
  margin: 0 10px;
  width: 20px;
  line-height: 30px;
  font-size: 14px;
  color: #333333;
  text-align: center;
  cursor: pointer;
  opacity: .5;
  border-bottom: 1px solid transparent;
  transition: all .6s linear;
}
.carousel .controls li.current {
  opacity: 1;
  border-bottom: 1px solid blueviolet;
}
#carousel-16 {
  background-color: #000;
}

/* 移动端 */
@media screen and (max-width: 950px) {
  #title2 h2 {
    width: 80%;
    margin: 0 auto 20px;
    white-space: normal;
  }
}