/* 公司动态列表 / 详情共用 */
.news-page {
  --news-red: #e72c27;
  --news-text: #333;
  --news-muted: #888;
  --news-line: #eee;
  font-family: "微软雅黑", "Microsoft YaHei", "Source Han Sans CN", sans-serif;
}

.news-page__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.news-page__header {
  text-align: center;
  margin-bottom: 40px;
}

.news-page__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.4;
  color: var(--news-text);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-page__subtitle {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--news-muted);
}

.news-page__rule {
  width: 40px;
  height: 3px;
  background: var(--news-red);
  margin: 18px auto 0;
}

.news-list {
  background: #fff;
  padding: 12px 48px 20px;
  box-sizing: border-box;
}

.news-list__item {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding: 26px 8px 26px 4px;
  border-bottom: 1px solid var(--news-line);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

.news-list__item:last-child {
  border-bottom: none;
}

.news-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  background: var(--news-red);
  opacity: 0;
  transform: scaleY(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.news-list__item:hover {
  background: #fafafa;
  padding-left: 12px;
}

.news-list__item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.news-list__date {
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--news-muted);
  line-height: 1.2;
  border-right: 1px solid var(--news-line);
  padding-right: 24px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news-list__day {
  font-size: 28px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.news-list__ym {
  margin-top: 6px;
  font-size: 12px;
  color: #999;
}

.news-list__item:hover .news-list__date {
  border-color: #f0c0bf;
}

.news-list__item:hover .news-list__day {
  color: var(--news-red);
}

.news-list__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}

.news-list__headline {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--news-text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.news-list__item:hover .news-list__headline {
  color: var(--news-red);
}

.news-list__summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list__more {
  flex: 0 0 72px;
  align-self: center;
  text-align: right;
  font-size: 13px;
  color: #bbb;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-list__item:hover .news-list__more {
  color: var(--news-red);
  transform: translateX(4px);
}

.news-page__footnote {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}
