﻿body{
    background: rgba(244, 244, 244, 1);
}
.news {
    margin: 152px 0 60px;
}
.news >a > div{
    width: 1180px;
    margin: 0 auto 20px;
    height: 203px;
    background: #fff;
    display: flex;
    background: #fff;
    justify-content: space-between;
}
a:hover{
    text-decoration:none;  /*鼠标放上去有下划线*/
   }
.news  >a > div:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, .2);
}

.news >a >div > div > div{
    width: 833px;
    color: #666;
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-left: 30px;
}
.news >a > div >div > div:first-child {
    font-size: 24px;
    color: #333;
    padding: 30px 0 20px 30px;
    display: flex;
    justify-content: space-between;
}
.news >a > div >img{
    width: 271px;
}