.tips_dialog {
    position: fixed;
    z-index: 10003;
    left: 0;
    right: 0;
    margin: auto;
    background: #FFFFFF;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    cursor: default;
}

.tips_dialog .close-btn {
    cursor: pointer;
    margin-right: 10px;
    float: right;
}

.tips_dialog .tips_header {
    padding-left: 22px;
    padding-top: 24px;
}

.tips_dialog .tips_header img {
    vertical-align: middle;
    margin-right: 10px;
}

.tips_dialog .tips_header span {
    vertical-align: middle;
    display: inline-block;
    font-size: 14px;
    color: #171E31;
    line-height: 18px;
    font-weight: 400;
}

.tips_dialog .tips_body {
    padding: 0 6% 0 12%;
    word-break: break-all;
    font-size: 14px;
    color: #5C647A;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    margin-top: 10px;
}

.tips_dialog .tips_body button:focus {
    outline: 0;
}

.tips_dialog .tips_footer {
    height: 30px;
    margin-bottom: 16px;
    padding-right: 24px;
    text-align: right;
}

.tips_dialog .tips_footer .yes-btn {
    margin-right: 20px;
    background-color: rgb(44, 91, 250);
    border: none;
    color: white;
}

.tips_dialog .tips_footer > span {
    cursor: pointer;
    display: inline-block;
    box-sizing: border-box;
    padding: 5px 20px;
    border: 1px solid #DFE2E6;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.tips_dialog .tips_footer .no-btn {
    background: #FFFFFF;
    color: #2A3047;
}