* {
    box-sizing: border-box
}

.dialog {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    padding-top: 36vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.tips_alert {
    background: #ffffff;
    padding: 20px 0 68px;
    border-radius: 8px;
    width: 320px;
    margin: auto;
    font-size: 16px;
    color: #333333;
    letter-spacing: 1px;
    position: relative;
    border: solid 1px #dddddd;
    box-shadow: 0 2px 6px #cccccc;
}

.tips_alert p {
    padding: 0 10px;
    text-align: center;
    color: #333333;
}

.tips_alert p span {
    color: #e24339;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
}

.dialog_foot {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: solid 1px #eeeeee;
    font-size: 16px;
}

.dialog_foot span {
    display: inline-block;
    line-height: 46px;
    text-align: center;
    color: #666666;
    cursor: pointer;
}

.dialog_foot span:hover {
    color: #e24339;
}

/* confirm 按钮 */
.cancel {
    width: 50%;
    float: left;
    border-bottom-left-radius: .2rem;
    border-right: solid 1px #dddddd;
}

.confirm {
    width: 50%;
    float: left;
    border-bottom-right-radius: .2rem;
}

.mid {
    width: 100%;
}