.carouselContainer{
    width:100%;
    min-width:1200px;
    overflow:hidden;
    position:relative;
}
.carouselBox{
    list-style:none;
    margin:0;
    padding:0;
}
.carouselBox .item{
    position:absolute;
}
.active {
    z-index: 10;
}
.carouselCtrl {
    position: absolute;
    bottom: 30px;
    z-index: 20;
}
.carouselCtrl  li{
    cursor: pointer;
    margin-left:10px;
    text-align: center;
    float:left;
    width:40px;
    height:18px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    background: rgba(255,255,255,0.00);
    border: 1px solid #FFFFFF;
}
.carouselCtrl  li.active{
    color: #333333;
    background: #FFFFFF;
}
#prev{
    position:absolute;
    left:1%;
    top:50%;
    transform: translate(0,-50%);
    z-index:50;
    background:transparent;
    border:none;
    cursor: pointer;
    opacity:0.5;
}
#next{
    position:absolute;
    right:1%;
    top:50%;
    transform: translate(0,-50%);
    z-index:50;
    background:transparent;
    border:none;
    cursor: pointer;
    opacity:0.5;
}
/*透明层和文字*/
.carouselTBg{
    background: rgba(0,0,0,0.60);
    width:100%;
    height:80px;
    position:absolute;
    left:0;
    bottom:0;
}
.carouselList{
    position:absolute;
    height:40px;
    bottom:20px;
    line-height:40px;
}
.carouselList  a{
    font-size:16px;
    color:#FFFFFF;
}