﻿.message-box{
    padding-right: 50px;
    margin-top: 25px;
    padding-left:0 ;
}
.message{
    display: flex;
    flex-direction: row;
    padding: 25px 0;
    border-bottom: 1px #E3E3E3 solid ;
}
.message>a{
    width: 45%;
    max-height: 140px;
    cursor: pointer;
}
.message>a>img{
    width: 100%;
    max-height: 140px;
}
.message-cont{
    width: 50%;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}
.message-cont>p{
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    overflow:hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}
.message-cont>div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	font-size:12px;
}
.message-cont span{
    color: #999;
}
.message-cont span>a{
    color: black;
}
.message-cont span>a:hover{
    color: #114378;
    cursor: pointer;
    text-decoration: none;
}
/* 响应式 */
@media(max-width:576px){
    .message-box{
        padding-right: 0;
    }
    .message{
        flex-direction: column;
    }
    .message a{
        width: 100%;
        max-height: 300px;
    }
    .message a img{
        width: 100%;
        max-height: 300px;
    }
    .message-cont{
        width: 100%;
        margin-left: 0;
        display: flex;
        flex-direction: column;
    }
}