.news-min {
  width: 100%;
  display: flex;
  padding: 0 5%;
  /* background-color: #f4f3f3; */
  margin: 80px 0;
  flex-wrap: wrap;
}

.news-min .newsBox {
  position:relative;
  /* background-color: tomato; */
  width: 100%;
  /* height: 500px; */
  flex: 0 0 32%;
  margin: 0 1% 2% 0;
  padding-bottom: 40px;
  background-color: #fff;
}

.news-min .newsBox img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.news-min .newsBox .name {
  font-size: 1.5em;
  font-weight: 700;
  text-transform: none;
  font-style: normal;
  line-height: 1.5em;
  letter-spacing: -0.1px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制显示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin: 10px 0px;
}

.news-min .newsBox .content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 限制显示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  /* 防止长英文/链接不换行 */
  /* margin: 0 20px; */
  line-height: 22px;
}
.more{
  position: absolute;
  bottom: 0;
  left: 0;
  /* padding-left: 20px; */
  text-transform: uppercase;
  color: #E30313;
  font-weight: 600;
}