

.carousel-content{

    height:300px;
	position: relative;
	overflow: hidden;
	
    width: 400px;
    border: 1px solid #ccc;
}
.carousel{
	/*height: var(--myheight);*/
	position: absolute;
    height:300px;
}
.carousel li{
	float: left;
}
.carousel li,.carousel li img{
	/*width: var(--mywidth);
	height: var(--myheight);*/
}
.img-index{
	position: absolute;
    bottom: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.img-index li{
	float: left;
    width: 8px;
    height: 8px;
    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;
    text-indent: 100px;
    overflow: hidden;
    
}
.img-index li.js_index,.img-index li:hover{
	background-color:#01a57c;
}
.carousel-prev,.carousel-next{
    width: 30px;
    height: 60px;
    background-color: #01a57c;
    color: #fff;
    font-size: 30px;
    font-family: "simsun";
    text-align: center;
    line-height: 60px;
	position: absolute;
	top: 50%;
    margin-top: -30px;
	cursor: pointer;
    display: none;
}
.carousel-prev{
	left: 0;
}
.carousel-next{
	right: 0;
}


