/* ========== 公司新闻 - Banner ========== */
.page-banner--news {
  background: url("../images_WZ/CompanyNews/bg.jpg") center / cover no-repeat;
}

/* ========== 公司新闻 - 布局 ========== */
.news-layout {
  width: 1200px;
  margin: 0 auto;
}

.news-main {
  background: #fff;
}

/* ---------- 新闻列表 ---------- */
.news-list {
  list-style: none;
}

.news-item {
  border-bottom: 1px dotted #e8e8e8;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item__link {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
}

.news-item__thumb {
  flex-shrink: 0;
  width: 280px;
  height: 168px;
  overflow: hidden;
  background: #f5f5f5;
}

.news-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__body {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.news-item__title {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
  margin-top: 18px;
}

.news-item__link:hover .news-item__title {
  color: #c21116;
}

.news-item__date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 20px;
}

.news-item__summary {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}