.full-screent-loading.show {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: visible;
}
.full-screent-loading {
    visibility: hidden;
    display: none;
}
.loading-logo-box span {
    animation: loading-height ease 1.8s infinite;
    display: block;
}
.loading-logo-box i {
    background: url(/assets/images/waitLogo.svg) no-repeat center / cover;
    /* width: 75px;
    height: 75px; */
    width: 85px;
    height: 90px;
    display: block;
    animation: loading-rotate ease 1.8s infinite;
}
.loading-logo-box:after {
    content: "";
    display: block;
    width: 64px;
    height: 12px;
    background-color: #00000026;
    border-radius: 50%;
    margin-top: 7px;
    animation: loading-shadow ease 1.8s infinite;
}
.full-screent-loading .text {
    font: 16 px;
    color: #ff3bd4;;
    margin-top: 8px;
}
@keyframes loading-rotate {
    0% {
        transform: rotate(0)
    }

    16% {
        transform: rotate(120deg)
    }

    33% {
        transform: rotate(120deg)
    }

    49% {
        transform: rotate(240deg)
    }

    66% {
        transform: rotate(240deg)
    }

    82% {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes loading-height {
    0% {
        transform: translateY(0)
    }

    16% {
        transform: translateY(-15px)
    }

    33% {
        transform: translateY(0)
    }

    49% {
        transform: translateY(-15px)
    }

    66% {
        transform: translateY(0)
    }

    82% {
        transform: translateY(-15px)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes loading-shadow {
    0% {
        transform: scale(1);
        background-color: #00000026
    }

    16% {
        transform: scale(.5);
        background-color: #00000026
    }

    33% {
        transform: scale(1);
        background-color: #00000026
    }

    49% {
        transform: scale(.5);
        background-color: #00000026
    }

    66% {
        transform: scale(1);
        background-color: #00000026
    }

    82% {
        transform: scale(.5);
        background-color: #00000026
    }

    to {
        transform: scale(1);
        background-color: #00000026
    }
}