/* 图文列表页面样式1 */
.img_news_list{

}

.img_news_item{
    display: flex;
    background: #FFFFFF;
    border: 1px solid #E7EAF3;

    box-sizing: border-box;
    padding: 20px;
    margin-bottom: 26px;
}

.news_cover{
    flex-shrink: 0;
    width: 380px;
    height: 240px;
    background: #FFFFFF;
    border: 1px solid #D6D9E5;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.news_cover img{
    max-width: 100%;
    max-height: 100%;
    transition: all .5s;
}

.news_info{
    width: calc(100% - 380px);
    box-sizing: border-box;
    padding-left: 20px;
}

.news_info h3{
    font-size: 20px;
    color: #333333;
    line-height: 36px;
    -webkit-line-clamp: 2;
}

.news_date{
    display: flex;
    align-items: center;
    margin-top: 15px;

    font-size: 14px;
    color: #ADADAD;
}

.news_date img{
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.news_date img:nth-child(2){
    display: none;
}

.news_con{
    font-size: 16px;
    color: #989898;
    line-height: 28px;
    margin-top: 15px;
}

.more_icon img{
    width: 82px;
    height: 24px;
    margin-top: 30px;
}

.more_icon img:nth-child(2){
    display: none;
}

.img_news_item:hover{
    box-shadow: 0px 5px 20px 0px #D6D9E5;;
}

.img_news_item:hover .news_info h3{
    color: #1F3694;
}

.img_news_item:hover .news_cover img{
    transform: scale(1.1);
}

.img_news_item:hover .news_date img:nth-child(1){
    display: none;
}

.img_news_item:hover .news_date img:nth-child(2){
    display: block;
}

.img_news_item:hover .more_icon img:nth-child(1){
    display: none;
}

.img_news_item:hover .more_icon img:nth-child(2){
    display: block;
}
.img_news_item:hover .news_con{
    color: #333333;
}



@media screen and (max-width: 998px){
    .img_news_item{
        padding: 12px;
        margin-bottom: 15px;
    }

    .news_cover{
        width: 280px;
        height: 176px;
    }

    .news_info{
        width: calc(100% - 280px);
        padding-left: 12px;
    }

    .news_info h3{
        font-size: 18px;
        line-height: 32px;
    }

    .news_con{
        font-size: 14px;
        line-height: 26px;
    }

    .more_icon{
        display: none;
    }
}

@media screen and (max-width: 768px){
    .news_cover{
        width: 210px;
        height: auto;
    }

    .news_info{
        width: calc(100% - 210px);
    }

    .news_con{
        display: none;
    }

    .news_info h3{
        font-size: 16px;
        line-height: 25px;
        -webkit-line-clamp: 3;
    }

    .news_date{
        font-size: 12px;
    }

    .news_date img{
        width: 11px;
        height: 11px;
    }
}

@media screen and (max-width: 540px){
    .img_news_item{
        padding: 10px;
        margin-bottom: 12px;
    }

    .img_news_item:hover{
        box-shadow: 0px 3px 10px 0px #D6D9E5;;
    }

    .news_cover{
        width: 142px;
        height: 95px;
    }

    .news_info h3{
        font-size: 15px;
    }

    .news_info{
        width: calc(100% - 142px);
        padding-left: 9px;
    }

    .news_date{
        margin-top: 5px;
    }
}