/* 城市路侧停车收费云平台 - 共用设计系统（v2 焕新：统一渐变品牌 + 圆角卡片 + 数字化分页） */
:root {
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --brand-deep: #1e3a8a;
  --brand-soft: #eff5ff;
  --brand-line: #c7dbfb;
  --brand-grad: linear-gradient(135deg, #1e3a8a 0%, #2563eb 62%, #3b82f6 100%);
  --brand-glow: 0 8px 22px rgba(37, 99, 235, .22);

  --ok: #15803d;
  --ok-soft: #e8f5ec;
  --warn: #b45309;
  --warn-soft: #fdf3e3;
  --danger: #c62828;
  --danger-soft: #fceceb;
  --info: #0e7490;
  --info-soft: #e5f4f8;

  --ink: #111827;
  --ink-2: #4b5563;
  --ink-3: #8b93a3;
  --line: #e5e8ee;
  --line-2: #f0f2f6;
  --bg: #f3f5f9;
  --card: #ffffff;

  --r-sm: 8px;
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 14px rgba(16, 24, 40, .05);
  --shadow-md: 0 2px 4px rgba(16, 24, 40, .05), 0 10px 24px rgba(16, 24, 40, .07);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, .14);
  --sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #d5dae3; border-radius: 8px; border: 2px solid transparent; background-clip: content-box; }
*::-webkit-scrollbar-thumb:hover { background: #bcc3cf; background-clip: content-box; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ---------------- 布局 ---------------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 20px 22px 60px; }
.wrap-wide { max-width: 1600px; }
.row { display: flex; align-items: center; gap: 10px; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.col { display: flex; flex-direction: column; gap: 6px; }
.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grow { flex: 1; min-width: 0; }
.mt8 { margin-top: 8px; } .mt12 { margin-top: 12px; } .mt16 { margin-top: 16px; }
.mt20 { margin-top: 20px; } .mt24 { margin-top: 24px; }
.right { text-align: right; } .center { text-align: center; }
.muted { color: var(--ink-3); }
.small { font-size: 12px; }
.mono { font-family: var(--mono); }
.nowrap { white-space: nowrap; }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hide { display: none !important; }

/* ---------------- 顶栏 ---------------- */
.topbar {
  background: var(--card); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30;
}
.topbar-inner { max-width: 1600px; margin: 0 auto; padding: 0 22px; height: 58px; display: flex; align-items: center; gap: 14px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; letter-spacing: .2px; }
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px; background: var(--brand);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.logo-mark svg { width: 17px; height: 17px; }
.nav { display: flex; gap: 2px; margin-left: 8px; }
.nav a {
  padding: 6px 12px; border-radius: var(--r-sm); color: var(--ink-2); font-size: 13.5px;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--line-2); color: var(--ink); }
.nav a.on { background: var(--brand-soft); color: var(--brand); font-weight: 500; }
.topbar .spacer { flex: 1; }

/* ---------------- 卡片 ---------------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px 16px; box-shadow: var(--shadow);
}
.card-flat { box-shadow: none; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.card-title { font-size: 15px; font-weight: 600; letter-spacing: .2px; }
.card-sub { font-size: 12px; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
.section-title { font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: .3px; }

/* ---------------- KPI ---------------- */
.kpi {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 13px 15px 13px 18px; box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.kpi:before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand-grad); opacity: .85; }
.kpi:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.kpi-label { font-size: 12.5px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.kpi-value { font-size: 26px; font-weight: 600; letter-spacing: -.4px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.kpi-value small { font-size: 14px; font-weight: 500; color: var(--ink-3); margin-left: 3px; }
.kpi-foot { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.kpi-foot .up { color: var(--ok); }
.kpi-foot .down { color: var(--danger); }

/* ---------------- 按钮 ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 36px; padding: 0 15px; border: 1px solid var(--line); background: var(--card);
  border-radius: var(--r-sm); cursor: pointer; font-size: 13.5px; color: var(--ink);
  transition: all .15s; white-space: nowrap;
}
.btn:hover { border-color: #c3cad6; background: #fbfcfe; color: var(--brand); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--brand-grad); border-color: transparent; color: #fff; font-weight: 500; box-shadow: var(--brand-glow); }
.btn-primary:hover { filter: brightness(1.06); border-color: transparent; color: #fff; }
.btn-danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn-danger:hover { filter: brightness(.94); color: #fff; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--brand-soft); }
.btn-sm { height: 30px; padding: 0 11px; font-size: 12.5px; border-radius: var(--r-sm); }
.btn-lg { height: 46px; padding: 0 22px; font-size: 15px; border-radius: var(--r); }
.btn-block { width: 100%; }

/* ---------------- 表单 ---------------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.input, .select, .textarea {
  height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%; outline: none; transition: border-color .15s, box-shadow .15s;
}
.textarea { height: auto; padding: 9px 12px; resize: vertical; min-height: 68px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(28, 95, 208, .12); }
.input::placeholder { color: #b3b9c4; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%238a92a3' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 13px; padding-right: 30px; }
.search-input { height: 36px; }
.input-lg { height: 50px; font-size: 16px; letter-spacing: 1px; }

/* ---------------- 徽标 / 标签 ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 8px;
  border-radius: 20px; font-size: 12px; font-weight: 500; white-space: nowrap;
  background: var(--line-2); color: var(--ink-2);
}
.badge-ok { background: var(--ok-soft); color: var(--ok); }
.badge-warn { background: var(--warn-soft); color: var(--warn); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-brand { background: var(--brand-soft); color: var(--brand); }
.badge-mut { background: var(--line-2); color: var(--ink-3); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex: none; box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); } 70% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

/* 车牌 */
.plate {
  display: inline-flex; align-items: center; justify-content: center; height: 24px; padding: 0 8px;
  border-radius: 4px; font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: .6px; background: #1c4f9c; color: #fff; border: 1px solid #16407f;
}
.plate-green { background: linear-gradient(180deg, #2fae4e, #1c8b39); border-color: #177a32; }
.plate-yellow { background: #d9a300; border-color: #b98b00; color: #3a2c00; }
.plate-sm { height: 20px; font-size: 11.5px; padding: 0 6px; letter-spacing: .3px; }
.plate-lg { height: 34px; font-size: 18px; padding: 0 14px; border-radius: 6px; }

/* ---------------- 表格 ---------------- */
.table-wrap {
  overflow: auto; border-radius: var(--r); border: 1px solid var(--line-2); background: #fff;
}
table.tb { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
table.tb th {
  text-align: left; font-weight: 600; color: var(--ink-2); font-size: 12.5px; letter-spacing: .2px;
  padding: 8px 12px; background: #f7f9fc; white-space: nowrap;
  position: sticky; top: 0; z-index: 2; border-bottom: 1px solid var(--line);
}
table.tb td { padding: 8px 12px; border-bottom: 1px solid var(--line-2); vertical-align: middle; background: #fff; }
table.tb tbody tr:hover td { background: #f8fbff; }
table.tb tbody tr:last-child td { border-bottom: none; }
table.tb .num { font-variant-numeric: tabular-nums; font-family: var(--mono); font-size: 12.5px; }
table.tb .money { font-variant-numeric: tabular-nums; font-weight: 600; }
table.tb input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--brand); cursor: pointer; }
.empty { padding: 32px 0; text-align: center; color: var(--ink-3); font-size: 13px; }

/* ---------------- 分页 ---------------- */
.pager {
  display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--ink-2);
  flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--line-2);
}
.pager .pg-info { margin-right: auto; color: var(--ink-3); font-size: 12.5px; white-space: nowrap; flex: none; }
.pager .pg-info b { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.pager .pg-size { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink-3); white-space: nowrap; flex: none; }
.pager .pg-size select {
  height: 30px; padding: 0 26px 0 9px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background-position: right 7px center; font-size: 12.5px; color: var(--ink);
}
.pager .pg-jump { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink-3); white-space: nowrap; flex: none; }
.pager .pg-jump input {
  width: 52px; height: 30px; padding: 0 8px; border: 1px solid var(--line); border-radius: var(--r-sm);
  text-align: center; font-variant-numeric: tabular-nums;
}
.pager button.pg-btn {
  min-width: 32px; height: 32px; padding: 0 8px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--r-sm); cursor: pointer; font-size: 12.5px; color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center; transition: all .14s;
  white-space: nowrap; flex: none;   /* 防止被压缩后“首页/上一页”等文字竖排折行 */
}
.pager button.pg-btn:hover:not(:disabled) { border-color: var(--brand-line); color: var(--brand); background: var(--brand-soft); }
.pager button.pg-btn:disabled { opacity: .42; cursor: not-allowed; }
.pager button.pg-btn.on { background: var(--brand-grad); border-color: transparent; color: #fff; font-weight: 600; box-shadow: var(--brand-glow); }
.pager .pg-gap { color: var(--ink-3); padding: 0 2px; white-space: nowrap; flex: none; }
.pager .pg-total { margin-left: auto; color: var(--ink-3); font-size: 12.5px; white-space: nowrap; flex: none; }

/* ---------------- 进度 / 占比条 ---------------- */
.bar { height: 6px; border-radius: 4px; background: var(--line-2); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 4px; background: var(--brand); }
.bar-ok > i { background: var(--ok); }
.bar-warn > i { background: var(--warn); }
.bar-danger > i { background: var(--danger); }

/* ---------------- 标签页 ---------------- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); }
.tabs button {
  background: none; border: none; padding: 10px 14px; cursor: pointer; font-size: 13.5px;
  color: var(--ink-2); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--ink); }
.tabs button.on { color: var(--brand); border-bottom-color: var(--brand); font-weight: 500; }
.chip-group { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  height: 30px; padding: 0 12px; border: 1px solid var(--line); background: #fff; border-radius: 20px;
  font-size: 12.5px; color: var(--ink-2); cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  transition: all .15s;
}
.chip:hover { border-color: var(--brand-line); color: var(--brand); }
.chip.on { background: var(--brand-soft); border-color: var(--brand-line); color: var(--brand); font-weight: 500; }

/* ---------------- 弹窗 ---------------- */
.mask {
  position: fixed; inset: 0; background: rgba(17, 24, 39, .45); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 560px; max-height: 88vh; overflow: auto;
}
.modal-lg { max-width: 820px; }
.modal-head { padding: 16px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-size: 15px; font-weight: 600; }
.modal-body { padding: 20px; }
.modal-foot { padding: 14px 20px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 8px; }
.x-btn { border: none; background: none; cursor: pointer; color: var(--ink-3); font-size: 20px; line-height: 1; padding: 2px 6px; border-radius: 6px; }
.x-btn:hover { background: var(--line-2); color: var(--ink); }

/* ---------------- 轻提示 ---------------- */
.toast-box { position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: #1f2937; color: #fff; padding: 10px 18px; border-radius: 10px; font-size: 13.5px;
  box-shadow: var(--shadow-lg); animation: toastIn .18s ease-out; max-width: 80vw;
}
.toast-ok { background: #14532d; }
.toast-err { background: #7f1d1d; }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------------- 计费明细 ---------------- */
.calc-line {
  display: flex; gap: 10px; padding: 9px 12px; border-radius: var(--r-sm); background: #fafbfc;
  border: 1px solid var(--line-2); font-size: 12.5px; align-items: flex-start;
}
.calc-line + .calc-line { margin-top: 8px; }
.calc-line .idx {
  width: 18px; height: 18px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
  font-size: 11px; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px;
}
.calc-line .formula { color: var(--ink-2); font-family: var(--mono); font-size: 11.5px; margin-top: 3px; }
.calc-line .amt { margin-left: auto; font-weight: 600; font-variant-numeric: tabular-nums; flex: none; }
.summary-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13.5px; }
.summary-line.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 11px; font-size: 15px; font-weight: 600; }
.summary-line .money { font-variant-numeric: tabular-nums; }

/* ---------------- 手机外壳 ---------------- */
.phone-stage {
  min-height: 100vh; background: #e9edf3; display: flex; justify-content: center;
  padding: 24px 14px 40px;
}
.phone {
  width: 100%; max-width: 420px; background: #f4f6f9; border-radius: 22px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .16); border: 1px solid #dde2ea;
  display: flex; flex-direction: column; min-height: 760px;
}
.phone-head {
  background: var(--brand); color: #fff; padding: 16px 18px 18px;
}
.phone-head .t { font-size: 17px; font-weight: 600; }
.phone-head .s { font-size: 12.5px; opacity: .82; margin-top: 2px; }
.phone-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.phone-tabbar {
  display: flex; border-top: 1px solid var(--line); background: #fff;
}
.phone-tabbar button {
  flex: 1; border: none; background: none; padding: 9px 0 11px; cursor: pointer;
  color: var(--ink-3); font-size: 11.5px; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.phone-tabbar button.on { color: var(--brand); }
.phone-tabbar svg { width: 19px; height: 19px; }

/* ---------------- 时间轴 ---------------- */
.timeline { position: relative; padding-left: 18px; }
.timeline:before { content: ''; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 11px; font-size: 12.5px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:before {
  content: ''; position: absolute; left: -18px; top: 5px; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; border: 2px solid var(--brand-line);
}
.timeline-item.on:before { border-color: var(--brand); background: var(--brand); }

/* ---------------- 泊位图 ---------------- */
.bay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; }
.bay-cell {
  border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; padding: 8px 6px;
  text-align: center; cursor: pointer; transition: all .14s; position: relative;
}
.bay-cell:hover { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(28, 95, 208, .1); }
.bay-cell .code { font-family: var(--mono); font-size: 11px; color: var(--ink-2); }
.bay-cell .st { font-size: 10.5px; margin-top: 3px; }
.bay-cell.idle { background: #fff; }
.bay-cell.occupied { background: #fdeaea; border-color: #f3c3c3; }
.bay-cell.occupied .code { color: #9b1c1c; font-weight: 600; }
.bay-cell.closed { background: #f2f3f5; opacity: .6; }
.bay-cell.charging { background: #e9f6ef; border-color: #bfe3cd; }
.bay-cell.sel { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(28, 95, 208, .18); }

/* ---------------- 登录页 ---------------- */
.login-stage {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
  background: linear-gradient(135deg, #eef3fb 0%, #e6ecf6 55%, #e9f0fa 100%);
}
.login-card {
  width: 100%; max-width: 400px; background: #fff; border-radius: 18px; padding: 32px 30px;
  box-shadow: 0 20px 50px rgba(16, 24, 40, .13); border: 1px solid #e6eaf1;
}
.login-hint { background: #f7f9fc; border: 1px dashed var(--line); border-radius: var(--r); padding: 10px 12px; font-size: 12px; color: var(--ink-2); line-height: 1.9; }

/* ---------------- 图表容器 ---------------- */
.chart { width: 100%; display: block; overflow: visible; }
.chart-legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--ink-2); }
.chart-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 5px; }

/* ---------------- 照片缩略与大图预览 ---------------- */
.thumb { width: 56px; height: 42px; border-radius: 6px; object-fit: cover; background: #e8ebf0; flex: none; border: 1px solid var(--line); display: block; }
.img-mask { position: fixed; inset: 0; background: rgba(8, 12, 20, .84); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 34px; cursor: zoom-out; }
.img-mask img { max-width: 100%; max-height: 100%; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

/* ---------------- 通用动效与工具 ---------------- */
.page.on > * { animation: fadeUp .22s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.filter-card { background: linear-gradient(180deg, #fbfcff, #fff); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px 14px; box-shadow: var(--shadow); }
.divider { height: 1px; background: var(--line-2); margin: 14px 0; }
.scroll-y { overflow-y: auto; }

@media (max-width: 1080px) {
  .g6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .g2, .g3, .g6 { grid-template-columns: 1fr; }
  .wrap { padding: 14px; }
  .pager .pg-jump { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .page.on > * { animation: none; }
  .live-dot { animation: none; }
}
