﻿.route_news {
    min-height: 500px;
    .article-list {
        margin: 0;
        padding: 0;
        list-style-type: none;
        .item_news {
            box-sizing: border-box;
            width: 49%;
            margin-bottom: 25px;
            background: #fff;
            -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;
            .date {
                color: #fff;
                text-align: center;
                width: 72px;
                height: 68px;
                font-family: 黑体;
                b {
                    display: block;
                    margin: 6px 0 0;
                }
            }
            .info {
                line-height: 25px;
                margin: 0 70px 0 25px;
                .title {
                    color: #3b3b3b;
                    font-weight: bold;
                    line-height: 19px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                    margin-bottom: 8px;
                }
                .leadin {
                    color: #646464;
                    line-height: 22px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                }
            }
            .look {
                width: 150px;
                height: 44px;
                text-align: center;
                line-height: 44px;
                border: 2px solid #ad8f45;
                border-radius: 5px;
                color: #ad8f45;
            }
        }
        .item_news:hover {
            z-index: 2;
            -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
        }
    }
}
