   /* 新闻列表 */
    .news-list {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    .news-item {
      display: flex;
      align-items: flex-start;
      padding: 30px;
      background: white;
      margin-bottom: 20px;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s;
      border: 1px solid #EFEFEF;
    }

    .news-item:hover {
      transform: translateY(-5px);
    }

    .news-data a:hover {
      color: #fff;
      background: #2356AE;
    }

    .news-data a:hover .news-day,
    .news-data a:hover .news-month,
    .news-data a:hover .news-title,
    .news-data a:hover .news-desc {
      color: #fff;
      background: #2356AE;
    }

    .news-date {
      flex-shrink: 0;
      text-align: center;
      margin-right: 30px;
    }

    .news-day {
      font-size: 36px;
      color: #1e50a2;
      line-height: 1;
      margin-bottom: 5px;
    }

    .news-month {
      font-size: 14px;
      color: #999;
    }

    .news-content {
      flex-grow: 1;
      overflow: hidden;
    }

    .news-title {
      font-size: 18px;
      color: #333;
      margin-bottom: 10px;
        max-width: 930px;
        margin: 0 auto;
        padding-bottom: 20px;
      /*white-space: nowrap;*/
      /*overflow: hidden;*/
      /*text-overflow: ellipsis;*/
    }

    .news-desc {
      color: #999;
      font-size: 14px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    /* 分页 */
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 50px;
      margin-bottom: 50px;
      gap: 10px;
    }

    .page-item {
      min-width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
      text-decoration: none;
      color: #666;
      border-radius: 4px;
      padding: 0 10px;
    }

    .page-item.active {
      background: #1e50a2;
      color: white;
      border-color: #1e50a2;
    }

    .page-item:hover:not(.active) {
      border-color: #1e50a2;
      color: #1e50a2;
    }
    