.statusMask {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
}
.statusContainer {
    width: 450px;
    height: 235px;
    position: absolute;
    top: 40%;
    left: 50%;
    border-radius: 6px;
    transform: translate(-50%, -50%);
    background-color: #fff;
}

.statusTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    text-align: center;
}
.statusBody {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.statusBodyLeft {
    flex: 0 0 58%;
    font-size: 15px;
}
.statusBodyRight {
    background-color: #ede8fb;
    flex: 0 0 40%;
    text-align: center;
    flex-direction: column;
}
.statusFoot {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
    left: 50%;
}
.statusTitleImg {
    width: 30px;
    height: 30px;
}
.statusTitleText {
    font-weight: 600;
}
.aiFunction {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.aiFunctionSpan {
    flex-basis: 40%;
    padding: 3px;
    background-color: #7f89e1;
    border-radius: 5px;
    margin-top: 10px;
    height: 28px;
    margin-bottom: 5px;
}
.aiFunctionEllipsis {
    flex-basis: 87%;
    color: #000;
    font-size: 14px;
    text-align: left;
    height: 10px;
    line-height: 10px;
}
.statusFootButton {
    background-color: #a9028a;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    padding: 2px 30px;
}
.statusBodyLeftUl {
    list-style-type: none;
    padding: 0;
    font-size: 12px;
    margin-bottom: 0 !important;
    margin-block-end: 0 !important;
}
.statusBodyLeftLiSpan {
    font-size: 20px;
    line-height: 10px;
    display: inline-block;
    vertical-align: middle;
}
.closeDialog {
    position: absolute;
    right: 12px;
    font-size: 15px;
    cursor: pointer;
}