.main_container {
  max-width: 1200px;
  margin: 0 auto;
  /* ===== 新闻标题 ===== */
  /* ===== 新闻列表 ===== */
  /* 单条新闻卡片 */
  /* 封面图 */
  /* 右侧内容 */
  /* 日期 */
  /* 标题 */
  /* 描述 */
  /* 阅读更多 */
}
.main_container .news-header {
  text-align: center;
  margin-bottom: 64px;
}
.main_container .news-header h1 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.main_container .news-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.main_container .news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.main_container .news-item {
  display: flex;
  gap: 32px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}
.main_container .news-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.main_container .news-cover {
  width: 360px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.main_container .news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.main_container .news-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.main_container .news-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.main_container .news-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.main_container .news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #ff7b18;
  text-decoration: none;
}
.main_container .news-link .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.main_container .news-link:hover .arrow {
  transform: translateX(6px);
}
