
.news-box{
    padding: 80px 150px;
}
.news-list{

}
.news-item{
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    cursor: pointer;
}
.news-date{
    width: 150px;
    display: flex;
    /*border-right: 1px rgba(204, 204, 204, 1) solid;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.news-date:after{
    content: "";
    display: block;
    width: 1px;
    height: 100px;
    background: rgba(204, 204, 204, 1);
    position: absolute;
    left: 148px;
}
.news-date .year{
    width: 120px;
    height: 60px;
    opacity: 1;
    background: rgba(20, 118, 222, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    border-radius: 4px 4px 0 0;
}
.news-date .month{
    width: 120px;
    height: 80px;
    opacity: 1;
    border-radius: 0 0 4px 4px;
    background: rgba(224, 236, 248, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(20, 118, 222, 1);
    font-size: 24px;
    font-weight: bold;
}
.news-text{
    width: calc(100% - 400px);
    padding: 0 30px;
}
.news-title{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 40px;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-profile{
    font-size: 14px;
    color: rgba(51, 51, 51, 0.4);
}
.news-image{
    width: 240px;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 1200px) {
    .news-content .container{
        transform: translateY(0);
        padding: 0;
    }
    .news-top{
        height: 70px;
    }
    .tab-list{
        display: none;
    }
    .tab-item{
        height: 100%;
    }
    .banner-title{
        margin-bottom: 0 !important;
    }
    .news-box{
        padding: 0;
    }
    .news-date{
        width: 70px;
        height: 45px;
        align-items: flex-start;
    }
    .news-date .year{
        width: 60px;
        height: 40px;
        font-size: 14px;
        border-radius: 2px 2px 0 0;
    }
    .news-date .month {
        width: 60px;
        height: 40px;
        font-size: 12px;
        border-radius: 0 0 2px 2px;
    }
    .news-list{
        padding: 20px 0;
    }
    .news-item{
        margin-bottom: 0;
        height: 70px;
    }
    .news-text{
        width: calc(100% - 70px);
        padding: 0;
    }
    .news-image{
        width: 100px;
        height: 60px;
        display: none;
    }
    .news-date:after{
        display: none;
    }
    .news-title{
        font-size: 14px;
        line-height: 20px;
    }
    .news-profile{
        font-size: 10px;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
}