/* .news_item {
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #D38F00;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.news_item:nth-child(1){
    border-top:  1px solid #D38F00;
} */
.news_left {
    width: 160px;
    height: 170px;
    flex-grow: 0;
}

.news_left img {
    width: 100%;
    height: auto;
}

.news_right {
    width: 700px;
    min-height: 170px;
    padding-left: 30px;
    flex-grow: 1;
}

.item_title {
    font-size: 24px;
    line-height: 30px;
    color: rgb(132, 132, 132);
}

.item_title:hover {
    color: #D38F00;
}

.item_content {
    font-size: 14px;
    margin: 15px 0px;
    overflow: hidden;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 3; */
    /* -webkit-box-orient: vertical; */
    /* text-overflow: ellipsis; */
    font-weight: lighter;
    color: rgb(132, 132, 132);
}

.news_right>span {
    padding-right: 10px;
    font-size: 14px;
    font-weight: lighter;
    color: rgb(132, 132, 132);
}
.item_a{
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #D38F00;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.item_a:hover .item_title,.item_a:active .item_title {
    color: #D38F00;
}