/**
 * Created by 余生 on 2017/12/4.
 */
.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%;
    display: block;
    transition: 1s linear;
}
.banner .pics li:hover img{
    transform: scale(1.05);
}
.banner .text-bg{
    position: absolute;
    background: #000;
    opacity: .5;
    width: 100%;
    height: 35px;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.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;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 11px;
}
.banner .des .listIndex li{
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: white;
    float: left;
    vertical-align: top;
    margin-left: 7px;
    cursor: pointer;
    box-shadow: 0 0 10px 0 lightgrey;
}
.banner .des .listIndex li.active{
    background: red;
}