.swiper {
    width: 100%;
    height: 500px;
    position: relative;
}

.swiper .pic {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.swiper .pic li {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    max-width: 800px;
    width: 80%;
    height: 450px;
    top: 0;
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
}

.swiper .pic li img {
    width: 100%;
    height: 100%;
}

.now {
    z-index: 9;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.next {
    z-index: 6;
    -webkit-transform: translateX(150px) scale(0.8);
    -moz-transform: translateX(150px) scale(0.8);
    -o-transform: translateX(150px) scale(0.8);
    -ms-transform: translateX(150px) scale(0.8);
    transform: translateX(150px) scale(0.8);
    /* -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); */
}

.prev {
    z-index: 6;
    -webkit-transform: translateX(-150px) scale(0.8);
    -moz-transform: translateX(-150px) scale(0.8);
    -o-transform: translateX(-150px) scale(0.8);
    -ms-transform: translateX(-150px) scale(0.8);
    transform: translateX(-150px) scale(0.8);
    /* -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); */
}

._bg {
    background-color: #000 !important;
}

.swiper .cricle {
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.swiper .cricle li {
    float: left;
    width: 60px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
}

.swiper .btns {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 38px;
    z-index: 9;
}

.swiper .btns .leftbtn,
.swiper .btns .rightbtn {
    height: 100%;
    width: 38px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
}


.swiper .btns .leftbtn::after,
.swiper .btns .rightbtn::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;

}

.swiper .btns .leftbtn::after {
    -webkit-transform: translate(12px, 8px) rotate(-45deg);
    -moz-transform: translate(12px, 8px) rotate(-45deg);
    -o-transform: translate(12px, 8px) rotate(-45deg);
    -ms-transform: translate(12px, 8px) rotate(-45deg);
    transform: translate(12px, 8px) rotate(-45deg);
}

.swiper .btns .rightbtn::after {
    -webkit-transform: translate(4px, 8px) rotate(135deg);
    -moz-transform: translate(4px, 8px) rotate(135deg);
    -o-transform: translate(4px, 8px) rotate(135deg);
    -ms-transform: translate(4px, 8px) rotate(135deg);
    transform: translate(4px, 8px) rotate(135deg);
}

.leftBox,
.rightBox {
    height: 500px;
    position: absolute;
    top: 0px;
    z-index: 99;
}

.leftBox {
    width: 250px;
    left: 0;
}

.rightBox {
    width: 250px;
    right: 0;
}