html body{
    margin: 0;
    padding: 0;
}

/*动态加载圈-loading-start*/
body .loading-box-shadow-omg{
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background-color: #211f1f5c;
    position: fixed;
    top: 0;
    z-index: 9999999;
    height: 100%;
    width: 100%;
}

.hidden{
    display: none!important;
}

body .loading-box-shadow-omg .loading-box{
    background-color: white;
    border-radius: 5px;
    position: absolute;
    top: 40%;
    left: 40%;
    width: 400px;
    height: 200px;
    /* padding: 5px; */
}

body .loading-box-shadow-omg .loading-box .loading-circle{
    width: 60px;
    height: 60px;
    background-color: transparent;
    position: absolute;
    left: 40%;
    top: 10%;
    animation: init-circle 1s linear infinite;
}

body .loading-box-shadow-omg .loading-box .loading-content{
    position: absolute;
    bottom: 5%;
    font-weight: bold;
    color: rebeccapurple;
    width: 100%;
    text-align: center;
    padding: 10px;
}

body .loading-box-shadow-omg .loading-box .loading-circle>div{
    background-color: #292961;
    border-radius: 20px;
    position: absolute;
}

@keyframes init-circle {
    from{
        transform: rotate(360deg);
    }
    to{
        transform: rotate(0deg);
    }
}

@media screen and (max-width:600px){
    body .loading-box-shadow-omg .loading-box {
        background-color: white;
        border-radius: 5px;
        position: absolute;
        top: 20%;
        left: 5%;
        width: 90%;
        height: 200px;
    }
}

/*动态加载圈-loading-stop*/