 /* 新闻列表 begin */
 .news{
    padding:100px 0;
    width:1200px;
    margin:0 auto;
}
.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 .tab-box ul{
    display: none;
    list-style: none;
    padding:0;
} 
.news .tab-box ul:first-of-type{
    display: block;
} 
.news .tab-box li{
    padding-bottom:60px;
    margin-bottom:50px;
    border-bottom: 1px dotted #a0a0a0;
}
.news .tab-box a{
    text-decoration: none;
}
.news .tab-box .date{
    display: inline-block;
    margin-right:60px;
    text-align: center;
}
.news .tab-box .date>span{
    font-size: 33px;
    color: #c7cfd0;
}
.news .tab-box .date>em{
    display: block;
    font-size: 35px;
    padding: 0px 12px;
    background-color: #c7cfd0;
    color: #fff;
    font-style: normal;
}
.news .tab-box .cont{
    display: inline-block;
    vertical-align: top;
    width:1000px;
}   
.news .tab-box .cont h3{
    font-size: 24px;
    line-height: 28px;
    margin:0;
    margin-bottom: 15px;
    font-weight: bold;
    color: #324240;
}   
.news .tab-box .cont p{
    font-size: 14px;
    line-height: 22px;
    color:#7e7f7e;
}
.news .tab-box li:hover span,
.news .tab-box li:hover h3{
    color:#0085d1 ;
}
.news .tab-box li:hover em{
    color:#fff;
    background-color: #0085d1 ;
}
/* 新闻列表 end */