.news {
    display:flow-root;
    max-width:1240px !important
}
.news .newsTitles {
    text-align:center;
    color:#333;
    margin-bottom: 30px;
    margin-top: 30px;
}
.news .newBox {
    /*border-top:1px solid #e5e5e5;*/
    display: flow-root;
}
.newBox ul {
    margin-top:10px
}
.newBox li {
    width:calc((100% - 140px) / 3);
    margin-right: 70px;
    float: left;
}
.newBox li:hover .newsTitle {
    color:#ee7430;
    transition: all 0.5s;
}
.newBox li:nth-child(3n) {
    margin-right:0;
}
.newBox .newsTime {
    font-size: 12px;
    color:#666;
}
.newBox .newsTitle {
    font-size: 16px;
    color:#333;
    margin:10px auto 10px;
    transition: all 0.5s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newBox .newsDes {
    font-size: 14px;
    color: #666;
    line-height:22px
}
.newsImg {
    height:0;
    padding-bottom:51%;
    overflow: hidden;
    position: relative;
    margin-bottom:20px;
}
.newsImg img {
    transition: all 0.5s;
    transform: translate(-50%,-50%);
    width: 100%;
    height:auto;
    position: absolute;
    top:50%;
    left:50%;
}
.newsImg:hover img {
    transform: translate(-50% ,-50%) scale(1.1);
    transition: all 0.5s;
}

@media screen and (max-width: 980px){
.newBox li {
    width:100%;
    margin-bottom:15px;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}
.newBox .newsTitle {
    font-size:16px;
    margin-bottom:10px
}
.news .newsTitles {
    font-size:24px;
    margin-bottom:30px;
    margin-top:30px
}
.news .newBox {
    margin-bottom:20px;
}
}