.ctrl-carousel{
	position: relative;
	width: 100%;
	height: 100%;
}
.ctrl-carousel-con{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.ctrl-carousel-con ul{
	position: absolute;
	top: 0;
}
.ctrl-carousel-con ul li{
	float: left;
}
.ctrl-carousel .change-bnt{
	display: block;
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0px;
	background-repeat: no-repeat;
	background-position: center;
}
.ctrl-carousel .change-bnt.prev-bnt{
	left: 0px;
	background-image: url(arrow-l.png);
}
.ctrl-carousel .change-bnt.next-bnt{
	right: 0px;
	background-image: url(arrow-r.png);
}
.ctrl-carousel-list {
	width: 289px;
	height: 380px;
	margin-right: 8px;
	background-color: #CCC;
}
.ctrl-carousel-list a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.ctrl-carousel-list a .img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.ctrl-carousel-list a .img i {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.ctrl-carousel-list a .title {
	display: block;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 60px;
	padding: 0px 15px;
	line-height: 60px;
	text-align: center;
	color: #FFC555;
	background-color: #6a3906;
	filter: alpha(opacity=80); /*IE*/
	-moz-opacity: 0.8; /*MOZ , FF*/
	background: rgba(106,57,6,0.8)!important; /*　使用IE专属滤镜实现IE背景透明*/
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}