@charset "UTF-8";

#data-loading{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #000000bf;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
}
#data-loading span{
    display: block;
    margin-bottom: 50px;
    text-align: center;
    font-size: .3rem;
    font-weight: bold;
    color: #fff;
    -webkit-animation:blink 1.5s ease-in-out infinite alternate;
        -moz-animation:blink 1.5s ease-in-out infinite alternate;
        animation:blink 1.5s ease-in-out infinite alternate;
}
#data-loading p{
    font-size: .18rem;
    color: #fff;
    text-align: center;
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}