/* 新闻列表 begin */
.news {
    margin-left:300px;
    width:830px;
    padding-bottom:100px;
}
.news .oneline{ 
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.news .twoline{ 
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .news-list{
    list-style-type: none;
    padding:0;
}
.news .news-list a{
    display: block;
    padding:25px 0 25px 35px;
    text-decoration:none;
    border-bottom:1px dashed #959293;  
}
.news .news-list .date{
    display: inline-block;
    font-size:25px;
    color:#444444;
}
.news .news-list .date>i{
    font-style:normal;
    font-size:14px;
    color:#959293;
}
.news .news-list .cont{
    display: inline-block;
    width:650px;
    margin-left:30px;
    vertical-align: top;
}
.news .news-list .cont>h3{
    margin:0;
    margin-bottom:10px;
    font-size:24px;
    color:#444444;
    font-weight: normal;
}
.news .news-list .cont>p{
    font-size:16px;
    margin:0;
    line-height: 28px;
    color:#959293;
}
.news .news-list li:hover h3,
.news .news-list li:hover .date
{
    color:#5f7f28;
}
.news .news-list li:hover p,
.news .news-list li:hover .date>i
{
    color:#b4c0a2;
}
/* 新闻列表 end */