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: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.ft-carousel .carousel-inner .carousel-item {
	float: left;
	height: 100%;
}

.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: transparent;
	margin: 0 4px;
	/* border-radius: 50%; */
	padding: 15px 15px;
	cursor: pointer;
	position: relative;
}
.ft-carousel .carousel-indicators span::before {
	position: absolute;
	top: 15px;
	left: 0;
	content: "";
	width: 40px;
	height: 2px;
	font-size: 30px;
	line-height: 20px;
	text-align: center;
	background-color: gray;
	opacity: .2;
	filter: alpha(opacity=20);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.ft-carousel .carousel-indicators span:hover::before {
	opacity: 1;
}
.ft-carousel .carousel-indicators span.active:before {
 	opacity: 1;
}

.ft-carousel .carousel-btn {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	cursor: pointer;
}

/* .ft-carousel .carousel-prev-btn {
	left: 0;
	background: url('../img/left.png') no-repeat;
	background-size: 30px;
} */

/* .ft-carousel .carousel-next-btn {
	right: 0;
	background: url(../img/right.png) no-repeat;
	background-size: 30px;
} */
.ft-carousel .carousel-prev {
	left: 50%;
	margin-left: -600px;
}
.ft-carousel .carousel-next {
	right: 50%;
	margin-right: -370px;
}
/* .carousel-btn .opacity-bg {
	background: #000;
	opacity: .2;
	filter: alpha(opacity=20);
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	left: 0;
	top: 0;
} */
.carousel-btn .carousel-prev-btn {
	/* width: 30px;
	height: 30px; */
	/* background: url('../img/left.png') no-repeat; */
	background-size: 30px;
	/* 水平垂直居中 */
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}
.carousel-btn .carousel-next-btn {
	/* width: 30px;
	height: 30px; */
	/* background: url('../img/right.png') no-repeat; */
	background-size: 30px;
	/* 水平垂直居中 */
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}