@charset "UTF-8";
/* a, body, button, div, html, img, li, ol, p, span, ul {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    appearance: none;
    box-sizing: border-box;
} */
.slider {
    overflow: hidden;
    position: relative;
}
.pointer {
    position: absolute;
    bottom: 70px;
    width: 100%;
    z-index: 4;
    right: calc((100% - 1200px)/2 + 300px);
    text-align: right;
}
.pointer ul{
    display: inline-block;
    border-radius: 30px;
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
}
.pointer li {
    display: inline-block;
    width: 10px;
    height: 3px;
    cursor: pointer;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.5);
    margin: 13px 0;
}
.pointer li:not(:last-child) {
    margin-right: 10px
}
.pointer li.current {
    background-color: #fff;
    width: 20px;
}
.sliderUl {
    width: 100%;
    height: 100%;
    white-space: nowrap;
    font-size: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
}
.sliderLi {
    width: 100%;
    height: 100%;
    display: inline-block;
    font-size: 0;
    padding-left: 70px;
    box-sizing: border-box;
}
@media (min-width: 1920px) {
    .sliderLi  {
        padding-left: 10vw;
    }
}
.sliderLi a:hover{opacity: 1;}
.slider img {
    height: 100%;
}
.slide-btns{
    height: 30px;
    line-height: 30px;
    z-index: 4;
    background-color: rgba(51,51,51,0.3);
    border-radius: 30px;
    margin-right: 20px;
    display: none;
}
.nextBtn, .preBtn {
    width: 30px;
    height: 30px;
    line-height: 26px;
    font-size: 18px;
    text-align: center;
    background-color: transparent;
    z-index: 10;
    color: #fff;
    font-family: "宋体";
}

.slider:hover .pointer ul{
    background-color: rgba(51,51,51,0.3);
}
.slider:hover .slide-btns{display: block;}