﻿/* 文字新闻列表页面样式 */
.word_news_list{
    padding: 25px 0;
}

.word_news_item{
    display: flex;
    align-items: center;

    width: 100%;
    height: auto;
    background: url(../images/pc/inner/ny_tu2.png) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 20px;

    box-sizing: border-box;
    padding: 25px;
}

.news_date{
    flex-shrink: 0;
    width: 80px;
    height: auto;
    background: #ffffff;
    text-align: center;

    box-sizing: border-box;
    border: 1px solid #AB0A0F;
    margin-right: 15px;
}

.news_date h3{
    width: 100%;
    height: 50px;
    background: #AB0A0F;

    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
    line-height: 50px;
}

.news_date p{
    font-size: 14px;
    color: #AB0A0F;
    line-height: 36px;
}

.news_info{
    width: calc(100% - 80px - 15px);
}

.news_info h3{
    width: 99%;
    font-size: 18px;
    color: #202020;
    font-weight: 400;
    margin-bottom: 10px;
}

.news_info p{
    font-size: 16px;
    color: #8B8B8B;
    line-height: 28px;
}

.word_news_item:hover{
    background: linear-gradient(167deg, #FEF6F6, #FDF9F9);
    box-shadow: 0px 2px 15px 0px #E6E0E0;
    border: 2px solid #FFFFFF;
}

.word_news_item:hover .news_info h3{
    color: #AB0A0F;
    font-weight: bold;
}

.word_news_item:hover .news_info p{
    color: #333333;
}


@media screen and (max-width: 1200px){
    .word_news_list{
        padding: 15px 0;
    }

    .word_news_item{
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .news_date{
        width: 60px;
        margin-right: 10px;
    }

    .news_date h3{
        font-size: 15px;
        height: 30px;
        line-height: 30px;
    }

    .news_date p{
        font-size: 12px;
        line-height: 30px;
    }

    .news_info{
        width: calc(100% - 60px - 10px);
    }

    .news_info h3{
        font-size: 16px;
        margin-bottom: 5px;
    }

    .news_info p{
        font-size: 14px;
        line-height: 20px;
    }
}