/* 党建工作页面样式 */
.words_list{

}

.words_Item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 22px 18px;
    
    position: relative;
}

.words_Item:nth-child(2n){
    background: #F5F8FB;
}

.words_Item::after{
    content: "";
    width: 100%;
    height: 3px;
    background: #1D3C91;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
}

.words_l{
    width: calc(100% - 100px);
    display: flex;
    align-items: flex-start;
}

.words_l img{
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.words_l img:nth-child(2){
    display: none;
}

.words_l p{
    font-size: 18px;
    color: #333333;
    line-height: 26px;
}

.w_date{
    width: 100px;
    text-align: right;
    flex-shrink: 0;
    font-size: 16px;
    color: #A0A4AB;
}

.words_Item:hover{
    background: #F5F8FB;
}

.words_Item:hover::after{
    transform: none;
}

.words_Item:hover img:nth-child(1){
    display: none;
}

.words_Item:hover img:nth-child(2){
    display: block;
}

.words_Item:hover p{
    color: #1d3c91;
}

.words_Item:hover .w_date{
    color: #666A75;
}

@media screen and (max-width: 1350px) {
    .words_Item{
        padding: 18px 15px;
    }

    .words_l img{
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .words_l p{
        font-size: 16px;
    }

    .w_date{
        font-size: 12px;
    }
}

@media screen and (max-width: 998px) {
    .words_Item{
        flex-wrap: wrap;
    }

    .words_Item::after{
        height: 2px;
    }

    .words_l{
        width: 100%;
        align-items: flex-start;
    }

    .words_l p{
        line-height: 24px;
    }

    .w_date{
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        padding-left: 30px;
        margin-top: 10px;
    }
}