
/* 对 loading  整体布局*/
.loading-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(128, 128, 128, 0.8);
    touch-action: none;
}

.loading-view{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo{
    width: 210px;
    height: auto;
    position: absolute;
}

.loading-around{
    width: 300px;
    height: auto;
    aspect-ratio: 1/1;
    -webkit-animation: rotation 0.75s ease-in-out infinite;
    animation: rotation 0.75s ease-in-out infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}