#zxdt{
    padding: 0 100px;
}
.zxdtList div:nth-child(1){
     display: flex;
    flex-direction: column;
    width: 72%;
    padding-right: 20px;
}

.zxdtList{
    height:180px;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E8E8E8;
    
}
.zxdtList .newsTit{
    font-size:18px;
    color:rgba(51,51,51,1);
    line-height:25px;
    margin-bottom: 10px;
}

.zxdtList .newsTime{
    height: 24px;
    font-size: 14px;
    color: rgba(136,136,136,1);
    line-height: 24px;
    margin-bottom: 10px;
}
.zxdtList .newsBody{
    font-size: 14px;
    color: rgba(136,136,136,1);
    line-height: 16px;
    height: 16px;
    margin-bottom: 20px;
     /*  超出的文本隐藏 */
     overflow:hidden;  
         /* 溢出用省略号显示 */
     text-overflow:ellipsis; 
     white-space: nowrap;   
}
.zxdtList .newsBtn{
    color: #999999;
    text-align: center;
    line-height: 36px;
    width:96px;
    height:36px;
    border:1px solid rgba(153,153,153,1);
    transition: all .5s;
	font-size: 14px;
}
.zxdtList .newsBtn:hover{
    background:rgba(46,209,207,1);
    border:1px solid rgba(46,209,207,1);
    cursor: pointer;
    color: #FFFFFF;
}
.zxdtList .newsImg{
    width: 27.5%;
    overflow: hidden;

}
.zxdtList .newsImg img{
width: 100%;
height: 100%;
    transition: all .5s;
}
.zxdtList .newsImg img:hover{
    transform: scale(1.2) ;
}

.moreList{
height:45px;
background:rgba(239,239,239,1);
text-align: center;
line-height: 45px;
font-size:20px;
font-family:STHeitiSC-Medium;
font-weight:500;
color:rgba(153,153,153,1);
cursor: pointer;
transition: all .5s;
}
.moreList:hover{
    background:rgba(46,209,207,1);
}