
/*提示框背景*/
.alert_dialog_mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 1001;
}

/*提示信息白色背景*/
.alert_dialog_content_box {
    width: 80%;
    height: 160px;
    position: absolute;
    top: 50%;
    margin-top: -90px;
    margin-left: 10%;
    background: rgba(255,255,255,.98);
    border-radius: 9px;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;

}

.alert_dialog_content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 101px;
    text-align: center;
    padding: 15px 10px;
    overflow: hidden;

}
.alert_dialog_content > table {
    width: 100%;
    height: 86px;
}
.alert_dialog_content > table > tr{
    width: 100%;
    height: 86px;
}
.alert_dialog_content > table> tr > td {
    width: 100%;
    height: 86px;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
}
.alert_dialog_bottom {
    width: 100%;
    line-height: 44px;
    border-top: 1px solid #eaeaea;;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    -webkit-user-select: none;
    user-select: none;;
}
.alert_dialog_bottom a {
    color: #D74F43;
}
.alert_dialog_bottom a:active {
    background: #F7F7F7;
}