

    .container {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

   

    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .news-card {
    
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
      background: #fff;
      max-width: 400px;
    }

    .news-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 8px;
    }

    .news-card .content {
      padding: 16px;
    }

    .news-card h3 {
      font-size: 16px;
      margin-bottom: 16px;
      margin-top: 16px;
      line-height: 1.5;
      font-weight: normal;
    }

    .news-card p {
      font-size: 12px;
      color: #aaa;
    }

    .news-card .date {
      font-size: 12px;
      color: #aaa;
     
    }

    .news-card.fade-in {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .pagination {
      text-align: left;
      margin-top: 10px;
    }

    .pagination button {
      background: #285BA9;
      color: white;
      border: none;
      padding: 8px 16px;
      margin: 0 5px;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      background: #285BA9;
      color: white;
      padding: 40px 20px;
      margin-top: 60px;
    }

    footer .footer-content {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    footer a {
      color: #ffc107;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 32px;
      }
      .news-card img {
        height: 150px;
      }
    }

    .news-list-cards
    {
      display: flex;
      justify-content:center;
      align-items:flex-start;
      gap: 40px;
      padding-left: 20px;
      padding-top: 32px;

    }
    .news-title {
      text-align: center;
      position: absolute;
      left: 200px;
      top: 50px;
      font-size: 20px;
    }
    .news-list-left
    {
      position: relative;
      min-width: 440px;
    }
    .news-list-left img{
      width: 300px;
    }
    .content h3{
    
      height: 50px;
      line-height: 24px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    
    }
.search-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 50px;
  margin-top: 20px;
  border-bottom: 1px solid #ccc; /* 底部横线 */
}
.search-input {
  flex-grow: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background-color: transparent;
  padding: 8px 0;
}

.divider {
  width: 1px;
  height: 24px; /* Adjust based on your design */
  background-color: #ccc;
  margin: 0 8px;
}

.magnifying-glass img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.tab-nav {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 40px 0 20px;
            height: 60px;
            padding-left: calc(100% / 8);
            padding-right: calc(100% / 8);
            width: 80%;
            margin: auto;
            margin-bottom: 60px;
            margin-top: 20px;
        }

        .tab-nav::before,
        .tab-nav::after {
            content: '';
            width: calc(100% / 8);
        }

        .tab-line {
            position: absolute;
            top: 50px;
            /* Raised a bit */
            left: 0;
            right: 0;
            height: 1px;
            background-color: rgba(40, 91, 169, 0.3);
            z-index: 0;
        }

        .tab-node {
            position: relative;
            z-index: 1;
            text-align: center;
            cursor: pointer;
            padding-top: 5px;
            padding-top: 10px;
        }

        .tab-dot {
            width: 12px;
            height: 12px;
            border-radius: 0;
            /* 取消圆形 */
            background-color: transparent;
            margin: 0 auto;
            position: relative;
        }

        .tab-dot::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-bottom: 6px solid #285BA9;
            /* 蓝色向上箭头 */
        }

        .tab-label {
            font-size: 14px;
            color: #555;
            margin-top: 4px;
            white-space: nowrap;
            padding-bottom: 10px;
        }
        .tab-node.active .tab-label {
            color: #007bff;
            font-weight: bold;
        }
.pagination span, .pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 50%;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 1;
    transition: all 0.3s ease;
}

.pagination .active {
    background: #00b050;
    color: #fff;
    border-color: #00b050;
}