.news {
    padding: 3.229vw 0 10vw;
}

.news-list {
    border: solid 1px #dddddd;
    padding: 0 2.083vw;
    min-height: 31.25vw;
}

.news-item {
    border-bottom: solid 1px #cfd0d0;
    padding: 2.708vw 0;
    display: flex;
}
.news-item-right {
    padding-top: 13px;
    width: calc(100% - 319px);
}
.news-item img {
    width: 300px;
	height: 190px;
    object-fit: cover;
    margin-right: 19px;
}
.news-item-title {
    font-size: 18px;
    color: #333;
    width: 100%;
    /*1. 先强制一行内显示文本*/
    white-space: nowrap;
    /*2. 超出的部分隐藏*/
    overflow: hidden;
    /*3. 文字用省略号替代超出的部分*/
    text-overflow: ellipsis;
    margin-bottom: 2.604vw;
}

.news-item-desc {
    font-size: 15px;
    color: #999999;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 这里设置你想要显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item:hover .news-item-title {
    color: #999;
}
@media (max-width: 1140px) {
    .max-1140 {
        width: 90%;
    }
}
@media (max-width: 750px) {
    .news-item img {
        width: 220px;
        height: 139px;
    }
    .news-item-right {
        width: calc(100% - 219px);
    }
}
@media (max-width: 600px) {
    .news-item {
        display: block;
        padding: 15px 0;
    }
    .news-item-title {
        margin-bottom: 20px;
    }
    .news-item img {
        width: 100%;
        height: auto;
    }
    .news-item-right {
        width: 100%;
    }
}