ul,
ol,
li,
div {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

.ft-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ft-carousel .carousel-inner {
	position: relative;
	left: 0;
	top: 0;
	height: 100%;
}

.ft-carousel .carousel-inner .carousel-item {
	float: left;
	height: 100%;
}

.ft-carousel .carousel-item .img {
	width: 100%;
	height:auto;
	overflow:hidden;
}
.ft-carousel .carousel-item .img img{
	width:100%;
	height:100%;
}
.ft-carousel .carousel-item a:hover .img img{
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.ft-carousel .carousel-item .text{
	height:116px;
	padding:8px 22px;
	font-size:18px;
	line-height:30px;
	background-color:#f4f4f4;
	border-top:1px solid #eee3e3;
}
.ft-carousel .carousel-item .text .ndate{
	padding-bottom:4px;
	font-size:14px;
	color:#9e0107;
}
.ft-carousel .carousel-item .text .ndate span{
	font-size:30px;
}
.ft-carousel .carousel-indicators {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	text-align: center;
	font-size: 0;
	display:none;
}
.ft-carousel .carousel-indicators span {
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #fff;
	margin: 0 4px;
	border-radius: 50%;
	cursor: pointer;
}

.ft-carousel .carousel-indicators span.active {
	background-color: #de3a3a;
}

.ft-carousel .carousel-btn {
	position: absolute;
	top: 33%;
	width: 38px;
	height: 38px;
	cursor: pointer;
}

.ft-carousel .carousel-prev-btn {
	left: 14px;
	background: url(../images/prev.png) no-repeat;
}

.ft-carousel .carousel-next-btn {
	right: 14px;
	background: url(../images/next.png) no-repeat;
}
@media screen and (max-width: 1000px) {
	.ft-carousel .carousel-item .text{
		font-size:16px;
	}
}