﻿.route_news {
    min-height: 500px;
    .item_news {
        width: 100%;
        overflow: hidden;
        padding-bottom: 0.45rem;
        box-sizing: border-box;
        border-bottom: 1px solid #c9cacb;
        a {
            display: flex;
            .pic-box {
                position: relative;
                display: -webkit-box;
                display: -webkit-flex;
                display: flex;
                -webkit-box-align: center;
                -webkit-align-items: center;
                align-items: center;
                width: 25%;
                margin-right: 30px;
                .imgWrap {
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    .imgWrap__bg {
                        position: absolute;
                        left: 0%;
                        top: -7%;
                        width: 114%;
                        height: 114%;
                        object-fit: cover;
                        -webkit-filter: blur(13px);
                        filter:blur(13px);
                    }
                    .imgWrap_img {
                        display: block;
                        max-height: 100%;
                        position: relative;
                    }
                    .lanmu {
                        bottom: 0px;
                        left: 0px;
                        color: #fff;
                        padding: 3px 5px; 
                        border-radius: 0px 3px 0px 0px;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 1;
                    }
                }
            }
            .wz-box {
                flex: 1;
                font-family: 黑体;
                .title {
                    color: #011843;
                    line-height: 40px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                }
                .date {
                    color: #1468ae;
                }
                .leadin {
                    line-height: 1.8;
                    color: #434242;
                    font-size: 14px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                }
                .look {
                    color: #1468ae;
                }
            }
        }
    }
    .item_news+.item_news {
        padding-top: 0.45rem;
    }
}