/* 文字一行，多余省略号 */
.clamp1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}
/* 文字多行，多余省略号 */
.clamp2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.clamp2 {
    -webkit-line-clamp: 2;
}


.newsUl{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}
.newsUl li{
    width: 47.5%;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
}
.newsUl li::after{
    content:"";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 2px;
    background: #F4A526;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.newsUl li:hover::after{
    width: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.newsUl a{
    display: block;
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
}
.newsL{
    width: 31%;
    flex-shrink: 0;
    height: 115px;
    object-fit: cover;
}
.newsR{
    width: 65%;
}
.newsR h2{
    font-size: 22px;
    color: #333;
    margin-bottom: 14px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.newsR div{
    height: 60px;
}
.newsR p{
    color: #666;
    font-size: 14px;
}
.newsR span{
    display: block;
    color: #999;
    font-size: 14px;
}
.newsUl li:hover h2{
    color: #F4A526;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 900px){
    .newsUl li{
        width: 100%;
    }
    .newsUl a{
        flex-wrap: wrap;
        padding: 24px 0px;
    }
    .newsL{
        width: 100%;
        height: 180px;
        margin-bottom: 16px;
    }
    .newsR{
        width: 100%;
    }
    .newsR div{
        height: auto;
        margin-bottom: 10px;
    }
    .newsR h2{
        font-size: 16px;
    }
    .ny-tit{
        padding-bottom: 0px;
    }
}