﻿.route_news {
    .article-list {
        .item_news {
            box-sizing: border-box;
            width: 100%;
            color: #666;
            display: flex;
            align-items: center;
            -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;border-bottom: 1px dashed #cfcfcf;
            .date {
                width: 2rem;
            }
            .title {
                color: #3b3b3b;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
            }
            i{
                color: #767676;
                font-style: normal;
                margin-right: 0.08rem;
            }
        }
        .item_news:hover {
            z-index: 2;
            -webkit-transform: translate3d(0.08rem, 0, 0);
            transform: translate3d(0.08rem, 0, 0);
        }
    }
}
