.banner-con {
  width: 100%;
  height: 4.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-con::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 91, 198, 0.15);
  z-index: 1;
  animation: bannerOverlay 1.5s ease-out forwards;
}

@keyframes bannerOverlay {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.banner-con .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2) translateY(0.1rem);
  opacity: 0;
  animation: bannerEntrance 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes bannerEntrance {
  0% {
    transform: scale(1.2) translateY(0.1rem);
    opacity: 0;
  }
  30% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.product-tabs-wrapper {
  width: 100%;
  background: #f5f7fa;
  padding: 0;
}
.white-wrapper {
  background: #fff;
}

.product-tabs-wrapper .product-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-tabs-wrapper .product-tabs::-webkit-scrollbar {
  display: none;
}

.product-tabs-wrapper .product-tabs .sub-tab {
  height: 0.8rem;
  background: #f5f7fa;
  padding: 0 0.59rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  color: #000;
  margin-right: 0.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.white-wrapper .product-tabs .sub-tab {
  background: #fff;
}
.product-tabs-wrapper .product-tabs .sub-tab:hover {
  background: #004B9B;
  color: #ffffff;
}
.product-tabs-wrapper .product-tabs .sub-tab.active {
  background: #004B9B;
  color: #ffffff;
}
@media screen and (max-width: 1080px){
  .product-more .product-tabs .sub-tab {
    padding: 0 0.46rem;
  }
}
@media screen and (max-width: 1024px){
  .product-more .product-tabs .sub-tab {
    padding: 0 0.36rem;
    margin-right: 0.15rem;
  }
}
@media screen and (max-width: 920px){
  .product-more .product-tabs .sub-tab {
    padding: 0 0.25rem;
    margin-right: 0.1rem;
    font-size: 0.16rem;
  }
}
@media screen and (max-width: 768px) {
  .banner-con {
    height: 6.45rem;
  }

  .product-tabs-wrapper .product-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .product-tabs-wrapper .product-tabs::-webkit-scrollbar {
    display: none;
  }
  .product-tabs-wrapper .product-tabs .sub-tab {
    height: 1.28rem;
    padding: 0 0.53rem;
    font-size: 0.34rem;
    flex-shrink: 0;
    white-space: nowrap;
  }
    .product-tabs-wrapper .safe-width{
        padding: 0;
    }
}
