/* 自定义Swiper焦点图样式 */


/* 分页器样式 */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgb(84, 3, 27);
  border: 2px solid rgba(84, 3, 27, 0.7);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.swiper-pagination-bullet-active {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* 导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .swiper-button-next {
    right: 10px;
  }
  
  .swiper-button-prev {
    left: 10px;
  }
  
  .swiper-pagination {
    bottom: 15px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 3px;
    border-width: 1.5px;
  }
}
