.news_div {
    border-bottom: 1px solid #E5E5E5;
}

.news_main .news_div:first-child {
    border-top: 1px solid #E5E5E5;
}

.news_time {
    padding: 90px 40px;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.news_time p:nth-child(1) {
    font-family: Lato-Bold;
    font-weight: bold;
    font-size: 45px;
    color: #333333;
    text-align: center;
}

.news_time p:nth-child(2) {
    font-family: ABeeZee-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    text-align: center;
}

.news_div:hover .news_time {
    background: url('img/news_time_bac.png') no-repeat;
    background-size: 100% 100%;
}

.news_div:hover .news_time * {
    color: #fff;
}

.news_div:hover .news_time::after {
    content: '';
    display: inline-block;
    width: 37px;
    height: 1px;
    background: #F08F11;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -37px;
}

.news_center {
    flex: 1;
    margin: 0 60px;
}

.news_title {
    display: block;
    font-family: Lato-Bold;
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}

.news_desc {
    font-family: Lato-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    margin: 10px 0;
}

.news_btn a {
    padding: 0 12px;
    font-family: ABeeZee-Regular;
    font-weight: 400;
    font-size: 16px;
    color: #F08F11;
    height: 32px;
    border: 1px solid #F08F11;
}

.news_btn a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('img/news_btn1.png') no-repeat;
    background-size: 100% 100%;
    margin-left: 5px;
}

.news_btn a:hover {
    background: #F08F11;
    color: #fff;
}

.news_btn a:hover::after {
    background: url('img/news_btn2.png') no-repeat;
    background-size: 100% 100%;
}

.news_img {
    flex-shrink: 0;
    width: 26%;
}

.news_img .imgBox {
    padding-bottom: 56.35%;
}

@media only screen and (max-width: 950px) {

    .news_div{
        padding-top: 20px;
        flex-wrap: wrap;
    }
    .news_time{
        padding: 20px;
    }

    .news_center{
        margin: 0 0 0 20px;
    }

    .news_img{
        width: 100%;
        margin: 20px 0;
    }

    .news_desc{
        display: none;
    }

    .news_title{
        font-size: 20px;
        margin-bottom: 15px;
    }


}