/* 轮播图 start */
.slideBox {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 120px;
}
@media (max-width: 768px) {
	.slideBox {
		margin-top: 50px;
	}
}

.banner-hd {
	/* height: 15px; */
	overflow: hidden;
	position: absolute;
	right: 5px;
	bottom: 5px;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.hd-ul {
	overflow: hidden;
	zoom: 1;
	/* display: inline-block; */
	display: none;
}

.hd-li {
	float: left;
	width: 13px;
	height: 3px;
	margin: 0 3px;
	background: hsla(0,0%,89.8%,.4);
	cursor: pointer;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	border-radius: 4px;
}

.hd-li.on {
	width: 26px;
	background-color: #e5e5e5;
}

@media (max-width: 480px) {
	.hd-li.on {height: 5px; margin: 2px 3px;}
}
.banner-list-ul {
	position: relative;
	height: 100%;
	z-index: 0;
	/* max-height: 800px; */
}

.banner-list-li {
	zoom: 1;
	vertical-align: middle;
}

.banner-list-link {
	display: block;
}

.banner-list-image {
	width: 100%;
	display: block;
	/* height: 800px; */
	height: 500px;
}
@media (max-width: 1600px) {
	.banner-list-image {height: 480px;}
}
@media (max-width: 1400px) {
	.banner-list-image {height: 440px;}
}
@media (max-width: 1200px) {
	.banner-list-image {height: 410px;}
}
@media (max-width: 992px) {
	.banner-list-image {height: 390px;}
}
@media (max-width: 768px) {
	.banner-list-image {height: 360px;}
}
@media (max-width: 666px) {
	.banner-list-image {height: 300px;}
}
@media (max-width: 560px) {
	.banner-list-image {height: 260px;}
}
@media (max-width: 480px) {
	.banner-list-image {height: 220px;}
}
@media (max-width: 375px) {
	/* .banner-list-image {height: 180px;} */
	.banner-list-image {height: 150px;}
}
/* 下面是前/后按钮代码，如果不需要删除即可 */
.banner-prev,
.banner-next {
	position: absolute;
	left: 3%;
	top: 50%;
	margin-top: -25px;
	display: block;
	width: 32px;
	height: 40px;
	background: url(../images/slider-arrow.png) -110px 5px no-repeat;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.banner-next {
	left: auto;
	right: 3%;
	background-position: 8px 5px;
}

.banner-prev:hover,
.banner-next:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}

.slideBox .prevStop {
	display: none;
}

.slideBox .nextStop {
	display: none;
}


.banner-swiper-button-next, .banner-swiper-button-prev {
	color: #fff;
	width: 70px;
	height: 70px;
	border-radius: 5px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,.1);
	margin-top: -35px;
}

.banner-swiper-button-prev {
	color: #fff;
	background-image: url(../images/left.png);
}
.banner-swiper-button-next {
	color: #fff;
	background-image: url(../images/right.png);
}
.banner-swiper-button-next:hover, .banner-swiper-button-prev:hover {
	background-color: rgba(0,0,0,.3);
}
@media (max-width: 768px) {
	.banner-swiper-button-next, .banner-swiper-button-prev {
		width: 50px;
		height: 50px;
	`margin-top: -25px;
	}
}
@media (max-width: 480px) {
	.banner-swiper-button-next, .banner-swiper-button-prev {
		width: 25px;
		height: 36px;
		margin-top: -18px;
	}
}

/* 轮播图 end */