@import './var.less';


.h5-load {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h5-load-content {
    position: relative;
}

.h5-loading-bg {
    position: relative;
    width: 20 * @hd;
    height: 20 * @hd;
    background: blue;
    background-size: 100% 100%;
    margin: 0 auto;
}

.txt {
    /* width: 5rem; */
    text-align: center;
    font-size: 24 * @hd;
    color: rgba(102, 102, 102, 1);
    margin-top: 2 * @hd;
}
.ani-rotate {
    -webkit-animation: rotateFrames 1s infinite linear;
    animation: rotateFrames 1s infinite linear;
}

@-webkit-keyframes rotateFrames {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotateFrames {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


// .@{rv-prefix}-loading {
    
// }
// @import './var.less';

// :root {

// }

// .@{rv-prefix}-loading {

// }
