.swiper {
  position: relative;
  width: 600px;
  height: 370px;
}
.swiper .covers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper .covers li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 2s;
}
.swiper .covers li img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper .covers li.current {
  z-index: 9;
  opacity: 1;
  transition: all 2s;
}
.swiper .desc {
  position: absolute;
  z-index: 9;
  bottom: 0;
  width: 100%;
  height: 54px;
  line-height: 54px;
  background-color: rgba(0, 0, 0, 0.65);
}
.swiper .desc .titles li {
  font-size: 16px;
  color: #fff;
  text-indent: 1em;
  display: none;
}
.swiper .desc .titles li a {
  font-size: inherit;
  color: inherit;
}
.swiper .desc .titles li.current {
  display: block;
}
.swiper .desc .count {
  position: absolute;
  top: 0;
  right: 1em;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  color: #fff;
}
.swiper .flags {
  position: absolute;
  z-index: 99;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background-color: rgba(0, 101, 178, 0.1);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-radius: 10px;
}
.swiper .flags li {
  opacity: 0;
  height: 2px;
  background-color: #0065B2;
  transition: all 2s;
}
.swiper .flags li.current {
  opacity: 1;
  height: 2px;
  background-color: #0065B2;
  transition: all 2s;
}
.swiper .prev,
.swiper .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.swiper .prev {
  left: 0;
}
.swiper .next {
  right: 0;
}

.banner-swiper {
  position: relative;
  width: 100%;
  height: 140px;
}
.banner-swiper .desc {
  display: none;
}
.banner-swiper .count {
  display: none;
}
.banner-swiper .flags {
  display: none;
}
.banner-swiper .prev,
.banner-swiper .next {
  background-color: rgba(0, 0, 0, 0.5);
}