ul,
ol,
li,
div {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

.ft-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent;
}

.ft-carousel .carousel-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.ft-carousel .carousel-inner .carousel-item {
	float: left;
	height: 100%;
	padding: 0 2.65%;
}

.carousel-item-header {
	height: 60px;
	padding-top: 10px;
	border-bottom: 1px solid #eee;
	font-family: AlibabaPuHuiTiM;
	font-size: 16px;
	color: #333333;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.carousel-item-content {
	padding: 20px 10px 0;
	height: calc( 100% - 50px );
	overflow-y: auto;
	overflow-x: hidden;
}

/* Demonstrate a "mostly customized" scrollbar
 * (won't be visible otherwise if width/height is specified) */
.carousel-item-content::-webkit-scrollbar {
	width: 5px;
	height: 8px;
}
/* Add a thumb */
.carousel-item-content::-webkit-scrollbar-thumb {
	height: 50px;
	background-color: #b8b8b8;
	-webkit-border-radius: 6px;
	outline-offset: -2px;
	filter: alpha(opacity = 50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.carousel-item-content-title {
	height: 20px;
	display: flex;
	align-items: center;
}

.carousel-item-content-content {
	margin-top: 5px;
}

.ft-carousel .carousel-item img {
	/*width: 100%;*/
}

.ft-carousel .carousel-indicators {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	text-align: center;
	font-size: 0;
}

.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: 50%;
	width: 62px;
	height: 62px;
	margin-top: -31px;
	cursor: pointer;
	background: #000;
	opacity: 0.6;
}

.ft-carousel .carousel-prev-btn {
	left: 0;
	background: url(../images/prev.png) no-repeat;
}

.ft-carousel .carousel-next-btn {
	right: 0;
	background: url(../images/next.png) no-repeat;
}