.translateX100{
    transform:translateX(100%);
    opacity: 0;
}
.progress-box{
    width: 25%;
    height: 3px;
    border-radius: 30px;
    /*border: 1px solid #ccc;*/
    overflow: hidden;
    margin-top: 5%;
}
.progress-box .progress-bg{
    width:0;
    height: 3px;
    background: linear-gradient(90deg, #1f9cce, #09B8B2);
}
#load-screen {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*background: #EEF2F8;*/
    background: #F5F8FF;
    z-index: 9999;
    transition: all 1s ease;

}

#load-screen .load-main {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#load-screen img.load-logo {
    max-width: 100%;
    width: 25%;
    margin-bottom: 2rem;
}

#load-screen .load-main .slogan{
    width: 60%;
    margin-bottom: 2rem;
}

#load-screen .load-main p {
    font-size: 2rem;
    color: #09B8B2;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

#load-screen .nums {
    display: flex;
    justify-content:center;
    align-items: center;
}

#load-screen .span {
    color: #7d7e7f;
    font-size: 0.9rem;
    text-align: center;
    display: block;
}

#load-screen .other {
    width: 100%;
    height: 3.125vw;
    position: absolute;
    bottom: 0.85417vw;
    left: 0;
}

#load-screen .other .line {
    position: absolute;
}

#load-screen .other .l1 {
    height: 3px;
    width: 100%;
    top: 0;
    left: 0;
}

#load-screen .other .l2 {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #147A78 0%, #09B8B2 30%, #09B8B2 70%, #147A78 100%);
    margin: auto 0;
    top: 0;
    bottom: 0;
    left: 0;
}

#load-screen .other .l2 #path {
    height: 3px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -1px;
    left: 100%;
}

#load-screen .other .l2 #path em {
    width: 100vw;
    height: 100%;
    background: linear-gradient(90deg, rgba(238, 242, 248, 0) 0%, #eef2f8 20%, #eef2f8 30%, rgba(238, 242, 248, 0) 50%, rgba(238, 242, 248, 0) 60%, #eef2f8 80%, rgba(238, 242, 248, 0) 100%);
}

#load-screen .other .l3 {
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
}
@media (max-width: 998px) {
    
    #load-screen{
        background-size: 145%;
    }
    #load-screen .nums{
        justify-content: center;
    }
    #load-screen .load-main{
        width: 80%;
        right: 10%;
        /*background: aqua;*/
    }
    #load-screen .load-main p{
        margin: 10px 0 0 0;
    }
    #load-screen img.load-logo{
        width: 50%;
    }
    
    #load-screen .load-main .slogan{
        width: 100%;
    }
}