/* ==========================================================================
   项目路演展示站 —— 全站样式
   配色参考截图：米黄底 + 金棕主色，移动端底部 tabbar，桌面端顶部导航
   ========================================================================== */

:root {
  /* 明确声明只有浅色配色。不写的话部分手机浏览器（UC/夸克/QQ 等）
     会强制套用深色模式，把金棕配色翻成黑底灰字 */
  color-scheme: light;

  --gold: #c8a15a;
  --gold-dark: #a8813c;
  --gold-soft: #f7edd9;
  --bg: #f5f0e6;
  --card: #ffffff;
  --ink: #2c2823;
  --ink-2: #5a534a;
  --muted: #938b7c;
  --line: #e9e1d1;
  --radius: 14px;
  --shadow: 0 2px 14px rgba(120, 96, 48, .08);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.35; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; }

/* ---------------------------------------------------------------- 登录页 */

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(135deg, #f3e4c6, #e2c489 55%, #c8a15a);
}

.login-box {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(120, 96, 48, .22);
  text-align: center;
}

.login-box__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.login-box__mark { font-size: 22px; }
.login-box__brand + form { margin-top: 22px; }
.login-box__hint { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.7; }
.login-box__hint--warn { color: #a8813c; background: var(--gold-soft); padding: 12px 14px; border-radius: 8px; text-align: left; }
.login-box__hint code { background: #f0eade; padding: 1px 6px; border-radius: 4px; }

.login-box__input {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  margin-bottom: 10px;
}

.login-box__input:focus { border-color: var(--gold); }
.login-box__error { color: #c2705f; font-size: 13px; margin-bottom: 12px; }

/* ---------------------------------------------------------------- 顶栏 */

.topbar {
  background: linear-gradient(135deg, #e2c489, var(--gold) 55%, #b98f45);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 12px rgba(120, 96, 48, .18);
}

.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.brand__mark { font-size: 22px; opacity: .9; }
.brand__name { font-size: 20px; font-weight: 700; letter-spacing: 2px; }

.searchbar {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .95);
  border-radius: 999px;
  padding: 5px 6px 5px 14px;
}

.searchbar__icon { width: 17px; height: 17px; color: var(--muted); flex-shrink: 0; }

.searchbar input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}

.searchbar input::placeholder { color: #b3aa99; }

.searchbar button {
  border: 0;
  background: var(--gold-dark);
  color: #fff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
}

.searchbar button:hover { background: #916d2f; }

.topnav { display: flex; gap: 22px; font-size: 15px; }
.topnav a { padding: 4px 0; border-bottom: 2px solid transparent; opacity: .85; }
.topnav a:hover { opacity: 1; }
.topnav a.is-active { opacity: 1; font-weight: 600; border-bottom-color: #fff; }

.topnav__user {
  opacity: .9;
  font-size: 13.5px;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

/* ------------------------------------------------------- 页面容器 / 通用 */

.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 18px 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .15s;
}

.btn svg { width: 17px; height: 17px; }
.btn--primary { background: linear-gradient(135deg, #dcb977, var(--gold-dark)); color: #fff; }
.btn--primary:hover { filter: brightness(1.06); }
.btn--ghost { background: #fff; color: var(--gold-dark); border-color: var(--gold); }
.btn--ghost:hover { background: var(--gold-soft); }
.btn--block { display: flex; width: 100%; margin-top: 8px; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; }

.tag {
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.tags--on-dark .tag { background: rgba(255, 255, 255, .28); color: #fff; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gold-dark);
  white-space: nowrap;
}

.badge--solid {
  background: rgba(255, 255, 255, .3);
  color: #fff;
  padding: 3px 12px;
  border-radius: 999px;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }

.chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 999px;
  transition: .15s;
}

.chip:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------------------------------------------------------------- 首页 */

.hero {
  background: linear-gradient(135deg, #fdf7ec, #f3e4c6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.hero h1 { font-size: 26px; margin-bottom: 10px; }
.hero p { color: var(--ink-2); max-width: 560px; }
.hero__actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }

.hero__stats { display: flex; gap: 28px; }
.hero__stats div { text-align: center; }
.hero__stats strong { display: block; font-size: 30px; color: var(--gold-dark); }
.hero__stats span { font-size: 13px; color: var(--muted); }

.block { margin-bottom: 30px; }

.block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.block__head h2 { font-size: 19px; position: relative; padding-left: 12px; }

.block__head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
}

.more { font-size: 13px; color: var(--muted); }
.more:hover { color: var(--gold-dark); }

/* -------------------------------------------------------------- 项目卡片 */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: .18s;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(120, 96, 48, .15);
  border-color: #eddfc0;
}

.card__bar { height: 4px; }
.card__body { padding: 16px 18px 14px; display: flex; flex-direction: column; flex: 1; }

.card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 9px;
  border-bottom: 1px dashed var(--line);
}

.card__title {
  font-size: 17px;
  margin: 12px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__summary {
  color: var(--ink-2);
  font-size: 13.5px;
  margin-top: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px dashed var(--line);
  gap: 10px;
}

.stage { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--gold-dark); }
.stage svg { width: 15px; height: 15px; }

/* -------------------------------------------------------------- 列表页 */

/* 筛选条：领域 188 种、城市 156 种，用下拉框而不是标签墙 */
.finder {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.finder__item { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.finder__item--grow { flex: 1; min-width: 200px; }
.finder__item > span { font-size: 12.5px; color: var(--muted); }

/* :not(checkbox) 很关键：多选面板在 .finder 内部，
   不排除的话这些样式会套到面板里的复选框上，把它们撑大 */
.finder select,
.finder input:not([type="checkbox"]) {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  outline: 0;
  max-width: 100%;
}

.finder select { min-width: 190px; cursor: pointer; }
.finder select:focus,
.finder input:not([type="checkbox"]):focus { border-color: var(--gold); }
.finder__actions { display: flex; gap: 8px; }

/* ---- 多选下拉 ---- */

.ms { position: relative; display: flex; flex-direction: column; gap: 5px; }
.ms__label { font-size: 12.5px; color: var(--muted); }

.ms__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 200px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  cursor: pointer;
  text-align: left;
}

.ms__toggle svg { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }
.ms__toggle:hover { border-color: var(--gold); }
.ms.is-picked .ms__toggle { border-color: var(--gold); color: var(--gold-dark); font-weight: 600; }

.ms__panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  margin-top: 4px;
  width: 290px;
  max-width: 88vw;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(120, 96, 48, .18);
  padding: 10px;
}

.ms__search {
  width: 100%;
  font: inherit;
  font-size: 13.5px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
}

.ms__search:focus { border-color: var(--gold); }

.ms__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 2px 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 5px;
}

.ms__tools button {
  font: inherit;
  font-size: 12.5px;
  color: var(--gold-dark);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.ms__tools button:hover { text-decoration: underline; }
.ms__count { font-size: 12.5px; color: var(--muted); }

.ms__list { max-height: 260px; overflow-y: auto; }

.ms__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13.5px;
}

.ms__item:hover { background: #faf5ea; }
.ms__item input { accent-color: var(--gold-dark); flex-shrink: 0; cursor: pointer; }
.ms__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ms__num { flex-shrink: 0; font-size: 12px; color: var(--muted); }
.ms__empty { padding: 14px 8px; text-align: center; color: var(--muted); font-size: 13px; }

.result-line { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.result-line__page { margin-left: 10px; }

/* 项目列表表格 */
.table-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.list-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.list-table th {
  background: linear-gradient(135deg, #e2c489, var(--gold) 60%, #b98f45);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 11px 14px;
  white-space: nowrap;
  font-size: 13.5px;
}

.list-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.list-table tbody tr { cursor: pointer; transition: background .12s; }
.list-table tbody tr:hover { background: #fdfaf3; }
.list-table tbody tr:last-child td { border-bottom: 0; }

.list-table .col-no { color: var(--muted); font-size: 13px; white-space: nowrap; width: 68px; }
.list-table .col-company { width: 21%; color: var(--ink-2); }
.list-table .col-title { width: 30%; }
.list-table .col-title a { color: var(--ink); font-weight: 600; }
.list-table .col-title a:hover { color: var(--gold-dark); }
.list-table .col-field { width: 21%; }
.list-table .col-field .tag { margin: 0 4px 4px 0; display: inline-block; }
.list-table .col-leader { white-space: nowrap; color: var(--ink-2); }
.list-table .col-city { white-space: nowrap; color: var(--ink-2); }
.result-line strong { color: var(--gold-dark); font-size: 16px; }
.result-line__q { margin-left: 12px; color: var(--ink-2); }
.result-line__q a { color: var(--gold-dark); margin-left: 4px; }

.pager { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }

.pager a, .pager span {
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
}

.pager a:hover { border-color: var(--gold); color: var(--gold-dark); }
.pager .is-cur { background: var(--gold); border-color: var(--gold); color: #fff; }
.pager .is-off { color: #c9c2b4; }
.pager .is-gap { border: 0; background: transparent; color: var(--muted); padding: 0 2px; min-width: 20px; }

/* 详情页里的同领域项目列表 */
.mini-list li { border-bottom: 1px dashed var(--line); }
.mini-list li:last-child { border-bottom: 0; }
.mini-list a { display: flex; align-items: baseline; gap: 10px; padding: 10px 2px; }
.mini-list a:hover .mini-list__title { color: var(--gold-dark); }
.mini-list__no { flex-shrink: 0; font-size: 12.5px; color: var(--muted); min-width: 46px; }
.mini-list__title { flex: 1; font-size: 14.5px; }
.mini-list__meta { flex-shrink: 0; font-size: 12.5px; color: var(--muted); max-width: 40%; text-align: right; }

.kv--wide .tag { margin: 0 5px 4px 0; display: inline-block; }
.banner__company { font-size: 16px; font-weight: 600; }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty p { margin-bottom: 18px; }
.empty--big { padding: 90px 20px; }
.empty__code { font-size: 68px; font-weight: 700; color: #e4d6b6; line-height: 1; margin-bottom: 12px; }

/* -------------------------------------------------------------- 详情页 */

.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a:hover { color: var(--gold-dark); }
.crumbs span { margin: 0 6px; }
.crumbs em { font-style: normal; color: var(--ink-2); }

.banner {
  border-radius: var(--radius);
  padding: 26px 30px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.banner__meta { display: flex; justify-content: space-between; font-size: 13.5px; opacity: .9; margin-bottom: 10px; }
.banner h1 { font-size: 25px; margin-bottom: 14px; }
.banner__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .3);
  padding-top: 14px;
}


.layout { display: grid; grid-template-columns: 1fr 320px; gap: 18px; align-items: start; }

/* grid 子项默认 min-width:auto，会被内部宽表格顶开导致整页横向滚动，必须归零 */
.layout__main { min-width: 0; }

.layout__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 84px;
  min-width: 0;
}

.panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.panel__title {
  font-size: 18px;
  margin-bottom: 16px;
  padding-left: 12px;
  position: relative;
}

.panel__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
}

.side-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.side-card h3 { font-size: 15.5px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.side-card--deck { background: linear-gradient(135deg, #fdf8ee, #f6e9cf); border: 1px solid #eddfc0; }
.side-card__empty { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.side-card__materials { font-size: 13.5px; color: var(--ink-2); display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }

.kv div { display: flex; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.kv div:last-child { border-bottom: 0; }
.kv dt { flex-shrink: 0; width: 78px; color: var(--muted); }
.kv dd { flex: 1; color: var(--ink-2); word-break: break-word; }

/* 详情页那张表标签更长（「企业名称/团队名称」），要宽一点才不折行。
   注意必须写在 .kv dt 之后：两条选择器优先级相同，靠顺序决定胜负 */
.kv--wide dt { width: 132px; }

/* ---------------------------------------------------------------- 页脚 */

.footer {
  text-align: center;
  padding: 26px 18px 34px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: #f1ebdf;
}


/* 移动端底部导航（桌面隐藏） */
.tabbar { display: none; }

/* ------------------------------------------------------------- 响应式 */

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .layout__side { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 14.5px; padding-bottom: 62px; }

  .topbar__inner { padding: 10px 14px; gap: 10px; }
  .brand__name { font-size: 18px; }
  .searchbar { order: 3; width: 100%; flex-basis: 100%; }
  .topnav { display: none; }

  .page { padding: 16px 14px 24px; }

  .hero { padding: 22px 20px; }
  .hero h1 { font-size: 21px; }
  .hero__stats { width: 100%; justify-content: space-around; gap: 10px; }
  .hero__stats strong { font-size: 24px; }

  .grid { grid-template-columns: 1fr; }
  .banner { padding: 20px 18px; }
  .banner h1 { font-size: 20px; }
  .panel { padding: 18px 16px; }
  /* 筛选条竖排，控件占满宽度。
     同样要排除复选框——多选面板在 .finder 内部，
     否则面板里的复选框会被撑到整行宽，把选项文字挤出面板外 */
  .finder { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
  .finder select,
  .finder input:not([type="checkbox"]) { width: 100%; min-width: 0; }

  /* 面板本身在手机上占满可用宽度 */
  .ms__panel { width: 100%; max-width: none; }
  .finder__actions .btn { flex: 1; }

  /* 表格转成一行一卡：表头隐藏，每格前面用 data-label 当标题 */
  .table-card { background: transparent; box-shadow: none; border-radius: 0; }
  .list-table, .list-table tbody, .list-table tr, .list-table td { display: block; width: auto; }
  .list-table thead { display: none; }

  .list-table tr {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    padding: 6px 14px 10px;
  }

  /* 每行变成「标签 | 内容」两栏。
     用 grid 而不是 flex：内容栏写成 minmax(0,1fr)，宽度是确定的；
     换成 flex 的话纯文本会被压到最小宽度，中文就是一字一行 */
  .list-table td {
    border-bottom: 0;
    padding: 5px 0;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
  }

  /* ★ 必须把桌面端那套列宽清掉。
     .col-company 是 width:21%，在手机上会把整格压到 80 来像素，
     标签占掉 74px 后内容只剩几个像素，中文就变成一字一行 */
  .list-table .col-no,
  .list-table .col-company,
  .list-table .col-title,
  .list-table .col-field,
  .list-table .col-leader,
  .list-table .col-city {
    width: auto;
    white-space: normal;
  }

  .list-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12.5px;
  }

  .list-table .cell {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .list-table .col-title a { font-size: 15px; }

  /* 详情页信息表：手机上标签占一行、值占一行，
     否则「企业名称/团队名称」这种长标签会把值挤得没地方 */
  .kv--wide div { flex-direction: column; gap: 3px; padding: 9px 0; }
  .kv--wide dt { width: auto; font-size: 12.5px; }
  .kv--wide dd { font-size: 14.5px; }
  .footer { padding-bottom: 24px; }

  /* 底部 tabbar */
  .tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -2px 10px rgba(120, 96, 48, .08);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .tabbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 0 6px;
    font-size: 11px;
    color: var(--muted);
  }

  .tabbar svg { width: 21px; height: 21px; }
  .tabbar a.is-active { color: var(--gold-dark); }
}
