/* == css/app/page-hall.css · 反馈大厅专属（复用 .t-card/.chip/.pager，仅补搜索与大厅卡片细节） == */

.hall-wrap .page-sub { margin-top: 8px; font-size: 14px; color: var(--gray-2); }

/* 搜索条 */
.hall-search { display: flex; gap: 8px; align-items: center; margin: 16px 0 4px; }
.hall-search-input { flex: 1; }
.hall-search-btn { flex: none; padding: 13px 20px; }
.hall-clear { flex: none; font-size: 13px; color: var(--gray-2); text-decoration: none; }
.hall-clear:hover { color: var(--blue); }

/* 筛选分组标题 */
.hall-filter-label { margin: 14px 0 2px; font-size: 13px; font-weight: 600; color: var(--gray-1); }
.hall-filter-label:first-of-type { margin-top: 8px; }

/* 大厅卡片：标题 + 内容摘要 + 脚注 */
.hall-card:hover { border-color: var(--blue-100); box-shadow: var(--shadow-card); }
.hall-product {
  font-size: 12px; color: var(--gray-2);
  background: var(--bg-soft); border: 1px solid var(--border-light);
  border-radius: 6px; padding: 3px 8px; white-space: nowrap;
}
.hall-excerpt {
  display: block; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 13px; line-height: 1.7; color: var(--gray-2);
  margin-bottom: 8px; white-space: pre-wrap;
}
.hall-list { margin-bottom: 8px; }

/* 移动端：搜索条纵排，筛选横滑 */
@media (max-width: 768px) {
  .hall-search { flex-wrap: wrap; }
  .hall-search-input { flex: 1 1 100%; }
  .hall-search-btn { flex: 1; }
}

/* ============================================================
   移动端反馈大厅（.m-hall 列表页，.phone 框内使用；详情卡样式见 mvc.css .m-d-*）
   ============================================================ */

/* 列表页：搜索 + 清除链接 */
.m-hall .m-page-sub { margin-top: 4px; }
.m-hall-search { margin: 16px 0 2px; }
.m-hall .hall-clear { display: inline-block; margin-top: 10px; font-size: 12px; }

/* 搜索框内嵌放大镜图标（无独立按钮，键盘"搜索"键提交） */
.m-search-box { position: relative; flex: 1; }
.m-search-ico {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-2, #a1a1aa);
  pointer-events: none;
}
.m-search-box .hall-search-input { width: 100%; padding-left: 38px; }

/* 筛选区：分组标题 + 横滑 chips（产品较多时不折行，可左右滑动） */
.m-hall-filters { margin-top: 14px; }
.m-hall-label { margin-top: 12px; font-size: 12px; font-weight: 600; color: var(--gray-2); }
.hall-chips {
  flex-wrap: nowrap;
  overflow-x: auto;
  margin-top: 8px;
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hall-chips::-webkit-scrollbar { display: none; }
.hall-chips .chip { flex: none; }

/* 大厅卡片列表（复用移动端 .tk-card 结构） */
.hall-m-list { display: grid; gap: 12px; margin-top: 16px; }
.hall-m-card { gap: 8px; }
.hall-m-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 12px; line-height: 1.6; color: var(--gray-2);
}
.hall-m-card .tk-meta { line-height: 1.6; }
.hall-m-card .tk-progress { margin-top: 2px; }
.m-hall .pager { margin-top: 16px; }

/* 空态卡片化（在白底 .phone 内与列表卡一致） */
.hall-m-empty {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  margin-top: 16px;
}
