.art-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1rem;
  padding-left: 0.23rem;
  padding-right: 0.23rem;
}

.art-page .tabs {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  gap: 0.4rem;
  padding: 0.24rem 0.38rem;
}

.art-page .tabs .item {
  flex: 0 0 auto; /* 不能自动拉伸或收缩 */
  font-weight: 400;
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.24rem;
  padding: 0.12rem 0.18rem;
}

.art-page .tabs .item.active {
  background-color: #1ebd73;
  border-radius: 1rem;
  color: white;
}

.art-page .title-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f0f6f4;
  border-radius: 0.16rem;
  padding: 0.24rem 0.22rem 0.21rem 0.22rem;
}

.art-page .title-info .title {
  height: 0.45rem;
  font-weight: bold;
  font-size: 0.32rem;
  color: #1a2026;
  line-height: 0.45rem;
  text-align: center;
}

.art-page .title-info .info {
  font-weight: 400;
  font-size: 0.24rem;
  color: #1a2026;
  line-height: 0.36rem;
  text-align: left;
  margin-top: 0.16rem;
  text-indent: 0.48rem;
}

.art-page .art-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.32rem 0;
  padding: 0;
  gap: 0.16rem;
}

.art-page .art-list .item {
  width: 100%;
  height: 1.6rem;
  padding: 0.16rem;
  border-radius: 0.06rem;
  border: 1px solid #f0f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-page .art-list .item .cover {
  width: 1.92rem;
  height: 1.28rem;
  object-fit: cover;
}

.art-page .art-list .item .art-info-con {
  height: 100%;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 0.16rem;
}

.art-page .art-list .item .art-info-con .title {
  width: 100%;
  height: 0.64rem;
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 限制显示两行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  line-clamp: 2; /* 为兼容性加上标准属性（部分浏览器无效） */
  font-weight: 400;
  font-size: 0.28rem;
  color: #1a2026;
  line-height: 0.32rem;
  text-align: left;
}

.art-page .art-list .item .art-info-con .date {
  margin-top: 0.12rem;
  width: 100%;
  height: 0.33rem;
  font-weight: 400;
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.33rem;
  text-align: start;
}

.art-page .pagination-con {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0.24rem 0 0.56rem 0;
  gap: 0.16rem;
}

.art-page .pagination-con .page-item {
  min-width: 0.56rem;
  padding: 0.1rem 0.15rem;
  border-radius: 0.06rem;
  border: 1px solid #ebebeb;
  font-weight: 400;
  font-size: 0.2rem;
  color: #1a2026;
  text-align: center;
  background-color: white;
}

.art-page .pagination-con .page-item.active {
  background-color: #1ebd73;
  color: white;
}

.art-page .pagination-con .page-item.disabled {
  background-color: rgb(240, 240, 240);
  color: rgb(122, 122, 122);
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
