

    .content-title {
      font-size: 32px;
      padding-bottom: 15px;
    }

    .content-body {
      font-size: 16px;
    }

    .tabs {
      display: flex;
      justify-content: flex-start;
      gap: 10px;
      font-size: 12px;
    }

    .tabs-section {
      background-color: #f0f0f0;
    }

    .tab-split {
      height: 40px;
      background-color: rgba(12, 12, 12, 0.7);
    }

    .tabs a {
      padding: 10px 10px;
      color: #333;
      border-bottom: 2px solid transparent;
    }

    .tabs a.active {
      color: #00b050;
      border-color: #00b050;
    }


    .news-item-card-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 15px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }

    .news-item-card {

      border-radius: 8px;
      overflow: hidden;

      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .news-item-card:only-child {
            flex: 0 1 auto;
            max-width: 400px;
          
              margin: 0;      /* 移除自动外边距，不再居中 */
        }

    .news-item-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .news-item-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    .news-item-card .content {
      padding: 15px;
    }

    .news-item-card .content h3 {
      font-size: 18px;
      margin: 0 0 10px;
    }

    .news-item-card .content p {
      font-size: 14px;
      color: #666;
    }

    .news-item-card .content {
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;

    }

    .news-item-card .content .date {
      font-size: 12px;
      color: #999;
      margin: 0 0 10px;
    }

    .news-item-card .content h3 {
      font-size: 16px;
      height: 2.8em;
      /* 2 行高度 */
      margin: 0 0 10px;
      font-weight: 600;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      /* Limit to two lines */
      -webkit-box-orient: vertical;
    }

    .news-item-card .content .description {
      font-size: 12px;
      color: #666;
      margin: 0 0 10px;
      height: 2.8em;
      /* 2 行高度 */
      line-height: 1.4;
      /* Ensure two lines for the description */
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      /* Limit to two lines */
      -webkit-box-orient: vertical;
    }

    .news-item-card .content .view-details {
      font-size: 12px;
      color: #666;
      text-decoration: none;
      margin-top: auto;
      /* Push the link to the bottom */
    }

    .news-swiper-section {
      max-width: 1200px;
      margin: 40px auto;
      display: flex;
      gap: 40px;
      align-items: stretch;
      /* 让左右两列高度一致 */
      padding: 0 15px;
    }

    .news-swiper-container {
      flex: 1;
      position: relative;
    }

    .news-swiper {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
    }

    .news-swiper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-list-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .news-item {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .news-item.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .news-item .date {
      font-size: 12px;
      color: #999;
      margin: 0 0 8px;
    }

    .news-item h3 {
      font-size: 18px;
      color: #333;
      margin: 0 0 10px;
      font-weight: bold;
      line-height: 1.4;
    }

    .news_img_list_container {
      display: flex;
      justify-content: space-between;
      padding: 20px;
    }

    .carousel_news_list {
      width: calc(60% - 30px);
      overflow: hidden;
    }

    .carousel_news_list img {
      width: 100%;
      height: 360px;
      display: none;
    }

    .news_list {
      width: 40%;
      padding-top: 15px;
    }

    .news_item {
      margin-bottom: 20px;
    }

    .news_item .date {
      font-size: 12px;
      color: #666;
      padding-bottom: 10px;
    }

    .news_item .title {
      font-size: 1.2em;
      font-weight: bold;
      padding-bottom: 15px;
    }

    .news_item .summary {
      
      display: none;
      font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* 限制两行 */
    -webkit-box-orient: vertical;
    white-space: normal;         /* 覆盖换行符 */
    word-break: break-word;      /* 允许长单词换行 */
    padding-bottom: 20px;
    margin: 0;                  /* 避免默认 margin 影响布局 */
    line-height: 1.4;           /* 优化行高，避免文字重叠 */
box-sizing: border-box;
    }



    .description {
      font-size: 14px;
      color: #666;
      margin-top: 10px;
      line-height: 1.4;
      max-height: 20px;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .description.collapsed {
      max-height: 20px;
    }

    .description.expanded {
      max-height: 100px;
    }



    @media (max-width: 768px) {
      header h1 {
        font-size: 24px;
      }

      .news-item-card .content h3 {
        font-size: 16px;
      }
    }
    .posts-nav
    {
      margin-bottom: 30px;
    }
    .posts-nav .page-numbers
    {
      border-radius: 50%;
      background-color: #f0f0f0;
    }
        .posts-nav .page-numbers.current, .posts-nav .page-numbers:not(.dots):hover
        {
          border:1px solid #00b050;
          background-color: #fff;
          color: #00b050;
        }