.dialog_content {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    mix-width: 300px;
    z-index: 9000;
    display: none;
}

.dialog_bg {
    position: absolute;
    z-index: 1002;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background: #000;
    opacity: 0.2;
}

.dialog_data {
    width: 1000px;
    background: #FFFFFF;
    border: 1px solid #EDEDED;
    position: absolute;
    z-index: 1010;
    left: 45%;
    margin-left: -350px;
    top: 35%;
    margin-top: -210px;
}

.dialog_data_header {
    width: 100%;
    height: 52px;
    background: #FFFFFF;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.dialog_data_header h3 {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 16px;
    margin-top: 16px;
    margin-left: 22px;
    position: relative;
}

.dialog_data_header div {
    width: 14px;
    height: 14px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    line-height: 14px;
    position: absolute;
    right: 22px;
    top: 17px;
    cursor: pointer;
}

