/* == css/app/mobile-pages.css · 由 css/style.css L896-1047 原样拆分，规则与顺序未动 == */
/* ============================================================
   移动端二级页面（提交 / 工单 / 我的）
   ============================================================ */
.m-page-title { font-size: 22px; font-weight: 700; }
.m-page-sub { font-size: 12px; color: var(--gray-3); margin-top: 2px; }

/* 类型单选列表 */
.radio-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
}
.radio-card .form-label { display: block; padding: 12px 14px 2px; font-size: 13px; }
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}
.radio-row + .radio-row { border-top: 1px solid #f1f1f4; }
.radio-row input { display: none; }
.radio-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid #d4d4d8;
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.radio-row.checked .radio-dot { background: var(--blue); border-color: var(--blue); }
.radio-row.checked .radio-dot::after {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff;
}

/* 移动端表单 */
.m-stack { display: flex; flex-direction: column; gap: 13px; }
.m-form { display: flex; flex-direction: column; gap: 13px; }
.m-form .form-label { font-size: 13px; }
.m-form .form-label .optional { color: var(--gray-3); font-weight: 400; font-size: 11px; }
.m-form .form-input,
.m-form .form-select,
.m-form .form-textarea { font-size: 13px; padding: 11px 14px; }
.m-form .form-textarea { min-height: 88px; }
.m-form .radio-row { padding: 10px 14px; }
.m-form .upload-zone { height: 52px; font-size: 13px; gap: 8px; border-style: solid; border-color: #d4d4d8; }
.m-form .agree { font-size: 11px; }
.m-form .agree input { width: 16px; height: 16px; }

/* 类型单选行内图标（设计稿 3:371：蓝色灯泡 / 红色 BUG / 青色加号） */
.radio-row .radio-ico { flex: none; }
.btn-submit { width: 100%; height: 46px; border-radius: 12px; }

/* 移动端自定义下拉：复用 PC .select 交互，触控区放大、面板限高防溢出 */
.m-select .select-trigger {
  min-height: 44px;
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 10px;
}
.m-select .select-panel {
  max-height: 220px;
  border-radius: 12px;
}
.m-select .select-option {
  min-height: 44px;
  font-size: 13px;
  padding: 12px;
}

/* 筛选标签 */
.chip-row { display: flex; gap: 8px; }
.chip {
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--fill);
  font-size: 12px;
  color: var(--gray-1);
  cursor: pointer;
  transition: all 0.15s;
}
.chip.active { background: var(--black); color: #fff; font-weight: 500; }

/* 工单页（设计稿 3:455）：标题 →18→ chips →18→ 卡片列表 */
.m-page { display: flex; flex-direction: column; }
.m-page .chip-row { margin-top: 18px; flex-wrap: wrap; }
.m-page .tk-list { display: grid; gap: 12px; margin-top: 18px; }
.tk-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}
.tk-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tk-head .tk-title { font-size: 14px; font-weight: 500; color: var(--black); }
.tk-head .tag { flex: none; }
.tk-meta { font-size: 11px; color: var(--gray-3); }
.tk-progress {
  display: block;
  height: 5px;
  border-radius: 2.5px;
  background: #f1f1f4;
  overflow: hidden;
}
.tk-progress span {
  display: block;
  height: 100%;
  border-radius: 2.5px;
  background: var(--blue);
}
/* 我的页（设计稿 3:520）：标题/头像区/统计卡/菜单卡/退出按钮 间距 20 */
.m-page-prof { gap: 20px; }
.m-page-prof .logout-btn { width: 100%; }
.m-page .pager { margin-top: 16px; }

/* 工单卡片（旧移动端结构已下线，统一样式见 mvc.css .t-card） */

/* 我的页 */
.prof-head { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-50);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.prof-name { font-size: 17px; font-weight: 700; }
.prof-email { font-size: 12px; color: var(--gray-3); margin-top: 2px; }
.stats-card {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px 0;
  background: #fff;
}
.stat { flex: 1; text-align: center; }
.stat .num { font-size: 20px; font-weight: 700; line-height: 1.3; }
.stat .num.blue { color: var(--blue); }
.stat .num.green { color: var(--green); }
.stat .lbl { font-size: 11px; color: var(--gray-3); margin-top: 3px; }
.menu-card {
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.menu-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s;
}
.menu-row:hover { background: var(--bg-soft); }
.menu-row + .menu-row { border-top: 1px solid #f1f1f4; }
.menu-row .grow { flex: 1; }
.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  cursor: pointer;
}