/* 卓曜·数字化平台 — 公共样式 (浅色 / 毛玻璃科技感) */

:root {
  --bg-0: #eef2f9;
  --bg-1: #e7ecf6;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(20, 35, 70, 0.12);
  --border-soft: rgba(20, 35, 70, 0.07);
  --text: #16203a;
  --text-dim: #586480;
  --text-faint: #93a0ba;
  --cyan: #0ea5e9;
  --violet: #7c5cf0;
  --blue: #2563eb;
  --green: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --grad: linear-gradient(135deg, #0ea5e9 0%, #7c5cf0 100%);
  --shadow: 0 18px 50px rgba(40, 60, 120, 0.14);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: linear-gradient(160deg, #f5f8fd 0%, #e9eef8 100%);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* 背景柔光 */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.40;
  pointer-events: none;
}
body::before {
  width: 600px; height: 600px;
  top: -200px; left: -140px;
  background: radial-gradient(circle, rgba(14,165,233,0.30), transparent 70%);
}
body::after {
  width: 620px; height: 620px;
  right: -180px; bottom: -220px;
  background: radial-gradient(circle, rgba(124,92,240,0.32), transparent 70%);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* 布局 */
.app {
  display: grid;
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
}

/* 侧边栏 */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 8px 22px;
  text-align: center;
}
.brand .logo {
  width: 52px; height: 52px;
  flex: none;
}
.brand .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
}
.brand .sub {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-group-title {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 2px;
  padding: 14px 12px 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text-dim);
  transition: all .2s ease;
  font-size: 14px;
}
.nav-item svg { width: 18px; height: 18px; flex: none; }
.nav-item:hover { background: rgba(255, 255, 255, 0.9); color: var(--text); }
.nav-item.active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border), 0 8px 22px rgba(14,165,233,0.14);
}
.nav-item.active svg { color: var(--cyan); }
.nav-item .nav-short { display: none; }

/* 主区域 */
.main {
  padding: 26px 32px 60px;
  min-width: 0;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
/* 仅用户管理页有右上角用户胶囊时，为 topbar 右侧操作让位 */
body.show-userchip .topbar { padding-right: 210px; }
.topbar h1 { font-size: 22px; font-weight: 700; letter-spacing: .5px; color: var(--text); }
.topbar .crumb { font-size: 12px; color: var(--text-faint); margin-top: 4px; letter-spacing: 1px; }
.topbar .actions { display: flex; gap: 10px; align-items: center; }
.act-filters, .act-btns { display: flex; align-items: center; gap: 10px; }
.only-mobile { display: none; }
.only-desktop { display: inline-flex; }

/* 概览页顶部 Hero（Logo + 品牌 + 欢迎 + 月份选择） */
.dash-hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center;
  padding: 22px 22px; margin-bottom: 22px; border-radius: var(--radius);
}
.dash-hero::before {
  content: ""; position: absolute; left: -40px; top: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--cyan); filter: blur(60px); opacity: .28; z-index: 0; pointer-events: none;
}
.dash-hero::after {
  content: ""; position: absolute; right: -50px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--violet); filter: blur(70px); opacity: .26; z-index: 0; pointer-events: none;
}
.dh-left { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; position: relative; z-index: 1; }
.dh-logo {
  width: 64px; height: 64px; border-radius: 18px; overflow: hidden; flex: none;
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(99, 102, 241, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.dh-logo img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.dh-title {
  font-size: 23px; font-weight: 800; letter-spacing: .5px; line-height: 1.2;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dh-right { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 1; }
.dh-greet {
  font-size: 14px; color: var(--text-dim); letter-spacing: .3px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dh-greet-pre {
  color: var(--cyan); font-weight: 600; letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(14, 165, 233, 0.18);
}
.dh-greet-name {
  font-weight: 800; color: transparent;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
}

/* 毛玻璃卡片 */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card { padding: 20px 22px; }
.card .card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card .card-title {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}
.card .card-title svg { width: 17px; height: 17px; color: var(--cyan); }

/* 统计卡片 */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.stat-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.stat-card .ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-soft);
  margin-bottom: 14px;
}
.stat-card .ic svg { width: 20px; height: 20px; }
.stat-card .label { font-size: 12.5px; color: var(--text-dim); letter-spacing: .5px; }
.stat-card .value {
  font-size: 26px;
  font-weight: 700;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
  color: var(--text);
}
.stat-card .value .unit { font-size: 13px; color: var(--text-faint); margin-left: 4px; font-weight: 500; }
.stat-card::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .28;
}
.stat-card.c-cyan::after   { background: var(--cyan); }
.stat-card.c-violet::after { background: var(--violet); }
.stat-card.c-green::after  { background: var(--green); }
.stat-card.c-amber::after  { background: var(--amber); }

/* 概览前四个卡片内容居中（PC 与移动端通用） */
.stat-grid .stat-card:nth-child(-n+4) { text-align: center; }
.stat-grid .stat-card:nth-child(-n+4) .ic { margin-left: auto; margin-right: auto; }

/* 图表网格 */
.chart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.chart-wrap { width: 100%; }
.chart-wrap svg { width: 100%; height: auto; display: block; }

/* 表格 */
.table-wrap { width: 100%; overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
table.data th {
  text-align: left;
  color: var(--text-dim);
  font-weight: 600;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: .5px;
  white-space: nowrap;
}
table.data td {
  padding: 6px 14px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  vertical-align: middle;
}
table.data tbody tr { transition: background .15s; }
table.data tbody tr:hover { background: rgba(255, 255, 255, 0.85) !important; }

/* 列表多选与报销状态 */
.col-check { width: 42px; text-align: center; }
.row-check, #checkAll {
  width: 17px; height: 17px; cursor: pointer; vertical-align: middle;
  accent-color: #10b981;
}
.r-state {
  display: inline-flex; align-items: center;
  padding: 3px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; line-height: 1.4;
}
.r-state.ok { color: #fff; background: #10b981; }
.r-state.no { color: #fff; background: #94a3b8; }

/* 移动端卡片列表（替代 Excel 表格） */
.list-area .empty { padding: 36px 0; }
.m-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 14px 15px;
  margin-bottom: 12px;
  box-shadow: 0 10px 28px rgba(40, 60, 120, 0.08);
}
.m-card:last-child { margin-bottom: 0; }
.mc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.mc-check { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-dim); cursor: pointer; }
.mc-check input { width: 17px; height: 17px; accent-color: #10b981; cursor: pointer; }
.mc-title { font-size: 16px; font-weight: 700; color: var(--text); }
.mc-user { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mc-sub { font-size: 12px; color: var(--text-faint); }
.mc-no { font-size: 12px; color: var(--text-faint); }
.mc-amt { font-size: 20px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: .3px; }
.mc-badges { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.mc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-bottom: 12px; }
.mc-item { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mc-item.mc-full { grid-column: 1 / -1; }
.mc-k { font-size: 11px; color: var(--text-faint); letter-spacing: .5px; }
.mc-v { font-size: 13.5px; color: var(--text); word-break: break-word; }
.mc-ops { display: flex; gap: 8px; }
.mc-ops .btn { flex: 1; justify-content: center; }
.mc-thumb { width: 46px; height: 46px; border-radius: 9px; object-fit: cover; border: 1px solid var(--border); cursor: pointer; }
.mc-thumb-empty { font-size: 12px; color: var(--text-faint); }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(14,165,233,0.10);
  color: #0b7fb3;
  border: 1px solid rgba(14,165,233,0.25);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.mono { font-variant-numeric: tabular-nums; }

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 13.5px;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { border-color: rgba(14,165,233,0.6); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14,165,233,0.12); }
.btn-primary {
  background: var(--grad);
  border: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(14,165,233,0.28);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(124,92,240,0.32); }
.btn-ghost { background: transparent; }
.btn-danger { color: var(--rose); border-color: rgba(244,63,94,0.35); background: rgba(244,63,94,0.08); }
.btn-danger:hover { background: rgba(244,63,94,0.16); border-color: rgba(244,63,94,0.6); }
.btn-accent {
  background: linear-gradient(135deg, #10b981, #14b8a6);
  border: none; color: #fff; font-weight: 600;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.28);
}
.btn-accent:hover { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.34); }
.btn-warn {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.4);
  font-weight: 600;
}
.btn-warn:hover { background: rgba(245, 158, 11, 0.24); border-color: rgba(245, 158, 11, 0.6); box-shadow: 0 8px 20px rgba(245,158,11,0.18); }
.btn-sm { padding: 6px 11px; font-size: 12.5px; border-radius: 9px; }

/* 表单 */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 12.5px;
  color: var(--text-dim);
  margin-bottom: 7px;
  letter-spacing: .5px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border .18s, box-shadow .18s;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: rgba(14,165,233,0.7);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
}
.textarea { resize: vertical; min-height: 80px; }
.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23586480' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; background-color: rgba(255,255,255,0.9); }

/* 图片缩略 */
.thumb { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); }
.thumb-empty { width: 34px; height: 34px; border-radius: 8px; border: 1px dashed var(--border); display: grid; place-items: center; color: var(--text-faint); font-size: 10px; }
.ops { display: flex; align-items: center; gap: 6px; }

/* 弹窗 */
.modal-mask {
  position: fixed; inset: 0;
  background: rgba(225, 232, 245, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px;
  z-index: 50;
}
.modal-mask.show { display: flex; }
.modal {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,254,0.96));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  padding: 24px;
  animation: pop .22s ease;
}
@keyframes pop { from { opacity:0; transform: translateY(12px) scale(.98);} to {opacity:1; transform:none;} }
.modal h3 { font-size: 17px; margin-bottom: 18px; display: flex; align-items: center; gap: 9px; color: var(--text); }
.modal h3 svg { width: 19px; height: 19px; color: var(--cyan); }
.modal .modal-foot { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.msg-modal { max-width: 400px; text-align: center; padding: 30px 26px 24px; }
.msg-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.msg-icon svg { width: 30px; height: 30px; }
.msg-icon.msg-ok { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.msg-icon.msg-warn { background: linear-gradient(135deg, #f59e0b, #f97316); }
.msg-icon.msg-err { background: linear-gradient(135deg, #f43f5e, #ef4444); }
.msg-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.msg-body { font-size: 14.5px; line-height: 1.7; color: var(--text-dim); white-space: pre-line; }
.msg-body.text-danger { color: var(--rose); font-weight: 600; }
.msg-amount { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 2px 0 16px; }
.msg-amount-label { font-size: 13px; color: var(--text-faint); letter-spacing: .5px; }
.msg-amount-num { font-size: 30px; font-weight: 800; color: var(--text); line-height: 1.1; }

/* 图片查看器（整屏弹窗） */
.img-viewer {
  position: fixed; inset: 0;
  background: rgba(10, 16, 30, 0.86);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  z-index: 60;
}
.img-viewer.show { display: flex; }
.img-viewer img {
  max-width: 92vw; max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform-origin: center center;
  transition: transform .12s ease;
  user-select: none;
  -webkit-user-drag: none;
  position: relative;
  z-index: 1;
}
.img-viewer .iv-tools {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px;
  background: rgba(20, 28, 48, 0.55);
  padding: 8px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.img-viewer .iv-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.2); color: #fff;
  font-size: 22px; line-height: 1; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.img-viewer .iv-btn.wide { width: auto; padding: 0 16px; font-size: 14px; }
.img-viewer .iv-btn:hover { background: rgba(255, 255, 255, 0.36); }
.img-viewer .iv-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(20, 28, 48, 0.55); color: #fff;
  border: none; font-size: 26px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.img-viewer .iv-close:hover { background: rgba(20, 28, 48, 0.78); }

/* 文件上传 */
.uploader {
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  color: var(--text-faint);
  transition: border .2s, background .2s;
  cursor: pointer;
  background: rgba(255,255,255,0.6);
}
.uploader:hover { border-color: rgba(14,165,233,0.6); background: rgba(255,255,255,0.92); }
.uploader svg { width: 26px; height: 26px; color: var(--cyan); margin-bottom: 8px; }
.upload-preview { margin-top: 12px; display: none; }
.upload-preview img { max-width: 100%; max-height: 160px; border-radius: 10px; border: 1px solid var(--border); }
/* 多图附件网格 */
.img-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.img-cell { position: relative; width: 92px; height: 92px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-2); }
.img-cell > img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; display: block; }
.img-del { position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; line-height: 20px; text-align: center; border: none; border-radius: 50%; background: rgba(15,23,42,0.62); color: #fff; font-size: 16px; cursor: pointer; padding: 0; }
.img-del:hover { background: var(--danger); }
.img-add { display: flex; align-items: center; justify-content: center; border: 1.5px dashed var(--border); background: transparent; color: var(--text-2); cursor: pointer; }
.img-add:hover { border-color: var(--primary); color: var(--primary); }
.img-add span { display: inline-flex; }
/* 列表/卡片缩略图网格 */
.thumb-grid { display: flex; gap: 5px; align-items: center; flex-wrap: wrap; }
.thumb-img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border); cursor: zoom-in; }
.thumb-more { font-size: 12px; color: var(--text-2); background: rgba(20,40,80,0.06); padding: 2px 6px; border-radius: 6px; }

/* 提示 / 空态 */
.toast {
  position: fixed;
  top: 22px; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--text);
  opacity: 0;
  transition: all .25s;
  z-index: 90;
  box-shadow: var(--shadow);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.err { border-color: rgba(244,63,94,0.5); color: var(--rose); }
.toast.ok { border-color: rgba(16,185,129,0.5); color: var(--green); }
.toast.warn { border-color: rgba(245,158,11,0.55); color: #d97706; }
.empty {
  text-align: center;
  color: var(--text-faint);
  padding: 40px 0;
  font-size: 13px;
}

/* 月份选择 */
.month-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13.5px;
  transition: border-color .18s, box-shadow .18s;
}
.month-pick:hover { border-color: rgba(14,165,233,0.45); }
.month-pick:focus-within { border-color: rgba(14,165,233,0.7); box-shadow: 0 0 0 3px rgba(14,165,233,0.14); }
.month-pick svg { width: 17px; height: 17px; color: var(--cyan); }
.month-pick input { background: transparent; border: none; color: var(--text); outline: none; font-size: 13.5px; font-family: inherit; }

/* 原生日期 / 月份选择框美化（统一为设计风格） */
input[type="date"],
input[type="month"] {
  font-family: inherit;
  color-scheme: light;
  color: var(--text);
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
  width: 16px; height: 16px;
  opacity: .45;
  cursor: pointer;
  transition: opacity .15s;
}
input[type="date"]:hover::-webkit-calendar-picker-indicator,
input[type="month"]:hover::-webkit-calendar-picker-indicator { opacity: .85; }
/* Firefox */
input[type="date"]::-moz-calendar-picker-indicator,
input[type="month"]::-moz-calendar-picker-indicator { opacity: .5; cursor: pointer; }

/* 费用单内的日期框（仿 .input 风格） */
.field input[type="date"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  outline: none;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .18s, box-shadow .18s;
}
.field input[type="date"]:focus {
  border-color: rgba(14,165,233,0.7);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
}

/* 费用列表顶部：日期区间筛选（起止，精确到日） */
.filter-range {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text); font-size: 13.5px;
  transition: border-color .18s, box-shadow .18s;
}
.filter-range:focus-within {
  border-color: rgba(14,165,233,0.7);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.14);
}
.filter-range .filter-date {
  border: none; background: transparent; outline: none;
  color: var(--text); font-family: inherit; font-size: 13.5px;
  color-scheme: light; font-variant-numeric: tabular-nums;
}
.filter-range .range-sep { color: var(--text-faint); font-size: 13px; }

/* 自定义日期 / 月份选择器（毛玻璃科技感） */
.pk-host { position: relative; display: inline-flex; }
.picker-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text); font-size: 13.5px; cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
  user-select: none; white-space: nowrap;
}
.picker-trigger:hover { border-color: rgba(14,165,233,0.45); }
.picker-trigger.active,
.picker-trigger:focus-within { border-color: rgba(14,165,233,0.7); box-shadow: 0 0 0 3px rgba(14,165,233,0.14); }
.picker-trigger svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.picker-trigger .pv { font-variant-numeric: tabular-nums; letter-spacing: .2px; }
.picker-trigger .caret { width: 14px; height: 14px; color: var(--text-faint); margin-left: 2px; }
.field .picker-trigger.date { width: 100%; }

/* 自定义筛选下拉框（玻璃风格，匹配日期选择器） */
.sel-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 11px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text); font-size: 13.5px; cursor: pointer;
  user-select: none; white-space: nowrap; min-width: 132px;
  transition: border-color .18s, box-shadow .18s;
}
.sel-trigger:hover { border-color: rgba(14, 165, 233, 0.45); }
.sel-trigger.active { border-color: rgba(14, 165, 233, 0.7); box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14); }
.sel-trigger .sel-val { overflow: hidden; text-overflow: ellipsis; }
.sel-trigger .caret { width: 14px; height: 14px; color: var(--text-faint); margin-left: auto; }
.sel-pop {
  position: absolute; z-index: 400; top: calc(100% + 8px); left: 0;
  min-width: 168px; max-height: 264px; overflow: auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow);
  padding: 6px; color: var(--text);
  animation: pkIn .16s ease;
}
.sel-pop .sel-opt {
  padding: 9px 12px; border-radius: 9px; cursor: pointer;
  font-size: 13.5px; display: flex; align-items: center; gap: 9px;
  transition: background .15s, color .15s;
}
.sel-pop .sel-opt:hover { background: rgba(14, 165, 233, 0.12); color: var(--cyan); }
.sel-pop .sel-opt.sel { background: rgba(14, 165, 233, 0.16); color: var(--cyan); font-weight: 600; }
.sel-pop .sel-opt .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

.picker-pop {
  position: fixed; z-index: 400;
  width: 280px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  color: var(--text);
  animation: pkIn .16s ease;
}
@keyframes pkIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.picker-pop .pp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.picker-pop .pp-title { font-weight: 600; font-size: 14px; letter-spacing: .5px; }
.picker-pop .pp-nav { display: flex; gap: 6px; }
.picker-pop .pp-nav button {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid var(--border-soft); background: rgba(255,255,255,0.7);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: .15s;
}
.picker-pop .pp-nav button:hover { border-color: var(--cyan); color: var(--cyan); }
.picker-pop .pp-nav svg { width: 15px; height: 15px; }
.picker-pop .pp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.picker-pop .pp-grid.months { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.picker-pop .wk { text-align: center; font-size: 11px; color: var(--text-faint); padding: 4px 0; }
.picker-pop .cell {
  text-align: center; padding: 7px 0; border-radius: 9px;
  font-size: 13px; cursor: pointer; transition: .14s; font-variant-numeric: tabular-nums;
}
.picker-pop .cell:hover { background: rgba(14,165,233,0.12); color: var(--cyan); }
.picker-pop .cell.sel {
  background: var(--grad); color: #fff; font-weight: 600;
  box-shadow: 0 6px 14px rgba(14,165,233,0.3);
}
.picker-pop .cell.dim { color: var(--text-faint); opacity: .5; }
.picker-pop .cell.today { box-shadow: inset 0 0 0 1.5px rgba(14,165,233,0.45); }
.picker-pop .pp-foot { display: flex; justify-content: space-between; margin-top: 10px; }
.picker-pop .pp-foot button {
  font-size: 12px; padding: 6px 14px; border-radius: 8px;
  border: 1px solid var(--border-soft); background: rgba(255,255,255,0.7);
  cursor: pointer; color: var(--text-dim); transition: .15s;
}
.picker-pop .pp-foot button:hover { color: var(--cyan); border-color: var(--cyan); }

/* 图例 */
.legend { display: flex; flex-direction: column; gap: 8px; }
.legend .li {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  padding: 7px 10px; border-radius: 11px; transition: background .15s, transform .15s;
}
.legend .li .sw {
  width: 11px; height: 11px; border-radius: 50%; flex: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}
.legend .li .nm { color: var(--text-dim); flex: 1; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.legend .li .vl { display: flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.legend .li .amt { font-weight: 600; color: var(--text); font-size: 13px; }
.legend .li .pct {
  font-size: 11.5px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  padding: 2px 9px; border-radius: 999px; min-width: 50px; text-align: center;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
}

/* 列表视图 / 表单视图切换 */
.view { display: none; }
.view.active { display: block; }

/* 单据（报销单）样式 —— 仿友好业财单据版式 */
.voucher {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.voucher-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 26px;
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(124,92,240,0.12));
  border-bottom: 1px solid var(--border-soft);
}
.vb-title { font-size: 20px; font-weight: 700; letter-spacing: 1px; color: var(--text); }
.vb-sub { font-size: 10px; color: var(--text-faint); letter-spacing: 2px; margin-top: 3px; }
.vb-right { display: flex; align-items: center; gap: 10px; }
.vb-no {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12.5px; color: var(--text-dim);
  background: rgba(255,255,255,0.75);
  padding: 5px 10px; border-radius: 8px; border: 1px solid var(--border-soft);
}
.vb-status {
  font-size: 12px; color: #0b7fb3;
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.3);
  padding: 4px 11px; border-radius: 999px;
}
.voucher-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 18px; }
.vrow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vfield { display: flex; flex-direction: column; gap: 8px; }
.vfield label { font-size: 12.5px; color: var(--text-dim); letter-spacing: .3px; }
.vfield-full { grid-column: 1 / -1; }
.amount-input {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 11px; padding: 0 14px;
  transition: border .18s, box-shadow .18s;
}
.amount-input:focus-within { border-color: rgba(14,165,233,0.7); box-shadow: 0 0 0 3px rgba(14,165,233,0.14); }
.amount-input .cur { font-size: 18px; color: var(--text-dim); font-weight: 600; }
.amount-input input {
  border: none; background: transparent; outline: none;
  padding: 12px 0; font-size: 20px; font-weight: 600; width: 100%; color: var(--text);
}
.voucher-foot {
  display: flex; justify-content: flex-end; gap: 10px;
  padding: 18px 26px;
  border-top: 1px solid var(--border-soft);
  background: rgba(245,247,252,0.7);
}
.voucher-modal { max-width: 480px; width: 100%; animation: pop .22s ease; }

@media (max-width: 640px) {
  .vrow { grid-template-columns: 1fr; }
}

/* 简单的 svg 动画 */
@keyframes draw { to { stroke-dashoffset: 0; } }
.anim-draw { stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: draw 1.4s ease forwards; }

/* 图表交互提示 */
.chart-tip {
  position: fixed; z-index: 300; pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 10px; padding: 9px 12px;
  font-size: 12.5px; color: var(--text); line-height: 1.65;
  white-space: nowrap; backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.chart-tip b { color: var(--text); }
.chart-tip .t-val { font-weight: 700; color: var(--cyan); }
.chart-wrap svg { display: block; width: 100%; height: auto; }
.chart-wrap svg [data-tip] { transition: opacity .15s; }
.chart-wrap svg:hover [data-tip] { opacity: .78; }
.chart-wrap svg [data-tip]:hover { opacity: 1; }

/* 卡片副标题提示 */
.hint { font-size: 12px; color: var(--text-faint); }

/* 月度表：迷你条 + 选中行 + 当前标签 */
.bar-mini { display: inline-block; width: 90px; height: 8px; border-radius: 999px; background: rgba(20,40,80,0.07); overflow: hidden; vertical-align: middle; margin-right: 8px; }
.bar-mini i { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--violet)); border-radius: 999px; }
.bar-pct { color: var(--text-dim); font-size: 12.5px; }
#monthTable tbody tr.row-sel { background: rgba(14,165,233,0.12); }
#monthTable tbody tr.row-sel td:first-child { font-weight: 600; }
/* 鼠标指向某月时，仅该行高亮为浅蓝，其余（含当前月）恢复无背景 */
#monthTable tbody tr:hover { background: rgba(14,165,233,0.12) !important; }
#monthTable tbody:has(tr:hover) tr.row-sel:not(:hover) { background: transparent !important; }
.cur-tag { font-size: 10px; color: var(--cyan); background: rgba(14,165,233,0.14); padding: 1px 6px; border-radius: 999px; margin-left: 4px; }

/* 图例可点击 */
.legend .li.clickable { cursor: pointer; padding: 7px 10px; border-radius: 11px; }
.legend .li.clickable:hover { background: rgba(14,165,233,0.08); }

.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: 999px;
  font-size: 12px; font-weight: 600; line-height: 1.4;
}
.badge-green { background: rgba(16,185,129,0.12); color: #059669; }
.badge-gray { background: rgba(107,114,128,0.12); color: #6b7280; }
.badge-red { background: rgba(239,68,68,0.12); color: #dc2626; }

.btn:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* 右上角用户菜单（全局，含退出） */
.user-chip {
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 5px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(20, 35, 70, 0.12);
}
.uc-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-size: 14px; font-weight: 700; line-height: 1;
}
.uc-name {
  font-size: 13px; font-weight: 600; color: var(--text);
  max-width: 92px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.uc-logout {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  border: none; padding: 0; cursor: pointer;
  background: rgba(244, 63, 94, 0.10); color: var(--rose);
  display: grid; place-items: center;
  transition: background .15s, transform .15s;
}
.uc-logout:hover { background: rgba(244, 63, 94, 0.18); }
.uc-logout:active { transform: scale(0.92); }
.uc-logout svg { width: 16px; height: 16px; }

/* Logo 图片 */
.brand .logo {
  background: transparent;
  box-shadow: 0 6px 18px rgba(14,165,233,0.30);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
}
.brand .logo img {
  width: 52px; height: 52px; border-radius: 14px;
  object-fit: cover; display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 登录页 */
.login-body {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  color: #1f2937;
  position: relative; overflow: hidden;
  background:
    radial-gradient(60% 60% at 18% 18%, rgba(99,179,237,0.28), transparent 60%),
    radial-gradient(55% 55% at 82% 26%, rgba(167,139,250,0.28), transparent 62%),
    radial-gradient(60% 60% at 55% 88%, rgba(94,234,212,0.22), transparent 60%),
    linear-gradient(135deg, #eef2ff 0%, #f5f3ff 48%, #ecfeff 100%);
}
.login-body::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 78%);
  pointer-events: none;
}
.login-body::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.20), transparent 70%);
  top: -160px; right: -140px;
  filter: blur(18px);
  animation: loginFloat 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loginFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(46px) translateX(-26px); }
}
.login-card {
  width: 100%; max-width: 420px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 24px 70px rgba(30,41,59,0.15);
  position: relative; z-index: 1;
}
.login-brand {
  text-align: center; margin-bottom: 32px;
}
.login-brand img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(79,70,229,0.28);
  border: 2px solid rgba(255,255,255,0.85);
}
.login-brand h1 {
  font-size: 22px; font-weight: 700; margin: 0;
  background: linear-gradient(90deg, #4338ca, #7c3aed);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.login-brand h1 span {
  display: block; font-size: 13px; font-weight: 500;
  margin-top: 4px; letter-spacing: 2px;
  -webkit-text-fill-color: rgba(31,41,59,0.55);
  color: rgba(31,41,59,0.55);
}
.login-form .field { margin-bottom: 18px; }
.login-form .field label {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 500; color: #374151;
}
.input-icon { position: relative; }
.input-icon .ic {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: rgba(15,23,42,0.45); display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
}
.input-icon .ic svg { width: 18px; height: 18px; }
.login-form .input-icon .input { padding-left: 40px; }
.login-form .input {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.12);
  color: #111827;
}
.login-form .input::placeholder { color: rgba(15,23,42,0.40); }
.login-form .input:focus {
  border-color: rgba(79,70,229,0.85);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.16);
}
.btn-block { width: 100%; justify-content: center; }
.login-tip {
  margin-top: 18px; text-align: center;
  font-size: 12px; color: rgba(31,41,59,0.5);
}

/* 响应式：平板与手机统一为移动端布局 */
@media (max-width: 1080px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .chart-grid { grid-template-columns: 1fr; }

  /* 侧边栏变为底部固定导航栏 */
  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    height: auto; flex-direction: row; align-items: center; gap: 8px;
    padding: 6px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-right: none; border-top: 1px solid var(--border-soft);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.08);
    z-index: 40;
  }
  .brand, .nav-group-title { display: none; }
  .nav-group { flex: 1; display: flex; align-items: center; }
  .nav { width: 100%; display: flex; flex-direction: row; justify-content: space-around; }
  .nav-item {
    flex: 1; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 8px 4px; border-radius: 12px; font-size: 12px;
  }
  .nav-item svg { margin: 0; }
  .nav-item .nav-label { display: none; }
  .nav-item .nav-short { display: block; font-size: 12px; }
  .main { padding: 18px 16px 96px; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 10px; padding-right: 0; }
  body.show-userchip .topbar { padding-right: 0; } /* 移动端中和右上角胶囊让位 */
  .topbar .actions { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 12px; width: 100%; }
  .act-filters { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  .act-filters .pk-host { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .act-filters .pk-host:first-child { flex: 1 1 100%; }
  .act-filters .sel-trigger { min-width: 0; width: 100%; justify-content: space-between; }
  .act-filters input[type="month"] { width: 100%; min-width: 0; }
  .act-filters .filter-range { width: 100%; justify-content: space-between; }
  .act-filters .filter-date { flex: 1 1 auto; min-width: 0; }
  .act-btns { display: flex; flex-wrap: wrap; gap: 8px; width: 100%; }
  .act-btns .btn { flex: 1 1 calc(33.333% - 6px); min-width: 86px; }
  .only-mobile { display: inline-flex; }
  .only-desktop { display: none; }
  /* 手机端全选按钮：紧凑药丸，不拉伸、文字居中 */
  #btnSelectAll {
    flex: 0 0 auto;
    align-self: center;
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 999px;
  }
  .dash-hero { gap: 12px; }
  .dash-hero .dh-right { flex-direction: row; align-items: center; justify-content: center; gap: 14px; }

  /* 移动端：按月统计表 · 全年 —— 居中 + 占比列调窄 */
  #monthTable th, #monthTable td { text-align: center; padding-left: 8px; padding-right: 8px; }
  #monthTable .bar-mini { width: 52px; margin-right: 6px; }
  #monthTable .cur-tag { margin-left: 2px; }
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
  #monthTable th, #monthTable td { padding: 6px 5px; font-size: 12px; }
  #monthTable .bar-mini { width: 38px; margin-right: 4px; }
}

/* ===== 趋势面积图：点位金额/笔数标注与当前月高亮 ===== */
.area-chart { display: block; width: 100%; height: auto; }
.c-amt {
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 3px;
  stroke-linejoin: round;
  pointer-events: none;
}
.c-cnt { pointer-events: none; }
.c-pt { transition: r .15s ease, stroke-width .15s ease; }
.c-pt:hover { r: 7; }
.c-cur { filter: drop-shadow(0 2px 5px rgba(14, 165, 233, 0.40)); }
