@charset "utf-8";

.apple-banner {
  width: 100%;
  height: 48rem;
  overflow: hidden;
  margin-top: 5rem;
}
.apple-banner .swiper-container {
  margin-top: 0rem;
  width: 100%;
  height: 48rem;
}
.swiper-button-prev,
.swiper-button-next {
  width: 15%;
  height: 100%;
  top: 0;
  background: none;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev span,
.swiper-button-next span {
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: 10vw;
  top: 50%;
  margin-top: -2rem;
  border-radius: 100%;
  background: rgba(180, 180, 180, 0.4);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.swiper-button-next span {
  background: rgba(180, 180, 180, 0.4);
  left: auto;
  right: 10vw;
}

.swiper-button-next span {
  &::after{
    display: block;
    content: "➡";
    line-height: 4rem;
    text-align: center;
    color: #fff;
  }
}
.swiper-button-prev span {
  &::after{
    display: block;
    content: "⬅";
    line-height: 4rem;
    text-align: center;
    color: #fff;
  }
}
.swiper-button-prev:hover span,
.swiper-button-next:hover span {
  background-color: #003789;
}
/*分页器*/
.apple-banner .swiper-pagination {
  top: auto;
  bottom: 3.125rem;
  background: none;
}
.apple-banner .swiper-pagination-bullet {
  display: inline-block;
  width: 3.125rem;
  height: 1.875rem;
  margin: 0 0.1875rem;
  cursor: pointer;
  background: none;
  border-radius: 0;
  opacity: 1;
}
.apple-banner .swiper-pagination-bullet span {
  width: 3.125rem;
  height: 0.125rem;
  display: block;
  background: rgba(128, 128, 128, 0.2);
}
.apple-banner .swiper-pagination-bullet-active span {
  background: gray;
}
.apple-banner .autoplay .swiper-pagination-bullet-active span {
  background: rgba(128, 128, 128, 0.2);
}
.apple-banner .swiper-pagination-bullet i {
  background: gray;
  height: 0.125rem;
  transform: scaleX(0);
  transform-origin: 0;
  display: block;
}
.apple-banner .autoplay .firsrCurrent i {
  transition: transform 2.9s linear;
  transform: scaleX(1);
}
.apple-banner .autoplay .current i {
  transition: transform 4s linear;
  transform: scaleX(1);
}
.apple-banner .autoplay .replace span {
  background: gray;
}
/*内容样式*/

.slide1 {
  background: #000 url(/images/banner5.jpg) no-repeat center;
  background-size: 100%;
}

.slide1 .title {
  text-align: center;
  margin-top: 6.25rem;
  font-size: 1.875rem;
  font-weight: normal;
  color: #fff;
}

.slide2 {
  background: #f3f3f3 url(/images/banner4.jpg) no-repeat center;
  background-size: 100%;
}

.slide2 .title {
  padding-top: 6.25rem;
  text-align: center;
}

.slide2 h2 {
  bottom: 6.25rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: normal;
  position: absolute;
  width: 100%;
}

.slide3 {
  background: #fff url(/images/banner6.jpg) no-repeat center;
  background-size: 100%;
}
.slide4 {
  background: #fff url(/images/banner7.jpg) no-repeat center;
  background-size: 100%;
}
.slide5 {
  background: #fff url(/images/banner1.jpg) no-repeat center;
  background-size: 100%;
}
.slide6 {
  background: #fff url(/images/banner2.jpg) no-repeat center;
  background-size: 100%;
}

.slide3 .title {
  text-align: center;
  margin-top: 6.25rem;
  font-size: 2.5rem;
  font-weight: normal;
}

@media screen and (max-width: 1440px) {
  .apple-banner {
    height: 44rem;
  }
  .apple-banner .swiper-container {
    height: 44rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .apple-banner {
    margin-top: 3.125rem;
    height: 13rem;
  }
  .apple-banner .swiper-container {
    height: 13rem;
    margin-top: 0;
  }
  .slide1 {
    background-size: cover;
    background-position: center;
  }
  .slide2 {
    background-size: cover;
    background-position: center;
  }
  .apple-banner .swiper-pagination{
    bottom: 0;
  }
  .swiper-button-prev span, .swiper-button-next span{
    display: none;
  }
}
