img {
  display: inline-block;
  object-fit: cover;
}
/* 首页banner */
.swiper1 {
  --swiper-navigation-color: #fff;
}
.swiper1 .swiper-pagination-bullet-custom {
  width: 20px;
  height: 4px;
  background-color: #fff;
  display: inline-block;
  margin: 0 5px;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .swiper1 .swiper-pagination-bullet-custom {
    width: 50px;
    height: 10px;
    margin: 0 10px;
  }
}
.swiper1 .swiper-pagination-bullet-custom--active {
  opacity: 1;
}
.swiper1 .swiper-button-prev {
  left: 10%;
}
.swiper1 .swiper-button-next {
  right: 10%;
}

/*首页 产品轮播 */
.swiper2 .swiper-pagination-bullet-custom2 {
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
}
/* 异形 */
.swiper2 .swiper-slide {
  transform: scale(0.9);
  transition: transform 0.3s;
}
.swiper2 .swiper-slide-active {
  transform: scale(1);
}
.swiper2 .swiper-pagination-bullet-custom--active2 {
  background-color: #045acf;
  /* background-color: red; */
}
/*首页 动态轮播 */
.swiper3 .swiper-pagination-bullet-custom3 {
  width: 10px;
  height: 10px;
  background-color: #fff;
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
}
.swiper3 .swiper-pagination-bullet-custom--active3 {
  background-color: #045acf;
}

/* pc的分页 */
.page {
}
.pages .page-numbers {
  background-color: #d5d9df;
  color: #0663e2;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  white-space: nowrap;
  font-size: 12px;
}
.pages .page-numbers:first-child,
.page-numbers:nth-of-type(2),
.page-numbers:nth-last-of-type(2),
.page-numbers:last-child {
  width: auto;
  padding: 0 10px;
}
.pages .page-numbers.active,
.pages .page-numbers:hover {
  background-color: #0663e2;
  color: #fff;
}
@media (max-width: 768px) {
  .pages .page-numbers {
    display: none;
    width: 33%;
  }
  .pages .page-numbers:nth-of-type(2),
  .pages .page-numbers:nth-last-of-type(2) {
    display: flex;
  }
}
