.backdrop-psd {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.1s opacity linear;
    transition: 0.1s opacity linear;
}

.passWordKeyBody {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 10010;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-transition: 0.2s opacity linear;
    transition: 0.2s opacity linear;
    visibility: visible;
    opacity: 1;
}

.passWordKeyboard {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
}

.keyboard-list {
    width: 33.33333%;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
    padding-top: calc(100vw / 375 * 12);
    padding-bottom: calc(100vw / 375 * 10);
    border-right: 1px solid rgba(236, 236, 236, 1);
}

.keyboard-list--right {
    border-right: 0;
}

.keyboard-list--number {
    font-size: calc(100vw / 375 * 20);
    height: calc(100vw / 375 * 20);
    line-height: calc(100vw / 375 * 20);
    margin-bottom: calc(100vw / 375 * 5);
    font-weight: 500;
}

.keyboard-list--text {
    font-weight: 500;
    text-transform: Uppercase;
    font-size: calc(100vw / 375 * 16);
    height: calc(100vw / 375 * 16);
    line-height: calc(100vw / 375 * 16);
    height: auto;
}

.keyboard-list--symbol {

}

.keyboard-list--icon {

}

.keyboard-list.keyboard-list--ctived {
    background: rgba(243, 243, 243, .5) !important;
}

.keyboard-list p {
    margin: calc(100vw / 375 * 0.25) 0;
}

.input-main {
    margin: calc(100vw / 375 * 20) calc(100vw / 375 * 15);
}

.forget-box {
    margin: 0 calc(100vw / 375 * 25) calc(100vw / 375 * 30) 0;
    font-size: calc(100vw / 375 * 14);
    font-weight: 400;
    color: rgba(167, 167, 167, 1);
}

.input-main--item {
    border-radius: 0 !important;
    padding-top: 0 !important;
    height: calc(100vw / 375 * 45) !important;
    font-size: calc(100vw / 375 * 30) !important;
    line-height: calc(100vw / 375 * 45) !important;
    text-align: center;
    width: 16.666666%;
    border: 1px solid rgba(236, 236, 236, 1) !important;
    caret-color: transparent;
    border-right: 0 !important;
}

.input-main--dot {
    display: inline-block;
    width: calc(100vw / 375 * 10);
    height: calc(100vw / 375 * 10);
    background: #252525;
    border-radius: 100%;
}

.input-main--item:last-child {
    border-right: 1px solid rgba(236, 236, 236, 1) !important;;
}

.keyboardHearder-box {
    padding: 10px 15px 10px 15px;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
}

.keyboard-close--guanbi {
    font-size: calc(100vw / 375 * 25);
    height: calc(100vw / 375 * 25);
    line-height: calc(100vw / 375 * 25);
    height: auto;
}

.keyboard-close {
    font-size: calc(100vw / 375 * 30);
    height: calc(100vw / 375 * 30);
    line-height: calc(100vw / 375 * 30);
    height: auto;
}

.keyboard-del {
    font-size: calc(100vw / 375 * 32);
    height: calc(100vw / 375 * 32);
    line-height: calc(100vw / 375 * 32);
    height: auto;
}

.keyboardHearder-title {
    font-size: calc(100vw / 375 * 18);
    height: calc(100vw / 375 * 18);
    line-height: calc(100vw / 375 * 18);
    font-weight: 400;
    color: rgba(37, 37, 37, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow-wrap: anywhere;
    word-break: break-all;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

.backdrop-loading {
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    z-index: 10010;
    width: 100%;
    height: 100%;
    position: fixed;
    opacity: 1;
}

.loader {
    /*color: rgba(47,42,114,1);*/
    color: #fff;
    position: relative;
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: currentcolor;
    top: 0;
    left: 0;
    -webkit-animation: 1s loader linear infinite;
    animation: 1s loader linear infinite;
    margin-top: calc(-1 * (100vw / 375 * 30));
    margin-left: calc(-1 * (100vw / 375 * 30));
}

.loader:before {
    width: calc(100vw / 375 * 60);
    height: calc(100vw / 375 * 60);
}

.loader:after {
    width: calc(100vw / 375 * 60);
    height: calc(100vw / 375 * 60);
    /*top: .1em;*/
    /*left: .1em;*/
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}