*{padding:0;margin:0}
body{
    height:100vh;
    font-family:Microsoft YaHei,PingFang SC,HarmonyOS_Regular,Helvetica Neue,sans-serif;
    overflow:hidden;
    user-select:none;
}
#load_app{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}
#load_app .logo{
    width:260px;
}
.progress{
    margin:50px 0 100px;
}
.progress p{
    font-size:16px;
    width:100%;
    text-align:center;
    margin-bottom:10px;
    color:#ffffff;
    letter-spacing:0.5px;
}
.progress .percent{
    width:400px;
    height:5px;
    padding:1px;
    border:2px solid rgba(0,147,191,0.6);
    background-color:rgba(0,146,191,0.15);
    border-radius:100px;
}
.progress .percent div{
    background-color:#f15e22;
    height:100%;
    border-radius:100px;
    transition:.3s ease-in-out;
}
#load_app .slogan{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    font-size:16px;
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translate(-50%);
    color:#ffffff;
    text-align:center;
}
#load_app .slogan p{
    margin:0;
    color:#ffffff;
}
#load_app .slogan img{
    width:80px;
    display:block;
}
@media screen and (max-width: 640px){
    html{font-size:4.6vw}
    #load_app .logo{width:55%}
    .progress .percent{width:70vw}
    #load_app .slogan{
        font-size:14px;
        bottom:30px;
    }
    #load_app .slogan img{
        width:90px;
    }
}
.cursor{cursor:pointer}
.login-load-bg{
    position:fixed;
    inset:0;
    overflow:hidden;
    -webkit-user-select:none;
    user-select:none;
    background-image:url(../../assets/index-bg.jpg);
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:20px;
}
