/* 全屏加载 */
.screen-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background-color: #153165;
    z-index: 999999;
}

.screen-loading .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.screen-loading .icon {
    width: 60px;
    animation: loadingAnimation 1s linear infinite;
}

.screen-loading .logo {
    margin-top: 32px;
    width: 160px;
    object-fit: cover;
    animation: loadingAnimation 1s linear infinite;

}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}