/* 轮播图 */
.banner {
  width: 1200px;
  height: 675px;
  position: relative;
}

.bannerBox {
  display: flex;
}

.bannerItem {
  width: 1200px;
  height: 675px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.bannerItem img {
  width: 100%;
  height: 100%;
}

.bannerBottomItem {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1200px;
  height: 90px;
  background: linear-gradient(353deg, #000000 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 0px 0px 10px 10px;
  color: #FFFFFF;

}

.bannerBottomItem .text {
  width: 970px;
  height: 90px;
  font-size: 3.6rem;
  line-height: 90px;
  padding-left: 20px;
  color: #FFFFFF;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.banner .hd {
  width: 150px;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

.banner .hd ul {
  list-style: none;
  display: flex;
  justify-content: right;
}

.banner .hd ul li {
  width: 15px;
  height: 15px;
  background: #FFFFFF;
  border-radius: 10px;
  margin: 0 8px;
}

.banner .hd ul .on {
  width: 60px;
  height: 15px;
  background: #D6000F;
  border-radius: 10px;
}