/* 大框架样式 */
.ft-carousel {
	position: relative;
	width:579px;
	height:242px;
	overflow: hidden;
}
/* 图片样式 */
.ft-carousel ul{
	position: absolute;
	left: 0;
	top: 0;
	padding: 0;
}

.ft-carousel .carousel-inner li{
	float: left;
	list-style: none;
	
}
.ft-carousel .carousel-inner li img{
   width:579px;
   height:242px;
   border:0;	
}


/* 标记样式 */
.ft-carousel .carousel-indicators {
	position: absolute;
	right: 10px;
	bottom: 11px;	
}
.ft-carousel .carousel-indicators span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #fff;
	margin: 0 3px;
	cursor: pointer;
	border-radius:50%;
}

.ft-carousel .carousel-indicators span.active {
	background-color: #ff0000;
}