body ace-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111827;
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/*body ace-splash-screen img {*/
/*    width: 120px;*/
/*    max-width: 120px;*/
/*}*/

body .sprite-animation {
    width: 200px; /* 单帧的宽度 */
    height: 128px; /* 单帧的高度 */
    background-image: url('/assets/images/logo/mix_sprite.png'); /* 雪碧图文件 */
    background-size: auto 384px; /* 雪碧图的宽高 */
    background-repeat: no-repeat;
    animation: horizontal-move 2s steps(61) infinite, vertical-move 6s steps(3) infinite;
}

@keyframes horizontal-move {
    100% { background-position-x: -12200px; } /* 每行横向偏移 8000px (40 * 200px) */
}

@keyframes vertical-move {
    0%, 33.33% { background-position-y: 0; }            /* 第一行 */
    33.34%, 66.66% { background-position-y: -128px; }   /* 第二行 */
    66.67%, 100% { background-position-y: -256px; }     /* 第三行 */
}

/*body ace-splash-screen .spinner {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    margin-top: 40px;*/
/*    width: 56px;*/
/*}*/

/*body ace-splash-screen .spinner > div {*/
/*    width: 12px;*/
/*    height: 12px;*/
/*    background: linear-gradient(45deg, #5A42EB, #07F19A);*/
/*    border-radius: 100%;*/
/*    display: inline-block;*/
/*    -webkit-animation: bounce-delay 1s infinite ease-in-out both;*/
/*    animation: bounce-delay 1s infinite ease-in-out both;*/
/*}*/

/*body ace-splash-screen .spinner .bounce1 {*/
/*    -webkit-animation-delay: -0.32s;*/
/*    animation-delay: -0.32s;*/
/*}*/

/*body ace-splash-screen .spinner .bounce2 {*/
/*    -webkit-animation-delay: -0.16s;*/
/*    animation-delay: -0.16s;*/
/*}*/

/*@-webkit-keyframes bounce-delay {*/
/*    0%, 80%, 100% {*/
/*        -webkit-transform: scale(0)*/
/*    }*/
/*    40% {*/
/*        -webkit-transform: scale(1.0)*/
/*    }*/
/*}*/

/*@keyframes bounce-delay {*/
/*    0%, 80%, 100% {*/
/*        -webkit-transform: scale(0);*/
/*        transform: scale(0);*/
/*    }*/
/*    40% {*/
/*        -webkit-transform: scale(1.0);*/
/*        transform: scale(1.0);*/
/*    }*/
/*}*/

body:not(.splash-screen-hidden) {
    overflow: hidden;
}

body.splash-screen-hidden ace-splash-screen {
    visibility: hidden;
    opacity: 0;
}

 /*从第一帧开始播放*/
body.splash-screen-hidden ace-splash-screen .sprite-animation{
    display: none;
}
