#MsgBlock{
    position: fixed;
    top: 80px;
    right: 0;
    width: 400px;
    z-index: 9999999999999;
}
.myxfmsg{
    display: inline-block;
    transition: opacity .5s, transform .4s,top .4s, right .4s, left .4s, bottom .4s;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
    margin: 30px 30px 0px 0px;
    padding: 15px 20px;
    background-color: #FFFFFF;
    z-index: 9999999999999;
    position: relative;
    opacity: 0;
    top: 0;
    right: -200px;
    width: 300px;
    color: #000000;
}
.myxfmsg .myxfmsg-close{
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 999999999999;
}
.myxfmsg .myxfmsg-icon{
    padding-right: 20px;
    max-width: 50px;
    position: absolute;
    top: 15px;
    left: 20px;
}
.myxfmsg .myxfmsg-text{
    position: relative;
    top: 0;
    left: 0;
    padding-left: 40px;
}
.myxfmsg .myxfmsg-text .myxfmsg-text-tit{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}
.myxfmsg .myxfmsg-text .myxfmsg-text-desc{
    padding-top: 10px;
    font-size: 14px;
    line-height: 1.5;
}
@media all and (max-width:640px){
    #MsgBlock {
        position: fixed;
        top: 80px;
        right: 0;
        width: 324px !important;
        z-index: 9999999999999;
    }
}