/* 首页动态文章：复用首页页脚的浅蓝底色、左右留白及现有设备切换。 */
.news-section {
  padding: 64px 0;
  border-bottom: 1px solid #d9e7ed;
  background: #edfaff;
  color: #111;
}

.news-section .news {
  width: calc(100% - 100px);
  margin: 0 auto;
}

.news-section .news-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.news-section .news-desc {
  max-width: 860px;
  margin: 0;
  color: #4f5964;
  font-size: 16px;
  line-height: 1.8;
}

.news-section .news-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.news-section .news-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #d9e7ed;
}

.news-section .news-item:first-child {
  border-top: 1px solid #d9e7ed;
}

.news-section .news-link {
  flex: 1;
  min-width: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.news-section .news-time {
  flex: none;
  color: #4f5964;
  font-size: 14px;
  line-height: 1.7;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.news-section .news-more {
  margin-top: 28px;
}

.news-section .news-more a {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  padding: 11px 22px;
  border: 1px solid #b6c8d1;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.news-section a:hover {
  color: #e1251b;
}

.news-section a:focus-visible {
  outline: 2px solid #e1251b;
  outline-offset: 4px;
}

html.site-device--mobile .news-section {
  padding: 36px 20px;
  background: #fff;
}

html.site-device--mobile .news-section .news {
  width: 100%;
}

html.site-device--mobile .news-section .news-title {
  font-size: 26px;
}

html.site-device--mobile .news-section .news-list {
  margin-top: 24px;
}

html.site-device--mobile .news-section .news-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 0;
}

html.site-device--mobile .news-section .news-link {
  flex: auto;
  font-size: 16px;
}
