.unslider{overflow:auto;margin:0;padding:0;position: relative;}.unslider-wrap{position:relative}.unslider-wrap.unslider-carousel>li{float:left}.unslider-vertical>ul{height:100%}.unslider-vertical li{float:none;width:100%}.unslider-fade{position:relative}.unslider-fade .unslider-wrap li{position:absolute;left:0;top:0;right:0;z-index:8}.unslider-fade .unslider-wrap li.unslider-active{z-index:10}.unslider li,.unslider ol,.unslider ul{list-style:none;margin:0;padding:0;border:none}.unslider-arrow{position:absolute;left:0px;z-index:2;cursor:pointer}.unslider-arrow.next{left:auto;right:0px}
.unslider-arrow {
    height: 37px;
    width: 30px;
    line-height: 37px;
    text-align: center;
    display: none;
    color: #fff;
    /* font-size: 20px; */
    font-size: 0;
    background-color: rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15px 44px;
    top: 50%;
    margin-top: -19px;
}
.unslider:hover .unslider-arrow {
    display: block;
}
.unslider-arrow.prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.unslider-arrow.next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.unslider img {
    width: 100%;
}

/* dot */
.unslider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.unslider-nav ol {
    list-style: none;
    text-align: center;
  }
  .unslider-nav ol li {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 7px;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    text-indent: -999em;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
  }
  .unslider-nav ol li.unslider-active {
    background: #fff;
    cursor: default;
  }