/* ================= 文章列表页（常见问题/行业资讯/更新动态 共用） ================= */
.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 .pin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  margin-right: 10px;
  flex-shrink: 0;
  background: #fe6c6c;
  color: #ffffff;
  font-size: 16px;
  font-family: PingFang SC, PingFang SC;
  font-weight: bold;
  line-height: 1;
}
.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 .article-arrow {
  width: 10px;
  height: 14px;
  margin-left: 14px;
  flex-shrink: 0;
  object-fit: contain;
  transform: rotate(-90deg);
}
/* FAQ 展开样式（help.html） */
.article-list .faq-item {
  cursor: pointer;
}
.article-list .faq-item .faq-title-row {
  display: flex;
  align-items: center;
  height: 66px;
  font-size: 16px;
  color: #333333;
}
.article-list .faq-item .faq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #875EF8;
  flex-shrink: 0;
  margin-right: 8px;
}
.article-list .faq-item .faq-arrow {
  width: 10px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 12px;
  transform: rotate(-90deg);
  transition: transform 0.3s;
  object-fit: contain;
}
.article-list .faq-item.expanded .faq-title-row {
  color: #875EF8;
}
.article-list .faq-item.expanded .faq-title-row .item-title {
  color: #875EF8;
}
.article-list .faq-item.expanded .faq-arrow {
  transform: rotate(0deg);
}
.article-list .faq-answer {
  display: none;
  padding: 0 0 16px 14px;
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
}
.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;
}
