.news {
    width: 100%;
    height: 289px;
    padding: 40px 0;
    border-bottom: 1px solid #cea87d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.news .news_img {
    /* width: 30.81%; */
    border-radius: 20px;
    transition: all .5s;
	width: 100%;
}

.news_divimg {
    width: 350px;
    height: 208px;
    border-radius: 20px;
    overflow: hidden;
}

.news:hover .news_img {
    transform: scale(1.1);
}

.news .news_detail {
    width: 69.19%;
    padding: 0 30px 0 35px;
    position: relative;
}

.news .news_detail .news_detail_title {
    width: 100%;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.news .news_detail .news_detail_title h2 {
    line-height: 30px;
    color: #2e2e2e;
    font-size: 18px;
    /* font-weight: normal; */
    margin-right: 5px;
}

.news:hover .news_detail .news_detail_title h2 {
    color: #c59d70;
}

.news .news_detail .news_detail_title span {
    width: 9px;
    height: 15px;
    background: url(../images/news_title_more.png) no-repeat;
    background-size: cover;
}

.news:hover .news_detail .news_detail_title span {
    background: url(../images/news_title_more_hover.png) no-repeat;
    background-size: cover;
}

.news .news_detail .news_detail_data {
    width: 100%;
    height: 22px;
    margin: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.news .news_detail .news_detail_data div:first-child {
    /* width: 100%; */
    line-height: 22px;
    color: #2e2e2e;
    font-size: 16px;
    margin-right: 33px;
}

.news:hover .news_detail .news_detail_data div:first-child {
    color: #c59d70;
}

.news .news_detail .news_detail_data div:last-child {
    width: 44px;
    height: 22px;
    background-color: #15316e;
    border-radius: 5px;
    text-align: center;
    line-height: 22px;
    font-size: 14px;
    color: #fff;
}

.news .news_detail .news_detail_con {
    width: 100%;
    min-height: 27px;
    max-height: 54px;
    line-height: 27px;
    font-size: 16px;
    color: #3b3b3b;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news:hover .news_detail .news_detail_con {
    color: #c59d70;
}

.news_detail .news_href {
    width: 154px;
    height: 41px;
    line-height: 41px;
    border: 1px solid #c59d70;
    border-radius: 20px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 35px;
    color: #c59d70;
    text-align: center;
}

.news:hover .news_detail .news_href {
    border: 1px solid #c59d70;
    color: #fff;
    background-color: #c59d70;
}