@charset "utf-8";
.banner{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner * {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    color: white;
}
.banner .pics li{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 1s linear;
}
.banner .pics li.active{
    opacity: 1;
    z-index: 1;
}
.banner .pics li img{
    width: 100%;
    height: 100%;
    transition: 1s linear;
}
.banner .pics li:hover img{
    transform: scale(1.05);
}
.banner .des{
    position: absolute;
    width: 100%;
    height: 35px;
    box-sizing: border-box;
    padding-right: 100px;
    padding-left: 10px;
    background: rgba(0,0,0,.5);
    bottom: 0;
    left: 0;
    z-index: 2;
}
.banner .des .textDetail *{
    line-height: 35px;
    font-size: 13px;
}
.banner .des .textDetail{
    width: 100%;
    position: relative;
}
.banner .des .textDetail li{
    width: 100%;
    position: absolute;
    top: 35px;
    left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .5s;
}
.banner .des .textDetail li.active{
    top: 0;
}
.banner .des .listIndex{
    position: absolute;
    width: 100px;
    right: 0;
    padding-top: 12px;
}
.banner .des .listIndex li{
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    float: left;
    margin-left: 7px;
    cursor: pointer;
}
.banner .des .listIndex li.active{
    background: red;
}