#SplashLoading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #212121ff;
    pointer-events: all;
    opacity: 1;
    z-index: 999999999;
    .SplashLoadingBackground {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .SplashLoadingBackground img {
        position: absolute;
        width: 100%;
        height: 100%;
        min-width: 1920px;
        min-height: 1080px;
        top: 0;
        left: 0;
    }
    .SplashLoadingLoading {
        position: absolute;
        width: 64px;
        height: 64px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transform: translateY(-30px);
    }
    .SplashLoadingLoading img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        animation: Rotate 2s infinite linear;
    }
    .SplashLoadingTitle {
        position: absolute;
        height: 33px;
        line-height: 33px;
        width: min-content;
        color: #0095ff;
        white-space: nowrap;
        font-size: 24px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        transform: translateY(30px);
    }
}

@keyframes Rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
