/* icon-font */
@font-face {font-family: "swiper3d-icons";
    src:  format('woff')
}

.swiper3d-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.swiper3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
}
.swiper3d-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center -900px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    transition: all 1s;
}
.swiper3d-slide.active {
    backface-visibility: hidden;
}
/* 分页器 */
.swiper3d-pagination-bullets {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 30;
}
.swiper3d-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #000;
    opacity: 0.2;
}
.swiper3d-pagination-bullet-active {
    opacity: 1;
}
.pagination-clickable .swiper3d-pagination-bullet {
    cursor: pointer;
}
/* 前进后退按钮 */
.swiper3d-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #aaa;
    opacity: 0.5;
    background-color: transparent;
    cursor: pointer;
    z-index: 30;
}
.swiper3d-button:hover,
.swiper3d-button:active {
    opacity: 0.7;
}
.swiper3d-button-prev {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translatey(-50%);
}
.swiper3d-button-prev:before {
    font-family: "swiper3d-icons" !important;
    content: "\e658";
}
.swiper3d-button-next {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translatey(-50%);
}
.swiper3d-button-next:before {
    font-family: "swiper3d-icons" !important;
    content: "\e659";
}