.index_contact {
    margin-top: 5%;
}

.news_div {
    background: #F7F7F7;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 35px;
}

.news_div_img {
    width: 35%;
}

.news_div_img .imgBox {
    padding-bottom: 76.85%;
}

.news_div_right {
    width: 65%;
    padding: 30px 35px;
}

.news_tag_share {
    justify-content: space-between;
}

.news_tag {
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}

.news_title {
    display: block;
    line-height: 1.5em;
    height: 1.5em;
    overflow: hidden;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 20px;
    color: #FFAD2B;
    margin-top: 20px;
}

.news_title:hover {
    text-decoration: underline;
}

.news_desc {
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin-top: 13px;
}

.news_date {
    margin-top: 8px;
    font-family: Arial-Regular, Arial;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.news_date::before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('img/news_date.png') no-repeat;
    background-size: 100% 100%;
    flex-shrink: 0;   
    margin-right: 8px;
}

@media only screen and (max-width: 950px) {
    .news_div{
        flex-wrap: wrap;
    }
    .news_div_img{
        width: 100%;
    }

    .news_div_right{
        width: 100%;
        padding: 25px;
    }

    .news_tag_share{
        flex-wrap: wrap;
    }

    .news_tag{
        width: 100%;
        margin-bottom: 15px;
    }
}