/*轮播图*/
.swiper-horizontal > .swiper-pagination-bullets {
	position: absolute;
	bottom: -50px; /* 距离底部位置 */
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
	width: 30px;
	height:12px;
	border-radius: 6px;
	background-color: #ff7700;
	cursor: pointer;
	transition: all 0.3s ease;
}
/*轮播图88*/