﻿@charset "utf-8";

.new-news-container {
    width: 30.3%;
    margin-right: 3%;
    margin-bottom: 3%;
    margin-left: 0;
    cursor: pointer;
}
    .new-news-container .example-item-cont {
        height: 280px;
        border: 1px solid #c6c6c6;
    }
    .new-news-container .news-title {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 设置最大显示行数 */
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .new-news-container .example-item-cont .example-item-cont-img {
        width: 100%;
        height: 100%;
    }