.swiper-container {
	width: 100%;
	height: 670px;
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0;
}
.swiper-wrapper {
	width: 100%;
	height: 630px;
	display: flex;
}
.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 630px;
}
/*两边箭头开始*/
.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 40%;
	width: 50px;
	height: 80px;
	background-size: 50px 80px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background-image: url(../images/prevArrow.png);
	left: 0.1rem;
	right: auto;
	cursor: pointer;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url(../images/nextArrow.png);
	right: 0.1rem;
	left: auto;
	cursor: pointer;
}
/*两边箭头结束*/

/*下面圆圈开始*/
.swiper-pagination {
	position: absolute;
	text-align: center;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 1%;
	width: 100%;
}
.swiper-pagination-bullet {
	width: 40px;
	height: 10px;
	display: inline-block;
	background: #333333;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	cursor: pointer;
	transition: all 0.5s;
}
.swiper-pagination-bullet:hover {
	background: #006600;
	transition: all 0.5s;
}
.swiper-pagination-bullet-active {
	background: #00cc00;
}
/*下面圆圈结束*/

/* 幻灯片结束 */
