/* ========================================
   首页特有样式 - Swiper轮播图
   ======================================== */

/* Swiper箭头大小 */
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 12px;
  height: 12px;
}

/* Swiper 分页指示器 - 横线样式 */
.hero-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: all 0.3s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 24px;
  background: #3b82f6;
}

/* Swiper 箭头 - 隐藏默认伪元素 */
.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  display: none;
}