/*自写loading*/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99999999999999;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
}
.logo {
    width: 1.12rem;
}
.load-text {
    position: absolute;
    top: 125%;
    font-size: 0.36rem;
    color: #e53925;
    font-family: serif;
    white-space: nowrap;
    letter-spacing: .06em;
}
.loader {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 50%;
    -webkit-transform: translate(-50%, -50%);
}

.loader .face {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    animation: animate 1.5s linear infinite;
}

.loader .face:nth-child(1) {
    width: 100%;
    height: 100%;
    color: #e53925;
    border-color: currentColor transparent transparent currentColor;
    border-width: .1rem .1rem 0em 0em;
    --deg: -45deg;
    animation-direction: normal;
}

.loader .face:nth-child(2) {
    width: 70%;
    height: 70%;
    color: #e53925;
    border-color: currentColor currentColor transparent transparent;
    border-width: 0.1rem 0em 0em 0.1rem;
    --deg: -135deg;
    animation-direction: reverse;
}
@keyframes animate {
to {
    transform: rotate(1turn);
    }
}
/* gif图 */
.logoGif{
    align-self: center;
    width: 2.8rem;
    height: 2.8rem;
}