.kuangke-slider-section {
  padding: 130px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.kuangke-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* Swiper 轮播样式 */
.kuangke-brand-slider {
  overflow: visible;
}
.kuangke-slider-section h3{
  text-align: center;
  padding-bottom: 20px;
}
.kuangke-brand-slider .swiper-wrapper {
  align-items: center;
}

.kuangke-brand-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* 品牌卡片样式 */
.kuangke-brand-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px 0px rgba(185, 209, 230, 0.3);
  padding: 30px 20px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kuangke-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px 0px rgba(185, 209, 230, 0.4);
}

.brand-logo-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 100%;
  max-height: 80px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* 轮播指示器样式 */
.kuangke-slider-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.kuangke-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #808080;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.kuangke-slider-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary, #1554a3);
  opacity: 1;
  transform: scale(1.2);
}

/* 平板端响应式 */
@media (max-width: 1200px) {
  .kuangke-slider-section {
    padding: 50px 0;
  }

  .kuangke-brand-card {
    padding: 25px 15px;
    max-width: 160px;
    min-height: 100px;
  }

  .brand-logo {
    max-height: 60px;
  }
}

/* 移动端响应式 */
@media (max-width: 768px) {
  .kuangke-slider-section {
    padding: 40px 0;
  }

  .kuangke-brand-card {
    padding: 15px 8px;
    max-width: 110px;
    min-height: 70px;
  }

  .brand-logo {
    max-height: 45px;
  }

  .kuangke-slider-pagination {
    margin-top: 20px;
  }

  .kuangke-slider-pagination .swiper-pagination-bullet {
    width: 3px;
    height: 3px;
    margin: 0 4px;
  }
}

/* 小屏幕移动端 */
@media (max-width: 480px) {
  .kuangke-brand-card {
    padding: 12px 6px;
    max-width: 95px;
    min-height: 60px;
  }

  .brand-logo {
    max-height: 35px;
  }

  .kuangke-slider-pagination .swiper-pagination-bullet {
    width: 2px;
    height: 2px;
    margin: 0 3px;
  }
}

/* 超小屏幕移动端 */
@media (max-width: 360px) {
  .kuangke-brand-card {
    padding: 10px 5px;
    max-width: 85px;
    min-height: 55px;
  }

  .brand-logo {
    max-height: 30px;
  }

  .kuangke-slider-pagination {
    margin-top: 15px;
  }

  .kuangke-slider-pagination .swiper-pagination-bullet {
    width: 2px;
    height: 2px;
    margin: 0 2px;
  }
}

/* 中等移动端屏幕 */
@media (min-width: 481px) and (max-width: 600px) {
  .kuangke-brand-card {
    padding: 18px 10px;
    max-width: 120px;
    min-height: 75px;
  }

  .brand-logo {
    max-height: 50px;
  }
}
