.home-box{
  padding:1.25vw 3.125vw 3.125vw 3.125vw;
}
.home-banner {
  border-radius: .8333vw;
}
.home-banner:hover [class^="swiper-button-"]{
    display: flex;
}
/* 首页swiper */
.swiper-button-next, .swiper-button-prev {
  display:none;
  background-image: none;
  width: 2vw;
  height: 2vw;
  color: var(--theme-color);
  font-size: 2vw;
  top: 50%;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
  margin:0;
}

.swiper-button-next {
  right: 1.0416vw;
}

.swiper-button-prev {
  left: 1.0416vw;
}
.home-banner .swiper-slide  a {
  aspect-ratio:2.05 / 1;
  display: block;
}
.home-banner img{
  width: 100%;
  aspect-ratio:2.05 / 1;
}
.home-banner .swiper-lazy-loading{
  aspect-ratio:auto;
}
.swiper-pagination-bullet {
  width: 48px;
  height: 5px;
  border-radius: 1.04167vw;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--theme-color);
}

@media (max-width: 828px), (orientation: portrait) {
  .home-box{
    padding:1.25vw 4.25vw  4.25vw  4.25vw;
  }
  .home-banner {
    border-radius:1.75vw
  }
  .swiper-button-next, .swiper-button-prev {
    display: none;
  }
  .home-banner .swiper-slide  a {
    aspect-ratio:1 / 1.7777;
  }
  .home-banner img{
    width: 100%;
    aspect-ratio:1 / 1.7777;
  }
  .swiper-pagination-bullet {
    width: 24px;
    height: 3px;
  }
  
}

