/* 文字列表页面样式 */
.words_l_item{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 0;
    border-bottom: 1px solid #EEF1FA;
}

.words_l_item h3{
    width: 100%;
    font-size: 20px;
    color: #333333;
    font-weight: 400;
    -webkit-line-clamp: 1;

    transition: all .5s;
    box-sizing: border-box;
    padding-left: 25px;
    position: relative;
}

.words_l_item h3::before{
    content: "";
    width: 12px;
    height: 12px;
    background: #AEB3C1;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.words_l_item p{
    flex-shrink: 0;
    font-size: 16px;
    color: #AFB5B8;
    margin-left: 30px;
}

.words_l_item:hover{
    border-bottom-color: #A7090F;
}

.words_l_item:hover h3{
    color: #A7090F;
}

.words_l_item:hover h3::before{
    background: #A7090F;
}

.words_l_item:hover p{
    color: #333333;
}

@media screen and (max-width: 998px){
    .words_l_item{
        padding: 25px 0;
    }

    .words_l_item h3::before{
        width: 10px;
        height: 10px;
    }

    .words_l_item h3{
        font-size: 18px;
        padding-left: 22px;
    }

    .words_l_item p{
        font-size: 14px;
    }
}

@media screen and (max-width: 540px){
    .words_l_item{
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .words_l_item h3{
        width: 100%;
        font-size: 16px;
        line-height: 25px;
        -webkit-line-clamp: 2;
        padding-left: 15px;
    }

    .words_l_item h3::before{
        width: 8px;
        height: 8px;
        top: 13px;
    }

    .words_l_item p{
        font-size: 12px;
        line-height: 30px;
        margin-left: 0;
        padding-left: 15px;
    }
}