@charset "UTF-8";

.cu_box{
	width: 1200px;
	margin: 20px auto;
	position: relative;
}
.cu_l li{
	width: 20%;
	height: 100px;
	overflow: hidden;	
		border: 1px solid #dbdbdb;
}
.cu_l li img{
	width: 100%;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-ms-transform: all .3s;
}
.cu_l li:hover img{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	box-shadow: none;
}
.cu_box .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	margin: 0 8px;
}
.swiper-pagination{
	position: absolute;
	left: 50%;
	bottom: -40px;
	margin-left: -32px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
	.cu_box{
		width: 992px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
	.cu_box{
		width: 768px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
	.cu_box{
		width: 94vw;
	}
}