#mpalert2 {
    width: 100%;
    height: 100%;
    background: rgba(88, 88, 88, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpalert2-content {
    background-color: #fff;
    background-position: center center;
    /* 背景图不平铺 */
    background-repeat: no-repeat;
    /* 让背景图基于容器大小伸缩 */
    background-size: cover;
    width: 80%;
    border-radius: 10px;
}

.mpalert2-close {
    padding: 10px;
    height: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.mpalert2-close img {
    width: 30px;
    height: 30px;
}
.mpalert2-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}
.mpalert2-logo-1 {
    width: 100%;
    display: flex;
    justify-content: center;
}
.mpalert2-logo-1 img {
    width: 50%;
}
.mpalert2-logo-2 {
    width: 100%;
    text-align: center;
    height: 20px;
    font-weight: 700;
    font-size: 20px;
}
.mpalert2-body {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    margin: 40px 0;
    font-size: 16px;
    text-align: center;
}

.mpalert2-confirm {
    width: 100%;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}
.mpalert2-confirm-btn {
    color: #fff;
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 20px;
    background-color: red;
}