/**
 * 描述：图片轮播插件
 * 用法：
 * 创建人：chenjh  创建时间：2019-01-21
 */
.cSlide-container{
	padding: 0;
	margin: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.cSlide-wrapper{
	width: 99999999px;
	position: relative;
	left: 0;
}

.cSlide-wrapper:after{
	content: "";
	display: block;
	clear: both;
}

.cSlide-slide{
	float: left;
	text-align: center;
}

.cSlide-pagination{
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	text-align: center;
}

.cSlide-pagination a{
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: none;
	border: 2px solid #fff;

}

.cSlide-pagination.disabled a{
	cursor: default;
}


.cSlide-pagination a.active{
	width: 12px;
	height: 12px;
	background: #fff;
}

.cSlide-pagination a+a{
	margin-left: 5px;
}

.cSlide-button{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 50%;
	margin-top: -15px;

}

.cSlide-button.prev{
	left: 20px;
	background: url(img/prev.png) no-repeat center;
}

.cSlide-button.next{
	right: 20px;
	background: url(img/next.png) no-repeat center;
}

.cSlide-button.prev:hover{
	background-image: url(img/prev_hover.png);
}

.cSlide-button.next:hover{
	background-image: url(img/next_hover.png);
}
