.accident-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .accident-news-list .news-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.2rem 0;
    transition: background-color 0.2s ease;
  }

  .accident-news-list .news-item:first-child {
    padding-top: 0;
  }

  .accident-news-list .news-item:last-child {
    border-bottom: none;
  }

  /* 标题区域 */
  .news-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .news-title a {
    text-decoration: none;
    color: #1e466e;
    transition: color 0.2s;
  }

  .news-title a:hover {
    color: #c12e2a;
    text-decoration: underline;
  }

  /* 摘要样式 */
  .news-summary {
    margin: 0.4rem 0 0.6rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #3a4a5a;
    display: -webkit-box;
    -webkit-line-clamp: 2;        /* 移动端/桌面限制两行，保证整洁 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 元数据区域：发布时间 + 浏览量 */
  .news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: #5a6874;
    line-height: 1.4;
  }

  .publish-time,
  .views-count {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
  }

  /* 小屏幕适配 */
  @media (max-width: 580px) {
    .news-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.3rem;
    }
    .news-item {
      padding: 1rem 0;
    }
    .news-title {
      font-size: 1rem;
    }
    .news-summary {
      font-size: 0.85rem;
      -webkit-line-clamp: 2;
    }
  }

  .views-count span {
    font-weight: 600;
    color: #2c3e4e;
  }

  time {
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
  }

  .news-item {
    word-break: break-word;
  }