.CLoading1{
    display: none;
    z-index: 10086;
    position: fixed;
    top:0;
    left: 0;
}
.CLoading1 > div {
    position:absolute;
    width:60px;
    height: 60px;
    left:50%;
    top:50%;
    margin-left: -30px;
    margin-top: -30px;
    text-align: center;
}
.CLoading1 > div > *{
    height: 100%;
    width: 6px;
    display: inline-block;
    margin: 0 3px;
    animation: CLoading1 1.0s infinite ease-in-out;
}
.CLoading1 > div > *:nth-child(2){
    animation-delay: -0.9s;
}
.CLoading1 > div > *:nth-child(3){
    animation-delay: -0.8s;
}
.CLoading1 > div > *:nth-child(4){
    animation-delay: -0.7s;
}
.CLoading1 > div > *:nth-child(5){
    animation-delay: -0.6s;
}
@keyframes CLoading1 {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }  20% {
           transform: scaleY(1.0);
       }
}