/* 弹出框最外层 */
.msg__wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    transition: all .3s;
    transform: translate(-50%, -50%) scale(0, 0);
    background: #fff;
    font-size: 14px;
    border-radius: 15px;
    display: revert;
    padding: 50px 82px 30px 63px;
    font-weight: bold;
    color: #000000;
    width: 675px;
    max-width: 700px;
    min-width: 764px;
}

.msg-header .msg-dec-issue {
    display: inline;
}

.msg__wrap .msg-title {
    position: absolute;
    padding-top: 18px;
    margin-top: -115px;
    left: 0;
}

.msg__wrap .msg-title span {
    font-size: 21px;
    font-family: sourcehansanscn-bold, sourcehansanscn;
    font-weight: bold;
    color: #ffffff;
}

/* 弹出框头部 */
.msg__wrap .msg-header {
    /*padding: 10px 10px 0 10px;*/
    /*font-size: 1.8em;*/
}


.msg__wrap .msg-header .msg-header-close-button {
    float: right;
    cursor: pointer;
}

/* 弹出框中部 */
.msg__wrap .msg-body {
    display: flex;
    margin-top: 32px;
}

/* 图标 */
.msg__wrap .msg-body .msg-body-icon {
    width: 80px;
}

.msg__wrap .msg-body .msg-body-icon div {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    line-height: 45px;
    color: #fff;
    border-radius: 50% 50%;
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-success {
    background: #32a323;
    text-align: center;
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-success::after {
    content: "成";
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-wrong {
    background: #ff8080;
    text-align: center;
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-wrong::after {
    content: "误";
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-info {
    background: #80b7ff;
    text-align: center;
}

.msg__wrap .msg-body .msg-body-icon .msg-body-icon-info::after {
    content: "注";
}

/* 内容 */
.msg__wrap .msg-body .msg-body-content {
    /*min-width: 200px;*/
    /*font-size: 1.5em;*/
    /*word-break: break-all;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*padding-left: 10px;*/
    /*box-sizing: border-box;*/
    /*margin-right: -52px;*/
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.msg__wrap .msg-body-content .msg-content-button {
    background: #f4f4f4;
    margin: 0px 8px;
    color: var(--default-theme-color);
    display: flow-root;
    text-align: center;
    padding: 13px 28px;
    line-height: 18px;
    min-width: 179px;
}

.msg__wrap .msg-body-content .msg-content-button > div {
    display: inline-flex;
}

.msg__wrap .msg-body-content .msg-content-button div > div:nth-child(1) {
    display: inline-flex;
    float: left;
}

.msg__wrap .msg-body-content .msg-content-button div > div:nth-child(2) {
    display: flex;
    text-align: justify;
}

.msg-issue-war {
    margin-top: 27px;
    min-height: 70px;
}

.msg-dec-issue, .msg-dec-fail {
    color: #bc2b2b;
}

.msg-dec-fail, .msg-issue-view {
    display: none;
}


.msg-body-content {
    display: flex;
}

/* 弹出框底部 */
.msg__wrap .msg-footer {
    display: flex;
    flex-direction: row-reverse;
}

.msg__wrap .msg-body-content .msg-content-button.active {
    background: #bc2b2b;
    color: #fff;
}

.msg__wrap .msg-footer .msg-footer-btn, .msg-content-button {
    border: 0 none;
    color: #fff;
    outline: none;
    margin-left: 5px;
    cursor: pointer;
    background: #bc2b2b;
    border-radius: 8px;
    padding: 13px 34px;
    font-weight: bold;
    margin-top: 32px;

}

.msg__wrap .msg-footer .msg-footer-cancel-button {
    /*background-color: #ff3b3b;*/

}

.msg__wrap .msg-footer .msg-footer-cancel-button:active {
    /*background-color: #ff6f6f;*/
}

.msg__wrap .msg-footer .msg-footer-cancel-button {
    display: none;
}

.msg__wrap .msg-footer .msg-footer-confirm-button {
    background: #f4f4f4;
    color: #8f8f8f;
}


/* 遮罩层 */
.msg__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.71);
    transition: all .3s;
    opacity: 0;
}

