.news-wrap-content{
  padding-top: 16px;
}
.news-item {
  display: flex;
  cursor: pointer;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(224, 224, 224, 0.6);
  text-decoration: none;
  color: inherit;
}

.news-list .news-item:last-child {
  margin-bottom: 0;
}

.news-post {
  flex: none;
  width: 280px;
  height: 138px;
  margin-right: 18px;
}

.news-content {
  flex: auto;
  overflow: hidden;
  padding-top: 11px;
}

.news-title {
  height: 56px;
  font-size: 22px;
  font-family: PingFang SC, PingFang SC-Semibold;
  font-weight: bold;
  text-align: left;
  color: #333333;
  line-height: 28px;
}

.news-date {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.news-date-icon {
  width: 20px;
  height: 20px;
}

.news-date-label {
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #666666;
line-height: 24px;
height: 24px;
  margin-left: 12px;
}

.news-desc {
  margin-top: 0px;
  display: flex;
  align-items: center;
}

.news-desc-label {
  flex: auto;
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #666666;
line-height: 35px;
height: 35px;
  border-bottom: 1px solid #999999;;
}

.news-more-btn {
  flex: none;
  background-image: url(../images/news/news_more_arrow.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 59px;
  height: 35px;
  position: relative;
  bottom: -1px;
}

.news-item:hover .news-title {
  color: #00c7bf;
}

.news-item:hover .news-desc-label {
  border-color: rgba(0, 199, 191, 1);
}

.news-item:hover .news-more-btn {
  background-image: url(../images/index/news_more_arrow_hover.png);
}

/* 分页器样式 */
.news-pagination {
  margin-top: 24px;
  text-align: center;
}

/* ========== 移动端适配 ========== */

@media (max-width: 1199px) {
  /* 新闻列表容器 */
  .news-wrap-content {
    padding-top: 24px;
  }

  /* 新闻卡片 */
  .news-item {
    flex-direction: column;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  /* 新闻图片 */
  .news-post {
    width: 100%;
    height: auto;
    aspect-ratio: 382 / 188;
    margin-right: 0;
    margin-bottom: 12px;
  }

  /* 新闻内容 */
  .news-content {
    padding-top: 0;
  }

  /* 新闻标题 */
  .news-title {
    height: auto;
    font-size: 18px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* 新闻日期 */
  .news-date {
    margin-top: 12px;
  }

  .news-date-icon {
    width: 16px;
    height: 16px;
  }

  .news-date-label {
    font-size: 14px;
    line-height: 20px;
    margin-left: 8px;
  }

  /* 新闻摘要 */
  .news-desc {
    margin-top: 12px;
  }

  .news-desc-label {
    font-size: 14px;
    line-height: 28px;
  }

  /* 更多按钮 */
  .news-more-btn {
    width: 48px;
    height: 28px;
  }

  /* 分页器 */
  .news-pagination {
    margin-top: 24px;
    text-align: center;
  }

  /* 分页器移动端优化 */
  .news-pagination .el-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .news-pagination .el-pagination__sizes {
    display: none;
  }

  .news-pagination .el-pagination__jump {
    display: none;
  }
}

