.msg-cover{
    width:100%;
    height: 100%;
    background-color:rgba(0, 0, 0,0.3);
    position:absolute;
    top:0;
    left:0;
    filter: alpha(opacity=30);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.msg-container{
    width: 300px;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.33);
    margin: auto;
}
.msg-close{
    width: 300px;
    height: 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.icon-msg-close{
    width: 20px;
    height: 19px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #888888;
    cursor: pointer;
    font-size: 30px !important;
    margin: 0 !important;
}
.icon-msg-title{
    font-size: 26px !important;
    margin-top: 1px;
    margin-right: 4px !important;
    font-weight: lighter;
}
.msg-close-body{
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.msg-body-default{
    text-align: center;
}
.msg-title{
    width: 300px;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.msg-title-content{
    height: 21px;
    font-family: 'Microsoft YaHei';
    font-size: 18px;
    font-stretch: normal;
    line-height: 20px;
    letter-spacing: 0;
    color: #222222;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
}
.msg-body{
    width: 100%;
    padding: 20px 1.5em;
    font-family: Microsoft YaHei;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 19px;
    letter-spacing: 0;
    color: #888888;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-wrap: break-word;
    word-break: break-all;
    overflow: hidden;
    text-align: center;
}
.msg-operate{
    width: 300px;
    height: 40px;
    display: flex;
    flex-direction: row;
}
.msg-btn{
    height: 40px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: normal;
    font-stretch: normal;
    line-height: 19px;
    letter-spacing: 0;
    color: #888888;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow:1;
    cursor:pointer;
}
.msg-btn-default{
    width: 300px;
    background-color: #f5f5f5;
}
.msg-btn-warning{
    width: 150px;
    background-color: #ffa31a;
    color: white;
}
.msg-btn-reject {
    width: 150px;
    background-color: #DD001B;
    color: white;
}
.msg-btn-success{
    width: 150px;
    background-color: #00b03b;
    color: white;
}
.msg-btn-cancel{
    width: 150px;
    background-color: #f5f5f5;
}
.msg-btn-error{
    width: 150px;
    color: white;
    background-color: #F56C6C;
}