
/* loading 图标 */
.zrq-spin {
    background: url('img/progressBar_m.gif') no-repeat;
}

.zrq-loading {
    padding: 1px 5px;
    position: fixed;
    height: 55px;
    width: 165px;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -75px;
    background: url('img/bg-loading.png') no-repeat;
    z-index: 1250;
    cursor: default;
    color: #717171;
}

    .zrq-loading i {
        height: 30px;
        width: 30px;
        float: left;
        background-size: contain;
        font-size: 30px;
        margin: 12px 10px 12px;
    }

/*只对IE6/7/8有效*/
@media \0screen\,screen\9 {
    .zrq-loading i {
        height: 25px;
        width: 25px;
        float: left;
        font-size: 35px;
        margin: 15px 10px;
    }
}

.zrq-loading > span {
    display: inline-block;
    height: 25px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 30px;
}

.zrq-cover {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
    /* opacity: 1!important; */
    /* filter: alpha(opacity=100)!important; */
    /* 透明度兼容IE8 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#44000000', endColorstr='#44000000', GradientType=0 ) !important;
    z-index: 1249 !important;
}


.mask {
    border: 1px solid #d0d0d0;
    font-size: 12px;
    padding: 5px 15px;
    max-width: 150px;
    color: #494a5f;
    background: url(img/loading.gif) no-repeat 5px 5px;
    padding-left: 25px;
    background-color: #fff;
    word-wrap: break-word;
    margin: 0 auto;
}



@-webkit-keyframes zrq-ball-scale {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes zrq-ball-scale {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.zrq-ball-scale {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1249 !important;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

    .zrq-ball-scale > div:nth-child(2) {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    .zrq-ball-scale > div:nth-child(3) {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
    }

    .zrq-ball-scale > div {
        background-color: #fff;
        border-radius: 100%;
        margin: 2px;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        position: absolute;
        left: -50px;
        top: 0px;
        opacity: 0;
        margin: 0;
        width: 100px;
        height: 100px;
        -webkit-animation: zrq-ball-scale 1s 0s linear infinite;
        animation: zrq-ball-scale 1s 0s linear infinite;
    }
