* {
    margin: 0;
    padding: 0;
}
 
.app {
    width: 100%;
   
    text-align: center;
}
 
.app .scroll {
    position: relative;
    display: inline-block;
    width: 100%;
}
 
.app .scroll .img {
    display: none;
    width: 100%;
    height: 45vh;
}
 
.app .scroll .current {
    display: block;
}
 
.scroll .lf {
    position: absolute;
    top: 50%;
    left: 10px;
    background-image: url('../../images/bg_btnPre_index.png');
    width: 55px;
    height: 80px;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 0.25;
background-repeat:no-repeat;
}
.scroll .lf:hover {
    opacity: 0.7;
}
 
.scroll .lr {
    position: absolute;
    top: 50%;
    right: 10px;
    background-image: url('../../images/bg_btnNext_index.png');
    width: 55px;
    height: 80px;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 0.25;
background-repeat:no-repeat;
}
.scroll .lr:hover {
    opacity: 0.7;
}
 
.dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 160px;
}
 
.dots>span {
    display: inline-block;
    box-sizing: border-box;
    width: 11px;
    height: 11px;
    border: 3px solid rgba(204, 204, 204, 0.2);
    border-radius: 15px;
    cursor: pointer;
}
 
.dots>span:not(:last-child) {
    margin-right: 5px;
}
 
/* 小圆点的颜色 */
.dots .square {
    background: #858585;
}