.product-logo {
    width: 30% !important;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}

.ltr {
    direction: ltr;
}

.new-mask {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.new-mask .bg-mask {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
}

.new-mask.gui-show {
    opacity: 1;
    z-index: 2000;
    visibility: visible;
}

.new-mask .confirm {
    max-width: 80%;
    min-width: fit-content;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: 9999;
    transition: opacity .15s linear;
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: fixed;
    background-color: #fff;
}

.new-mask .confirm-btn span {
    width: 50%;
    border-right: 1px solid #eee;
    font-size: 16px;
    color: #3478F6;
    flex: 1;
    height: 100%;
    display: inline-block;
}

.new-mask .cancel-small {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
    cursor: pointer;
    display: inline-block;
}

.new-mask .confirm-btn {
    height: 45px;
    line-height: 45px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new-mask div.confirm {
    padding: 24px;
    border-radius: 6px;
    line-height: 20px;
}

.new-mask .confirm-t {
    max-width: 340px;
    color: #3d3d3d;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
    font-weight: 700;
    padding: 0;
}

.new-mask .confirm-t .red {
    color: #df2f25;
    font-size: 16px;
}

.new-mask .confirm-btn {
    border: none;
    flex-direction: row-reverse;
}

.new-mask .confirm-btn span {
    min-width: 114px;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.new-mask #confirm-ok {
    background-color: #df2f25;
    color: #fff;
    text-align: center;
}

.new-mask #confirm-cancle {
    margin: 0 8px;
    border: 1px solid #efefef;
    color: #3d3d3d;
    text-align: center;
}

.qr-code,
.new-mask-content {
    background-color: #fff;
    padding: 20px;
    position: fixed;
    min-width: fit-content;
    border-radius: 5px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.qr-code .hint,
.new-mask-content.hint {
    text-align: center;
    font-size: 14px;
}

.pay-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    z-index: 20200;
}

.pay-loading .loading-center {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.pay-loading .loading-center span {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: block;
    border: 5px solid #868686;
    border-radius: 50%;
    border-top-color: #fff;
    margin-bottom: 20px;
    animation: loading 1s infinite linear;
}

@media (max-width: 767px) {
    .new-mask .confirm-t {
        max-width: none;
        width: 100%;
    }
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}