﻿/* 图文列表样式 */
.img_news_list{
    padding: 30px 0 47px;
}

.img_news_item{
    display: flex;
    margin-bottom: 27px;

    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,0);
}

.news_cover{
    width: 248px;
    height: 186px;
    overflow: hidden;
}

.news_cover img{
    width: 100%;
    height: inherit;
    object-fit: cover;

    transition: all .5s;
}

.news_info{
    width: calc(100% - 248px);
    background: url(../images/pc/inner/ny_tu22.png) no-repeat;
    background-size: 100% 100%;

    box-sizing: border-box;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news_info h3{
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}

.news_info p{
    font-size: 16px;
    color: #8B8B8B;
    line-height: 30px;
}

.bottom_l{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.more{
    width: 80px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 14px;

    box-sizing: border-box;
    border: 1px solid #CECECE;

    display: flex;
    align-items: center;
    justify-content: center;
}

.more img{
    width: 22px;
    height: auto;
}

.more img:nth-child(2){
    display: none;
}

.date{
    font-size: 14px;
    color: #969595;
}

.img_news_item:hover{
    box-shadow: 0px 2px 15px 0px #E6E0E0;
    border: 2px solid rgba(255,255,255,0.57);
}

.img_news_item:hover .news_cover img{
    transform: scale(1.1);
}

.img_news_item:hover .news_info h3{
    color: #AB0A0F;
    font-weight: bold;
}

.img_news_item:hover .news_info p{
    color: #333333;
}

.img_news_item:hover .more{
    border-color: #AB0A0F;
}

.img_news_item:hover .more img:nth-child(1){
    display: none;
}

.img_news_item:hover .more img:nth-child(2){
    display: block;
}

@media screen and (max-width: 1200px){
    .img_news_list{
        padding: 13px 0;
    }

    .img_news_item{
        margin-bottom: 13px;
    }

    .img_news_item:hover{
        border-width: 1px;
    }

    .news_info{
        width: calc(100% - 124px);
        padding: 0 12px;
    }

    .news_cover{
        width: 124px;
        height: 93px;
    }

    .news_info p{
        display: none;
    }

    .news_info h3{
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        white-space: pre-wrap;

        overflow : hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .bottom_l{
        margin-top: 0px;
    }

    .more{
        width: 40px;
        height: 20px;
    }

    .more img{
        width: 15px;
    }

    .date{
        display: none;
    }
}