/* 交付日报报告 —— 轻量移动优先样式 */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #2563eb; --blue-d: #1d4ed8;
  --bg: #f2f4f8; --card: #fff; --txt: #1f2937; --muted: #6b7280;
  --line: #e5e7eb; --red: #dc2626; --green: #059669;
}
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg); color: var(--txt);
  min-height: 100vh; -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 640px; margin: 0 auto; padding: 24px 16px 48px; }
.card {
  background: var(--card); border-radius: 14px; padding: 22px 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 16px;
}
h1 { font-size: 22px; margin-bottom: 6px; }
h2 { font-size: 17px; margin-bottom: 14px; }
.sub { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.6; }
.err { color: var(--red); font-size: 13px; margin-top: 12px; min-height: 18px; }
.loading { text-align: center; color: var(--muted); padding: 40px 0; }

input {
  width: 100%; padding: 13px 14px; font-size: 16px; margin-bottom: 12px;
  border: 1px solid var(--line); border-radius: 10px; background: #fafbfc;
  transition: border .15s;
}
input:focus { outline: none; border-color: var(--blue); background: #fff; }
button {
  width: 100%; padding: 13px; font-size: 16px; border: none; border-radius: 10px;
  background: var(--blue); color: #fff; cursor: pointer; font-weight: 600;
}
button:active { background: var(--blue-d); }
button.ghost {
  width: auto; padding: 6px 12px; font-size: 13px; font-weight: 400;
  background: transparent; color: var(--muted); border: 1px solid var(--line);
}
button.ghost:active { background: #f3f4f6; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; font-size: 15px; font-weight: 600;
}
.topbar .ops { display: flex; gap: 8px; }

.biglink {
  display: block; text-align: center; padding: 16px; font-size: 16px; font-weight: 600;
  color: var(--blue); background: #eff4ff; border-radius: 10px; text-decoration: none;
}
.biglink:active { background: #e0eaff; }

.person-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 6px; border-bottom: 1px solid var(--line);
  color: var(--txt); text-decoration: none; font-size: 15px;
}
.person-link:last-child { border-bottom: none; }
.person-link .grp { color: var(--muted); font-size: 13px; }
.person-link:active { background: #f6f7f9; }
.grouphdr {
  font-size: 13px; color: var(--muted); font-weight: 600;
  margin: 14px 0 2px;
}
.grouphdr:first-child { margin-top: 0; }
.tag-me {
  display: inline-block; font-size: 11px; color: var(--green);
  border: 1px solid var(--green); border-radius: 4px; padding: 0 4px; margin-left: 6px;
}
.hidden { display: none !important; }

/* 钉钉扫码登录按钮 */
.orline { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; margin: 4px 0 12px; }
.orline::before, .orline::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.btn-dd {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: #007fff; border: 1px solid #007fff;
}
.btn-dd:active { background: #eef6ff; }
.dd-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 5px;
  background: #007fff; color: #fff; font-size: 12px; font-weight: 700;
}
/* 职位徽标 */
.pos {
  color: var(--muted); font-size: 12px; max-width: 40%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.person-link .right { display: flex; align-items: center; gap: 6px; }

