:root {
  --bg: #edf4ff;
  --bg-accent: #e9e9ff;
  --card: #f9fbff;
  --muted: #5f6f8f;
  --muted-soft: #7d8cab;
  --text: #1f2a44;
  --accent: #6a7cff;
  --accent-strong: #5a63e8;
  --ghost: #e6ecff;
  --border: #d8e1f2;
  --shadow: 0 16px 40px rgba(78, 96, 168, 0.16);
}

@font-face {
  font-family: "ZCY SC";
  src: url("./public/zcy-sc.woff?v=20260317-web-richfix-4") format("woff");
  font-display: swap;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "PingFang SC", "Heiti SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.56;
}
body {
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 20% 10%, #f2f6ff 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, #e7dbff 0%, transparent 50%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-accent) 100%);
}

.container { max-width: 1150px; margin: 0 auto; padding: 0 16px; }
main.container { padding-top: 12px; }

.hero {
  position: static;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}
.brand { display: flex; gap: 14px; align-items: center; }
.logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #8fc6ff, #7f7bff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

h1 { margin: 0 0 2px; font-weight: 700; font-size: 21px; line-height: 1.3; }
h2 { margin: 0; font-size: 22px; line-height: 1.34; }
h3 { margin: 0; font-size: 17px; line-height: 1.4; }
h4 { margin: 0; font-size: 16px; line-height: 1.45; }
.brand { gap: 10px; }
.muted { color: var(--muted-soft); font-size: 13px; line-height: 1.55; }
.center { text-align: center; }

.nav { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-user-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d5def5;
  background: rgba(255, 255, 255, 0.78);
  color: #506286;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.nav-btn {
  border: 1px solid #c8d6f5;
  background: #dfe9ff;
  padding: 7px 14px;
  min-height: 38px;
  line-height: 1.2;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: #2f3f70;
}
.nav-btn.active {
  background: linear-gradient(135deg, #5e6bff, #6a5cff);
  color: #fff;
  border-color: rgba(104, 116, 230, 0.9);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px auto 24px;
}
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease;
}
.stat-title { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.stat-value { font-size: 20px; font-weight: 700; margin-top: 6px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.panel {
  position: sticky;
  top: 72px;
  align-self: start;
}

.home-hero {
  min-height: 150px;
  display: flex;
  padding: 10px;
}
.home-hero,
.home-actions,
.home-recent {
  margin-bottom: 16px;
}
.home-banner-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.home-banner-track {
  display: flex;
  width: 400%;
  animation: bannerSlide 15s ease-in-out infinite;
}
.home-banner-track img {
  width: 25%;
  flex-shrink: 0;
  height: 260px;
  object-fit: cover;
  display: block;
}

.home-actions h2,
.home-recent h2 {
  margin: 0 0 14px;
  font-size: 21px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.feature-grid.compact {
  padding: 4px 2px;
}
.feature-btn {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 10px;
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow);
}
.feature-btn.icon {
  justify-items: center;
}
.feature-btn.icon small {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--muted);
}
.required-label {
  color: #d05a5a;
  font-weight: 600;
}
.required-label::before {
  content: "* ";
  color: #e64242;
  font-weight: 700;
}
.required-label.filled {
  color: var(--muted);
  font-weight: 500;
}
.required-label.filled::before {
  content: "";
}
.form-status {
  margin-top: 8px;
}
.form-status.success {
  color: #1b8b5a;
}
.form-status.error {
  color: #c35a2d;
}
.home-feature-icon {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
}

.home-recent .card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-recent .result-head {
  margin-bottom: 12px;
}
.home-oppty-hint {
  margin-bottom: 10px;
}
.home-oppty-hint .result-card {
  border-style: dashed;
  border-color: #bdd0ff;
  background: linear-gradient(180deg, #f9fbff, #f2f6ff);
}
.home-login-gate {
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 16px;
}
.home-login-gate-btn {
  min-width: 160px;
}
.home-oppty-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.home-oppty-unlock-hint {
  border-style: dashed;
  border-color: #dbc68b;
  background: linear-gradient(180deg, #fffdf4, #fff7df);
}
.qr-login-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: center;
}
.qr-login-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}
.qr-login-meta {
  display: grid;
  gap: 8px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16, 28, 56, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  width: min(640px, 96vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 28px 80px rgba(30, 46, 93, 0.35);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.modal-head h3 {
  margin: 0;
}
.oppty-license-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page {
  display: grid;
  gap: 18px;
}
.page-head {
  display: grid;
  gap: 8px;
}
.page-head h2 { margin: 0; }
.page-head > p.muted {
  font-size: 12px;
  line-height: 1.55;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-actions {
  display: flex;
  gap: 12px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.page-head .page-actions {
  margin-top: 4px;
}
.disclosure-page {
  display: grid;
  gap: 14px;
}
.disclosure-hero {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.disclosure-hero h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}
.disclosure-content {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
  white-space: normal;
  line-height: 1.8;
  color: #243252;
  max-height: 72vh;
  overflow: auto;
}
.disclosure-content.is-text {
  white-space: pre-wrap;
}
.disclosure-content.is-frame {
  padding: 12px;
}
.disclosure-frame {
  width: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.disclosure-content p {
  margin: 0 0 12px;
}
.disclosure-content p:last-child {
  margin-bottom: 0;
}
.disclosure-rich {
  font-size: 14px;
  line-height: 1.58;
  color: #243252;
  white-space: normal;
}
.disclosure-rich h1,
.disclosure-rich h2,
.disclosure-rich h3,
.disclosure-rich h4,
.disclosure-rich h5,
.disclosure-rich h6 {
  margin: 10px 0 8px;
  line-height: 1.45;
}
.disclosure-rich p {
  margin: 0;
  white-space: normal;
  word-break: break-word;
  line-height: 1.58;
}
.disclosure-rich div {
  margin: 0;
  white-space: normal;
  word-break: break-word;
  line-height: 1.58;
}
.disclosure-rich span {
  white-space: normal;
}
.disclosure-rich ul,
.disclosure-rich ol {
  margin: 0;
  padding-left: 22px;
  white-space: normal;
}
.disclosure-rich table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 8px 0;
  table-layout: auto;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  overflow-x: auto;
}
.disclosure-rich table > thead,
.disclosure-rich table > tbody {
  display: table;
  width: 100%;
}
.disclosure-rich th,
.disclosure-rich td {
  border: 1px solid #d8deed;
  padding: 8px 10px;
  vertical-align: top;
  text-align: left;
  word-break: break-word;
  white-space: normal;
}
.disclosure-rich th {
  background: #f4f7ff;
  font-weight: 600;
}
.disclosure-rich a {
  color: #3057cf;
  text-decoration: underline;
}
.disclosure-rich #template-center-mark,
.disclosure-rich .ann-wrapper {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.52;
}
.disclosure-rich .ann-wrapper p {
  margin: 0 !important;
  padding: 0 !important;
}
.disclosure-rich .ann-wrapper table {
  margin-top: 8px;
  margin-bottom: 8px;
  border-collapse: collapse;
  display: table;
  width: 100%;
  padding-left: 0 !important;
}
.disclosure-rich #template-center-mark table {
  margin-bottom: 0;
  border-collapse: collapse;
  display: table;
  text-indent: 0 !important;
}
.disclosure-rich #template-center-mark td,
.disclosure-rich #template-center-mark th,
.disclosure-rich .ann-wrapper td,
.disclosure-rich .ann-wrapper th {
  border: 1px solid #d8deed;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  white-space: normal;
}
.disclosure-rich #template-center-mark td p {
  margin: 0;
  padding: 0;
}
.disclosure-rich .sub,
.disclosure-rich p:has(table),
.disclosure-rich div:has(table) {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.disclosure-rich .text-right {
  text-align: right !important;
}
.disclosure-rich .mt-16 {
  margin-top: 10px !important;
}
.disclosure-rich .mt-20 {
  margin-top: 12px !important;
}
.disclosure-rich .mt-32 {
  margin-top: 18px !important;
}
.disclosure-rich .mt-48 {
  margin-top: 24px !important;
}
.disclosure-rich .mb-16 {
  margin-bottom: 10px !important;
}
.disclosure-rich .mb-20 {
  margin-bottom: 12px !important;
}
.disclosure-rich .t-indent-2 {
  text-indent: 2em;
  display: block;
}
.disclosure-rich .ann-block-title,
.disclosure-rich .bold {
  font-weight: 700 !important;
}
.disclosure-rich .bold-500 {
  font-weight: 500 !important;
}
.disclosure-rich .ann-block-border {
  border: 1px solid rgba(151, 151, 151, 1);
  padding: 12px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.disclosure-rich .ann-index-block {
  background: rgb(247, 247, 247);
  padding: 16px 32px;
  text-indent: 0;
}
.disclosure-rich .hide {
  display: none !important;
}
.disclosure-rich.zj-font-obfuscated,
.disclosure-rich.zj-font-obfuscated * {
  font-family: "ZCY SC", "San Francisco", "PingFang SC", Arial, "Microsoft YaHei", "微软雅黑", sans-serif !important;
}
.bid-form {
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-grid .span-2 {
  grid-column: span 2;
}
.bid-form #bidTitle {
  min-height: 88px;
  line-height: 1.45;
  white-space: pre-wrap;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bid-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}
.bid-footer button {
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 14px;
}
.bid-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bid-actions button {
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 14px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.package-group {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}
.package-group-head {
  margin-bottom: 10px;
}
.package-group-head h3 {
  margin: 0;
}
.package-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.package-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  position: relative;
}
.package-card.highlight {
  border-color: #b8c6ff;
  box-shadow: 0 18px 50px rgba(98, 118, 198, 0.2);
}
.package-card.selected {
  border-color: #6a82ff;
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  box-shadow: 0 18px 42px rgba(90, 110, 190, 0.28);
  transform: translateY(-2px);
}
.package-card.selected h3 {
  color: #2e43a5;
}
.package-card.selected .package-price {
  color: #2942b0;
}
.package-card.selected .choose-package-btn {
  border-color: #8ca0ff;
  background: rgba(128, 150, 255, 0.16);
  color: #3449ad;
}
.package-card.selected .badge.tip {
  background: linear-gradient(135deg, #5f78ff, #7c92ff);
  color: #fff;
  border-color: transparent;
}
.package-card .selected-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #5f78ff, #7c92ff);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 12px rgba(95, 120, 255, 0.25);
}
.package-card .package-promo-badge {
  position: absolute;
  top: 14px;
  right: 86px;
}
.package-card .package-promo-badge.sale {
  background: linear-gradient(135deg, #ff6b6b, #e03131);
  color: #fff;
  border: 0;
}
.package-saving {
  font-size: 12px;
  color: #3550b8;
  background: #edf2ff;
  border: 1px solid #ced9ff;
  border-radius: 10px;
  padding: 6px 8px;
}
.package-pay-panel {
  display: grid;
  gap: 14px;
}
.package-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.package-pay-method {
  border: 1px solid #d8e1f2;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 10px;
}
.package-pay-title {
  font-size: 14px;
  font-weight: 700;
  color: #253c8f;
}
.package-pay-qr {
  min-height: 180px;
  border-radius: 14px;
  border: 1px dashed #c9d4ef;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
  color: #6273ab;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-size: 13px;
}
.package-pay-qr img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.cert-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.cert-provider-block {
  border: 1px solid #d3ddf2;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
}
.cert-provider-head {
  margin-bottom: 10px;
}
.cert-provider-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-provider-brand h4 {
  margin: 0;
}
.cert-provider-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #d3ddf2;
  background: #fff;
}
.cert-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cert-showcase-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 8px;
}
.cert-cover {
  position: relative;
  height: 120px;
  border-radius: 12px;
  padding: 10px;
  display: grid;
  align-content: space-between;
  color: #1f2a44;
  border: 1px solid #d8e1f2;
}
.cert-cover.iso {
  background: linear-gradient(140deg, #eaf1ff, #dbe6ff);
}
.cert-cover.patent {
  background: linear-gradient(140deg, #fff3df, #ffe4bd);
}
.cert-cover.license {
  background: linear-gradient(140deg, #e7f8ee, #cff0de);
}
.cert-cover.credit {
  background: linear-gradient(140deg, #f0ebff, #ddd2ff);
}
.cert-cover h4 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 15px;
}
.cert-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  z-index: 1;
}
.cert-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(58, 74, 168, 0.2);
}
.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cert-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #4a5f97;
}
.cert-tag {
  font-size: 11px;
  color: #4a56c8;
  background: #eef2ff;
  border: 1px solid #d4dcff;
  border-radius: 999px;
  padding: 2px 8px;
}
.cert-desc {
  font-size: 12px;
  color: var(--muted);
}
.package-price {
  font-size: 18px;
  color: #3a4aa8;
  font-weight: 700;
}
.mini-meta {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted-soft);
}
.empty-note {
  font-size: 13px;
  color: var(--muted);
}

.card.soft {
  background: rgba(255, 255, 255, 0.8);
}
.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.panel-head { display: flex; flex-direction: column; gap: 10px; }
.panel h2 { margin: 0; }
.panel h3 { margin: 18px 0 10px; font-size: 15px; }
.panel-foot { margin-top: 12px; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: 14px;
}
.grid.common {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  min-width: 0;
  line-height: 1.45;
}
input, select {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  width: 100%;
}
input {
  line-height: 44px;
}
select {
  padding-right: 38px;
}
textarea {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
  width: 100%;
  resize: vertical;
}
input::placeholder { color: #a3917c; }

.actions { margin-top: 14px; display: flex; gap: 12px; row-gap: 10px; flex-wrap: wrap; }
button {
  background: linear-gradient(135deg, #7b92ff, #6f7eff);
  color: white;
  border: 1px solid #7a8ef2;
  padding: 9px 16px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  transform-origin: center;
}
button.ghost {
  background: #dfe9ff;
  color: #2f3f70;
  border: 1px solid #c8d6f5;
  box-shadow: none;
}
button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.01);
  border-color: #b8caf3;
}
button:active {
  transform: translateY(1px) scale(0.97);
  filter: brightness(0.98);
  box-shadow: none;
}
button:disabled { opacity: .6; cursor: not-allowed; }

.advanced {
  margin-top: 12px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  padding: 8px 10px 4px;
}
.advanced summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
}
.hint { font-size: 11px; color: var(--muted-soft); line-height: 1.45; }
.estimate-hint {
  display: block;
  margin-top: 8px;
  color: #5d6d88;
}

.recent { display: flex; flex-wrap: wrap; gap: 8px; }
.recent button {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  min-height: 32px;
  box-shadow: none;
}

.results { display: flex; flex-direction: column; gap: 12px; }
.result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.summary-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
}
.filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  border: 1px solid #d4dcff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  color: #4a56c8;
}
.filter-pill button {
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
  min-height: auto;
  display: inline;
  line-height: 1;
  font-size: inherit;
  box-shadow: none;
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 14px;
}
.table th { color: var(--muted); font-weight: 600; text-align: left; }

.card-list { display: flex; flex-direction: column; gap: 12px; }
.page-actions + .card-list {
  margin-top: 8px;
}
.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
  animation: fadeUp 0.5s ease;
}
.clickable-card {
  cursor: pointer;
}
.clickable-card:hover {
  border-color: #c6d6ff;
  box-shadow: 0 14px 28px rgba(90, 110, 190, 0.16);
}
.result-card.status-changed {
  background: linear-gradient(135deg, #fff9e8 0%, #fff3cf 100%);
  border-color: #e4d39b;
}
.result-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.title-main {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.result-title h4 { margin: 0; font-size: 17px; line-height: 1.5; }
.result-title h4,
.result-title h4 a {
  min-width: 0;
}
.change-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8b95b 0%, #f6d888 100%);
  color: #6b4a10;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.budget {
  font-weight: 700;
  color: #3a4aa8;
  font-size: 15px;
}
.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.result-summary {
  margin-top: -2px;
  color: #42516f;
  font-size: 13px;
  line-height: 1.7;
}
.result-summary mark {
  background: #fff3b8;
}
.result-actions {
  display: flex;
  gap: 10px;
  row-gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.result-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  row-gap: 8px;
  flex-wrap: wrap;
}
.result-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.meta-badge {
  background: #f1f4ff;
  border: 1px solid #d9e1ff;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 11px;
  color: #4a56c8;
}
.admin-member-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  margin-right: 6px;
}
.admin-member-badge.monthly {
  background: #e8f1ff;
  color: #2457b8;
  border: 1px solid #c7dafd;
}
.admin-member-badge.quarterly {
  background: #fff1e8;
  color: #b85a18;
  border: 1px solid #ffd4b5;
}
.admin-member-badge.annual {
  background: linear-gradient(135deg, #fff5d9, #ffe6a6);
  color: #8a5a00;
  border: 1px solid #f0cf77;
}
.admin-member-badge.none {
  background: #f2f4f8;
  color: #7c879d;
  border: 1px solid #d7dce8;
}
.status-tag {
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.status-terminate { background: #f0f2f5; color: #6b7280; }
.status-change { background: #fff1e6; color: #c35a2d; }
.status-intent { background: #fff8e7; color: #b17907; }
.status-win { background: #e7f6ef; color: #1b8b5a; }
.status-bid { background: #eaf0ff; color: #3f5cd1; }
mark {
  background: #fff3b8;
  color: inherit;
  padding: 0 2px;
  border-radius: 4px;
}

.pager {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; line-height: 1; }
.badge.tip { background: #eef2ff; color: #4a56c8; border: 1px solid #d4dcff; }

.fav-btn,
.bid-btn,
.action-btn {
  background: #e2ebff;
  color: #3f4fb8;
  border: 1px solid #c8d6f5;
  border-radius: 10px;
  padding: 8px 13px;
  min-height: 36px;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  font-family: inherit;
  line-height: 1.2;
}
.fav-btn:hover:not(:disabled),
.bid-btn:hover:not(:disabled),
.action-btn:hover:not(:disabled),
.nav-btn:hover:not(:disabled),
.feature-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.01);
  box-shadow: none;
}
.home-recent-card .card-actions {
  gap: 8px;
}
.home-recent-card .card-actions .bid-btn,
.home-recent-card .card-actions .action-btn {
  min-width: 92px;
  min-height: 34px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.home-recent-card.is-new {
  border-color: #b8e7c9;
  background: linear-gradient(180deg, #f7fff8, #eefcf1);
  box-shadow: 0 10px 24px rgba(120, 184, 134, 0.12);
}
.home-recent-card .new-badge {
  background: linear-gradient(180deg, #8ddf9d, #5fc57b);
  color: #fff;
  border: 1px solid #68c783;
  font-weight: 700;
}
.bid-btn {
  color: #3f4fb8;
}
button.bid-btn {
  color: #3f4fb8;
}
.fav-btn.active { background: var(--accent); color: #fff; border-color: var(--accent-strong); }

.footer {
  padding: 24px 0 40px;
  color: var(--muted);
  text-align: center;
}

.about h2 { margin-top: 0; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.about-grid div {
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.view[hidden] { display: none !important; }

@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .package-group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-pay-grid { grid-template-columns: 1fr; }
  .cert-provider-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .panel { position: static; }
  .grid.common { grid-template-columns: 1fr; }
  .bid-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .upload-grid { grid-template-columns: 1fr; }
  .bid-footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .home-banner-track img { height: 180px; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-btn { padding: 10px 6px; }
  .home-feature-icon { width: 58px; height: 58px; }
  .feature-btn.icon small { font-size: 11px; }
  .steps-grid { grid-template-columns: 1fr; }
  .package-group-grid { grid-template-columns: 1fr; }
  .cert-provider-grid { grid-template-columns: 1fr; }
  .logo { width: 36px; height: 36px; border-radius: 12px; }
  .nav { justify-content: flex-end; width: 100%; }
  .nav-user-chip { width: 100%; justify-content: center; }
  .my-links { grid-template-columns: 1fr; }
  .bid-actions { grid-template-columns: 1fr; }
  .qr-login-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bannerSlide {
  0%, 20% { transform: translateX(0); }
  33%, 53% { transform: translateX(-25%); }
  66%, 86% { transform: translateX(-50%); }
  100% { transform: translateX(-75%); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

a { color: #4a56c8; text-decoration: none; }
a:hover { text-decoration: underline; }

body[data-view="home"] .nav-home,
body[data-view="home"] .nav-fav,
body[data-view="home"] .nav-admin {
  display: none;
}
body[data-view="home"] .nav-user-chip {
  display: inline-flex !important;
}
.history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.history-card {
  cursor: pointer;
}
.history-card:hover {
  border-color: #b9c9ff;
  box-shadow: 0 12px 28px rgba(90, 110, 190, 0.16);
}
.history-card .card-actions {
  justify-content: flex-end;
}

.profile-page {
  position: relative;
  gap: 20px;
}

.profile-page .page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile-page .page-head-main {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.profile-page .page-head-main > p.muted {
  max-width: 860px;
  margin: 0;
}

.profile-top-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.profile-top-grid > #myLevelCard {
  grid-column: 1 / -1;
}

.profile-grid {
  display: grid;
  gap: 14px;
}

.profile-main-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.profile-main-grid .profile-card-info {
  grid-column: span 8;
}

.profile-main-grid .profile-card-pref {
  grid-column: span 4;
}

.profile-main-grid .profile-card-overview {
  grid-column: 1 / -1;
}

.profile-page .profile-card {
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-page .profile-card > .muted {
  margin: 0;
}

.profile-icon-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  flex: 0 0 auto;
}

.login-popover {
  position: absolute;
  top: 16px;
  right: 18px;
  width: min(440px, calc(100% - 36px));
  z-index: 20;
  box-shadow: 0 18px 42px rgba(28, 46, 106, 0.18);
}

.login-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login-popover-head h3 {
  margin: 0;
}

.icon-close-btn {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.my-level-card {
  border-radius: 18px;
  border: 1px solid #d4dcff;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(74, 98, 184, 0.18);
  color: #1f2a44;
  display: grid;
  gap: 12px;
}
.my-level-card.theme-common {
  background: linear-gradient(135deg, #f7f9ff, #edf2ff);
}
.my-level-card.theme-season {
  background: linear-gradient(135deg, #e9f3ff, #d9e8ff);
}
.my-level-card.theme-annual {
  background: linear-gradient(135deg, #ffeef1, #ffd9e1);
}
.my-level-card.theme-enterprise {
  background: linear-gradient(135deg, #fff6dc, #ffe7b2);
}
.my-level-main {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.my-level-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(78, 95, 177, 0.22);
}
.my-level-text {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.my-level-line {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.my-level-line strong {
  font-size: 19px;
}
.my-level-badge {
  font-size: 12px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(61, 81, 164, 0.25);
  color: #4154c5;
}
.my-level-desc {
  color: #4d5f86;
  font-size: 13px;
  line-height: 1.5;
}
.my-level-meta {
  display: flex;
  gap: 8px 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #41506f;
}
.my-level-package {
  font-size: 14px;
  line-height: 1.45;
  color: #32436d;
}

.profile-page .card.soft h3 {
  margin: 0 0 2px;
  font-size: 17px;
  color: #2d3f73;
}

.profile-page .form-grid {
  gap: 14px;
}

.profile-page .form-grid .span-2 {
  grid-column: 1 / -1;
}

.profile-page .form-grid label {
  gap: 8px;
}

.profile-page .page-actions {
  margin-top: 2px;
  gap: 12px;
  row-gap: 10px;
}

.profile-page .page-actions button {
  min-height: 40px;
  min-width: 148px;
  padding: 10px 16px;
}

.profile-page .auth-main-actions button {
  min-width: 160px;
}

.profile-page .qr-login-wrap {
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.profile-page .qr-login-image {
  width: 164px;
  height: 164px;
}

.profile-page .qr-login-meta {
  gap: 10px;
}

.profile-record-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.profile-record-grid .profile-card {
  min-height: 220px;
}

#myLogoutWrap .page-actions {
  justify-content: flex-end;
}

.inline-input {
  display: flex;
  gap: 8px;
  align-items: center;
}

#bidPeibiao {
  width: 20px;
  min-width: 20px;
  height: 20px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 6px;
}

#bidHardPagesRow.is-disabled {
  color: #95a2b9;
}

#bidHardPagesRow.is-disabled #hardPages {
  background: #f3f5fa;
  border-color: #dfe5f1;
  color: #95a2b9;
  cursor: not-allowed;
}

.inline-input input {
  flex: 1 1 auto;
}

.inline-input button {
  flex: 0 0 auto;
  min-width: 112px;
  white-space: nowrap;
}

#myAuthModeHint,
#myAuthStatus {
  margin-top: 8px;
}

.my-links button {
  width: 100%;
}

.my-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.my-stat {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid #d8e1f2;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 18px rgba(75, 95, 170, 0.1);
}

.stat-num {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  color: #4053c2;
}

.profile-page .compact-list .result-card {
  padding: 12px;
  gap: 10px;
}

.profile-page .compact-list .result-title h4 {
  font-size: 15px;
}

.profile-page .compact-list .result-meta {
  font-size: 11px;
}

@media (max-width: 1120px) {
  .profile-top-grid > #myLevelCard {
    grid-column: span 12;
  }
  .profile-main-grid .profile-card-info,
  .profile-main-grid .profile-card-pref,
  .profile-main-grid .profile-card-overview {
    grid-column: span 12;
  }
}

@media (max-width: 980px) {
  .profile-record-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .profile-page .page-head {
    align-items: center;
  }
  .profile-page .profile-card {
    padding: 14px;
  }
  .login-popover {
    top: 72px;
    right: 14px;
    width: calc(100% - 28px);
  }
  .profile-page .qr-login-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .profile-page .qr-login-image {
    width: 150px;
    height: 150px;
  }
  .profile-page .page-actions button {
    width: 100%;
    min-width: 0;
  }
  #myLogoutWrap .page-actions {
    justify-content: stretch;
  }
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 4px;
}

.admin-metric-item {
  border-radius: 14px;
  border: 1px solid #d8e1f2;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  padding: 12px;
  box-shadow: 0 8px 18px rgba(75, 95, 170, 0.1);
}

.admin-metric-item .k {
  font-size: 12px;
  color: var(--muted);
}

.admin-metric-item .v {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
  color: #4053c2;
}

.admin-tab-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-tab {
  min-height: 38px;
  border-radius: 10px;
  font-size: 13px;
  padding: 8px 10px;
}

.admin-tab.active {
  background: linear-gradient(135deg, #5e6bff, #6a5cff);
  color: #fff;
  border-color: rgba(104, 116, 230, 0.9);
}

.admin-filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(130px, 1fr)) auto;
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 12px;
}

.admin-task-alert {
  margin: 6px 0 12px;
  border: 1px solid #ffd9b8;
  background: linear-gradient(180deg, #fff8f1, #fff3e8);
  color: #9a4a12;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
}

.admin-catalog-form {
  margin-top: 14px;
  border: 1px solid #d8e1f2;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}

.admin-catalog-form h3 {
  margin: 0 0 10px;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #dce5f6;
}

.admin-row-actions > input,
.admin-row-actions > select {
  min-width: 170px;
  min-height: 38px;
  font-size: 13px;
}

.admin-row-actions > .admin-inline-field,
.admin-row-actions > .admin-inline-note,
.admin-row-actions > button {
  min-height: 38px;
}

.admin-inline-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #dde4f6;
  border-radius: 10px;
  background: #f8faff;
}

.admin-inline-label {
  font-size: 12px;
  color: #4a5f8f;
  white-space: nowrap;
}

.admin-inline-note {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  color: #50638f;
  background: #f7f9ff;
  border: 1px solid #dde4f6;
  border-radius: 10px;
  padding: 7px 11px;
}

.admin-inline-field select {
  min-width: 150px;
}

.admin-file-block {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #dbe7f5;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.admin-file-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.admin-file-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding: 10px 12px;
  border: 1px solid #e1e9f6;
  border-radius: 10px;
  background: #fff;
}

.admin-file-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  flex: 1;
}

.admin-file-main strong {
  font-size: 13px;
  color: #29446f;
}

.admin-file-main span {
  font-size: 12px;
  color: #5b6e93;
  word-break: break-all;
}

.admin-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-fold {
  border: 1px solid #dce6fb;
  border-radius: 14px;
  background: #fff;
}

.admin-fold summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
}

.admin-fold summary::-webkit-details-marker {
  display: none;
}

.admin-fold-body {
  border-top: 1px solid #e7edfb;
  padding: 12px 14px 14px;
}

.admin-fold-meta {
  margin-top: 6px;
}

.admin-fold-hint {
  color: #5f6f8f;
  font-size: 12px;
}

.admin-mini-input {
  max-width: 160px;
}

.task-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.task-status-todo {
  background: #fff4e7;
  color: #b56718;
}

.task-status-doing {
  background: #e8f2ff;
  color: #2f5db8;
}

.task-status-done {
  background: #e8f8ee;
  color: #1b8b5a;
}

.task-role-chip {
  background: #eef2ff;
  color: #3f4fb6;
  border: 1px solid #d4ddff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .profile-grid { grid-template-columns: 1fr; }
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-tab-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-filter-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .my-level-main {
    align-items: flex-start;
  }
  .my-level-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }
  .inline-input {
    flex-direction: column;
    align-items: stretch;
  }
  .inline-input button {
    width: 100%;
  }
  .admin-metrics { grid-template-columns: 1fr; }
  .admin-tab-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-filter-row { grid-template-columns: 1fr; }
}
