.Autoplay{
    width: 100%;
    height: 300px;
    position: relative;
    .AutoplayScroll{
        width: 100%;
        height: 100%;
        overflow: hidden;
        .AutoplayWrap{
            width: 100%;
            height: 100%;
            >li{
                float: left;
                width: 100%;
                height: 100%;
                position: relative;
                .AutoplayLink{
                    width: 100%;
                    height: 100%;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 10;
                }
                .AutoplayImage{
                    width: 100%;
                    height: 100%;
                    background: url('') no-repeat center top;
                    background-size: cover;
                }
            }
        }
    }

    .AutoplayDotWrap{
        width: 100%;
        height: .2rem;
        line-height: .2rem;
        text-align: center;
        position: absolute;
        left: 0;
        bottom: 5%;
        z-index: 10;
        >ol{
            display: inline-block;
            >li{
                float: left;
                width: .05rem;
                margin: 0 .02rem;
                height: .05rem;
                border-radius: 50%;
                background-color: rgba(255,255,255,.5);
                cursor: pointer;
                &.active{
                    background-color: #fff;
                }
            }
        }
    }
}