/**
 * 文件描述：弹框样式
 * 创建人：殷俊
 * 创建时间：2019-06-30
 */

#dialog {
    display: none; position: absolute;
    z-index: 99;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
}
#dialog.shade {
    background-color: rgba(0, 0, 0, 0.7);
}
#dialog>.tip {
    position: fixed; z-index: 99;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 80%; height: 40px;
    margin: auto;
    text-align: center; line-height: 40px;
    color: white; background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.loading {
    position: absolute; z-index: 99;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url(../../img/common/Loading.gif);
    background-size: 15px 15px;
    background-position: center center;
    background-repeat: no-repeat;
}