:root {
  --green: #1b7f6f;
  --ink: #123b3a;
  --gold: #d6a441;
  --rose: #b2475d;
  --paper: #f6f3ea;
  --line: #d9e1dc;
  --theme-primary: var(--green);
  --theme-secondary: var(--ink);
  --theme-accent: var(--gold);
  --theme-danger: var(--rose);
  --theme-text: var(--ink);
  --theme-muted: #6b7d78;
  --theme-page-bg: linear-gradient(180deg, #ecf6f2 0%, #f8f6ef 42%, #eef2f5 100%);
  --theme-card-bg: #fff;
  --theme-border: var(--line);
  --theme-radius: 10px;
  --theme-font-size: 14px;
  --theme-title-size: 18px;
  --theme-shadow: 0 14px 28px rgba(18,59,58,.10);
}
[v-cloak] { display: none; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--theme-page-bg);
  color: var(--theme-text);
  font-size: var(--theme-font-size);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}
.app-static-boot {
  width: min(92vw, 520px);
  margin: 18px auto;
  padding: 12px 14px;
  border: 1px solid #cfe8df;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  color: #123b3a;
  box-shadow: 0 12px 28px rgba(18,59,58,.10);
}
.app-static-boot b,
.app-static-boot span {
  display: block;
}
.app-static-boot b {
  font-size: 14px;
  font-weight: 900;
}
.app-static-boot span {
  margin-top: 4px;
  color: #6b7d78;
  font-size: 12px;
  line-height: 1.5;
}
.app-static-boot.error {
  border-color: rgba(178,71,93,.4);
  background: rgba(178,71,93,.08);
  color: #b2475d;
}
.app-mounted .app-static-boot:not(.app-boot-diagnostic) {
  display: none;
}
.app-boot-diagnostic {
  max-width: 760px;
}
.app-ready .app-boot-diagnostic {
  display: none;
}
.boot-diagnostic-lines {
  margin-top: 8px;
  max-height: 160px;
  overflow: auto;
  font-family: Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  color: #38534e;
}
.boot-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.boot-actions a,
.boot-actions button {
  border: 1px solid rgba(27,127,111,.28);
  border-radius: 999px;
  background: rgba(27,127,111,.08);
  color: #1b7f6f;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.global-api-status {
  position: fixed;
  left: 12px;
  right: 12px;
  top: calc(10px + env(safe-area-inset-top));
  z-index: 3000;
  pointer-events: none;
}
.global-api-card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid #cfe8df;
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  color: #123b3a;
  box-shadow: 0 12px 28px rgba(18,59,58,.16);
  pointer-events: auto;
}
@media (max-width: 380px) {
  .global-api-card {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .global-api-card button {
    grid-column: span 1;
  }
}
.global-api-card b,
.global-api-card span {
  display: block;
}
.global-api-card b {
  font-size: 13px;
  font-weight: 900;
}
.global-api-card span {
  margin-top: 2px;
  color: #6b7d78;
  font-size: 11px;
  word-break: break-all;
}
.global-api-card button {
  border: 1px solid rgba(27,127,111,.28);
  border-radius: 999px;
  background: rgba(27,127,111,.08);
  color: #1b7f6f;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
.global-api-status.error .global-api-card {
  border-color: #f0b56b;
  background: #fff7ed;
}
.global-api-status.error .van-icon {
  color: #b45309;
  font-size: 22px;
}
.login-api-issue {
  width: min(92vw, 720px);
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(178, 71, 93, 0.35);
  border-radius: 8px;
  background: rgba(178, 71, 93, 0.08);
  color: #b2475d;
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  word-break: break-all;
}
.ajax-status-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dce8e3;
  border-radius: 10px;
  background: #fffdf7;
  color: #123b3a;
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.ajax-status-card .van-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(27,127,111,.1);
  color: #1b7f6f;
}
.ajax-status-card b,
.ajax-status-card span {
  display: block;
}
.ajax-status-card b {
  font-size: 13px;
  font-weight: 900;
}
.ajax-status-card span {
  margin-top: 2px;
  color: #6b7d78;
  font-size: 11px;
  word-break: break-all;
}
.ajax-status-card button {
  border: 1px solid rgba(27,127,111,.2);
  border-radius: 999px;
  background: rgba(27,127,111,.08);
  color: #1b7f6f;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
.ajax-status-card.done .van-icon {
  background: rgba(27,127,111,.14);
}
.ajax-status-card.error {
  border-color: #f0b56b;
  background: #fff7ed;
}
.ajax-status-card.error .van-icon {
  background: #ffedd5;
  color: #b45309;
}
.app-captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 8px;
  align-items: stretch;
}
.app-captcha-row button {
  border: 1px solid #d6a441;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff4d8, #f6d583);
  color: #123b3a;
  font-size: 18px;
  font-weight: 1000;
  letter-spacing: 2px;
}
.app-shell {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, #ecf6f2 0%, #f8f6ef 42%, #eef2f5 100%);
  box-shadow: 0 0 0 1px rgba(18,59,58,.04), 0 24px 60px rgba(18,59,58,.12);
}
.app-topbar {
  position: relative;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 13px;
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid rgba(27,127,111,.14);
  background:
    linear-gradient(180deg, rgba(255,253,247,.94) 0%, rgba(237,247,243,.88) 100%),
    url("../img/bg-campus-visit.jpg") center / cover no-repeat;
  box-shadow: 0 10px 24px rgba(18,59,58,.08);
}
.app-topbar .home-brand {
  min-width: 0;
  padding-right: 0;
}
.app-topbar .home-brand b,
.app-topbar .home-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-topbar .home-bell {
  position: relative;
  right: auto;
  top: auto;
  flex: 0 0 auto;
}
.login-shell {
  min-height: 100vh;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background:
    linear-gradient(180deg, rgba(18,59,58,.82), rgba(27,127,111,.42)),
    url("../img/bg-campus-visit.jpg") center / cover no-repeat;
}
.app-login-card {
  width: 100%;
  display: grid;
  gap: 16px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 18px;
  background: rgba(255,253,247,.96);
  box-shadow: 0 28px 60px rgba(18,59,58,.28);
  backdrop-filter: blur(14px);
}
.app-login-brand {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 7px;
}
.app-login-brand .brand-mark {
  margin-bottom: 4px;
}
.app-login-brand span {
  color: #1b7f6f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.app-login-brand h1 {
  margin: 0;
  color: #123b3a;
  font-size: 24px;
  line-height: 1.2;
}
.app-login-brand p {
  margin: 0;
  color: #65736f;
  font-size: 12px;
}
.brand-panel {
  display: flex; gap: 14px; align-items: center; margin-bottom: 18px;
  padding: 18px; border: 1px solid var(--line); border-radius: 8px;
  background: #fffdf7; box-shadow: 0 12px 30px rgba(18,59,58,.08);
}
.login-card-h5 {
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(255,253,247,.94);
  backdrop-filter: blur(10px);
}
.login-card-h5 h2 {
  margin: 0 0 6px;
  color: #123b3a;
  font-size: 20px;
}
.brand-mark {
  width: 58px; height: 58px; display: grid; place-items: center;
  background: conic-gradient(from 210deg, var(--green), #2e5966, var(--gold), var(--green));
  color: #fff; border-radius: 8px; font-weight: 800; letter-spacing: 0;
}
h1 { margin: 0 0 8px; font-size: 24px; line-height: 1.2; }
.brand-panel p, .venue-body p, .record-card p { margin: 4px 0; color: #5d6f6b; font-size: 13px; }
.oauth-btn { border-color: var(--green); color: var(--green); font-weight: 700; }
.h5-login-btn {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #fffdf7;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}
.visitor-login-btn {
  margin-top: 8px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 20px rgba(27,127,111,.18);
}
.primary-login-btn {
  min-height: 48px;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b7f6f, #123b3a);
  color: #fff;
  box-shadow: 0 14px 26px rgba(27,127,111,.28);
}
.login-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #edf5f2;
}
.login-mode-switch button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #65736f;
  font-size: 14px;
  font-weight: 900;
}
.login-mode-switch button.active {
  background: #fff;
  color: #123b3a;
  box-shadow: 0 8px 18px rgba(18,59,58,.08);
}
.login-form-clean {
  display: grid;
  gap: 10px;
}
.login-form-clean .van-cell {
  border-radius: 10px;
  background: #f8faf8;
}
.app-admin-link {
  width: fit-content;
  justify-self: center;
  color: #1b7f6f;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.admin-entry {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 14px; padding: 12px 14px; border-radius: 8px;
  background: #123b3a; color: #fff; text-decoration: none;
  box-shadow: 0 10px 22px rgba(18,59,58,.16);
}
.admin-entry span { font-weight: 800; white-space: nowrap; }
.admin-entry b { color: #f2d28d; font-size: 12px; font-weight: 600; text-align: right; }
.quick-roles { position: fixed; left: 0; right: 0; bottom: 36px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0 12px; z-index: 5; }
.quick-roles button { border: 0; border-radius: 8px; padding: 10px 4px; background: var(--ink); color: #fff; font-weight: 700; }
.login-footer { position: fixed; left: 0; right: 0; bottom: 0; min-height: 32px; padding: 7px 12px; background: #fffdf7; border-top: 1px solid var(--line); font-size: 12px; color: #53635f; }
.demo-float {
  position: fixed;
  right: 0;
  top: calc(50% - 46px);
  z-index: 30;
  transform: translateY(-50%);
  width: 42px;
  height: 76px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: #123b3a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(18,59,58,.22);
}
.login-action-float {
  position: fixed;
  right: 0;
  top: calc(50% + 46px);
  z-index: 30;
  transform: translateY(-50%);
  width: 42px;
  height: 76px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: #1b7f6f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(18,59,58,.22);
}
.demo-pop {
  position: fixed;
  right: 48px;
  top: 50%;
  z-index: 31;
  width: min(280px, calc(100vw - 72px));
  transform: translateY(-50%);
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,253,247,.98);
  box-shadow: 0 22px 54px rgba(18,59,58,.2);
}
.login-action-pop {
  position: fixed;
  right: 48px;
  top: calc(50% + 46px);
  z-index: 31;
  width: min(300px, calc(100vw - 72px));
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,253,247,.98);
  box-shadow: 0 22px 54px rgba(18,59,58,.2);
}
.login-action-pop .h5-login-btn {
  margin: 0;
}
.side-admin-entry {
  margin-top: 0;
  border-radius: 10px;
}
.demo-pop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.demo-pop-head b {
  color: #123b3a;
  font-size: 14px;
}
.demo-pop-head button,
.demo-pop > button {
  border: 0;
  background: transparent;
}
.demo-pop-head button {
  color: #1b7f6f;
  font-size: 12px;
  font-weight: 900;
}
.demo-pop > button {
  min-height: 44px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  background: #edf7f3;
  color: #123b3a;
  text-align: left;
  padding: 0 10px;
}
.demo-pop > button span {
  font-size: 13px;
  font-weight: 900;
}
.demo-pop > button em {
  min-width: 0;
  color: #65736f;
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar {
  position: sticky; top: 0; z-index: 3; height: 54px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; background: rgba(255,253,247,.96); border-bottom: 1px solid var(--line);
}
.topbar span { margin-left: 8px; color: var(--green); font-size: 12px; }
.content { padding: 12px 12px 72px; }
.app-shell .van-tabs__wrap,
.app-shell .van-tabs__nav,
.app-shell .van-tabs__line {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
.app-shell > .content > .van-tabs > .van-tabs__content {
  padding-top: 0;
}
.reserve-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 8px;
  background: #fffdf7;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.reserve-title span {
  color: #1b7f6f;
  font-size: 11px;
  font-weight: 900;
}
.reserve-title h2 {
  margin: 3px 0 0;
  font-size: 21px;
  color: #123b3a;
}
.reserve-title button,
.home-add-btn {
  display: grid;
  place-items: center;
  background: #1b7f6f !important;
  color: #fff !important;
  box-shadow: 0 10px 20px rgba(27,127,111,.22) !important;
}
.reserve-title .van-icon,
.home-add-btn .van-icon { font-size: 24px; }
.home-stage { display: grid; gap: 12px; }
.app-home-v2 {
  padding-top: 0;
}
.home-arc-nav {
  position: relative;
  min-height: 88px;
  margin: 0 -12px 0;
  padding: 18px 14px 18px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #fffdf7 0%, #edf7f3 100%);
  border-bottom: 1px solid rgba(27,127,111,.14);
  box-shadow: 0 10px 24px rgba(18,59,58,.08);
}
.home-brand {
  display: grid;
  gap: 4px;
  padding-right: 48px;
}
.home-brand span {
  color: #1b7f6f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}
.home-brand b {
  color: #123b3a;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: .5px;
}
.home-bell {
  position: absolute;
  right: 14px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27,127,111,.14);
  border-radius: 999px;
  background: #fff;
  color: #1b7f6f;
  box-shadow: 0 8px 18px rgba(18,59,58,.08);
}
.home-bell .van-icon { font-size: 20px; }
.home-bell .home-bell-badge {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #c63f55;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.top-user-avatar {
  padding: 2px;
}
.top-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.notice-board {
  display: grid;
  gap: 5px;
  padding: 12px 13px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #dce8e3;
  box-shadow: 0 8px 18px rgba(18,59,58,.05);
}
.notice-board b {
  color: #1b7f6f;
  font-size: 12px;
}
.notice-board button {
  position: relative;
  margin: 0;
  padding-left: 12px;
  border: 0;
  background: transparent;
  color: #1b7f6f;
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice-board button::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #1b7f6f;
}
.app-home-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 12px 4px 8px;
}
.app-home-head span {
  color: #1b7f6f;
  font-size: 13px;
  font-weight: 900;
}
.app-home-head h2 {
  margin: 4px 0 0;
  font-size: 27px;
  line-height: 1;
  color: #123b3a;
}
.app-home-head button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #fffdf7;
  color: #1b7f6f;
  box-shadow: 0 8px 18px rgba(18,59,58,.09);
}
.app-home-head .van-icon { font-size: 22px; }
.app-home-head button b {
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #b2475d;
  color: #fff;
  font-size: 10px;
}
.home-module {
  display: grid;
  gap: 8px;
  padding: 6px 0 12px;
}
.home-db-module {
  gap: 10px;
}
.category-cover {
  min-height: 112px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: 0 12px 24px rgba(18,59,58,.16);
  overflow: hidden;
}
.category-cover h3 {
  margin: 0 0 5px;
  font-size: 20px;
  line-height: 1.15;
  color: #fff;
}
.category-cover p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}
.category-cover button {
  flex: 0 0 auto;
  min-width: 58px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(6px);
}
.empty-state {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  border: 1px dashed rgba(27,127,111,.34);
  border-radius: 14px;
  background: rgba(255,253,247,.9);
  color: #53635f;
  text-align: center;
}
.empty-state .van-icon {
  color: #1b7f6f;
  font-size: 30px;
}
.empty-state b {
  color: #123b3a;
  font-size: 12px;
}
.empty-state p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.empty-state button {
  min-width: 96px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #1b7f6f;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.module-head h3 {
  margin: 0;
  color: #6f7c78;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
}
.module-head h3 small {
  margin-left: 5px;
  color: #8a968f;
  font-size: 12px;
  font-weight: 800;
}
.module-head button {
  border: 0;
  background: transparent;
  color: #aeb8b4;
  font-size: 7px;
  font-weight: 800;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px 10px;
}
.module-grid-two {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 12px;
}
.module-grid-adaptive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 10px;
}
.module-grid-one-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  overflow: hidden;
}
.module-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.rule-panel,
.history-panel,
.related-panel {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #dce8e3;
  border-radius: 8px;
  background: #f8faf8;
}

.rule-panel b,
.history-panel b,
.related-panel b {
  color: #123b3a;
}

.rule-panel p,
.history-panel p {
  margin: 0;
  color: #60716c;
  font-size: 12px;
  line-height: 1.45;
}

.history-panel button {
  border: 1px solid #dce8e3;
  border-radius: 8px;
  background: #fff;
  padding: 9px;
  text-align: left;
  color: #123b3a;
}

.history-panel button b,
.history-panel button span {
  display: block;
}

.history-panel button span {
  margin-top: 3px;
  color: #1b7f6f;
  font-size: 12px;
}

.related-panel > div {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.related-panel button {
  flex: 0 0 auto;
  border: 1px solid #dce8e3;
  border-radius: 999px;
  background: #fff;
  color: #60716c;
  padding: 7px 12px;
  font-size: 12px;
}

.related-panel button.active {
  border-color: #1b7f6f;
  background: #e8f5ef;
  color: #123b3a;
  font-weight: 700;
}

.reserve-inline-panel .van-cell {
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}
.module-grid-adaptive .module-tile {
  min-width: 0;
}
.module-grid-adaptive .module-tile img {
  aspect-ratio: 1.16 / .82;
}
.module-tile {
  width: 100%;
  min-height: 132px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 24px 16px;
  align-items: stretch;
  border: 0;
  padding: 8px 8px 9px;
  border-radius: 10px;
  background: #fffdf7;
  color: #6a706e;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(18,59,58,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.module-tile:active,
.module-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(18,59,58,.12);
}
.module-tile img {
  width: 100%;
  height: 100%;
  min-height: 70px;
  aspect-ratio: 1.55 / 1;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  background: #dfe8e4;
  box-shadow: 0 6px 12px rgba(18,59,58,.08);
}
.module-tile span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.15;
  white-space: normal;
  overflow: hidden;
  text-align: center;
}
.module-tile small {
  display: block;
  min-width: 0;
  color: #8a968f;
  font-size: 8px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-big-tile img {
  aspect-ratio: 1.62 / 1;
}
.home-big-tile {
  min-height: 154px;
}
.module-grid-adaptive .module-tile {
  min-height: 132px;
  grid-template-rows: minmax(0, 1fr) 24px 14px;
}
.reserve-menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.reserve-menu-card {
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: end;
  grid-template-rows: 1fr auto auto;
  gap: 4px;
  overflow: hidden;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: #123b3a;
  color: #fff;
  text-align: left;
  box-shadow: 0 14px 26px rgba(18,59,58,.18);
}
.reserve-menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,26,28,.08) 0%, rgba(6,26,28,.5) 48%, rgba(6,26,28,.88) 100%),
    linear-gradient(135deg, rgba(27,127,111,.45), rgba(214,164,65,.16));
  pointer-events: none;
}
.reserve-menu-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  opacity: .86;
  filter: saturate(1.08) contrast(1.04);
}
.reserve-menu-card span,
.reserve-menu-card small {
  position: relative;
  z-index: 2;
  min-height: 0;
  margin: 0;
  display: block;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,.32);
}
.reserve-menu-card span {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 1000;
}
.reserve-menu-card small {
  margin-top: 2px;
  color: rgba(255,255,255,.86);
  font-size: 10px;
  line-height: 1.25;
  white-space: normal;
}
.reserve-menu-card:active,
.reserve-menu-card:hover {
  transform: translateY(-2px);
}
@media (min-width: 390px) {
  .module-grid-adaptive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 360px) {
  .reserve-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 520px) {
  .module-grid-two {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .module-grid-adaptive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-banner {
  min-height: 178px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18,59,58,.96) 0%, rgba(18,59,58,.72) 48%, rgba(27,127,111,.64) 100%),
    url("../img/h5-home-library.jpg") center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(18,59,58,.22);
}
.home-banner span { font-size: 11px; color: #f2d28d; font-weight: 800; }
.home-banner h2 { margin: 5px 0; font-size: 24px; line-height: 1.15; }
.home-banner p { margin: 0; color: rgba(255,255,255,.82); font-size: 13px; }
.home-banner b { font-size: 46px; color: #f2d28d; line-height: 1; }
.notice-strip {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #ead8a4;
  border-radius: 8px;
  background: #fff4d8;
  color: #6f5516;
}
.notice-strip b { color: #123b3a; font-size: 13px; }
.notice-strip span { min-width: 0; font-size: 12px; line-height: 1.4; }
.resource-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(72px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.resource-tabs button {
  min-height: 58px;
  border: 1px solid rgba(18,59,58,.12);
  border-radius: 8px;
  background: #fffdf7;
  color: #123b3a;
  box-shadow: 0 8px 18px rgba(18,59,58,.07);
}
.resource-tabs b,
.resource-tabs span { display: block; }
.resource-tabs b { color: #1b7f6f; font-size: 18px; line-height: 1; }
.resource-tabs span { margin-top: 5px; font-size: 11px; font-weight: 800; white-space: nowrap; }
.resource-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.resource-type-card {
  min-height: 184px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 0;
  border-radius: 8px;
  text-align: left;
  color: #fff;
  box-shadow: 0 16px 30px rgba(18,59,58,.18);
  overflow: hidden;
  position: relative;
  background: #123b3a;
}
.resource-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.resource-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%),
    linear-gradient(135deg, rgba(27,127,111,.4), transparent 44%),
    radial-gradient(circle at 82% 12%, rgba(242,210,141,.42), transparent 28%);
  pointer-events: none;
  z-index: 1;
}
.resource-type-card > *:not(.resource-card-bg) { position: relative; z-index: 2; }
.resource-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.resource-card-top i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(8px);
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
}
.resource-card-top span {
  max-width: 76px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}
.resource-type-card h3 { margin: 0; font-size: 19px; line-height: 1.16; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.34); }
.resource-type-card p { margin: 8px 0 0; color: rgba(255,255,255,.86); font-size: 12px; line-height: 1.4; }
.resource-type-card em {
  display: inline-flex;
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  font-style: normal;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 900;
}
.category-card {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18,59,58,.12);
  border-radius: 8px;
  text-align: left;
  background: #fffdf7;
  box-shadow: 0 12px 26px rgba(18,59,58,.08);
}
.category-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.category-card h3 { margin: 0; font-size: 17px; color: var(--ink); }
.category-card p { margin: 6px 0; color: #5d6f6b; font-size: 12px; line-height: 1.35; }
.category-card span { color: var(--green); font-size: 12px; font-weight: 800; }
.tone-green { background: #1b7f6f; }
.tone-blue { background: #2878d8; }
.tone-red { background: #b2475d; }
.tone-gold { background: #d6a441; }
.tone-cyan { background: #238a9b; }
.resource-type-card.tone-green::before { background: linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%), linear-gradient(135deg, rgba(27,127,111,.52), transparent 46%), radial-gradient(circle at 82% 12%, rgba(242,210,141,.42), transparent 28%); }
.resource-type-card.tone-blue::before { background: linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%), linear-gradient(135deg, rgba(40,120,216,.5), transparent 46%), radial-gradient(circle at 82% 12%, rgba(242,210,141,.36), transparent 28%); }
.resource-type-card.tone-red::before { background: linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%), linear-gradient(135deg, rgba(178,71,93,.5), transparent 46%), radial-gradient(circle at 82% 12%, rgba(242,210,141,.36), transparent 28%); }
.resource-type-card.tone-gold::before { background: linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%), linear-gradient(135deg, rgba(214,164,65,.48), transparent 46%), radial-gradient(circle at 82% 12%, rgba(255,255,255,.32), transparent 28%); }
.resource-type-card.tone-cyan::before { background: linear-gradient(180deg, rgba(5,20,24,.12) 0%, rgba(5,20,24,.62) 52%, rgba(5,20,24,.93) 100%), linear-gradient(135deg, rgba(35,138,155,.5), transparent 46%), radial-gradient(circle at 82% 12%, rgba(242,210,141,.34), transparent 28%); }
.category-detail { display: grid; gap: 10px; }
.detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
  background: #123b3a;
  color: #fff;
}
.detail-head button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #f2d28d;
  color: #123b3a;
  font-size: 28px;
  line-height: 1;
}
.detail-head h2 { margin: 0; font-size: 20px; }
.detail-head p { margin: 4px 0 0; color: rgba(255,255,255,.78); font-size: 12px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.project-meta span { border-radius: 999px; background: #edf5f2; color: #1b7f6f; padding: 5px 8px; font-size: 12px; font-weight: 700; }
.filter-row, .admin-actions, .checkin-panel, .reserve-sheet { padding: 12px; background: #fffdf7; border-radius: 8px; border: 1px solid var(--line); margin-bottom: 12px; }
.study-seat-booking {
  display: grid;
  gap: 12px;
}
.study-picker-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffdf7, #f2faf6);
  box-shadow: 0 10px 22px rgba(18,59,58,.07);
}
.study-picker-card h3 {
  margin: 0 0 10px;
  color: #123b3a;
  font-size: 17px;
}
.study-picker-card p {
  margin: -4px 0 10px;
  color: #65736f;
  font-size: 12px;
  line-height: 1.45;
}
.study-seat-panel {
  margin-top: 0;
  border-radius: 10px;
}
.seat-map-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: #123b3a;
}
.seat-map-title b {
  font-size: 15px;
}
.seat-map-title span {
  color: #65736f;
  font-size: 11px;
  text-align: right;
}
.study-seat-submit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #dce8e3;
}
.study-seat-submit span {
  min-width: 0;
  color: #123b3a;
  font-size: 13px;
  font-weight: 900;
}
.venue-card, .record-card {
  overflow: hidden; margin: 12px 0; background: #fffdf7; border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18,59,58,.07);
}
.venue-card img { width: 100%; height: 138px; object-fit: cover; display: block; background: #dfe9e5; }
.venue-body, .record-card { padding: 12px; }
.venue-head, .record-card > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.venue-head h2 { margin: 0; font-size: 18px; }
.slot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 12px 0; }
.slot-grid button {
  min-height: 54px; border: 1px solid var(--line); border-radius: 8px; background: #f8faf8; color: var(--ink);
}
.slot-grid button.active { border-color: var(--gold); background: #fff4d8; }
.slot-grid b, .slot-grid span { display: block; }
.slot-grid span { font-size: 12px; color: #6d7c77; }
.pin { color: var(--rose); font-size: 18px; letter-spacing: 1px; }
.reserve-sheet { margin: 0; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
.reserve-sheet h3 { margin: 4px 0 14px; }
.study-confirm-card {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #dce8e3;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4fbf8, #fff9e8);
}
.study-confirm-card b {
  color: #123b3a;
  font-size: 16px;
}
.study-confirm-card span {
  color: #1b7f6f;
  font-size: 15px;
  font-weight: 900;
}
.study-confirm-card small {
  color: #66756f;
  font-size: 12px;
}
.seat-panel { margin: 12px 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg,#f8faf8,#eef7f3); }
.seat-legend { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; font-size: 12px; color: #53635f; }
.seat-legend span { display: inline-flex; align-items: center; gap: 5px; }
.seat-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 10px; }
.seat-stats span { border: 1px solid #dce8e3; border-radius: 8px; background: #fff; color: #123b3a; padding: 7px 4px; text-align: center; font-size: 12px; font-weight: 800; }
.seat-screen { height: 30px; display: grid; place-items: center; margin: 4px 18px 14px; border-radius: 0 0 99px 99px; background: linear-gradient(90deg,#dbe7e2,#ffffff,#dbe7e2); color: #53635f; font-size: 12px; font-weight: 800; box-shadow: inset 0 -2px 0 rgba(27,127,111,.18); }
.reserve-slot-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 10px 0; }
.reserve-slot-picker button { min-height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }
.reserve-slot-picker button.active { border-color: #d6a441; background: #fff4d8; box-shadow: 0 8px 16px rgba(214,164,65,.16); }
.reserve-slot-picker b,
.reserve-slot-picker span { display: block; }
.reserve-slot-picker span { color: #6d7c77; font-size: 11px; margin-top: 2px; }
.reserve-slot-picker small {
  display: block;
  margin-top: 3px;
  color: #9b6a13;
  font-size: 10px;
  font-weight: 800;
}
.slot-card.slot-公益时段 { border-color: #b9e3d3; background: #f3fbf6; }
.slot-card.slot-教学时段 { border-color: #b8d5ef; background: #f2f8ff; }
.slot-card.slot-三方运营时段 { border-color: #efd69d; background: #fff8e8; }
.slot-detail-line {
  margin: 4px 0 10px;
  color: #53635f;
  font-size: 12px;
  line-height: 1.45;
}
.event-type-row {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #dce8e3;
  border-radius: 8px;
  background: #f8fbf8;
}
.event-panel {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #dce8e3;
  border-radius: 8px;
  background: #fff8e8;
}
.event-panel .van-checkbox {
  color: #123b3a;
  font-size: 13px;
}
.event-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce8e3;
}
.event-switch-row span {
  color: #123b3a;
  font-size: 13px;
  font-weight: 800;
}
.cinema-seat-map { display: grid; gap: 8px; overflow-x: auto; padding: 2px 0 4px; }
.cinema-row { display: grid; grid-template-columns: 30px max-content; gap: 8px; align-items: center; }
.row-label { width: 26px; height: 30px; display: grid; place-items: center; border-radius: 7px; background: #aeb3b7; color: #fff; font-size: 13px; }
.cinema-row-seats { display: grid; gap: 7px; }
.canvas-seat-cell { width: 30px; height: 30px; border: 0; padding: 0; background: transparent; }
.canvas-seat-cell canvas { display: block; width: 30px; height: 30px; }
.canvas-seat-cell.selected { filter: drop-shadow(0 5px 7px rgba(40,120,216,.28)); }
.seat-map { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; }
.seat {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}
.seat b { display: block; font-size: 12px; line-height: 1.2; }
.seat span { display: block; font-size: 10px; opacity: .86; margin-top: 3px; }
i.seat { display: inline-block; width: 14px; height: 14px; min-height: 14px; border-radius: 4px; }
.seat.available { background: #20a66a; }
.seat.used { background: #d94b4b; opacity: .95; cursor: not-allowed; }
.seat.locked { background: #7b8794; opacity: .95; }
.seat.selected { background: #2878d8; box-shadow: 0 0 0 3px rgba(40,120,216,.18), 0 10px 18px rgba(40,120,216,.24); }
.checkin-hints { display: grid; gap: 8px; margin-bottom: 12px; }
.checkin-hints button { border: 1px solid #dce8e3; border-radius: 8px; background: linear-gradient(135deg,#ffffff,#ecf7f3); padding: 10px; text-align: left; color: #123b3a; }
.checkin-hints b, .checkin-hints span { display: block; }
.checkin-hints span { color: #1b7f6f; font-size: 12px; margin-top: 3px; }
.mine-hero {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18,59,58,.94), rgba(27,127,111,.82)),
    #123b3a;
  color: #fff;
  box-shadow: 0 14px 28px rgba(18,59,58,.16);
}
.mine-hero .avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f2d28d;
  color: #123b3a;
  font-size: 24px;
  font-weight: 1000;
  overflow: hidden;
}
.mine-hero .avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.profile-avatar-preview {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dce8e3;
  border-radius: 10px;
  background: #f8fbf8;
}
.profile-avatar-preview img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
}
.profile-avatar-preview span {
  color: #53635f;
  font-size: 12px;
  font-weight: 800;
}
.profile-static-info {
  display: grid;
  gap: 7px;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f7faf8;
  border: 1px solid #dce8e3;
}
.profile-static-info span {
  color: #53635f;
  font-size: 12px;
}
.scan-box {
  margin: 10px 0;
}
.scan-box video {
  width: 100%;
  max-height: 240px;
  border-radius: 8px;
  background: #101820;
  object-fit: cover;
}
.scan-box p {
  margin: 6px 0 0;
  color: #53635f;
  font-size: 13px;
}
.mine-hero h2 { margin: 0 0 5px; font-size: 19px; }
.mine-hero p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; }
.mine-hero button {
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
}
.mine-menu {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.mine-menu button {
  min-height: 48px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  color: #123b3a;
  text-align: left;
  padding: 0 12px;
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.mine-menu .van-icon { color: #1b7f6f; font-size: 20px; }
.mine-menu span { font-weight: 900; }
.mine-menu b { color: #d6a441; font-size: 12px; }
.mine-page,
.mine-sub-page {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 12px;
  pointer-events: auto;
}
.mine-menu-list {
  display: grid;
  padding: 0 12px;
  border-radius: 10px;
  background: #fffdf7;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.mine-menu-list button {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  min-height: 56px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid #e6ece8;
  background: transparent;
  color: #123b3a;
  text-align: left;
  padding: 0;
}
.mine-menu-list button:last-child {
  border-bottom: 0;
}
.mine-menu-list .van-icon {
  color: #1b7f6f;
  font-size: 20px;
}
.mine-menu-list span {
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
}
.mine-menu-list b {
  color: #9a8b63;
  font-size: 12px;
}
.mine-sub-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}
.mine-sub-head button {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  color: #1b7f6f;
  font-weight: 900;
}
.mine-sub-head h2 {
  margin: 0 0 4px;
  color: #123b3a;
  font-size: 20px;
}
.mine-sub-head p {
  margin: 0;
  color: #667570;
  font-size: 12px;
}
.mine-checkin h3 { margin: 0 0 10px; font-size: 16px; }
.message-list { display: grid; gap: 11px; }
.info-head {
  padding: 14px;
  border-radius: 8px;
  background: #fffdf7;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.info-head h2 { margin: 0 0 5px; font-size: 21px; color: #123b3a; }
.info-head p { margin: 0; color: #5d6f6b; font-size: 12px; }
.message-list-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.message-list-head .head-main { min-width: 0; }
.message-list-head h2 { margin: 0 0 4px; }
.message-list-head p { margin: 0; }
.info-head-refresh { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 4px; padding: 7px 12px; border: 1px solid rgba(27,127,111,.18); border-radius: 999px; background: #edf7f3; color: #1b7f6f; font-size: 12px; font-weight: 700; }
.info-head-refresh .van-icon { font-size: 15px; }
.message-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: 0 8px 18px rgba(18,59,58,.06);
}
.message-card img {
  width: 104px;
  height: 82px;
  object-fit: cover;
  border-radius: 7px;
  background: #dfe8e4;
}
.message-card span { display: block; margin-bottom: 3px; color: #1b7f6f; font-size: 11px; font-weight: 900; }
.message-card b {
  display: -webkit-box;
  color: #123b3a;
  font-size: 14px;
  line-height: 1.28;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.message-card p {
  display: -webkit-box;
  margin: 6px 0 0;
  color: #5d6f6b;
  font-size: 12px;
  line-height: 1.35;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.message-card em {
  display: block;
  margin-top: 6px;
  color: #9a8b63;
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.message-card em i { font-style: normal; }
.message-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
.message-meta small { color: #9aa8a5; font-size: 11px; }
.message-category-tag { margin-right: 2px; }
.message-category-tag .van-icon { margin-right: 2px; }
.message-top-badge { display: inline-flex; align-items: center; gap: 2px; margin: 0; color: #c63f55; font-size: 11px; font-style: normal; font-weight: 900; }
.message-top-badge .van-icon { font-size: 12px; }
.message-title { display: block; }
/* 模板差异化：notice 默认，open 高亮，alert 告警红 */
.message-card.template-open { border-left: 4px solid #1b7f6f; }
.message-card.template-alert { border-left: 4px solid #c63f55; background: #fff7f6; }
.message-card.template-alert .message-meta small { color: #c63f55; }
.message-card.template-notice { border-left: 4px solid #4a90d9; }
.message-topbar { position: relative; }
.message-topbar .home-brand { flex: 1; padding-right: 0; }
.message-back {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(27,127,111,.14);
  border-radius: 999px;
  background: #fff;
  color: #1b7f6f;
  box-shadow: 0 8px 18px rgba(18,59,58,.08);
}
.message-back .van-icon { font-size: 20px; }
.message-page-content { padding-top: 16px; }
.info-detail-popup .van-popup { max-height: 88vh; }
.info-detail {
  max-height: 88vh;
  overflow-y: auto;
  background: #fffdf7;
}
.info-detail > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #dfe8e4;
}
.info-detail-body { padding: 16px; }
.info-detail-body span {
  color: #1b7f6f;
  font-size: 12px;
  font-weight: 900;
}
.info-detail-body h3 {
  margin: 8px 0 8px;
  color: #123b3a;
  font-size: 20px;
  line-height: 1.25;
}
.info-publisher {
  margin: 0 0 10px;
  color: #9a8b63;
  font-size: 12px;
}
.info-summary {
  margin: 0 0 12px;
  padding: 10px;
  border-radius: 8px;
  background: #eef7f3;
  color: #315a54;
  font-size: 13px;
  line-height: 1.55;
}
.info-content {
  margin-bottom: 16px;
  color: #314844;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-line;
}
.member-panel { margin: 12px 0; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #f8faf8; }
.member-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.member-head span { color: var(--green); font-size: 12px; font-weight: 700; }
.member-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.member-list span { border-radius: 999px; background: #edf5f2; color: #1b7f6f; padding: 6px 9px; font-size: 12px; }
.admin-actions { display: grid; gap: 8px; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 12px 0; }
.stats-grid div { min-height: 86px; border-radius: 8px; background: var(--ink); color: #fff; display: grid; place-items: center; align-content: center; }
.stats-grid b { font-size: 24px; color: var(--gold); }
.stats-grid span { font-size: 12px; }
.bar { display: grid; grid-template-columns: 92px 1fr 34px; gap: 8px; align-items: center; margin: 12px 0; }
.bar i { height: 12px; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--gold)); }
.van-button--primary { background: var(--green); border-color: var(--green); }
.van-tabbar {
  left: 50% !important;
  right: auto !important;
  width: min(100%, 430px) !important;
  transform: translateX(-50%);
  height: 62px;
  border-top: 1px solid var(--line);
  background: rgba(255,253,247,.98);
}
.van-tabbar-item { position: relative; color: #65736f; }
.van-tabbar-item__text { font-size: 12px; font-weight: 800; }
.tabbar-reserve .van-tabbar-item__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-top: -20px;
  border-radius: 999px;
  background: #1b7f6f;
  color: #fff;
  box-shadow: 0 12px 24px rgba(27,127,111,.28);
}
.tabbar-reserve .van-tabbar-item__icon .van-icon { font-size: 27px; }
.tabbar-reserve .van-tabbar-item__text {
  margin-top: 2px;
  color: #1b7f6f;
  font-weight: 1000;
}
.tab-dot {
  position: absolute;
  top: -18px;
  right: -14px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #b2475d;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  line-height: 1;
}
@media (min-width: 760px) {
  #app { max-width: 430px; min-height: 100vh; margin: 0 auto; background: rgba(255,255,255,.44); }
}
