ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.carousel-content{
	position: relative;
	display: inline-block;
	width: 100%;
}
.carousel{
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
	margin-bottom: 0px !important;
}
.carousel li{
	float: left;
	position: absolute;
	display: none;
}
.carousel li,.carousel li img{
	/*width: 100%;*/
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.img-index{
	position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.img-index li{
	float: left;
    width: 18px;
    height: 10px;
    line-height: 18px;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.2);
    font-size: 12px;
    cursor: pointer;
    margin: 0 3px;
    color: #fff;
}
.img-index li.index{
	background-color: rgba(0,137,149,1);
}
.img-index li:hover{
	background-color: rgba(0,137,149,1);
}
.carousel-prev,.carousel-next{
	position: absolute;
	display: inline-block;
	top: 40%;
	cursor: pointer;
}
.carousel-prev{
	left: 20px;
}
.carousel-next{
	right: 20px;
}
