/*  模态框样式 */
.loading {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: black;
    opacity: 0.1;
    z-index: 1000;
}

/* 动图样式 */
.loading .gif {
    height: 32px;
    width: 32px;
    background: url('../img/loader.gif');
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -16px;
    margin-top: -16px;
    z-index: 1001;
}