.hwslider {
    width: 100%;
    height: auto;
    min-width: 280px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    margin-bottom: -10px;
}

.hwslider ul {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1
}

.hwslider ul li {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.hwslider ul li.active {
    display: block;
}

.hwslider ul li img {
    width: 100%;
    height: 100%;
    display: block
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 200px;
    min-width: 60px;
    height: 12px;
    z-index: 2;
}

.dots span {
    float: left;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    margin-right: 8px;
    cursor: pointer;
}

.dots span.active {
    background: orangered
}

.arr {
    display: none;
    position: absolute;
    top: 140px;
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    ; font-size: 36px;
    background: rgba(0,0,0,.3);
    color: #fff;
    text-decoration: none
}

.arr:hover {
    background: rgba(0,0,0,.7);
    text-decoration: none;
}

.hwslider:hover .arr {
    display: block;
    text-decoration: none;
    color: #fff
}

.prev {
    left: 20px;font-size:0px;
}

.prev:after{content:' ';position:absolute;top:50%;margin-top:-6px;left:50%;width:12px;height:12px;border:#fff solid;border-width:2px 2px 0 0;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);margin-left: -3px;}
.next:after{content:' ';position:absolute;top:50%;margin-top:-6px;left:50%;width:12px;height:12px;border:#fff solid;border-width:2px 2px 0 0;-webkit-transform:rotate(45deg);transform:rotate(45deg);margin-left:-10px;}
.next {
    right: 20px;font-size:0px;
}