#app {
    position: absolute;
    height: 100%;
    width: 100%
}

@media screen and (orientation: portrait) {
    #app.andsdk {
        height: calc(100% - 25px)
    }
}

a, body, button, dd, dl, h1, h2, h3, h4, h5, h6, html, img, input, li, p, textarea, ul {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

a, button, img, input, textarea {
    outline: none
}

body {
    width: 100vw;
    font-family: Arial, sans-serif, Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑;
    font-size: 14px;
    line-height: 1.43;
    color: #333;
    word-wrap: break-word;
    word-break: normal;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    transition: .5s
}

a {
    text-decoration: none;
    color: #4078c0
}

img {
    max-width: 100%;
    border-style: none
}

ul {
    list-style: none
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    border-radius: 100px;
    background-color: hsla(0, 0%, 100%, 0);
    width: 5px;
    height: 5px
}

::-webkit-scrollbar:vertical {
    width: 5px
}

::-webkit-scrollbar:horizontal {
    height: 5px
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: hsla(0, 0%, 100%, .4)
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 100px;
    background: hsla(0, 0%, 100%, .35)
}

::-webkit-scrollbar-thumb:active {
    border-radius: 4px;
    background: hsla(0, 0%, 100%, .45)
}

.fade-enter-active, .fade-leave-active {
    transition: opacity .3s
}

.fade-enter, .fade-leave-to {
    opacity: 0
}

.slide-fade-enter-active {
    transition: all .3s ease
}

.slide-fade-leave-active {
    transition: all .3s cubic-bezier(1, .5, .8, 1)
}

.slide-fade-enter, .slide-fade-leave-to {
    transform: translateX(20px);
    opacity: 0
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.bounceIn, .animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

.fr {
    float: right
}

.fl {
    float: left
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0
}

html {
    font-size: 14px;
    width: 100%;
    height: 100%
}

body {
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right)
}

.g-toast-fail-message {
    width: 108px
}

.g-toast-fail-message, .van-toast--fail, .van-toast--text {
    background-color: rgba(245, 108, 108, .82)
}

.g-toast-success-message, .van-toast--success {
    background-color: rgba(103, 194, 58, .82)
}

.pointer {
    cursor: pointer !important
}

.none {
    display: none !important
}

.el-radio, .el-radio--medium.is-bordered .el-radio__label {
    font-size: 14px
}

.el-radio, .el-radio__input {
    white-space: nowrap;
    line-height: 1;
    outline: 0
}

.el-radio, .el-radio__inner, .el-radio__input {
    position: relative;
    display: inline-block
}

.el-radio {
    color: #606266;
    font-weight: 500;
    cursor: pointer;
    margin-right: 30px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none
}

.el-radio.is-bordered {
    padding: 12px 20px 0 10px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    height: 40px
}

.el-radio.is-bordered.is-checked {
    border-color: #409eff
}

.el-radio.is-bordered.is-disabled {
    cursor: not-allowed;
    border-color: #ebeef5
}

.el-radio__input.is-disabled .el-radio__inner, .el-radio__input.is-disabled.is-checked .el-radio__inner {
    background-color: #f5f7fa;
    border-color: #e4e7ed
}

.el-radio.is-bordered + .el-radio.is-bordered {
    margin-left: 10px
}

.el-radio--medium.is-bordered {
    padding: 10px 20px 0 10px;
    border-radius: 4px;
    height: 36px
}

.el-radio--mini.is-bordered .el-radio__label, .el-radio--small.is-bordered .el-radio__label {
    font-size: 12px
}

.el-radio--medium.is-bordered .el-radio__inner {
    height: 14px;
    width: 14px
}

.el-radio--small.is-bordered {
    padding: 8px 15px 0 10px;
    border-radius: 3px;
    height: 32px
}

.el-radio--small.is-bordered .el-radio__inner {
    height: 12px;
    width: 12px
}

.el-radio--mini.is-bordered {
    padding: 6px 15px 0 10px;
    border-radius: 3px;
    height: 28px
}

.el-radio--mini.is-bordered .el-radio__inner {
    height: 12px;
    width: 12px
}

.el-radio:last-child {
    margin-right: 0
}

.el-radio__input {
    cursor: pointer;
    vertical-align: middle
}

.el-radio__input.is-disabled .el-radio__inner {
    cursor: not-allowed
}

.el-radio__input.is-disabled .el-radio__inner:after {
    cursor: not-allowed;
    background-color: #f5f7fa
}

.el-radio__input.is-disabled .el-radio__inner + .el-radio__label {
    cursor: not-allowed
}

.el-radio__input.is-disabled.is-checked .el-radio__inner:after {
    background-color: #c0c4cc
}

.el-radio__input.is-disabled + span.el-radio__label {
    color: #c0c4cc;
    cursor: not-allowed
}

.el-radio__input.is-checked .el-radio__inner {
    border-color: #409eff;
    background: #409eff
}

.el-radio__input.is-checked .el-radio__inner:after {
    transform: translate(-50%, -50%) scale(1)
}

.el-radio__input.is-checked + .el-radio__label {
    color: #409eff
}

.el-radio__input.is-focus .el-radio__inner {
    border-color: #409eff
}

.el-radio__inner {
    border: 1px solid #dcdfe6;
    border-radius: 100%;
    width: 14px;
    height: 14px;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box
}

.el-radio__inner:hover {
    border-color: #409eff
}

.el-radio__inner:after {
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #fff;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .15s ease-in
}

.el-radio__original {
    opacity: 0;
    outline: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0
}

.el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner {
    box-shadow: 0 0 2px 2px #409eff
}

.el-radio__label {
    font-size: 14px;
    padding-left: 10px
}

.ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ellipsis-2 {
    -webkit-line-clamp: 2
}

.ellipsis-2, .ellipsis-3 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.ellipsis-3 {
    -webkit-line-clamp: 3
}

.button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-color: #4169b8;
    color: #4169b8;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 400;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 5px
}

.button.is-disabled, .button.is-disabled:active, .button.is-disabled:focus, .button.is-disabled:hover {
    color: #c0c4cc;
    cursor: not-allowed;
    background-image: none;
    background-color: #fff;
    border-color: #ebeef5
}

.button-primary {
    color: #fff;
    background-color: #409eff;
    border-color: #409eff
}

.button-primary.is-disabled, .button-primary.is-disabled:active, .button-primary.is-disabled:focus, .button-primary.is-disabled:hover {
    color: #fff;
    background-color: #a0cfff;
    border-color: #a0cfff
}

.button:active {
    background: #3a8ee6;
    border-color: #3a8ee6
}

.back {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px
}

.icon-back {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-block
}

.icon-back:after {
    content: "";
    position: absolute;
    background: none;
    left: 14px;
    top: 14px;
    width: 12px;
    height: 12px;
    display: inline-block;
    border: 1px solid #303030;
    border-width: 0 0 2px 2px;
    transform: rotate(45deg);
    vertical-align: baseline;
    border-radius: 0;
    cursor: pointer
}

.icon-success {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 25px;
    height: 30px;
    border-radius: 100%;
    background-color: #23b8ff;
    vertical-align: middle
}

.icon-success:after {
    position: absolute;
    background: none;
    left: 4px;
    top: 4px;
    content: "✔";
    font-size: 18px;
    color: #fff;
    transform: rotate(-20deg) scaleY(1)
}

.icon-fail {
    position: relative;
    margin-right: 10px;
    width: 25px;
    height: 30px;
    border-radius: 100%;
    background-color: #c83c3c
}

.icon-fail:before {
    position: absolute;
    background: none;
    left: 4px;
    top: 2px;
    content: "✖";
    font-size: 18px;
    color: #fff
}

.payment-container {
    display: flex;
    height: 100%;
    box-sizing: border-box;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    background: #fff
}

.payment-container .header {
    position: relative;
    height: 42px;
    line-height: 42px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #e0e0e0
}

.payment-container .price {
    display: flex;
    flex: 1;
    max-height: 350px;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #fff
}

.payment-container .price .symbol {
    padding-top: 8px;
    padding-right: 3px;
    font-size: 14px
}

.payment-container .price .currency {
    font-size: 36px
}

.payment-container .payment-form {
    margin: 10px 0 0;
    padding: 10px 25px;
    border-top: 4px solid #ededed;
    background-color: #fff
}

.payment-container .payment-form .payment-list .el-radio__inner {
    display: inline-block;
    position: relative;
    border: 1px solid #dcdfe6;
    border-radius: 100%;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    background-color: #fff;
    z-index: 1;
    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46)
}

.payment-container .payment-form .payment-list .el-radio__inner:after {
    position: absolute;
    content: "✔";
    background: none;
    left: 0;
    top: 0;
    transform: scaleY(0);
    color: #fff;
    font-size: 18px;
    font-weight: 100
}

.payment-container .payment-form .payment-list .payment-list-item {
    display: flex;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
    margin-right: 0
}

.payment-container .payment-form .payment-list .payment-list-item .el-radio__label {
    font-size: 0
}

.payment-container .payment-form .payment-list .payment-list-item .el-radio__label img {
    max-width: 100%;
    height: 50px
}

.payment-container .payment-form .payment-list .payment-list-item.is-checked .el-radio__label {
    color: #409eff
}

.payment-container .payment-form .payment-list .payment-list-item.is-checked .el-radio__inner {
    border-color: #409eff;
    background: #409eff
}

.payment-container .payment-form .payment-list .payment-list-item.is-checked .el-radio__inner:after {
    border-color: #fff;
    transform: rotate(-5deg) scaleY(1)
}

.payment-container .payment-form .button {
    border-radius: 18px;
    box-shadow: 0 2px 3px #c4c4c4;
    display: block;
    width: 100%;
    margin: 40px 0 20px;
    padding: 8px 20px
}

@media (min-width: 1280px) {
    .payment-container {
        width: 750px;
        max-width: 750px
    }
}

.game-shop-manage-view {
    min-height: 100%;
    background-color: #000
}

body.l-ar {
    direction: rtl;
    unicode-bidi: embed;
    font-family: Amiri, Scheherazade, sans-serif
}

body.l-ar, body.l-ar .van-field__control, body.l-ar .van-field__error-message, body.l-ar .van-field__label {
    text-align: right
}

body.l-ar .info-label-text {
    margin-right: 0;
    margin-left: 8px
}

body.l-ar .side {
    margin-right: 0;
    margin-left: 25px
}

body.l-ar .side .game-desc {
    text-align: right
}

body.l-ar .side .faq-link {
    direction: ltr
}

body.l-ar .main .select-item-gift .gift-box-wrap .gift-btn, body.l-ar .main .select-item-gift .ricarica-box-wrap .gift-btn {
    direction: rtl;
    padding-left: 0;
    padding-right: 50px
}

body.l-ar .main .select-item-gift .gift-box-wrap .gift-img, body.l-ar .main .select-item-gift .ricarica-box-wrap .gift-img {
    left: auto;
    right: 10px
}

body.l-ar .main .select-item-gift .gift-box-wrap .icon-arrow, body.l-ar .main .select-item-gift .ricarica-box-wrap .icon-arrow {
    transform: rotate(-180deg)
}

body.l-ar .main .select-item-gift .gift-box-wrap .dot, body.l-ar .main .select-item-gift .ricarica-box-wrap .dot {
    left: auto;
    right: 36px
}

body.l-ar .main .user-wrap .login--not-login .login-input-wrapper .input {
    padding: 0 21px 0 50px
}

body.l-ar .main .user-wrap .login--not-login .login-input-wrapper .icon-question {
    right: auto;
    left: 16px
}

body.l-ar .main .user-wrap .login--not-login .login-input-wrapper .icon-clear {
    right: auto;
    left: 50px
}

body.l-ar .main .scroll-container-inner {
    min-width: 100%
}

body.l-ar .main .user-wrap .login--not-login .icon-user {
    margin-right: 0;
    margin-left: 10px
}

body.l-ar .main .user-wrap .login--not-login .login-btn {
    margin-right: 12px;
    margin-left: 0
}

body.l-ar .main .select-item-shop .item-shop-label .icon-libao {
    margin-right: 0;
    margin-left: 12px
}

body.l-ar .main .select-item-gift .ricarica-box-wrap {
    margin-left: 0;
    margin-right: 16px
}

body.l-ar .main .select-item-gift .ricarica-acc .countdown {
    margin-left: 0;
    margin-right: 6px
}

body.l-ar .main .user-wrap .login--login .avatar {
    margin-right: 0;
    margin-left: 8px
}

body.l-ar .main .select-item .voucher-label-text {
    margin-left: 0;
    margin-right: 20px
}

body.l-ar .main .shop-list {
    margin-right: 0;
    margin-left: -31px;
    padding-left: 0
}

body.l-ar .main .shop-list .item {
    margin-right: 0;
    margin-left: 23px
}

body.l-ar .gift-btn {
    direction: ltr
}

body.l-ar .main .shop-list .item .icon-extra .extra-text {
    margin-top: -14px;
    padding-top: 0;
    transform: rotate(-45deg) translateX(-45px)
}

body.l-ar .paymethods-container .paymethod-header .icon-dollor, body.l-ar .paymethods-container .paymethod-header .item-label {
    margin-right: 0;
    margin-left: 15px
}

body.l-ar .pay-result-infos .pay-sku-info {
    margin-right: 0;
    margin-left: 52px
}

body.l-ar .dialog-wrapper--checkout .select-type-wrap .select-type-item .radio-box {
    margin-right: 0;
    margin-left: 20px
}

body.l-ar .van-checkbox__label {
    margin-left: 0;
    margin-right: 8px
}

body.l-ar .payoff-order-section .payoff-item-label {
    padding-right: 0;
    padding-left: .18rem
}

body.l-ar .adyen-component-container {
    direction: ltr
}

body.l-ar .mall-page-mobile .info-label-text {
    margin-right: 0 !important;
    margin-left: .08rem
}

body.l-ar .mall-page-mobile .main .user-wrap .login--login .avatar {
    margin-left: .08rem
}

body.l-ar .mall-page-mobile .main .select-item-gift .ricarica-box-wrap {
    margin-right: 0
}

body.l-ar .mall-page-mobile .main .user-wrap .login--not-login .icon-user {
    margin-right: 0;
    margin-left: .1rem
}

body.l-ar .mall-page-mobile .main .user-wrap .login--not-login .login-btn {
    margin-right: .12rem;
    margin-left: 0
}

body.l-ar .mall-page-mobile .main .user-wrap .login--not-login .login-input-wrapper .input {
    padding: 0 .21rem 0 .5rem
}

body.l-ar .mall-page-mobile .main .user-wrap .login--not-login .login-input-wrapper .icon-question {
    left: .16rem
}

body.l-ar .mall-page-mobile .main .user-wrap .login--not-login .login-input-wrapper .icon-clear {
    left: .5rem
}

body.l-ar .mall-page-mobile .main .select-item-gift .gift-box-wrap .gift-btn, body.l-ar .mall-page-mobile .main .select-item-gift .ricarica-box-wrap .gift-btn {
    padding-right: .5rem
}

body.l-ar .mall-page-mobile .main .select-item-gift .gift-box-wrap .gift-img, body.l-ar .mall-page-mobile .main .select-item-gift .ricarica-box-wrap .gift-img {
    right: .1rem
}

body.l-ar .mall-page-mobile .main .select-item-gift .gift-box-wrap .dot, body.l-ar .mall-page-mobile .main .select-item-gift .ricarica-box-wrap .dot {
    left: auto;
    right: .36rem
}

body.l-ar .mall-page-mobile .main .faq-link {
    right: auto;
    left: .05rem;
    direction: ltr
}

body.l-ar .mall-page-mobile .main .shop-list {
    margin-right: 0;
    margin-left: -.16rem;
    padding-left: 0
}

body.l-ar .mall-page-mobile .main .shop-list .item {
    margin-right: 0;
    margin-left: .12rem
}

body.l-ar .mall-page-mobile .main .shop-list .item .icon-extra .extra-text {
    margin-top: -.14rem;
    padding-top: 0;
    transform: rotate(-45deg) translateX(-.45rem)
}

body.l-ar .mall-page-mobile .paymethods-container .paymethod-list .payment-item {
    margin-right: 0;
    margin-left: .05rem
}