
.modal-footer,.modal-header{border: 0;}
.left .title{cursor:pointer}
.layui-hide{display:none!important}
/* 全局加载遮罩 */
.global-loading-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 99999;
    display: none;
}
.global-loading-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 20px 40px;
    border-radius: 6px;
    text-align: center;
}
/* 旋转加载动画 */
.global-loading-spin {
    width: 30px;
    height: 30px;
    border: 3px solid #eee;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}