/* 文字列表页面样式 */
.news_item{
    min-height: 100px;
    display: flex;
    align-items: center;

    box-sizing: border-box;
    padding: 0 23px;
    background: #ffffff;
}

.news_item:nth-child(2n){
    background: #f7f8fa;
}

.news_date{
    width: 150px;
    flex-shrink: 0;

    font-size: 16px;
    color: #767778;
}

.news_r{
    width: calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_r h3{
    font-size: 18px;
    color: #333333;
    font-weight: 400;
    line-height: 26px;
    -webkit-line-clamp: 1;
}

.news_r p{
    flex-shrink: 0;
    font-size: 16px;
    color: #333333;
    margin-left: 30px;
}

.news_item:hover{
    background: linear-gradient(-90deg, #8A25CC, #0115A5);
}

.news_item:hover .news_date{
    color: #B6D3FD;
}

.news_item:hover .news_r h3{
    font-weight: bold;
    color: #ffffff;
}

.news_item:hover .news_r p{
    color: #ffffff;
}

@media screen and (max-width: 1400px) {
    .news_date{
        width: 120px;
    }

    .news_r{
        width: calc(100% - 120px);
    }
}

@media screen and (max-width: 998px) {
    .news_item{
        display: block;
        padding: 13px;
    }

    .news_date{
        width: 100%;
        font-size: 12px;
        line-height: 24px;
    }

    .news_r{
        width: 100%;
    }

    .news_r h3{
        font-size: 16px;
        line-height: 24px;
        -webkit-line-clamp: 2;
    }

    .news_r p{
        display: none;
    }
}