@charset "utf-8";
/* ---------------------------------  弹框 */
@keyframes show {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}
.global_dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    display: none;
}
.global_wrap {
    z-index: 301;
    position: absolute;
    background: rgba(0,0,0,.5);
    /* width: 100%;
    height: 100vh; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.dialog_body {
    position: absolute;
    box-sizing: border-box;
    z-index: 302;
    min-width: 600px;
    min-height: 200px;
    background:#fff;
    left: 50%;
    top: 50%;
    display: none;
}
.dialog_body.show {
    /* animation: show .3s forwards; */
}


.dialog_head {
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    width: 100%;
    background: #fff;  
    /* text-align: right;   */
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 12px;
}
.dialog_head_title {}
.dialog_head img {
    cursor: pointer;
    position: absolute;
    right: 12px;
    top: 10px;
}
.dialog_content {}