/* ================= mini.css =================
 * 小程序前台独有样式（深色主题 / 手机壳）
 * 公共 reset / 字体 / 红色变量已在 global.css 定义
 * =============================================== */

:root {
  --bg: #141419;
  --bg-soft: #181820;
  --card: #202029;
  --card-2: #24242E;
  --card-line: rgba(255,255,255,.06);
  --red-soft: rgba(232,67,60,.12);
  --red-line: rgba(255,91,83,.32);
  --red-grad: linear-gradient(155deg, #F0544B 0%, #DC3127 55%, #C92A22 100%);
  --red-grad-soft: linear-gradient(180deg, rgba(240,84,75,.20), rgba(201,42,34,.06) 70%);
  --text: #F5F5F7;
  --text-2: #9DA1AC;
  --text-3: #61656F;
  --amber: #F2B34C;
  --line: rgba(255,255,255,.06);
  --r: 18px;
  --r-lg: 22px;
}

body {
  background:
    radial-gradient(1100px 600px at 20% -10%, #241a1c 0%, transparent 60%),
    radial-gradient(900px 700px at 110% 15%, #231820 0%, transparent 55%),
    linear-gradient(180deg, #0e0e13, #101015);
  color: var(--text);
  display: flex; flex-direction: column; align-items: center; min-height: 100vh;
  padding: 26px 16px 40px;
}
.page-head { text-align: center; margin-bottom: 20px; user-select: none; }
.page-head h1 { font-size: 19px; font-weight: 700; letter-spacing: .5px; }
.page-head h1 em { font-style: normal; color: var(--red-bright); }
.page-head p { font-size: 12px; color: var(--text-2); margin-top: 6px; letter-spacing: .3px; }
.rule-chips { display: flex; gap: 8px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.rule-chips span { font-size: 11px; color: #c9cbd2; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 4px 10px; border-radius: 99px; }

/* ============ 手机壳 ============ */
.phone { position: relative; width: 375px; height: 812px; border-radius: 46px; background: #17171d; border: 9px solid #23232c; box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 6px 24px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,255,255,.05); overflow: hidden; flex: none; }
.screen { position: absolute; inset: 0; display: flex; flex-direction: column; background: var(--bg); }
.statusbar { height: 30px; flex: none; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; font-size: 12px; font-weight: 600; color: var(--text); }
.statusbar .right { display: flex; align-items: center; gap: 5px; }
.statusbar svg { width: 15px; height: 11px; }

/* 顶部导航 */
.navbar { flex: none; padding: 4px 14px 12px; background: linear-gradient(180deg, rgba(20,20,25,.96), rgba(20,20,25,.0)); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.org-box { min-width: 0; }
.org-name { font-size: 15px; font-weight: 700; letter-spacing: .2px; display: flex; align-items: center; gap: 6px; }
.org-name .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); box-shadow: 0 0 8px rgba(255,91,83,.8); flex: none; }
.org-no { font-size: 10.5px; color: var(--text-3); margin-top: 3px; letter-spacing: .4px; }
.act-picker { flex: none; display: flex; align-items: center; gap: 6px; background: var(--red-grad); color: #fff; font-size: 11.5px; font-weight: 600; padding: 8px 11px; border-radius: 99px; box-shadow: 0 4px 12px rgba(217,44,36,.4); cursor: pointer; max-width: 190px; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease; }
.act-picker:active { transform: scale(.96); }
.act-picker .pick-label { color: rgba(255,255,255,.85); font-weight: 400; }
.act-picker .pick-val { overflow: hidden; text-overflow: ellipsis; }
.act-picker svg { width: 11px; height: 11px; flex: none; transition: transform .2s ease; }
.act-picker.open svg { transform: rotate(180deg); }

/* ============ 通用 ============ */
.pages { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 0 14px 92px; scrollbar-width: none; }
.pages::-webkit-scrollbar { display: none; }
.page { display: none; }
.page.on { display: block; animation: fadeIn .25s ease; }
.card { background: linear-gradient(180deg, var(--card-2), var(--card)); border: 1px solid var(--card-line); border-radius: var(--r); box-shadow: 0 6px 16px rgba(0,0,0,.22); }
.sec-title { display: flex; align-items: center; justify-content: space-between; margin: 18px 2px 10px; }
.sec-title h3 { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.sec-title h3::before { content: ""; width: 3.5px; height: 14px; border-radius: 2px; background: var(--red-grad); }
.sec-title .more { font-size: 11.5px; color: var(--red-bright); cursor: pointer; display: flex; align-items: center; gap: 2px; }
.sec-title .more svg { width: 10px; height: 10px; }

/* 数据卡片行 */
.stats-row { display: flex; gap: 12px; }
.stat-card { flex: 1; position: relative; padding: 16px 14px 15px; border-radius: var(--r); overflow: hidden; background: var(--red-grad-soft); border: 1px solid rgba(255,91,83,.16); box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.stat-card::after { content: ""; position: absolute; right: -26px; top: -26px; width: 86px; height: 86px; border-radius: 50%; background: radial-gradient(circle, rgba(255,91,83,.22), transparent 70%); }
.stat-top { display: flex; align-items: center; justify-content: space-between; }
.stat-label { font-size: 12px; color: var(--text-2); font-weight: 500; }
.stat-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--red-grad); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 10px rgba(217,44,36,.4); }
.stat-ic svg { width: 15px; height: 15px; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--red-bright); margin-top: 8px; line-height: 1; letter-spacing: -.5px; }
.stat-num small { font-size: 11px; font-weight: 500; color: var(--text-3); margin-left: 4px; letter-spacing: 0; }

/* 双大入口 */
.entry-row { display: flex; gap: 12px; margin-top: 12px; }
.entry-card { flex: 1; border-radius: var(--r-lg); padding: 18px 16px 16px; color: #fff; position: relative; overflow: hidden; cursor: pointer; background: var(--red-grad); box-shadow: 0 10px 24px rgba(217,44,36,.34); transition: transform .15s ease; }
.entry-card:active { transform: scale(.965); }
.entry-card::before { content: ""; position: absolute; left: -30px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 68%); }
.entry-ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.entry-ic svg { width: 20px; height: 20px; }
.entry-title { font-size: 15.5px; font-weight: 700; margin-top: 13px; letter-spacing: .3px; }
.entry-sub { font-size: 10.5px; color: rgba(255,255,255,.75); margin-top: 4px; display: flex; align-items: center; gap: 3px; }
.entry-sub svg { width: 9px; height: 9px; }

/* 最近提醒 */
.remind-card { padding: 6px 0; }
.remind-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border-radius: 14px; margin: 4px; transition: background .15s; }
.remind-item + .remind-item { border-top: 1px solid rgba(255,255,255,.045); margin-top: 0; border-radius: 0 0 14px 14px; }
.remind-item:first-child { border-radius: 14px 14px 0 0; }
.remind-item.imp { background: rgba(232,67,60,.10); }
.remind-item.imp .remind-text { color: #FF8A83; }
.remind-item.overdue { background: rgba(255,77,79,.16); box-shadow: inset 3px 0 0 var(--red-bright); }
.remind-item.overdue .remind-text { color: #FF6B63; font-weight: 600; }
.remind-tag { flex: none; margin-top: 1px; }
.chip { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; padding: 2.5px 7px; border-radius: 99px; font-weight: 600; white-space: nowrap; }
.chip.notice { background: rgba(255,255,255,.08); color: var(--text-2); border: 1px solid rgba(255,255,255,.1); }
.chip.imp-tag { background: rgba(255,91,83,.16); color: #FF8A83; border: 1px solid rgba(255,91,83,.4); }
.chip.timeout { background: rgba(255,77,79,.2); color: #FF6B63; border: 1px solid rgba(255,77,79,.55); }
.remind-body { flex: 1; min-width: 0; }
.remind-text { font-size: 13px; line-height: 1.5; color: #DDE0E6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.remind-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; }
.remind-time { font-size: 10.5px; color: var(--text-3); }
.remind-src { font-size: 10px; color: var(--text-3); display: flex; align-items: center; gap: 3px; }
.remind-src svg { width: 9px; height: 9px; color: var(--red-bright); }

/* ============ 通知中心 ============ */
.toolbar { display: flex; align-items: center; justify-content: space-between; margin: 10px 2px 12px; gap: 8px; }
.chips { display: flex; gap: 8px; }
.chip-btn { font-size: 12px; color: var(--text-2); padding: 6px 14px; border-radius: 99px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); cursor: pointer; transition: all .15s ease; white-space: nowrap; }
.chip-btn.on { background: var(--red-grad); color: #fff; border-color: transparent; font-weight: 600; box-shadow: 0 3px 10px rgba(217,44,36,.35); }
.batch-btn { font-size: 12px; color: var(--red-bright); padding: 6px 12px; border-radius: 99px; border: 1px solid var(--red-line); cursor: pointer; white-space: nowrap; transition: all .15s ease; }
.batch-btn:active { background: var(--red-soft); }
.notice-card { display: flex; gap: 11px; padding: 14px; margin-bottom: 10px; cursor: pointer; position: relative; overflow: hidden; transition: transform .12s ease, opacity .2s; }
.notice-card:active { transform: scale(.98); }
.notice-card .redbar { position: absolute; left: 0; top: 14px; bottom: 14px; width: 3.5px; border-radius: 3px; background: var(--red-bright); box-shadow: 0 0 8px rgba(255,91,83,.6); }
.notice-card.read { opacity: .52; }
.notice-card.read .redbar { display: none; }
.n-ic { width: 34px; height: 34px; border-radius: 10px; background: var(--red-grad-soft); border: 1px solid rgba(255,91,83,.22); flex: none; display: flex; align-items: center; justify-content: center; color: var(--red-bright); }
.n-ic svg { width: 16px; height: 16px; }
.n-body { flex: 1; min-width: 0; }
.n-head { display: flex; align-items: center; gap: 6px; }
.n-title { font-size: 14px; font-weight: 600; color: var(--text); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.n-sum { font-size: 12px; color: var(--text-2); margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.n-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 7px; }
.n-time { font-size: 10.5px; color: var(--text-3); }
.n-src { font-size: 10px; color: var(--text-3); }

/* ============ 任务处理 ============ */
.task-stat { display: flex; padding: 15px 0; margin-bottom: 12px; }
.task-stat .ts { flex: 1; text-align: center; position: relative; }
.task-stat .ts + .ts::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.task-stat .ts b { font-size: 21px; font-weight: 800; display: block; }
.task-stat .ts span { font-size: 11px; color: var(--text-3); display: block; margin-top: 3px; }
.ts.pending b { color: var(--red-bright); }
.ts.done b { color: #B9BDC7; }
.ts.over b { color: #FF4D4F; }
.task-card { padding: 14px; margin-bottom: 10px; cursor: pointer; transition: transform .12s ease; }
.task-card:active { transform: scale(.98); }
.task-card.overdue { background: linear-gradient(180deg, rgba(255,77,79,.13), rgba(255,77,79,.05)); border-color: rgba(255,77,79,.28); }
.task-card.rejected { background: linear-gradient(180deg, rgba(242,179,76,.10), rgba(242,179,76,.03)); border-color: rgba(242,179,76,.26); }
.task-top { display: flex; align-items: center; gap: 8px; }
.task-title { font-size: 14px; font-weight: 600; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tag-done { font-size: 10px; color: #9DA1AC; background: rgba(255,255,255,.07); padding: 2.5px 8px; border-radius: 99px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.tag-done svg { width: 9px; height: 9px; }
.tag-timeout { font-size: 10px; color: #FF6B63; background: rgba(255,77,79,.18); border: 1px solid rgba(255,77,79,.5); padding: 2.5px 8px; border-radius: 99px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.tag-timeout svg { width: 9px; height: 9px; }
.tag-reject { font-size: 10px; color: #F2B34C; background: rgba(242,179,76,.15); border: 1px solid rgba(242,179,76,.45); padding: 2.5px 8px; border-radius: 99px; font-weight: 700; }
.tag-todo { font-size: 10px; color: var(--text-2); background: rgba(255,255,255,.07); padding: 2.5px 8px; border-radius: 99px; font-weight: 600; }
.tag-read { font-size: 10px; color: #9DA1AC; background: rgba(255,255,255,.07); padding: 2.5px 8px; border-radius: 99px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.tag-read svg { width: 9px; height: 9px; }
.task-desc { font-size: 12px; color: var(--text-2); margin-top: 7px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.task-deadline { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-3); margin-top: 8px; }
.task-deadline svg { width: 11px; height: 11px; }
.task-deadline.urgent { color: #FF6B63; font-weight: 600; }
.task-deadline.urgent svg { color: #FF4D4F; }
.task-deadline.warn { color: #F2B34C; }
.reject-box { margin-top: 9px; font-size: 11px; color: #F2B34C; background: rgba(242,179,76,.09); border: 1px dashed rgba(242,179,76,.4); padding: 8px 10px; border-radius: 10px; line-height: 1.5; }

/* 任务附件 / 上传 */
.file-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 9px 11px; font-size: 11.5px; color: #c9ccd4; margin-bottom: 8px; }
.file-item svg { width: 13px; height: 13px; color: var(--red-bright); flex: none; }
.file-item .fi-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item .fi-size { font-size: 10px; color: var(--text-3); flex: none; margin-left: 6px; }
.file-item .fi-dl { color: var(--red-bright); font-weight: 700; cursor: pointer; flex: none; padding: 2px 6px; }
.file-item .fi-dl:active { background: var(--red-soft); border-radius: 6px; }
.sub-status { font-size: 10.5px; padding: 3px 9px; border-radius: 99px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.sub-status svg { width: 9px; height: 9px; }
.st-pend { background: rgba(242,179,76,.16); color: #F2B34C; border: 1px solid rgba(242,179,76,.45); }
.st-pass { background: rgba(46,158,91,.14); color: #4CC77E; border: 1px solid rgba(46,158,91,.4); }
.st-rej { background: rgba(255,77,79,.16); color: #FF6B63; border: 1px solid rgba(255,77,79,.5); }
.st-new { background: rgba(255,77,79,.14); color: #FF6B63; border: 1px solid rgba(255,77,79,.45); }
.st-new i { width: 5px; height: 5px; border-radius: 50%; background: #FF4D4F; flex: none; }
.task-files { margin-top: 8px; }
.task-files .tf-label { font-size: 11px; color: var(--text-3); margin-bottom: 7px; display: flex; align-items: center; gap: 4px; }
.task-files .tf-label svg { width: 11px; height: 11px; }
.upload-box { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 20px 12px; border: 1.5px dashed rgba(255,91,83,.45); border-radius: 16px; background: var(--red-grad-soft); cursor: pointer; margin-top: 14px; transition: transform .12s ease; }
.upload-box:active { transform: scale(.985); }
.upload-box svg { width: 24px; height: 24px; color: var(--red-bright); }
.upload-box .up-main { font-size: 13px; color: #e4e6ea; font-weight: 600; }
.upload-box .up-sub { font-size: 10.5px; color: var(--text-3); }
.up-file { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px 12px; margin-top: 10px; font-size: 11.5px; color: #c9ccd4; }
.up-file svg { width: 13px; height: 13px; color: var(--red-bright); flex: none; }
.up-file .uf-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.up-file .uf-size { font-size: 10px; color: var(--text-3); flex: none; }
.up-demo { font-size: 10.5px; color: var(--text-3); text-align: center; margin-top: 10px; letter-spacing: .3px; }
.up-demo b { color: var(--red-bright); font-weight: 600; cursor: pointer; }
.sub-box { margin-top: 13px; padding: 11px 12px; border-radius: 13px; background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.14); font-size: 11.5px; color: var(--text-2); line-height: 1.6; }
.sub-box b { color: var(--text); }
.sub-box .rej { color: #F2B34C; margin-top: 5px; display: block; }
.sub-box .hl { color: var(--red-bright); font-weight: 600; }
.sub-box .ok { color: #4CC77E; font-weight: 600; }
.sub-box .pend { color: #F2B34C; font-weight: 600; }
.m-foot-tip { font-size: 10px; color: var(--text-3); text-align: center; margin-top: 10px; letter-spacing: .3px; }

/* ============ 机构信息 ============ */
.org-hero { display: flex; flex-direction: column; align-items: center; padding: 26px 16px 20px; margin-top: 6px; }
.org-avatar { width: 64px; height: 64px; border-radius: 20px; background: var(--red-grad); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: #fff; box-shadow: 0 10px 24px rgba(217,44,36,.4); }
.org-hero .nm { font-size: 17px; font-weight: 700; margin-top: 12px; }
.org-hero .no { font-size: 11px; color: var(--text-3); margin-top: 4px; letter-spacing: .5px; }
.info-list { padding: 4px 14px; }
.info-row { display: flex; align-items: center; gap: 12px; padding: 14px 14px; }
.info-row + .info-row { border-top: 1px solid rgba(255,255,255,.05); }
.info-row .k { width: 64px; flex: none; font-size: 12.5px; color: var(--text-3); }
.info-row .v { flex: 1; font-size: 13.5px; font-weight: 500; text-align: right; }
.info-row .lock { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; color: var(--text-3); }
.info-row .lock svg { width: 12px; height: 12px; }
.info-note { margin: 14px; padding: 13px 14px; font-size: 11.5px; color: var(--text-2); line-height: 1.7; background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.12); border-radius: 14px; }
.info-note b { color: #FF8A83; font-weight: 600; }
.info-foot { text-align: center; font-size: 10.5px; color: var(--text-3); margin: 16px 0 4px; letter-spacing: .3px; }

/* ============ 底部 Tab ============ */
.tabbar { position: absolute; left: 0; right: 0; bottom: 0; height: 64px; padding-bottom: env(safe-area-inset-bottom); background: rgba(22,22,28,.92); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,.06); display: flex; z-index: 40; }
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--text-3); cursor: pointer; position: relative; transition: color .15s; }
.tab svg { width: 21px; height: 21px; }
.tab span { font-size: 10px; }
.tab.on { color: var(--red-bright); }
.tab .badge { position: absolute; top: 7px; left: calc(50% + 8px); min-width: 16px; height: 16px; padding: 0 4px; border-radius: 99px; background: var(--red-grad); color: #fff; font-size: 9.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 8px rgba(217,44,36,.5); border: 1.5px solid #141419; }

/* ============ 弹窗 ============ */
.mask { position: absolute; inset: 0; background: rgba(8,8,12,.66); backdrop-filter: blur(3px); z-index: 60; display: none; align-items: center; justify-content: center; padding: 26px; }
.mask.show { display: flex; animation: maskIn .22s ease; }
.modal { width: 100%; max-width: 320px; background: linear-gradient(180deg, #262631, #1d1d25); border: 1px solid rgba(255,255,255,.09); border-radius: 22px; padding: 22px 20px 18px; animation: popIn .28s cubic-bezier(.2,.9,.3,1.2); box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.modal .m-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--red-grad); display: flex; align-items: center; justify-content: center; color: #fff; margin: 0 auto 12px; box-shadow: 0 8px 18px rgba(217,44,36,.4); }
.modal .m-ic svg { width: 24px; height: 24px; }
.modal .m-ic.small { width: 40px; height: 40px; border-radius: 12px; margin: 0 auto 12px; }
.modal .m-ic.small svg { width: 20px; height: 20px; }
.modal h4 { font-size: 16.5px; font-weight: 700; text-align: center; letter-spacing: .3px; margin: 0; }
.modal .m-body { font-size: 12.5px; color: var(--text-2); line-height: 1.75; margin-top: 10px; }
.modal .m-body .hl { color: var(--red-bright); font-weight: 700; }
.m-stat { display: flex; gap: 10px; margin-top: 14px; }
.m-stat .ms { flex: 1; text-align: center; background: var(--red-grad-soft); border: 1px solid rgba(255,91,83,.18); border-radius: 14px; padding: 11px 6px; }
.m-stat .ms b { font-size: 20px; font-weight: 800; color: var(--red-bright); display: block; }
.m-stat .ms span { font-size: 10.5px; color: var(--text-2); margin-top: 3px; display: block; }
.m-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 99px; margin-bottom: 9px; }
.m-tag.imp { background: rgba(255,91,83,.18); color: #FF8A83; border: 1px solid rgba(255,91,83,.45); }
.m-tag.norm { background: rgba(255,255,255,.08); color: var(--text-2); border: 1px solid rgba(255,255,255,.12); }
.m-title { font-size: 15.5px; font-weight: 700; line-height: 1.45; }
.m-msg { font-size: 12.5px; color: var(--text-2); line-height: 1.8; margin-top: 9px; }
.m-file { display: flex; align-items: center; gap: 8px; margin-top: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 9px 11px; font-size: 11.5px; color: #c9ccd4; }
.m-file svg { width: 13px; height: 13px; color: var(--red-bright); flex: none; }
.m-file span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.m-time { font-size: 10.5px; color: var(--text-3); text-align: right; margin-top: 9px; }
.m-queue { font-size: 10px; color: var(--text-3); text-align: center; margin-top: 10px; letter-spacing: .3px; }
.m-btns { display: flex; gap: 10px; margin-top: 16px; }
.btn { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 14px; font-weight: 600; line-height: 1; padding: 0; height: 44px; border-radius: 14px; cursor: pointer; transition: all .15s ease; border: none; font-family: inherit; margin: 0; -webkit-appearance: none; appearance: none; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--red-grad); color: #fff; box-shadow: 0 6px 16px rgba(217,44,36,.4); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text-2); border: 1px solid rgba(255,255,255,.12); }
.btn-ghost.red { color: var(--red-bright); border-color: var(--red-line); }

/* 活动下拉 */
.picker-mask { position: absolute; inset: 0; z-index: 55; display: none; background: rgba(8,8,12,.45); }
.picker-mask.show { display: block; }
.picker { position: absolute; top: 64px; right: 14px; width: 252px; z-index: 56; background: linear-gradient(180deg, #26262f, #1e1e26); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; box-shadow: 0 18px 44px rgba(0,0,0,.5); padding: 6px; display: none; animation: popIn .2s ease; }
.picker.show { display: block; }
.picker .p-head { font-size: 10.5px; color: var(--text-3); padding: 8px 12px 6px; letter-spacing: .3px; display: flex; align-items: center; gap: 4px; }
.picker .p-head svg { width: 10px; height: 10px; color: var(--red-bright); }
.p-item { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 11px; font-size: 13px; color: var(--text); cursor: pointer; transition: background .12s; }
.p-item:active { background: rgba(255,255,255,.06); }
.p-item .p-ic { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; flex: none; }
.p-item .p-ic svg { width: 11px; height: 11px; color: var(--text-2); }
.p-item .p-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.p-item .p-check { color: var(--red-bright); flex: none; font-size: 11px; font-weight: 700; }
.p-item.on { background: var(--red-grad-soft); color: #FF8A83; }
.p-item.on .p-name { color: #FF8A83; font-weight: 600; }
.p-item.on .p-ic { background: var(--red-grad); color: #fff; }
.p-item.on .p-ic svg { color: #fff; }
.p-note { margin: 6px 8px 8px; padding: 8px 10px; font-size: 10px; line-height: 1.6; color: var(--text-3); background: rgba(255,255,255,.04); border: 1px dashed rgba(255,255,255,.12); border-radius: 10px; }
.p-note b { color: #FF8A83; font-weight: 600; }

/* Toast */
.toast { position: absolute; left: 50%; bottom: 88px; transform: translateX(-50%) translateY(14px); z-index: 80; background: rgba(30,30,38,.96); border: 1px solid rgba(255,255,255,.12); color: #e8e9ee; font-size: 12px; padding: 10px 16px; border-radius: 12px; display: flex; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: all .25s ease; box-shadow: 0 10px 26px rgba(0,0,0,.45); max-width: 320px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); flex: none; box-shadow: 0 0 8px rgba(255,91,83,.9); }
.toast b { color: var(--red-bright); font-weight: 700; }

/* 顶部导航：负责人名字显示在机构编号下方 */
.org-manager { font-size: 10.5px; color: var(--red-bright); margin-top: 2px; letter-spacing: .4px; font-weight: 600; }
