/* 通知公告页面样式 */
.notice_list{

}

.notice_item{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding: 38px 0;
    border-bottom: 1px solid #E7ECF3; 
    transition: all .3s;
}

.no_date{
    flex-shrink: 0;
    text-align: center;

    box-sizing: border-box;
    padding-right: 25px;
    border-right: 1px solid #ECF0F4;
    transition: all .5s;
}

.no_date h3{
    font-size: 26px;
    color: #7F8388;
    font-weight: 400;
    transition: all .5s;
}

.no_date p{
    width: 100%;
    height: 26px;
    background: #ECF0F4;
    margin: 5px auto 0;

    font-size: 16px;
    color: #7F8388;
    line-height: 26px;
    transition: all .5s;
}

.no_more{
    flex-shrink: 0;
}

.no_more img{
    width: 29px;
    height: 65px;
    vertical-align: middle;
    transition: all .5s;
}

.no_more img:nth-child(2){
    display: none;
}

.no_info{
    width: calc(100% - 98px - 29px);
    box-sizing: border-box;
    padding: 0 25px;
}

.no_info h3{
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    -webkit-line-clamp: 1;
    transition: all .5s;
}

.no_info p{
    font-size: 16px;
    color: #999BA0;
    margin-top: 18px;
}

.notice_item:hover{
    border-bottom: 2px solid #0F60B9;
}

.notice_item:hover .no_date h3{
    color: #0F60B9;
}

.notice_item:hover .no_date p{
    color: #ffffff;
    background: #0f60b9;
}

.notice_item:hover .no_info h3{
    color: #0F60B9;
    font-weight: bold;
}

.notice_item:hover .no_info p{
    color: #333333;
}

.notice_item:hover .no_more img:first-child{
    display: none;
}

.notice_item:hover .no_more img:nth-child(2){
    display: block;
}

@media screen and (max-width: 998px){
    .notice_item{
        justify-content: flex-start;
        padding: 20px 0;
    }

    .no_more{
        display: none;
    }

    .no_date{
        padding-right: 15px;
    }

    .no_date h3{
        font-size: 16px;
    }

    .no_date p{
        width: 45px;
        height: 18px;

        font-size: 12px;
        line-height: 18px;
    }

    .no_info{
        width: calc(100% - 61px);
        padding: 0 0 0 12px;
    }

    .no_info h3{
        font-size: 16px;
        line-height: 28px;
        -webkit-line-clamp: 2;
    }

    .no_info p{
        display: none;
    }
}