.list_news_box {
    padding-left: 55px;
    border-left: 2px solid #D9D9D9;
    position: relative;
}

.list_news_box::after {
    content: '';
    width: 2px;
    height: 236px;
    background: #008CD6;
    display: inline-block;
    position: absolute;
    top: 0;
    left: -2px;
}

.list_news_div {
    padding: 48px 0;
    display: flex;
    border-top: 1px solid #D6DCEA;
    border-bottom: 1px solid #D6DCEA;
}

.list_news_img {
    width: 42.5%;
    flex-shrink: 0;
}

.list_news_img .imgBox {
    padding-bottom: 60%;
}

.list_news_time {
    justify-content: center;
    width: 96px;
    height: 95px;
    flex-shrink: 0;
    text-align: center;
    margin: 0 60px;
    font-family: Inter, Inter;
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    border: 1px solid rgba(102, 102, 102, 0.2);
}

.year {
    font-family: Inter-Semi Bold;
    font-size: 30px;
}

.list_news_right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.list_news_title {
    font-family: Futura Std-Medium;
    font-weight: 500;
    font-size: 20px;
    color: #333333;
    line-height: 1.5em;
    height: 3em;
    overflow: hidden;
}

.list_news_desc {
    font-family: Futura Std-Book;
    font-weight: normal;
    font-size: 16px;
    color: #999999;
    margin-top: 10px;
}

.list_news_btn {
    display: inline-block;
    padding: 0 45px;
    height: 40px;
    line-height: 40px;
    font-family: Futura Std-Book;
    font-weight: normal;
    font-size: 16px;
    color: #FFFFFF;
    background: #999999;
    margin-right: 0;
    margin-left: auto;
}

.list_news_div:hover .list_news_time {
    color: #008CD6;
    border: 1px solid rgba(0, 140, 214, 0.2);
}

.list_news_div:hover .list_news_title {
    color: #008CD6;
}

.list_news_div:hover .list_news_btn {
    background: #008CD6;
    color: #FFFFFF;
}

@media only screen and (max-width:950px) {
    .list_news_box {
        border-left: 0;
        padding-left: 0;
    }

    .list_news_box::after {
        display: none;
    }

    .list_news_div {
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .list_news_img {
        width: 100%;
    }

    .list_news_time {
        margin: 30px 0 ;
    }

    .list_news_right {
        width: 100%;
    }

    .list_news_desc{
        display: none;
    }

    .list_news_btn{
        margin-left: 0;
        margin-right: auto;
        margin-top: 30px;
    }
}