﻿.show-pc {
	display: block !important;
}

.show-wap {
	display: none !important;
}

@media (max-width: 800px) {
	.show-pc {
		display: none !important;
	}

	.show-wap {
		display: block !important;
	}

}
/* 轮播图容器样式 */
.swiper-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative; /* 确保分页器定位正确 */
}

/* 分页器容器样式 */
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; /* 垂直居中 */
  z-index: 10;
  gap: 8px; /* 圆点间距 */
}

/* 默认分页圆点样式 */
.swiper-pagination-bullet {
  width: 8px;  /* 调整大小 */
  height: 8px;
  background: rgba(255, 255, 255, 0.5); /* 半透明白色 */
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease; /* 添加过渡动画 */
  cursor: pointer;
  margin: 0 !important; /* 移除默认 margin，改用 gap 控制间距 */
}

/* 激活状态分页圆点样式 */
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #EB611E !important;
/*  width: 12px !important;
  height: 12px !important; */
}