/* ==========================================================================
   Shared list pages
   Scope: 月度结算 / 到账管理 / 电站档案 / 账户档案主列表
   Purpose: keep common table/list structure in one maintainable module.
   ========================================================================== */

/* Filter sections ---------------------------------------------------------- */

.hz-filter-section {
  margin-top: 1.05rem;
}

.hz-filter-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.72rem 1rem;
  align-items: center;
  width: 100%;
}

.hz-filter-toolbar > .hz-quick-filter {
  min-width: 0;
}

.hz-filter-toolbar-more {
  grid-column: 1 / -1;
  justify-self: end;
}

.hz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 0.55rem;
}

.hz-section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #12364b;
  -webkit-text-fill-color: #12364b;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
}

.hz-section-title::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #075b88 0%, #20a9d6 100%);
  box-shadow: 0 0 0 4px rgba(32, 169, 214, 0.12);
}

.hz-section-note {
  color: #8aa0af;
  -webkit-text-fill-color: #8aa0af;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hz-quick-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.56rem;
  border: 1px solid rgba(7, 91, 136, 0.08);
  border-radius: 17px;
  background: linear-gradient(180deg, #f8fcfe 0%, #f2f9fc 100%);
}

.quick-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.42rem 0.88rem;
  border: 1px solid rgba(7, 91, 136, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #315a70;
  -webkit-text-fill-color: #315a70;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(7, 91, 136, 0.04);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.hz-quick-filter .quick-chip:not(.active) {
  background: #ffffff !important;
  color: #315a70 !important;
  -webkit-text-fill-color: #315a70 !important;
}

.quick-chip:hover,
.quick-chip:focus-visible {
  border-color: rgba(17, 148, 195, 0.26);
  background: #eaf7fd;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  text-decoration: none;
  transform: translateY(-1px);
}

.hz-quick-filter .quick-chip:not(.active):hover,
.hz-quick-filter .quick-chip:not(.active):focus-visible {
  background: #eaf7fd !important;
  color: #075b88 !important;
  -webkit-text-fill-color: #075b88 !important;
}

.quick-chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, #075b88 0%, #1194c3 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 91, 136, 0.16);
}

.hz-quick-filter .quick-chip.active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.quick-chip.danger.active {
  background: linear-gradient(135deg, #b94848 0%, #df6262 100%);
}

.quick-chip.warning.active {
  background: linear-gradient(135deg, #b98418 0%, #e0aa34 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hz-advanced-filter {
  margin: 0;
}

.hz-advanced-filter > summary {
  list-style: none;
}

.hz-advanced-filter > summary::-webkit-details-marker {
  display: none;
}

.hz-advanced-summary {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.32rem;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
  text-decoration: none;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.hz-advanced-summary::before {
  content: none;
  display: none;
}

.hz-advanced-summary::after {
  content: "›";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  color: currentColor;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform 0.18s ease;
}

.hz-advanced-filter[open] .hz-advanced-summary::after {
  transform: rotate(-90deg);
}

.hz-advanced-summary:hover,
.hz-advanced-summary:focus-visible {
  color: #1194c3;
  -webkit-text-fill-color: #1194c3;
  outline: none;
}

.hz-advanced-filter[open] .hz-advanced-text-closed,
.hz-advanced-filter:not([open]) .hz-advanced-text-open {
  display: none;
}

.hz-advanced-filter .hz-filter-panel {
  grid-column: 1 / -1;
  margin-top: 0.58rem;
  text-align: left;
}

.hz-advanced-filter:not([open]) + .hz-filter-panel {
  display: none;
}

.hz-filter-toolbar > .hz-filter-panel {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-top: 0;
  text-align: left;
}

.hz-filter-panel {
  padding: 1rem;
  border: 1px solid rgba(7, 91, 136, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,253,255,0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.hz-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  align-items: end;
}

.hz-filter-grid .form-label,
.settlement-filter-label {
  margin-bottom: 0.36rem;
  color: #496577;
  -webkit-text-fill-color: #496577;
  font-size: 0.78rem;
  font-weight: 850;
}

.hz-filter-grid .form-control,
.hz-filter-grid .form-select,
.hz-filter-panel .form-control,
.hz-filter-panel .form-select {
  min-height: 44px;
  border-color: rgba(7, 91, 136, 0.14);
  border-radius: 15px;
  color: #17384d;
  -webkit-text-fill-color: #17384d;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(7, 91, 136, 0.035);
}

.hz-filter-grid .form-control::placeholder,
.hz-filter-panel .form-control::placeholder {
  color: #9aadba;
  -webkit-text-fill-color: #9aadba;
  font-weight: 500;
}

.hz-filter-grid .form-control:focus,
.hz-filter-grid .form-select:focus,
.hz-filter-panel .form-control:focus,
.hz-filter-panel .form-select:focus {
  border-color: rgba(17, 148, 195, 0.48);
  box-shadow: 0 0 0 0.18rem rgba(32, 169, 214, 0.12);
}

.hz-filter-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 0.62rem;
}

.hz-filter-grid > .hz-filter-actions {
  grid-column: 1 / -1;
  align-self: end;
  justify-self: end;
}

.settlement-filter-main > .settlement-filter-actions {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  justify-content: flex-end;
}

.hz-filter-actions .btn,
.settlement-filter-actions .btn {
  min-width: 96px;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.hz-filter-actions .btn-outline-secondary,
.settlement-filter-reset {
  border-color: rgba(7, 91, 136, 0.14);
  background: #ffffff;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
}

.hz-filter-actions .btn-primary,
.settlement-filter-submit {
  border-color: transparent;
  background: linear-gradient(135deg, #075b88 0%, #1194c3 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 91, 136, 0.16);
}

.hz-filter-actions .btn:hover,
.settlement-filter-actions .btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 1199.98px) {
  .hz-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hz-filter-actions {
    justify-content: flex-end;
  }
}

.hz-table-panel {
  overflow: hidden;
  border: 1px solid rgba(17, 148, 195, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 91, 136, 0.075);
}

.hz-pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.56rem 1rem;
  border-top: 1px solid rgba(17, 148, 195, 0.1);
  background: #ffffff;
}

.hz-pagination-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6b8292;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
}

.hz-pagination-controls,
.hz-page-size {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.hz-page-size {
  color: #6b8292;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
}

.hz-page-size-select {
  width: 72px;
  min-height: 28px;
  border-radius: 8px;
  border-color: rgba(7, 91, 136, 0.16);
  background-color: #ffffff;
  color: #14384d;
  font-size: 0.75rem;
  font-weight: 500;
  padding: .16rem .45rem;
  cursor: pointer;
}

.hz-page-size-select:focus {
  border-color: #0b7cae;
  box-shadow: 0 0 0 .15rem rgba(7, 91, 136, .1);
}

.hz-pagination {
  gap: 0.14rem;
}

.hz-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  min-height: 26px;
  padding: 0.2rem 0.42rem;
  border: 1px solid rgba(7, 91, 136, 0.12);
  border-radius: 8px !important;
  background: #ffffff;
  color: #075b88;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  box-shadow: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

.hz-pagination .page-link:hover,
.hz-pagination .page-link:focus {
  border-color: rgba(17, 148, 195, 0.26);
  background: #f4f9fc;
  color: #075b88;
  box-shadow: none;
}

.hz-pagination .page-item.active .page-link {
  border-color: #1194c3;
  background: #1194c3;
  color: #ffffff;
  box-shadow: none;
}

.hz-pagination .page-item.disabled .page-link {
  background: #ffffff;
  color: #9aadba;
  box-shadow: none;
}

.hz-pagination .page-item:first-child .page-link,
.hz-pagination .page-item:last-child .page-link {
  min-width: 48px;
  padding-inline: 0.6rem;
}

.hz-pagination-single {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  color: #6b8292;
  font-size: 0.8rem;
  font-weight: 400;
  white-space: nowrap;
}

.hz-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(7, 91, 136, 0.12);
  background:
    radial-gradient(circle at 94% 12%, rgba(17, 148, 195, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.98) 0%, #ffffff 100%);
}

.hz-table-title {
  margin: 0;
  color: #12364b;
  -webkit-text-fill-color: #12364b;
  font-size: var(--hz-type-workspace-title, 1.08rem);
  font-weight: var(--hz-weight-title, 900);
  line-height: 1.32;
  letter-spacing: -0.016em;
}

.hz-table-note {
  margin-top: 0.28rem;
  color: #6f8798;
  -webkit-text-fill-color: #6f8798;
  font-size: var(--hz-type-body-sm, 0.86rem);
  font-weight: 500;
  line-height: 1.55;
}

.hz-list-actions,
.hz-table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.hz-list-meta,
.hz-table-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(17, 148, 195, 0.14);
  border-radius: 999px;
  background: #eef8fd;
  color: #1a5f87;
  -webkit-text-fill-color: #1a5f87;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hz-list-table-wrap,
.hz-table-panel .table-responsive {
  background: #ffffff;
  border-radius: 0 0 var(--hz-radius-lg, 22px) var(--hz-radius-lg, 22px);
}

.hz-table-panel table {
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.hz-table-panel thead th {
  height: 48px;
  padding: 0.82rem 1rem;
  border-top: 0;
  border-bottom: 1px solid rgba(4, 92, 156, 0.12);
  background: #f3f8fb;
  color: #496577;
  -webkit-text-fill-color: #496577;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hz-table-panel tbody td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(4, 92, 156, 0.075);
  color: #263f52;
  -webkit-text-fill-color: #263f52;
  font-size: 0.9rem;
  line-height: 1.48;
  vertical-align: middle;
}

.hz-table-panel tbody tr {
  background: #ffffff;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.hz-table-panel tbody tr:hover {
  background: linear-gradient(90deg, rgba(4, 92, 156, 0.035) 0%, rgba(245, 250, 253, 0.92) 100%);
}

.hz-table-panel tbody tr:last-child td {
  border-bottom: 0;
}

.hz-table-panel .text-end {
  font-variant-numeric: tabular-nums;
}

.hz-table-panel .btn-sm {
  min-height: 34px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hz-table-panel .empty-row td,
.hz-table-panel tbody td.text-center.text-muted,
.hz-table-panel .table-empty {
  padding: 3rem 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 92, 156, 0.055), transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  color: #7d92a1;
  -webkit-text-fill-color: #7d92a1;
  font-weight: 720;
}

.hz-list-row-title,
.hz-list-row-title a,
.hz-table-panel a.hz-list-row-title,
.hz-table-panel a.table-inline-link {
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  font-weight: 850;
  text-decoration: none;
}

.hz-list-row-title a:hover,
.hz-table-panel a.hz-list-row-title:hover,
.hz-table-panel a.table-inline-link:hover {
  color: #1194c3;
  -webkit-text-fill-color: #1194c3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hz-list-row-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.hz-list-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(7, 91, 136, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(7, 91, 136, 0.055);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.hz-list-action:hover,
.hz-list-action:focus-visible {
  border-color: rgba(17, 148, 195, 0.38);
  background: #f0f9fd;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7, 91, 136, 0.11);
}

.hz-list-action.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #075b88 0%, #1194c3 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 91, 136, 0.18);
}

.hz-list-action.primary:hover,
.hz-list-action.primary:focus-visible {
  background: linear-gradient(135deg, #064d75 0%, #0c86b2 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

.hz-amount-primary,
.hz-table-panel .hz-amount-primary {
  color: #12364b;
  -webkit-text-fill-color: #12364b;
  font-weight: 850;
}

.hz-amount-success,
.hz-table-panel .hz-amount-success {
  color: #16804f !important;
  -webkit-text-fill-color: #16804f !important;
  font-weight: 850;
}

.hz-amount-danger,
.hz-table-panel .hz-amount-danger {
  color: #b94848 !important;
  -webkit-text-fill-color: #b94848 !important;
  font-weight: 850;
}

.hz-amount-muted,
.hz-table-panel .hz-amount-muted {
  color: #6f8798;
  -webkit-text-fill-color: #6f8798;
  font-weight: 720;
}

/* Page-specific list refinements ----------------------------------------- */

.station-list-table-card .station-name-main,
.account-table-panel .account-name-link,
.account-table-panel .table-primary-text,
.account-table-panel .bank-main {
  color: #103750;
  -webkit-text-fill-color: #103750;
  font-weight: 850;
  line-height: 1.45;
}

.station-list-table-card .station-name-link:hover .station-name-main,
.account-table-panel .account-name-link:hover {
  color: #075b88;
  -webkit-text-fill-color: #075b88;
}

.station-list-table-card .station-primary-text {
  color: #183f58;
  -webkit-text-fill-color: #183f58;
  font-weight: 780;
}

.station-list-table-card .station-subtext,
.station-list-table-card .station-kv-label,
.account-table-panel .bank-meta,
.account-table-panel .invoice-meta,
.account-table-panel .table-subtext,
.account-table-panel .biz-metric-line {
  color: #6f8798;
  -webkit-text-fill-color: #6f8798;
}

.station-list-table-card .station-kv-value,
.account-table-panel .biz-metric-value {
  color: #294f65;
  -webkit-text-fill-color: #294f65;
  font-weight: 750;
}

.station-list-table-card .station-index,
.account-table-panel .account-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #eef8fd;
  color: #075b88;
  -webkit-text-fill-color: #075b88;
  font-weight: 900;
}

.account-table-panel .account-col-index {
  width: 64px;
}

.account-table-panel .account-col-subject {
  min-width: 220px;
  width: 24%;
}

.account-table-panel .account-col-bank {
  min-width: 260px;
  width: 28%;
}

.account-table-panel .account-col-business {
  min-width: 180px;
  width: 19%;
}

.account-table-panel .account-col-invoice {
  min-width: 190px;
  width: 20%;
}

.account-table-panel .account-col-status {
  width: 96px;
}

.account-table-panel .account-col-action {
  width: 76px;
}

.account-table-panel .account-submeta,
.account-table-panel .biz-summary,
.account-table-panel .quick-links,
.account-table-panel .biz-metric-list {
  margin-top: 0.48rem;
}

.account-table-panel .biz-metric-line {
  display: flex;
  justify-content: space-between;
  gap: 0.72rem;
}

.account-table-panel .biz-metric-label {
  color: #8da2af;
  -webkit-text-fill-color: #8da2af;
  font-weight: 650;
}

@media (max-width: 767.98px) {
  .hz-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .hz-section-note {
    white-space: normal;
  }

  .hz-advanced-filter-section {
    text-align: right;
  }

  .hz-advanced-summary {
    width: auto;
    justify-content: flex-end;
  }

  .hz-quick-filter {
    gap: 0.45rem;
    padding: 0.48rem;
  }

  .quick-chip {
    min-height: 36px;
    padding: 0.46rem 0.78rem;
    font-size: 0.78rem;
  }

  .hz-filter-panel {
    padding: 0.85rem;
    border-radius: 16px;
  }

  .hz-filter-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hz-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hz-filter-actions .btn,
  .settlement-filter-actions .btn {
    width: 100%;
  }

  .hz-table-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .hz-pagination-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.95rem;
  }

  .hz-pagination-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hz-page-size {
    justify-content: space-between;
  }

  .hz-page-size-select {
    width: 120px;
  }

  .hz-pagination {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hz-pagination-meta {
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hz-list-actions,
  .hz-table-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hz-table-head > .btn {
    width: 100%;
    min-height: 40px;
    border-radius: 999px;
  }

  .hz-table-panel thead th {
    height: 42px;
    padding: 0.68rem 0.78rem;
    font-size: 0.75rem;
  }

  .hz-table-panel tbody td {
    padding: 0.82rem 0.78rem;
    font-size: 0.84rem;
  }

  .hz-table-panel table,
  .hz-table-panel thead,
  .hz-table-panel tbody,
  .hz-table-panel th,
  .hz-table-panel td,
  .hz-table-panel tr {
    display: block;
  }

  .hz-table-panel thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .hz-table-panel tbody {
    display: grid;
    gap: 0.8rem;
    padding: 0.9rem;
    background: #f5fbfe;
  }

  .hz-table-panel tbody tr {
    display: grid;
    position: relative;
    gap: 0.55rem;
    padding: 0.9rem;
    border: 1px solid rgba(7, 91, 136, 0.10);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(7, 91, 136, 0.06);
  }

  .hz-table-panel tbody td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0;
    border-bottom: 0;
  }

  .hz-table-panel tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    max-width: 42%;
    color: #7a90a0;
    -webkit-text-fill-color: #7a90a0;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .hz-table-panel tbody td.mobile-title-cell,
  .hz-table-panel tbody td.mobile-primary-cell {
    display: block;
  }

  .hz-table-panel tbody td.mobile-title-cell::before,
  .hz-table-panel tbody td.mobile-primary-cell::before {
    display: none;
  }

  .hz-table-panel tbody td.mobile-index-cell {
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    width: auto;
  }

  .hz-table-panel tbody td.mobile-index-cell::before {
    display: none;
  }

  .hz-table-panel tbody td.mobile-action-cell,
  .hz-table-panel tbody td[data-label="操作"] {
    justify-content: flex-start;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(7, 91, 136, 0.12);
  }

  .hz-table-panel tbody td.mobile-action-cell::before,
  .hz-table-panel tbody td[data-label="操作"]::before {
    display: none;
  }

  .hz-list-row-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hz-list-action {
    min-height: 38px;
    padding: 0.48rem 0.9rem;
  }
}
