
#c-carousel{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
#c-carousel #c-imgContent{
	margin: 0;
	padding: 0;
	list-style: none;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#c-carousel #c-imgContent li{
	float: left;
	height: 100%;
}
#c-carousel #c-imgContent li img{
	display: inline-block;
	width: 100%;
	height: 100%;
}
.clearfix:after{
	content: "";
	display: block;
	clear: both;
	height: 0;
}
.clearfix{
	zoom: 1;
}
#c-carousel #c-iconContent{
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -45px;
}
#c-carousel #c-iconContent li{
	float: left;
	width: 8px;
	height: 8px;
	margin: 0 2px;
	cursor: pointer;
	border-radius: 50%;
	background-color: transparent;
	border: 3px solid #fff;
}
#c-carousel #c-iconContent li.active,
#c-carousel #c-iconContent li:hover{
	background-color: #fff;
}
#c-carousel #c-left,
#c-carousel #c-right{
	width: 10%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	font-family: serif;
	font-weight: 900;
	cursor: pointer;
	color: #bbb;
	text-align: center;
	line-height: 100%;
	/* 文字不被选中 */
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
	background: -webkit-linear-gradient(to right,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: -o-linear-gradient(to right,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: -moz-linear-gradient(to right,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: linear-gradient(to right,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
}
#c-carousel #c-right{
	left: auto;
	right: 0;
	background: -webkit-linear-gradient(to left,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: -o-linear-gradient(to left,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: -moz-linear-gradient(to left,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
	background: linear-gradient(to left,rgba(80, 80, 80, 0.8), rgba(160, 160, 160, 0.2));
}
#c-carousel #c-left:hover{
	background: -webkit-linear-gradient(to right,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: -o-linear-gradient(to right,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: -moz-linear-gradient(to right,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: linear-gradient(to right,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	color: #ddd;
}
#c-carousel #c-right:hover{
	background: -webkit-linear-gradient(to left,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: -o-linear-gradient(to left,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: -moz-linear-gradient(to left,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	background: linear-gradient(to left,rgba(30, 30, 30, 0.8), rgba(120, 120, 120, 0.5));
	color: #ddd;
}