:root {
  --bg: #120c0a;
  --bg-elev: #1c1310;
  --bg-card: #22160f;
  --bg-card-2: #2a1a12;
  --border: #3a2a1c;
  --gold: #d4a548;
  --gold-soft: #e8c674;
  --red: #8f1d1d;
  --red-2: #b0272a;
  --red-grad: linear-gradient(135deg, #b0272a, #6e1414);
  --text: #f1e6d8;
  --text-dim: #b9a892;
  --text-faint: #7d6e5c;
  --success: #3fae5a;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 4px 14px rgba(180, 180, 180, 0.10), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

/* every card-like surface gets a consistent elevation shadow */
.quick-card, .announce-card, .event-card, .info-card, .cat-card, .type-card,
.form-card, .receipt, .order-card, .menu-list, .pay-method {
  box-shadow: var(--shadow-card);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: radial-gradient(ellipse at top, #1d130f 0%, #0c0807 70%);
}

.app-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  position: relative;
  padding-bottom: calc(64px + var(--safe-bottom));
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- status/header bar ---------- */

.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: calc(10px + var(--safe-top)) 16px 10px;
  background: rgba(18, 12, 10, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  letter-spacing: 0.5px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  cursor: pointer;
}
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.icon-btn.back svg { width: 16px; height: 16px; }

.page-body { padding: 14px 16px 24px; }

/* ---------- home hero ---------- */

.hero {
  margin: 0 0 16px;
  padding: 18px 16px 20px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(212,165,72,0.16), transparent 55%),
    linear-gradient(160deg, #241511 0%, #150d0a 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='%23d4a548' stroke-opacity='0.06' stroke-width='10'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
  pointer-events: none;
}
.hero-eyebrow { color: var(--gold-soft); font-size: 12px; letter-spacing: 2px; }
.hero-title { font-size: 20px; font-weight: 700; margin: 6px 0 4px; color: var(--gold); }
.hero-sub { font-size: 12.5px; color: var(--text-dim); }
.hero-more {
  position: absolute; right: 14px; top: 18px;
  font-size: 11.5px; color: var(--text-faint);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 4px 10px;
}

/* ---------- quick actions (法会报名 / 疏文办理) ---------- */

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.quick-card {
  border-radius: var(--radius);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  border: 1px solid rgba(212,165,72,0.25);
  min-height: 96px;
  justify-content: space-between;
}
.quick-card.primary { background: var(--red-grad); }
.quick-card.secondary { background: linear-gradient(160deg, #241a13, #17110c); }
.quick-card .qc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.14);
  color: var(--gold-soft);
}
.quick-card .qc-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.quick-card .qc-title { font-size: 15px; font-weight: 700; }
.quick-card .qc-sub { font-size: 11px; color: rgba(241,230,216,0.75); }

.feature-strip {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 4px;
}
.feature-strip .fi {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 10.5px; color: var(--text-faint); flex: 1; text-align: center;
}
.feature-strip .fi svg { width: 18px; height: 18px; stroke: var(--gold-soft); fill: none; stroke-width: 1.6; }

.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 4px 0 10px;
}
.section-title h2 { font-size: 15px; margin: 0; font-weight: 700; }
.section-title .link { font-size: 11.5px; color: var(--text-faint); }

/* ---------- announcements ---------- */

.announce-list { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.announce-card {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 12px; cursor: pointer;
}
.announce-card .an-badge {
  flex-shrink: 0; font-size: 10.5px; padding: 3px 8px; border-radius: 20px; font-weight: 600;
  background: rgba(212,165,72,0.14); color: var(--gold-soft); white-space: nowrap;
}
.announce-card .an-body { flex: 1; min-width: 0; }
.announce-card .an-title { font-size: 12.5px; font-weight: 600; margin-bottom: 2px; }
.announce-card .an-text {
  font-size: 11px; color: var(--text-faint); overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.announce-card .an-arrow { color: var(--text-faint); flex-shrink: 0; align-self: center; }
.announce-card .an-icon {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.announce-card .an-icon svg { width: 100%; height: 100%; stroke: var(--gold-soft); fill: none; stroke-width: 1.8; }
.announce-card .an-arrow.an-icon svg { width: 14px; height: 14px; stroke: var(--text-faint); stroke-width: 2.2; cursor: pointer; }

/* ---------- notification bell + list ---------- */

.icon-btn.has-dot { position: relative; }
.icon-btn .dot {
  position: absolute; top: 5px; right: 5px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-2); border: 1.5px solid var(--bg);
}

.notif-item {
  display: flex; gap: 10px; padding: 13px 4px; border-bottom: 1px solid var(--border); cursor: pointer;
}
.notif-item:last-child { border-bottom: none; }
.notif-item .ni-dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; background: var(--gold); }
.notif-item.read .ni-dot { background: transparent; }
.notif-item .ni-body { flex: 1; min-width: 0; }
.notif-item .ni-title { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.notif-item.read .ni-title { color: var(--text-dim); font-weight: 500; }
.notif-item .ni-text { font-size: 11.5px; color: var(--text-faint); line-height: 1.5; }
.notif-item .ni-time { font-size: 10.5px; color: var(--text-faint); margin-top: 4px; }

/* ---------- event cards ---------- */

.event-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
}
.event-card .ec-banner {
  height: 74px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 8px 12px;
}
.event-card .ec-banner .status-pill {
  position: absolute; top: 8px; right: 10px;
  font-size: 10px; padding: 2px 8px; border-radius: 20px;
  background: rgba(0,0,0,0.4); color: var(--gold-soft);
  border: 1px solid rgba(212,165,72,0.4);
}
.event-card .ec-banner .status-pill.ended { color: var(--text-faint); border-color: var(--border); }
.event-card .ec-title {
  color: #fff; font-weight: 700; font-size: 13.5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.event-card .ec-body { padding: 10px 12px 12px; }
.event-card .ec-date { font-size: 11.5px; color: var(--text-dim); margin-bottom: 2px; }
.event-card .ec-tag { font-size: 11px; color: var(--gold-soft); margin-bottom: 10px; }
.event-card .ec-foot { display: flex; align-items: center; justify-content: space-between; }
.event-card .ec-place { font-size: 11px; color: var(--text-faint); }

.btn {
  border: none; cursor: pointer; border-radius: 20px;
  font-size: 12.5px; font-weight: 600; padding: 8px 16px;
  background: var(--red-grad); color: #fff;
}
.btn.gold { background: linear-gradient(135deg, #e0b656, #b6842a); color: #241304; }
.btn.ghost { background: transparent; border: 1px solid var(--border); color: var(--text-dim); }
.btn.block { width: 100%; display: block; text-align: center; padding: 13px; font-size: 14.5px; border-radius: 10px; }
.btn.sm { padding: 6px 12px; font-size: 11.5px; }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

.tabs-row {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.tabs-row .tab-chip {
  flex: 1; text-align: center; padding: 8px 6px; border-radius: 9px;
  font-size: 12.5px; color: var(--text-dim);
  background: var(--bg-card); border: 1px solid var(--border);
  cursor: pointer;
}
.tabs-row .tab-chip.active {
  background: var(--red-grad); color: #fff; border-color: transparent; font-weight: 600;
}

/* ---------- event detail ---------- */

.detail-cover {
  height: 150px; border-radius: var(--radius); overflow: hidden;
  position: relative; margin-bottom: 14px;
  display: flex; align-items: flex-end; padding: 14px;
}
.detail-cover .dc-title { color: #fff; font-size: 19px; font-weight: 700; text-shadow: 0 2px 6px rgba(0,0,0,0.7); }

.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin-bottom: 16px;
  font-size: 12.5px; color: var(--text-dim); line-height: 1.9;
}
.info-card b { color: var(--text); font-weight: 600; }
.info-card .desc { margin-top: 8px; color: var(--text-faint); line-height: 1.7; }

.item-list { margin-bottom: 90px; }
.item-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 4px; border-bottom: 1px solid var(--border);
}
.item-row:last-child { border-bottom: none; }
.checkbox {
  width: 20px; height: 20px; border-radius: 5px;
  border: 1.5px solid var(--gold-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.checkbox.checked { background: var(--gold); border-color: var(--gold); }
.checkbox svg { width: 13px; height: 13px; stroke: #241304; stroke-width: 3; fill: none; opacity: 0; }
.checkbox.checked svg { opacity: 1; }
.item-row .it-name { flex: 1; font-size: 14px; }
.item-row .it-price { font-size: 13px; color: var(--gold-soft); font-weight: 600; }

.stepper { display: flex; align-items: center; gap: 8px; }
.stepper button {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--bg-elev); color: var(--text-dim); font-size: 15px; line-height: 1;
  cursor: pointer;
}
.stepper .qty { min-width: 16px; text-align: center; font-size: 13px; }

.bottom-bar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(64px + var(--safe-bottom));
  width: 100%; max-width: 480px;
  background: rgba(18,12,10,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; z-index: 15;
}
.bottom-bar .total { font-size: 12.5px; color: var(--text-dim); }
.bottom-bar .total b { color: var(--gold-soft); font-size: 15px; }
.bottom-bar .btn { flex-shrink: 0; padding: 11px 26px; border-radius: 24px; font-size: 14px; }

/* ---------- 疏文 categories/types ---------- */

.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; cursor: pointer;
}
.cat-card .cat-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(160deg, #3a2414, #21140c);
  border: 1px solid rgba(212,165,72,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
}
.cat-card .cat-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.cat-card .cat-name { font-size: 13.5px; font-weight: 600; }
.cat-card .cat-desc { font-size: 10.5px; color: var(--text-faint); line-height: 1.4; }

.type-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.type-card .ty-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(160deg, #3a2414, #21140c);
  border: 1px solid rgba(212,165,72,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold-soft);
}
.type-card .ty-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.type-card .ty-main { flex: 1; }
.type-card .ty-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.type-card .ty-desc { font-size: 11px; color: var(--text-faint); line-height: 1.4; }
.type-card .ty-price { font-size: 12.5px; color: var(--gold-soft); font-weight: 600; margin-top: 4px; }
.type-card .add-btn {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--red-grad); color: #fff; font-size: 18px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.type-card .add-btn svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.6; }

/* ---------- forms ---------- */

.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; margin-bottom: 14px;
}
.form-card .fc-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; color: var(--gold-soft); }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 9px; padding: 11px 12px; color: var(--text); font-size: 13.5px;
  font-family: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 1px solid var(--gold); }

.member-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: 9px;
  padding: 10px 12px; margin-bottom: 8px; font-size: 12.5px;
}
.member-row .mr-name { font-weight: 600; }
.member-row .mr-meta { color: var(--text-faint); font-size: 11px; }
.member-row .mr-del { color: var(--red-2); cursor: pointer; font-size: 12px; }

.add-member-btn {
  width: 100%; padding: 11px; border-radius: 9px; border: 1px dashed var(--border);
  background: transparent; color: var(--gold-soft); font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.add-member-btn svg { width: 14px; height: 14px; stroke: var(--gold-soft); fill: none; stroke-width: 2.2; }

/* ---------- confirm order ---------- */

.summary-row {
  display: flex; justify-content: space-between; padding: 7px 0; font-size: 12.5px; color: var(--text-dim);
}
.summary-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-size: 14px; color: var(--text); font-weight: 700; }
.summary-row.total b { color: var(--gold-soft); font-size: 16px; }

.pay-method {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: 9px;
  padding: 12px; margin-bottom: 10px; cursor: pointer;
}
.pay-method.selected { border-color: var(--gold); }
.pay-method .pm-icon {
  width: 30px; height: 30px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card2, #2a1a12); color: var(--gold-soft); font-size: 12px; font-weight: 700;
}
.pay-method .pm-name { flex: 1; font-size: 13px; }
.pay-method .pm-radio {
  width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--text-faint);
  position: relative;
}
.pay-method.selected .pm-radio { border-color: var(--gold); }
.pay-method.selected .pm-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold);
}

/* ---------- payment success ---------- */

.success-wrap { text-align: center; padding: 40px 10px 10px; }
.success-icon {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(63,174,90,0.15); border: 1.5px solid var(--success);
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--success); fill: none; stroke-width: 2.2; }
.success-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.success-sub { font-size: 12.5px; color: var(--text-faint); margin-bottom: 22px; }
.receipt {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; text-align: left; margin-bottom: 20px;
}
.receipt .r-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-dim); padding: 6px 0; }
.receipt .r-row b { color: var(--text); font-weight: 600; }

/* ---------- orders ---------- */

.order-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px; margin-bottom: 12px;
}
.order-card .oc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-card .oc-title { font-size: 13.5px; font-weight: 700; }
.order-card .oc-status { font-size: 11px; padding: 2px 9px; border-radius: 20px; }
.order-card .oc-status.paid { color: var(--success); background: rgba(63,174,90,0.12); }
.order-card .oc-status.pending { color: var(--gold-soft); background: rgba(212,165,72,0.12); }
.order-card .oc-meta { font-size: 11px; color: var(--text-faint); margin-bottom: 10px; }
.order-card .oc-foot { display: flex; justify-content: space-between; align-items: center; }
.order-card .oc-amt { font-size: 14px; color: var(--gold-soft); font-weight: 700; }

.order-filter-row { display: flex; gap: 8px; margin-bottom: 14px; overflow-x: auto; }
.order-filter-row .of-chip {
  flex-shrink: 0; padding: 6px 14px; border-radius: 20px; font-size: 12px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim); cursor: pointer;
}
.order-filter-row .of-chip.active { background: var(--red-grad); color: #fff; border-color: transparent; }

.detail-list-row { display: flex; justify-content: space-between; font-size: 12.5px; padding: 6px 0; color: var(--text-dim); }
.detail-list-row b { color: var(--text); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-faint); }
.empty-state .es-icon { font-size: 38px; margin-bottom: 12px; opacity: 0.5; }

/* ---------- 我的 profile ---------- */

.profile-hero {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 4px 22px;
}
.profile-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red-grad); display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.profile-name { font-size: 16px; font-weight: 700; }
.profile-sub { font-size: 11.5px; color: var(--text-faint); margin-top: 3px; }

.menu-list { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.menu-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 14px;
  border-bottom: 1px solid var(--border); font-size: 13.5px; cursor: pointer;
}
.menu-item:last-child { border-bottom: none; }
.menu-item svg { width: 17px; height: 17px; stroke: var(--gold-soft); fill: none; stroke-width: 1.6; }
.menu-item .mi-arrow { margin-left: auto; color: var(--text-faint); }

.trust-strip { display: flex; justify-content: space-between; margin: 24px 0 6px; gap: 6px; }
.trust-strip .ti { flex: 1; text-align: center; font-size: 10px; color: var(--text-faint); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-strip .ti svg { width: 18px; height: 18px; stroke: var(--gold-soft); fill: none; stroke-width: 1.5; }

/* ---------- tabbar ---------- */

.tabbar {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 0;
  width: 100%; max-width: 480px;
  display: flex; background: rgba(18,12,10,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 6px 4px calc(6px + var(--safe-bottom));
  z-index: 30;
}
.tab-btn {
  flex: 1; background: none; border: none; display: flex; flex-direction: column;
  align-items: center; gap: 3px; padding: 6px 0; color: var(--text-faint); cursor: pointer;
}
.tab-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.tab-btn span { font-size: 10px; }
.tab-btn.active { color: var(--gold-soft); }

.toast {
  position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.85); color: #fff; padding: 10px 18px; border-radius: 8px;
  font-size: 13px; z-index: 100; opacity: 0; pointer-events: none; transition: opacity 0.25s;
  max-width: 80%; text-align: center;
}
.toast.show { opacity: 1; }

@media (min-width: 481px) {
  body { padding: 20px 0; }
  .app-shell { border-radius: 24px; box-shadow: 0 0 0 1px var(--border), 0 30px 80px rgba(0,0,0,0.6); min-height: auto; overflow: hidden; }
  .tabbar, .bottom-bar { border-radius: 0 0 24px 24px; }
}
