.content{
    width: 66%;
    margin: 0 auto;
    height: auto;
    color:#666666;
    overflow-y: scroll;
}
.item{
    margin-top: 30px;
    display: flex;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 20px;
    cursor: pointer;
}
.item>div:last-child{
    width: 100%;
}
.img-con{
    width: 200px;
    height: 100px;
    margin-right: 20px;
}
.news-title{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    width: 100%;
}
.new-icon{
    color:red;
    font-size: 10px;
    margin-top: -5px;
    margin-left: 5px;
}
.img-con>img{
    width: 100%;
    height: 100%;
}
.news-content{
    color: #8c8c8c;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.time-con{
    text-align: right;
    font-size: 12px;
    color: #8c8c8c;
    margin-top: 10px;
}