/* page6 常见问答 专属样式 */

.page6-banner {
  background-position: center;
  background-size: cover;
}

.page-main {
  padding: 60px 20px 80px;
}

.list-header {
  text-align: center;
  margin-bottom: 40px;
}

.list-header .section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
  padding-bottom: 16px;
  position: relative;
  display: inline-block;
}

.list-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.list-header .section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.list-toolbar {
  margin-bottom: 32px;
}

/* FAQ 页面卡片竖排网格布局 */
.list-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.list-content .article-card {
  flex-direction: column;
  margin-bottom: 0;
}

.list-content .article-card .card-thumb {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.list-content .article-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.list-content .article-card .card-body h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}

.list-content .article-card .card-body h3 a {
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-content .article-card .card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.list-content .article-card .card-body .date {
  color: #999;
  font-size: 13px;
  margin-top: auto;
}

/* 分类筛选增强 */
.list-toolbar .category-filter {
  justify-content: center;
  margin-bottom: 0;
}

.list-toolbar .category-btn {
  border-radius: 24px;
  font-size: 14px;
  padding: 9px 26px;
}

/* 分页样式增强 */
.list-pagination {
  margin-top: 48px;
}

.list-pagination .pagination {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .list-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-main {
    padding: 48px 20px 60px;
  }
}

@media (max-width: 768px) {
  .list-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .list-header .section-title {
    font-size: 24px;
  }
  .list-header .section-desc {
    font-size: 14px;
  }
  .page-main {
    padding: 36px 16px 48px;
  }
  .list-toolbar .category-btn {
    padding: 7px 18px;
    font-size: 13px;
  }
}