.news_item{
    display: flex;

    box-sizing: border-box;
    padding: 40px 0;
    border-bottom: 1px solid #E4E8EB;
    position: relative;
}

.news_item::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #1a17a4;
    border-radius: 10px;

    position: absolute;
    left: 0;
    bottom: 0;

    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
    
}

.news_cover{
    flex-shrink: 0;
    width: 300px;
    height: 225px;
    overflow: hidden;
}

.news_cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.news_info{
    width: calc(100% - 300px);
    box-sizing: border-box;
    padding-right: 25px;
}

.news_info h3{
    font-size: 18px;
    color: #333333;
    line-height: 40px;
    font-weight: 400;

    -webkit-line-clamp: 1;
}

.news_info > p{
    font-size: 16px;
    color: #767778;
    line-height: 40px;
}

.news_con{
    font-size: 16px;
    color: #989898;
    line-height: 30px;
    margin-top: 10px;
}

.news_item:hover .news_cover img{
    transform: scale(1.3);
}

.news_item:hover .news_info h3{
    color: #1a17a4;
    font-weight: bold;
}

.news_item:hover .news_info > p{
    color: #8a25cc;
}

.news_item:hover .news_con{
    color: #4e4e4e;
}

.news_item:hover::after{
    transform: none;
}

.news_more{
    display: none;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 26px;
    background: linear-gradient(-90deg, #8A25CC, #0115A5);
    margin-top: 10px;
}

.news_more p{
    font-size: 12px;
    color: #FFFFFF;
}

.news_more img{
    width: 22px;
    height: 3px;
    margin-left: 5px;
}

@media screen and (max-width: 1400px) {
    .news_cover{
        width: 240px;
        height: 180px;
    }

    .news_info{
        width: calc(100% - 240px);
    }
}

@media screen and (max-width: 998px) {
    .news_item{
        padding: 26px 0;
    }

    .news_item::after{
        height: 2px;
    }

    .news_info{
        width: calc(100% - 180px);
        padding-right: 15px;
    }

    .news_info h3{
        font-size: 16px;
        line-height: 28px;
    }

    .news_info > p{
        font-size: 12px;
        line-height: 28px;
    }

    .news_con{
        font-size: 14px;
        line-height: 22px;
    }

    .news_cover{
        width: 180px;
        height: 135px;
    }
}

@media screen and (max-width: 540px) {
    .news_con{
        display: none;
    }

    .news_more{
        display: flex;
    }

    .news_info{
        width: calc(100% - 150px);
        padding-right: 7px;
    }

    .news_info h3{
        line-height: 25px;
        -webkit-line-clamp: 2;
    }

    .news_info p{
        line-height: 25px;
        font-family: "仿宋";
    }

    .news_cover{
        width: 150px;
        height: 112px;
    }
}