.knowledge-list {
  /* margin-top: 48rem; */
  display: flex;
  flex-direction: column;
  gap: 40rem;
}

.knowledge-item {
  display: flex;
  justify-content: space-between;
  gap: 24rem;
}
.knowledge-item a{
  flex-shrink: 0;
} 
.knowledge-item-content {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
.knowledge-item-img {
  flex-shrink: 0;
  width: 160rem;
  /* height: 100rem; */
  object-fit: cover;
  border-radius: 8rem;
  background: #dadada;
}
.knowledge-item-title {
  width: 100%;
  color: #232222;
  font-size: 16rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap; /* 禁止换行 */
  overflow: hidden; /* 隐藏溢出内容 */
  text-overflow: ellipsis; /* 溢出时显示省略号 */
}
.knowledge-item-title:hover {
  color: #232222;
}
.knowledge-item-publish-time {
  margin-top: 4rem;
  color: #b2afad;
  font-size: 14rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.knowledge-item-intro {
  margin-top: 12rem;
  color: #6a6967;

  font-size: 14rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ebc-page-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50rem;
}

@media (max-width: 996px) {
  .ebc-tabs {
    margin-top: 20rem;
  }
  .knowledge-list {
    /* margin-top: 74rem; */
    gap: 48rem;
  }
  .forex-title-intro {
    margin-top: 18rem;
  }
  .knowledge-item-img {
    width: 264rem;
    height: 169rem;
  }
  .knowledge-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .knowledge-item-title {
    font-size: 32rem;
    white-space: unset;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .knowledge-item-publish-time {
    font-size: 28rem;
  }
  .knowledge-item-intro {
    display: none;
  }
}
