html {
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, miui, Hiragino Sans GB, Microsoft Yahei, sans-serif
}

a {
    text-decoration: none
}

button, input, textarea {
    color: inherit;
    font: inherit
}

[class*=van-]:focus, a:focus, button:focus, input:focus, textarea:focus {
    outline: 0
}

ol, ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.van-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.van-multi-ellipsis--l2 {
    -webkit-line-clamp: 2
}

.van-multi-ellipsis--l2, .van-multi-ellipsis--l3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical
}

.van-multi-ellipsis--l3 {
    -webkit-line-clamp: 3
}

.van-clearfix:after {
    display: table;
    clear: both;
    content: ""
}

[class*=van-hairline]:after {
    position: absolute;
    box-sizing: border-box;
    content: " ";
    pointer-events: none;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    border: 0 solid #ebedf0;
    -webkit-transform: scale(.5);
    transform: scale(.5)
}

.van-hairline, .van-hairline--bottom, .van-hairline--left, .van-hairline--right, .van-hairline--surround, .van-hairline--top, .van-hairline--top-bottom {
    position: relative
}

.van-hairline--top:after {
    border-top-width: 1px
}

.van-hairline--left:after {
    border-left-width: 1px
}

.van-hairline--right:after {
    border-right-width: 1px
}

.van-hairline--bottom:after {
    border-bottom-width: 1px
}

.van-hairline--top-bottom:after, .van-hairline-unset--top-bottom:after {
    border-width: 1px 0
}

.van-hairline--surround:after {
    border-width: 1px
}

@-webkit-keyframes van-slide-up-enter {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes van-slide-up-enter {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes van-slide-up-leave {
    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes van-slide-up-leave {
    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes van-slide-down-enter {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes van-slide-down-enter {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes van-slide-down-leave {
    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes van-slide-down-leave {
    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes van-slide-left-enter {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes van-slide-left-enter {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes van-slide-left-leave {
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes van-slide-left-leave {
    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes van-slide-right-enter {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes van-slide-right-enter {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes van-slide-right-leave {
    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes van-slide-right-leave {
    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes van-fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes van-fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes van-fade-out {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes van-fade-out {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes van-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes van-rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.van-fade-enter-active {
    -webkit-animation: van-fade-in .3s ease-out both;
    animation: van-fade-in .3s ease-out both
}

.van-fade-leave-active {
    -webkit-animation: van-fade-out .3s ease-in both;
    animation: van-fade-out .3s ease-in both
}

.van-slide-up-enter-active {
    -webkit-animation: van-slide-up-enter .3s ease-out both;
    animation: van-slide-up-enter .3s ease-out both
}

.van-slide-up-leave-active {
    -webkit-animation: van-slide-up-leave .3s ease-in both;
    animation: van-slide-up-leave .3s ease-in both
}

.van-slide-down-enter-active {
    -webkit-animation: van-slide-down-enter .3s ease-out both;
    animation: van-slide-down-enter .3s ease-out both
}

.van-slide-down-leave-active {
    -webkit-animation: van-slide-down-leave .3s ease-in both;
    animation: van-slide-down-leave .3s ease-in both
}

.van-slide-left-enter-active {
    -webkit-animation: van-slide-left-enter .3s ease-out both;
    animation: van-slide-left-enter .3s ease-out both
}

.van-slide-left-leave-active {
    -webkit-animation: van-slide-left-leave .3s ease-in both;
    animation: van-slide-left-leave .3s ease-in both
}

.van-slide-right-enter-active {
    -webkit-animation: van-slide-right-enter .3s ease-out both;
    animation: van-slide-right-enter .3s ease-out both
}

.van-slide-right-leave-active {
    -webkit-animation: van-slide-right-leave .3s ease-in both;
    animation: van-slide-right-leave .3s ease-in both
}

.van-swipe-item {
    position: relative;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%
}

.van-swipe {
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    cursor: grab;
    -webkit-user-select: none;
    user-select: none
}

.van-swipe__track {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 100%
}

.van-swipe__track--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
}

.van-swipe__indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.van-swipe__indicators--vertical {
    top: 50%;
    bottom: auto;
    left: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child) {
    margin-bottom: 6px
}

.van-swipe__indicator {
    width: 6px;
    height: 6px;
    background-color: #ebedf0;
    border-radius: 100%;
    opacity: .3;
    -webkit-transition: opacity .2s, background-color .2s;
    transition: opacity .2s, background-color .2s
}

.van-swipe__indicator:not(:last-child) {
    margin-right: 6px
}

.van-swipe__indicator--active {
    background-color: #1989fa;
    opacity: 1
}

.van-info {
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    min-width: 16px;
    padding: 0 3px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
    line-height: 1.2;
    text-align: center;
    background-color: #ee0a24;
    border: 1px solid #fff;
    border-radius: 16px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    -webkit-transform-origin: 100%;
    transform-origin: 100%
}

.van-info--dot {
    width: 8px;
    min-width: 0;
    height: 8px;
    background-color: #ee0a24;
    border-radius: 100%
}

.van-icon {
    position: relative;
    font: normal normal normal 14px/1 vant-icon;
    font: normal normal normal 14px/1 var(--van-icon-font-family, "vant-icon");
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased
}

.van-icon, .van-icon:before {
    display: inline-block
}

.van-icon-contact:before {
    content: "\e753"
}

.van-icon-notes:before {
    content: "\e63c"
}

.van-icon-records:before {
    content: "\e63d"
}

.van-icon-cash-back-record:before {
    content: "\e63e"
}

.van-icon-newspaper:before {
    content: "\e63f"
}

.van-icon-discount:before {
    content: "\e640"
}

.van-icon-completed:before {
    content: "\e641"
}

.van-icon-user:before {
    content: "\e642"
}

.van-icon-description:before {
    content: "\e643"
}

.van-icon-list-switch:before {
    content: "\e6ad"
}

.van-icon-list-switching:before {
    content: "\e65a"
}

.van-icon-link-o:before {
    content: "\e751"
}

.van-icon-miniprogram-o:before {
    content: "\e752"
}

.van-icon-qq:before {
    content: "\e74e"
}

.van-icon-wechat-moments:before {
    content: "\e74f"
}

.van-icon-weibo:before {
    content: "\e750"
}

.van-icon-cash-o:before {
    content: "\e74d"
}

.van-icon-guide-o:before {
    content: "\e74c"
}

.van-icon-invitation:before {
    content: "\e6d6"
}

.van-icon-shield-o:before {
    content: "\e74b"
}

.van-icon-exchange:before {
    content: "\e6af"
}

.van-icon-eye:before {
    content: "\e6b0"
}

.van-icon-enlarge:before {
    content: "\e6b1"
}

.van-icon-expand-o:before {
    content: "\e6b2"
}

.van-icon-eye-o:before {
    content: "\e6b3"
}

.van-icon-expand:before {
    content: "\e6b4"
}

.van-icon-filter-o:before {
    content: "\e6b5"
}

.van-icon-fire:before {
    content: "\e6b6"
}

.van-icon-fail:before {
    content: "\e6b7"
}

.van-icon-failure:before {
    content: "\e6b8"
}

.van-icon-fire-o:before {
    content: "\e6b9"
}

.van-icon-flag-o:before {
    content: "\e6ba"
}

.van-icon-font:before {
    content: "\e6bb"
}

.van-icon-font-o:before {
    content: "\e6bc"
}

.van-icon-gem-o:before {
    content: "\e6bd"
}

.van-icon-flower-o:before {
    content: "\e6be"
}

.van-icon-gem:before {
    content: "\e6bf"
}

.van-icon-gift-card:before {
    content: "\e6c0"
}

.van-icon-friends:before {
    content: "\e6c1"
}

.van-icon-friends-o:before {
    content: "\e6c2"
}

.van-icon-gold-coin:before {
    content: "\e6c3"
}

.van-icon-gold-coin-o:before {
    content: "\e6c4"
}

.van-icon-good-job-o:before {
    content: "\e6c5"
}

.van-icon-gift:before {
    content: "\e6c6"
}

.van-icon-gift-o:before {
    content: "\e6c7"
}

.van-icon-gift-card-o:before {
    content: "\e6c8"
}

.van-icon-good-job:before {
    content: "\e6c9"
}

.van-icon-home-o:before {
    content: "\e6ca"
}

.van-icon-goods-collect:before {
    content: "\e6cb"
}

.van-icon-graphic:before {
    content: "\e6cc"
}

.van-icon-goods-collect-o:before {
    content: "\e6cd"
}

.van-icon-hot-o:before {
    content: "\e6ce"
}

.van-icon-info:before {
    content: "\e6cf"
}

.van-icon-hotel-o:before {
    content: "\e6d0"
}

.van-icon-info-o:before {
    content: "\e6d1"
}

.van-icon-hot-sale-o:before {
    content: "\e6d2"
}

.van-icon-hot:before {
    content: "\e6d3"
}

.van-icon-like:before {
    content: "\e6d4"
}

.van-icon-idcard:before {
    content: "\e6d5"
}

.van-icon-like-o:before {
    content: "\e6d7"
}

.van-icon-hot-sale:before {
    content: "\e6d8"
}

.van-icon-location-o:before {
    content: "\e6d9"
}

.van-icon-location:before {
    content: "\e6da"
}

.van-icon-label:before {
    content: "\e6db"
}

.van-icon-lock:before {
    content: "\e6dc"
}

.van-icon-label-o:before {
    content: "\e6dd"
}

.van-icon-map-marked:before {
    content: "\e6de"
}

.van-icon-logistics:before {
    content: "\e6df"
}

.van-icon-manager:before {
    content: "\e6e0"
}

.van-icon-more:before {
    content: "\e6e1"
}

.van-icon-live:before {
    content: "\e6e2"
}

.van-icon-manager-o:before {
    content: "\e6e3"
}

.van-icon-medal:before {
    content: "\e6e4"
}

.van-icon-more-o:before {
    content: "\e6e5"
}

.van-icon-music-o:before {
    content: "\e6e6"
}

.van-icon-music:before {
    content: "\e6e7"
}

.van-icon-new-arrival-o:before {
    content: "\e6e8"
}

.van-icon-medal-o:before {
    content: "\e6e9"
}

.van-icon-new-o:before {
    content: "\e6ea"
}

.van-icon-free-postage:before {
    content: "\e6eb"
}

.van-icon-newspaper-o:before {
    content: "\e6ec"
}

.van-icon-new-arrival:before {
    content: "\e6ed"
}

.van-icon-minus:before {
    content: "\e6ee"
}

.van-icon-orders-o:before {
    content: "\e6ef"
}

.van-icon-new:before {
    content: "\e6f0"
}

.van-icon-paid:before {
    content: "\e6f1"
}

.van-icon-notes-o:before {
    content: "\e6f2"
}

.van-icon-other-pay:before {
    content: "\e6f3"
}

.van-icon-pause-circle:before {
    content: "\e6f4"
}

.van-icon-pause:before {
    content: "\e6f5"
}

.van-icon-pause-circle-o:before {
    content: "\e6f6"
}

.van-icon-peer-pay:before {
    content: "\e6f7"
}

.van-icon-pending-payment:before {
    content: "\e6f8"
}

.van-icon-passed:before {
    content: "\e6f9"
}

.van-icon-plus:before {
    content: "\e6fa"
}

.van-icon-phone-circle-o:before {
    content: "\e6fb"
}

.van-icon-phone-o:before {
    content: "\e6fc"
}

.van-icon-printer:before {
    content: "\e6fd"
}

.van-icon-photo-fail:before {
    content: "\e6fe"
}

.van-icon-phone:before {
    content: "\e6ff"
}

.van-icon-photo-o:before {
    content: "\e700"
}

.van-icon-play-circle:before {
    content: "\e701"
}

.van-icon-play:before {
    content: "\e702"
}

.van-icon-phone-circle:before {
    content: "\e703"
}

.van-icon-point-gift-o:before {
    content: "\e704"
}

.van-icon-point-gift:before {
    content: "\e705"
}

.van-icon-play-circle-o:before {
    content: "\e706"
}

.van-icon-shrink:before {
    content: "\e707"
}

.van-icon-photo:before {
    content: "\e708"
}

.van-icon-qr:before {
    content: "\e709"
}

.van-icon-qr-invalid:before {
    content: "\e70a"
}

.van-icon-question-o:before {
    content: "\e70b"
}

.van-icon-revoke:before {
    content: "\e70c"
}

.van-icon-replay:before {
    content: "\e70d"
}

.van-icon-service:before {
    content: "\e70e"
}

.van-icon-question:before {
    content: "\e70f"
}

.van-icon-search:before {
    content: "\e710"
}

.van-icon-refund-o:before {
    content: "\e711"
}

.van-icon-service-o:before {
    content: "\e712"
}

.van-icon-scan:before {
    content: "\e713"
}

.van-icon-share:before {
    content: "\e714"
}

.van-icon-send-gift-o:before {
    content: "\e715"
}

.van-icon-share-o:before {
    content: "\e716"
}

.van-icon-setting:before {
    content: "\e717"
}

.van-icon-points:before {
    content: "\e718"
}

.van-icon-photograph:before {
    content: "\e719"
}

.van-icon-shop:before {
    content: "\e71a"
}

.van-icon-shop-o:before {
    content: "\e71b"
}

.van-icon-shop-collect-o:before {
    content: "\e71c"
}

.van-icon-shop-collect:before {
    content: "\e71d"
}

.van-icon-smile:before {
    content: "\e71e"
}

.van-icon-shopping-cart-o:before {
    content: "\e71f"
}

.van-icon-sign:before {
    content: "\e720"
}

.van-icon-sort:before {
    content: "\e721"
}

.van-icon-star-o:before {
    content: "\e722"
}

.van-icon-smile-comment-o:before {
    content: "\e723"
}

.van-icon-stop:before {
    content: "\e724"
}

.van-icon-stop-circle-o:before {
    content: "\e725"
}

.van-icon-smile-o:before {
    content: "\e726"
}

.van-icon-star:before {
    content: "\e727"
}

.van-icon-success:before {
    content: "\e728"
}

.van-icon-stop-circle:before {
    content: "\e729"
}

.van-icon-records-o:before {
    content: "\e72a"
}

.van-icon-shopping-cart:before {
    content: "\e72b"
}

.van-icon-tosend:before {
    content: "\e72c"
}

.van-icon-todo-list:before {
    content: "\e72d"
}

.van-icon-thumb-circle-o:before {
    content: "\e72e"
}

.van-icon-thumb-circle:before {
    content: "\e72f"
}

.van-icon-umbrella-circle:before {
    content: "\e730"
}

.van-icon-underway:before {
    content: "\e731"
}

.van-icon-upgrade:before {
    content: "\e732"
}

.van-icon-todo-list-o:before {
    content: "\e733"
}

.van-icon-tv-o:before {
    content: "\e734"
}

.van-icon-underway-o:before {
    content: "\e735"
}

.van-icon-user-o:before {
    content: "\e736"
}

.van-icon-vip-card-o:before {
    content: "\e737"
}

.van-icon-vip-card:before {
    content: "\e738"
}

.van-icon-send-gift:before {
    content: "\e739"
}

.van-icon-wap-home:before {
    content: "\e73a"
}

.van-icon-wap-nav:before {
    content: "\e73b"
}

.van-icon-volume-o:before {
    content: "\e73c"
}

.van-icon-video:before {
    content: "\e73d"
}

.van-icon-wap-home-o:before {
    content: "\e73e"
}

.van-icon-volume:before {
    content: "\e73f"
}

.van-icon-warning:before {
    content: "\e740"
}

.van-icon-weapp-nav:before {
    content: "\e741"
}

.van-icon-wechat-pay:before {
    content: "\e742"
}

.van-icon-warning-o:before {
    content: "\e743"
}

.van-icon-wechat:before {
    content: "\e744"
}

.van-icon-setting-o:before {
    content: "\e745"
}

.van-icon-youzan-shield:before {
    content: "\e746"
}

.van-icon-warn-o:before {
    content: "\e747"
}

.van-icon-smile-comment:before {
    content: "\e748"
}

.van-icon-user-circle-o:before {
    content: "\e749"
}

.van-icon-video-o:before {
    content: "\e74a"
}

.van-icon-add-square:before {
    content: "\e65c"
}

.van-icon-add:before {
    content: "\e65d"
}

.van-icon-arrow-down:before {
    content: "\e65e"
}

.van-icon-arrow-up:before {
    content: "\e65f"
}

.van-icon-arrow:before {
    content: "\e660"
}

.van-icon-after-sale:before {
    content: "\e661"
}

.van-icon-add-o:before {
    content: "\e662"
}

.van-icon-alipay:before {
    content: "\e663"
}

.van-icon-ascending:before {
    content: "\e664"
}

.van-icon-apps-o:before {
    content: "\e665"
}

.van-icon-aim:before {
    content: "\e666"
}

.van-icon-award:before {
    content: "\e667"
}

.van-icon-arrow-left:before {
    content: "\e668"
}

.van-icon-award-o:before {
    content: "\e669"
}

.van-icon-audio:before {
    content: "\e66a"
}

.van-icon-bag-o:before {
    content: "\e66b"
}

.van-icon-balance-list:before {
    content: "\e66c"
}

.van-icon-back-top:before {
    content: "\e66d"
}

.van-icon-bag:before {
    content: "\e66e"
}

.van-icon-balance-pay:before {
    content: "\e66f"
}

.van-icon-balance-o:before {
    content: "\e670"
}

.van-icon-bar-chart-o:before {
    content: "\e671"
}

.van-icon-bars:before {
    content: "\e672"
}

.van-icon-balance-list-o:before {
    content: "\e673"
}

.van-icon-birthday-cake-o:before {
    content: "\e674"
}

.van-icon-bookmark:before {
    content: "\e675"
}

.van-icon-bill:before {
    content: "\e676"
}

.van-icon-bell:before {
    content: "\e677"
}

.van-icon-browsing-history-o:before {
    content: "\e678"
}

.van-icon-browsing-history:before {
    content: "\e679"
}

.van-icon-bookmark-o:before {
    content: "\e67a"
}

.van-icon-bulb-o:before {
    content: "\e67b"
}

.van-icon-bullhorn-o:before {
    content: "\e67c"
}

.van-icon-bill-o:before {
    content: "\e67d"
}

.van-icon-calendar-o:before {
    content: "\e67e"
}

.van-icon-brush-o:before {
    content: "\e67f"
}

.van-icon-card:before {
    content: "\e680"
}

.van-icon-cart-o:before {
    content: "\e681"
}

.van-icon-cart-circle:before {
    content: "\e682"
}

.van-icon-cart-circle-o:before {
    content: "\e683"
}

.van-icon-cart:before {
    content: "\e684"
}

.van-icon-cash-on-deliver:before {
    content: "\e685"
}

.van-icon-cash-back-record-o:before {
    content: "\e686"
}

.van-icon-cashier-o:before {
    content: "\e687"
}

.van-icon-chart-trending-o:before {
    content: "\e688"
}

.van-icon-certificate:before {
    content: "\e689"
}

.van-icon-chat:before {
    content: "\e68a"
}

.van-icon-clear:before {
    content: "\e68b"
}

.van-icon-chat-o:before {
    content: "\e68c"
}

.van-icon-checked:before {
    content: "\e68d"
}

.van-icon-clock:before {
    content: "\e68e"
}

.van-icon-clock-o:before {
    content: "\e68f"
}

.van-icon-close:before {
    content: "\e690"
}

.van-icon-closed-eye:before {
    content: "\e691"
}

.van-icon-circle:before {
    content: "\e692"
}

.van-icon-cluster-o:before {
    content: "\e693"
}

.van-icon-column:before {
    content: "\e694"
}

.van-icon-comment-circle-o:before {
    content: "\e695"
}

.van-icon-cluster:before {
    content: "\e696"
}

.van-icon-comment:before {
    content: "\e697"
}

.van-icon-comment-o:before {
    content: "\e698"
}

.van-icon-comment-circle:before {
    content: "\e699"
}

.van-icon-completed-o:before {
    content: "\e69a"
}

.van-icon-credit-pay:before {
    content: "\e69b"
}

.van-icon-coupon:before {
    content: "\e69c"
}

.van-icon-debit-pay:before {
    content: "\e69d"
}

.van-icon-coupon-o:before {
    content: "\e69e"
}

.van-icon-contact-o:before {
    content: "\e69f"
}

.van-icon-descending:before {
    content: "\e6a0"
}

.van-icon-desktop-o:before {
    content: "\e6a1"
}

.van-icon-diamond-o:before {
    content: "\e6a2"
}

.van-icon-description-o:before {
    content: "\e6a3"
}

.van-icon-delete:before {
    content: "\e6a4"
}

.van-icon-diamond:before {
    content: "\e6a5"
}

.van-icon-delete-o:before {
    content: "\e6a6"
}

.van-icon-cross:before {
    content: "\e6a7"
}

.van-icon-edit:before {
    content: "\e6a8"
}

.van-icon-ellipsis:before {
    content: "\e6a9"
}

.van-icon-down:before {
    content: "\e6aa"
}

.van-icon-discount-o:before {
    content: "\e6ab"
}

.van-icon-ecard-pay:before {
    content: "\e6ac"
}

.van-icon-envelop-o:before {
    content: "\e6ae"
}

@font-face {
    font-weight: 400;
    font-family: vant-icon;
    font-style: normal;
    font-display: auto;
    src: url("../fonts/44398fa48cf04363a17b36e83aac244b.woff") format("woff2"), url(../fonts/font_2553510_kfwma2yq1rs.woff) format("woff")
}

.van-icon__image {
    display: block;
    width: 1em;
    height: 1em;
    object-fit: contain
}

.van-loading {
    color: #c8c9cc;
    font-size: 0
}

.van-loading, .van-loading__spinner {
    position: relative;
    vertical-align: middle
}

.van-loading__spinner {
    display: inline-block;
    width: 30px;
    max-width: 100%;
    height: 30px;
    max-height: 100%;
    -webkit-animation: van-rotate .8s linear infinite;
    animation: van-rotate .8s linear infinite
}

.van-loading__spinner--spinner {
    -webkit-animation-timing-function: steps(12);
    animation-timing-function: steps(12)
}

.van-loading__spinner--spinner i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.van-loading__spinner--spinner i:before {
    display: block;
    width: 2px;
    height: 25%;
    margin: 0 auto;
    background-color: currentColor;
    border-radius: 40%;
    content: " "
}

.van-loading__spinner--circular {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.van-loading__circular {
    display: block;
    width: 100%;
    height: 100%
}

.van-loading__circular circle {
    -webkit-animation: van-circular 1.5s ease-in-out infinite;
    animation: van-circular 1.5s ease-in-out infinite;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round
}

.van-loading__text {
    display: inline-block;
    margin-left: 8px;
    color: #969799;
    font-size: 14px;
    vertical-align: middle
}

.van-loading--vertical {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.van-loading--vertical .van-loading__text {
    margin: 8px 0 0
}

@-webkit-keyframes van-circular {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120
    }
}

@keyframes van-circular {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -40
    }
    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -120
    }
}

.van-loading__spinner--spinner i:first-of-type {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    opacity: 1
}

.van-loading__spinner--spinner i:nth-of-type(2) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    opacity: .9375
}

.van-loading__spinner--spinner i:nth-of-type(3) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: .875
}

.van-loading__spinner--spinner i:nth-of-type(4) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    opacity: .8125
}

.van-loading__spinner--spinner i:nth-of-type(5) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    opacity: .75
}

.van-loading__spinner--spinner i:nth-of-type(6) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: .6875
}

.van-loading__spinner--spinner i:nth-of-type(7) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    opacity: .625
}

.van-loading__spinner--spinner i:nth-of-type(8) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    opacity: .5625
}

.van-loading__spinner--spinner i:nth-of-type(9) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    opacity: .5
}

.van-loading__spinner--spinner i:nth-of-type(10) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    opacity: .4375
}

.van-loading__spinner--spinner i:nth-of-type(11) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    opacity: .375
}

.van-loading__spinner--spinner i:nth-of-type(12) {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: .3125
}

.van-button {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    height: 44px;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    -webkit-appearance: none
}

.van-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #000;
    border: inherit;
    border-color: #000;
    border-radius: inherit;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    content: " "
}

.van-button:active:before {
    opacity: .1
}

.van-button--disabled:before, .van-button--loading:before {
    display: none
}

.van-button--default {
    color: #323233;
    background-color: #fff;
    border: 1px solid #ebedf0
}

.van-button--primary {
    color: #fff;
    background-color: #07c160;
    border: 1px solid #07c160
}

.van-button--info {
    color: #fff;
    background-color: #1989fa;
    border: 1px solid #1989fa
}

.van-button--danger {
    color: #fff;
    background-color: #ee0a24;
    border: 1px solid #ee0a24
}

.van-button--warning {
    color: #fff;
    background-color: #ff976a;
    border: 1px solid #ff976a
}

.van-button--plain {
    background-color: #fff
}

.van-button--plain.van-button--primary {
    color: #07c160
}

.van-button--plain.van-button--info {
    color: #1989fa
}

.van-button--plain.van-button--danger {
    color: #ee0a24
}

.van-button--plain.van-button--warning {
    color: #ff976a
}

.van-button--large {
    width: 100%;
    height: 50px
}

.van-button--normal {
    padding: 0 15px;
    font-size: 14px
}

.van-button--small {
    height: 32px;
    padding: 0 8px;
    font-size: 12px
}

.van-button__loading {
    color: inherit;
    font-size: inherit
}

.van-button--mini {
    height: 24px;
    padding: 0 4px;
    font-size: 10px
}

.van-button--mini + .van-button--mini {
    margin-left: 4px
}

.van-button--block {
    display: block;
    width: 100%
}

.van-button--disabled {
    cursor: not-allowed;
    opacity: .5
}

.van-button--loading {
    cursor: default
}

.van-button--round {
    border-radius: 999px
}

.van-button--square {
    border-radius: 0
}

.van-button__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%
}

.van-button__content:before {
    content: " "
}

.van-button__icon {
    font-size: 1.2em;
    line-height: inherit
}

.van-button__icon + .van-button__text, .van-button__loading + .van-button__text, .van-button__text + .van-button__icon, .van-button__text + .van-button__loading {
    margin-left: 4px
}

.van-button--hairline {
    border-width: 0
}

.van-button--hairline:after {
    border-color: inherit;
    border-radius: 4px
}

.van-button--hairline.van-button--round:after {
    border-radius: 999px
}

.van-button--hairline.van-button--square:after {
    border-radius: 0
}

.van-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7)
}

.van-overflow-hidden {
    overflow: hidden !important
}

.van-popup {
    position: fixed;
    max-height: 100%;
    overflow-y: auto;
    background-color: #fff;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-overflow-scrolling: touch
}

.van-popup--center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.van-popup--center.van-popup--round {
    border-radius: 16px
}

.van-popup--top {
    top: 0;
    left: 0;
    width: 100%
}

.van-popup--top.van-popup--round {
    border-radius: 0 0 16px 16px
}

.van-popup--right {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.van-popup--right.van-popup--round {
    border-radius: 16px 0 0 16px
}

.van-popup--bottom {
    bottom: 0;
    left: 0;
    width: 100%
}

.van-popup--bottom.van-popup--round {
    border-radius: 16px 16px 0 0
}

.van-popup--left {
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.van-popup--left.van-popup--round {
    border-radius: 0 16px 16px 0
}

.van-popup--safe-area-inset-bottom {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom)
}

.van-popup-slide-bottom-enter-active, .van-popup-slide-left-enter-active, .van-popup-slide-right-enter-active, .van-popup-slide-top-enter-active {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.van-popup-slide-bottom-leave-active, .van-popup-slide-left-leave-active, .van-popup-slide-right-leave-active, .van-popup-slide-top-leave-active {
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

.van-popup-slide-top-enter, .van-popup-slide-top-leave-active {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
}

.van-popup-slide-right-enter, .van-popup-slide-right-leave-active {
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0)
}

.van-popup-slide-bottom-enter, .van-popup-slide-bottom-leave-active {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
}

.van-popup-slide-left-enter, .van-popup-slide-left-leave-active {
    -webkit-transform: translate3d(-100%, -50%, 0);
    transform: translate3d(-100%, -50%, 0)
}

.van-popup__close-icon {
    position: absolute;
    z-index: 1;
    color: #c8c9cc;
    font-size: 22px;
    cursor: pointer
}

.van-popup__close-icon:active {
    color: #969799
}

.van-popup__close-icon--top-left {
    top: 16px;
    left: 16px
}

.van-popup__close-icon--top-right {
    top: 16px;
    right: 16px
}

.van-popup__close-icon--bottom-left {
    bottom: 16px;
    left: 16px
}

.van-popup__close-icon--bottom-right {
    right: 16px;
    bottom: 16px
}

@font-face {
    font-family: swiper-icons;
    src: url("../fonts/491e74ef98e44f46be71c29e45537620.woff") format("woff");
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(var(--swiper-navigation-size) * -1 / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: normal;
    line-height: 1
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
    content: "prev"
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
    content: "next"
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
    --swiper-navigation-color: #fff
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
    --swiper-navigation-color: #000
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white {
    --swiper-pagination-color: #fff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s linear infinite;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}