.news_content{
    background-image: url("../img/news/news-list-bg.png");
}
.news-list{
    padding: 4.167vw 8.542vw 0 8.542vw;
}
.news-item{
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2vw 0;
    cursor: pointer;
}
.news-date{
    width: 12vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    flex: none;
}
.news-item:hover .news-date{
    background: linear-gradient(90deg, rgba(42, 130, 228, 1) 0%, rgba(0, 186, 173, 0.72) 40%, rgba(0, 186, 173, 0.1) 100%);
}
.news-date-day{
    font-size: 3vw;
    font-weight: 900;
    letter-spacing: 0;
    color: rgba(42, 130, 228, 1);
}
.news-date-year{
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 2vw;
    color: rgba(0, 186, 173, 1);
    text-align: center;
    margin-top: 10px;
}
.news-item:hover .news-date-day{
    color: #ffffff;
}
.news-item:hover .news-date-year{
    color: #ffffff;
}
.news-image{
    width: 20vw;
    height: 100%;
    overflow: hidden;
    flex: none;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.news-item:hover .news-image img{
    transform: scale(1.2);
}
.news-content{
    min-width: 51vw;
    max-width: 80vw;
    height: 100%;
    padding: 1vw 3vw;
    transition: all 0.5s;
}
.news-content.text{
    min-width: 71vw;
}
.news-content-title{
    font-size: 1.5vw;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-content-desc{
    height: 4vw;
    font-size: 1vw;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4vw;
    color: rgba(51, 51, 51, 0.6);
    margin: 0.4vw 0 0.4vw 0;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-content-bottom{
    display: flex;
    justify-content: space-between;
}
.news-item:hover .news-content{
    background-color: #ffffff;
}
.news-view{
    font-size: 0.8vw;
    font-weight: 400;
    letter-spacing: 0;
    /*line-height: 21px;*/
    color: rgba(51, 51, 51, 1);
    display: flex;
    align-items: center;
}
.news-view:before{
    content: "";
    display: inline-block;
    width: 0.8vw;
    height: 0.8vw;
    background: url("../img/news/news-view.svg") no-repeat;
    background-size: 100% 100%;
    margin-right: 2px;
}
.news-more{
    width: 10vw;
    height: 3vw;
    background: url("../img/news/news-more.svg");
    background-size: 100% 100%;
    transform: translateX(-100px);
    opacity: 0.00;
    transition: all 0.5s;
}
.news-item:hover .news-more{
    transform: translateX(0px);
    opacity: 1.00;
}
