.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1300;
    transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.show {
    display: flex;
}
.modal-content {
    max-width: 768px;
    background: #fff;
    margin: 32px;
    border-radius: 4px;
    box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
    text-align: center;
}
.modal-content-area {
    padding: 20px 25px 0 25px;
    overflow: hidden;
    overflow-y: auto;
}
.content-box-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-box-head .confirm-box-tit {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: normal;
    line-height: 40px;
    font-size: 22px;
    color: #262626;
}
.confirm-box-text {
    line-height: 1.5em;
    font-size: 14px;
    color: #8c8c8c;
    word-wrap: break-word;
    text-align: left;
}
.content-link {
    padding: 0 15px;
    margin-top: -10px;
    margin-bottom: 15px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #f3f3f4;
    color: #262626;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    white-space: nowrap;
    box-sizing: border-box;
}
.modal-content-footer {
    height: 72px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
    border-top: 1px solid #e6e8ea;
    position: relative;
    padding: 15px 25px;
}
.modal-footer-rt button {
    min-width: 88px;
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    line-height: normal;
    font-weight: 400;
    letter-spacing: normal;
    cursor: pointer;
}
.modal-footer-rt .btn-cancel {
    background: none;
}
.modal-footer-rt .btn-cancel:hover {
    background: #f5f5f5;
}
.modal-footer-rt .btn-cancel:active {
    background: #e2e2e2;
}
.modal-footer-rt .btn-ok {
    background: #63af57;
    color: #ffffff;
}
.modal-footer-rt .btn-ok:hover {
    background: #457a3c;
}
.modal-footer-rt .btn-ok:active {
    background: #7fbd75;
}
