#foreground_msg{
    position: fixed;
    display: none;
    top: 0px;
    left: 0px;
    z-index: 99999;
    width: 100%;
    height: 80px;
    background: white;
    border: 1px solid #eee;    
}

#msg_close_btn{
    text-align: right;    
    display: block;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: black;
    height: 15px;
    font-size: 18px;
    position: absolute;
    right: 10px;
    top: 3px;
}

#foreground_msg.active{
    display: block;
    animation: fadein 0.5s;
    -moz-animation: fadein 0.5s; /* Firefox */
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
    -o-animation: fadein 0.5s; /* Opera */
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


#foreground_msg .msg_warp{
    display: flex;
    align-items: center;
    height: 100%;
}

#foreground_msg .msg_warp img{
    width: 70px;
    margin-left: 20px
}    

#foreground_msg .msg_info{
    padding-right: 10px;
}

#foreground_msg .msg_title{
    font-weight: bold;
}

#foreground_msg .msg_content{
    line-height: 19px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}