/* ================= 文章列表页（使用帮助/行业问答/行业资讯 共用） ================= */
.article-list-main {
  min-height: 100vh;
  padding: 132px 0 90px;
  background: #ffffff;
}

/* 页面标题 */
.article-list-main .list-title {
  display: flex;
  align-items: center;
}
.article-list-main .list-title img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  object-fit: contain;
}
.article-list-main .list-title span {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
}

/* 分类标签（仅使用帮助页） */
.article-list-main .list-tabs {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.article-list-main .list-tabs .tab-item {
  padding: 10px 34px;
  margin-right: 16px;
  border-radius: 8px;
  font-size: 16px;
  color: #666666;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.article-list-main .list-tabs .tab-item:hover {
  color: #7b5cf6;
}
.article-list-main .list-tabs .tab-item.active {
  background: linear-gradient(90deg, #9d7bff 0%, #7c5cff 100%);
  color: #ffffff;
}

/* 文章列表 */
.article-list {
  margin-top: 24px;
}
.article-list li {
  border-bottom: 1px solid #f2f2f7;
}
.article-list li a {
  display: flex;
  align-items: center;
  height: 66px;
  font-size: 16px;
  color: #333333;
}
.article-list .top-badge {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  flex-shrink: 0;
  object-fit: contain;
}
.article-list .item-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.article-list li a:hover .item-title {
  color: #7b5cf6;
}
.article-list .date {
  margin-left: 16px;
  flex-shrink: 0;
  font-size: 14px;
  color: #aaaaaa;
}
.article-list .gt {
  margin-left: 14px;
  flex-shrink: 0;
  font-size: 14px;
  color: #c0c0c0;
}
.article-list .list-empty {
  padding: 90px 0;
  font-size: 14px;
  color: #999999;
  text-align: center;
}

/* 分页器（与首页新闻资讯分页样式保持一致） */
.article-pagination {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-pagination .page-btn {
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  padding: 0 8px;
  margin: 0 5px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(80, 60, 160, 0.08);
  font-size: 14px;
  color: #555555;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}
.article-pagination .page-btn:hover {
  color: #6c43e2;
}
.article-pagination .page-btn.active {
  background: linear-gradient(90deg, #9d7bff 0%, #7c5cff 100%);
  color: #ffffff;
}
.article-pagination .page-btn.edge {
  padding: 0 14px;
  background: linear-gradient(90deg, #9d7bff 0%, #7c5cff 100%);
  color: #ffffff;
}
.article-pagination .page-btn.edge:hover {
  color: #ffffff;
}
.article-pagination .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.article-pagination .page-ellipsis {
  margin: 0 5px;
  font-size: 14px;
  color: #999999;
}
