﻿/* 文字列表 */
.words_news_item{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 25px 0;
    border-bottom: 1px solid #F0F0F0;

    position: relative;
}

.words_news_item::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #8E0209;

    position: absolute;
    left: 0;
    bottom: 0;

    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
}

.words_news_item:first-child{
    padding-top: 0;
}

.news_date{
    width: 120px;
    flex-shrink: 0;
}

.news_date p{
    font-size: 16px;
    color: #908F8F;
    text-align: right;
}

.news_l{
    width: calc(100% - 120px);
    display: flex;
    align-items: center;
}

.news_l img{
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-right: 8px;
}

.news_l img:nth-child(2){
    display: none;
}

.news_l p{
    font-size: 18px;
    color: #333333;
    -webkit-line-clamp: 1;
}

.words_news_item:hover .news_l img:first-child{
    display: none;
}

.words_news_item:hover .news_l img:nth-child(2){
    display: block;
}

.words_news_item:hover .news_l p{
    color: #8E0209;
    font-weight: bold;
}

.words_news_item:hover .news_date p{
    color: #333333;
}

.words_news_item:hover::after{
    transform: none;
}

@media screen and (max-width: 998px) {
    .words_news_item{
        padding: 15px 0;
    }

    .news_l{
        width: 100%;
    }

    .news_l img{
        width: 10px;
        height: 10px;
        margin-right: 3px;
    }

    .news_l p{
        font-size: 16px;
        line-height: 25px;
        -webkit-line-clamp: 2;
    }

    .news_date{
        display: none;
    }





}