.mloading-container {
    position: relative;
    min-height: 70px;
    display: none;
}
.mloading {
    position: absolute;
    background: #E9E9E8;
    display: none;
    z-index: 1600;
    background: rgba(240, 240, 240, 0);
}
.mloading.active {
    display: block;
}
.mloading.mloading-mask {
    background: rgba(0,0,0, 0.10);
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=10);
}
.mloading-full {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.mloading-container > .mloading {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mloading-body {
    width: 100%;
    height: 100%;
    position: relative;
}
.mloading-bar {
    min-width: 120px;
    min-height: 22px;
    text-align: center;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.27);
    border-radius: 3px;
    padding: 12px 15px;
    font-size: 12px;
    color: #999;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -140px;
    margin-top: -30px;
    word-break: break-all;
}
@media (max-width: 300px) {
    .mloading-bar {
        width: 62px;
        height: 56px;
        margin-left: -30px !important;
        margin-top: -30px !important;
        padding: 0;
        line-height: 56px;
    }
    .mloading-bar > .mloading-text {
        display: none;
    }
}
.mloading-bar-sm {
    width: 62px;
    height: 56px;
    margin-left: -30px !important;
    margin-top: -30px !important;
    padding: 0;
    line-height: 56px;
}
.mloading-bar-sm > .mloading-text {
    display: none;
}
.mloading-icon {
    width: 22px;
    height: 22px;
    float: left;
    margin-top: 5px;
}
.mloading-text {
    float: left;
    margin-left: 12px;
    text-align: left;
    line-height: 16px;
}
.mloading-text strong {
    color: #e30506;
}