@charset "utf-8";
/* CSS Document */

.banner{
    width: 520px;
    height: 304px;
    border: 1px solid;
    margin: 1em auto;
    overflow: hidden;
    position: relative;
}
.banner .imgs{
    width: 1560px;
    height: 304px;
}
.banner .imgs img{
    width: 520px;
    height: 304px;
    
}
.banner .imgs a{
    float: left;
}

.banner .left, .banner .right{
    position: absolute;
    width: 50px;height: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 3em;
    text-align: center;
    font-family: arial,Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
    color: white;
    line-height: 50px;
    cursor: pointer;
}

.banner .left:hover, .banner .right:hover{
    background: #fff;
    color: #f40;
    border-radius: 50%;
}

.banner .left{
    left: 20px;
}

.banner .right{
    right: 20px;
}

.banner .modal{
    width: 100%;
    height: 40px;
    background: rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    line-height: 40px;
    padding: 0 20px;
    box-sizing: border-box;
    
}
.banner .modal .title{
    float: left;
    font-weight: bold;
}
.banner .modal .dots{
    float: right;
}

.banner .modal .dots ul>li{
    width: 8px;
    height: 8px;
    background-color: #CCCCFF;
    display: inline-block;
    margin: 0 2px;
    border-radius: 50%;
    cursor: pointer;
}
.banner .modal .dots ul>li:hover{
    background: #99f;
    width: 10px;
    height: 10px;
}




