:root {
  --hxzn-ink: #132238;
  --hxzn-text: #344458;
  --hxzn-muted: #667587;
  --hxzn-line: #dbe4ee;
  --hxzn-line-soft: #edf2f7;
  --hxzn-bg: #f3f6f9;
  --hxzn-blue: #0f4c81;
  --hxzn-blue-dark: #082f55;
  --hxzn-red: #b51f25;
  --hxzn-green: #1b7354;
}

.huaxia-query-hero {
  position: relative;
  min-height: 292px;
  display: flex;
  align-items: end;
  padding: 112px 0 42px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 17, 30, .92), rgba(7, 34, 59, .72) 52%, rgba(7, 34, 59, .28)),
    url("../images/hero/hero-energy-grid.jpg") center/cover no-repeat;
  overflow: hidden;
}

.huaxia-query-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hxzn-red) 0 120px, rgba(255, 255, 255, .35) 120px);
}

.huaxia-query-detail-hero {
  background:
    linear-gradient(90deg, rgba(4, 17, 30, .93), rgba(7, 34, 59, .70) 50%, rgba(7, 34, 59, .18)),
    url("../images/hero/hero-query-detail-substation.jpg") center 44%/cover no-repeat;
}

.huaxia-query-hero .container {
  position: relative;
  z-index: 1;
}

.huaxia-query-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.24;
  text-wrap: balance;
}

.huaxia-query-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.9;
}

.huaxia-query-wrap,
.huaxia-detail-wrap {
  padding: 54px 0 86px;
  background:
    linear-gradient(180deg, #eef3f8 0, #f6f8fb 280px, #f3f6f9 100%),
    repeating-linear-gradient(90deg, rgba(15, 76, 129, .035) 0 1px, transparent 1px 64px);
}

.huaxia-disclosure,
.huaxia-detail-panel {
  background: #fff;
  border: 1px solid var(--hxzn-line);
}

.huaxia-disclosure::before,
.huaxia-detail-panel::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--hxzn-blue-dark), var(--hxzn-blue) 72%, var(--hxzn-red));
}

.huaxia-disclosure-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 52px;
  align-items: start;
  padding: 38px 46px 28px;
  border-bottom: 1px solid var(--hxzn-line);
}

.huaxia-disclosure-head h2 {
  margin: 0;
  color: var(--hxzn-ink);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.32;
}

.huaxia-disclosure-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 16px;
  background: var(--hxzn-red);
}

.huaxia-disclosure-head p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--hxzn-muted);
  font-size: 15px;
  line-height: 1.9;
}

.huaxia-disclosure-meta {
  padding: 18px 20px;
  background: #f7f9fb;
  border-left: 3px solid var(--hxzn-blue);
}

.huaxia-disclosure-meta span {
  display: block;
  color: var(--hxzn-text);
  font-size: 13px;
  line-height: 2;
}

.huaxia-query-form {
  padding: 30px 46px 34px;
}

.huaxia-query-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--hxzn-line);
}

.huaxia-query-option + .huaxia-query-option {
  border-left: 1px solid var(--hxzn-line);
}

.huaxia-query-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.huaxia-query-option label {
  position: relative;
  display: block;
  min-height: 116px;
  padding: 24px 28px 22px;
  background: #fff;
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.huaxia-query-option label:hover {
  background: #f8fbfd;
}

.huaxia-query-option input:focus-visible + label {
  outline: 2px solid var(--hxzn-blue);
  outline-offset: -2px;
}

.huaxia-query-option input:checked + label {
  background: #f2f6fa;
  box-shadow: inset 0 -4px 0 var(--hxzn-blue);
}

.huaxia-query-option input:checked + label::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 28px;
  width: 8px;
  height: 8px;
  background: var(--hxzn-red);
}

.huaxia-query-option strong {
  display: block;
  color: var(--hxzn-ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.huaxia-query-option span {
  display: block;
  max-width: 46ch;
  margin-top: 11px;
  color: var(--hxzn-muted);
  font-size: 14px;
  line-height: 1.75;
}

.huaxia-query-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
  margin-top: 20px;
}

.huaxia-query-search input,
.huaxia-query-password-field input {
  width: 100%;
  height: 50px;
  border: 1px solid var(--hxzn-line);
  background: #fff;
  color: var(--hxzn-ink);
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.huaxia-query-search input:focus,
.huaxia-query-password-field input:focus {
  border-color: var(--hxzn-blue);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, .10);
}

.huaxia-query-search button,
.huaxia-query-detail-action {
  height: 50px;
  border: 0;
  background: var(--hxzn-blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}

.huaxia-query-search button:hover,
.huaxia-query-detail-action:hover {
  background: var(--hxzn-blue-dark);
  transform: translateY(-1px);
}

.huaxia-query-search button:active,
.huaxia-query-detail-action:active {
  transform: translateY(0);
}

.huaxia-query-search button:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.huaxia-query-message {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  color: #78531f;
  background: #fff8ea;
  border: 1px solid #f0dfbd;
  font-size: 14px;
}

.huaxia-query-message.error {
  color: #9a272a;
  background: #fff4f3;
  border-color: #efcfcc;
}

.huaxia-query-results {
  display: none;
  padding: 0 46px 44px;
}

.huaxia-query-result-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin: 4px 0 14px;
}

.huaxia-query-result-head h3 {
  margin: 0;
  color: var(--hxzn-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.huaxia-query-count {
  color: var(--hxzn-muted);
  font-size: 14px;
}

.huaxia-query-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hxzn-line);
}

.huaxia-query-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: #fff;
}

.huaxia-query-table th {
  padding: 14px 18px;
  color: #fff;
  background: var(--hxzn-blue-dark);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.huaxia-query-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--hxzn-line-soft);
  color: var(--hxzn-text);
  font-size: 14px;
  line-height: 1.6;
  vertical-align: middle;
}

.huaxia-query-table tr:hover td {
  background: #f8fbfd;
}

.huaxia-query-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.huaxia-query-status {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  color: var(--hxzn-green);
  background: #edf8f3;
  font-size: 13px;
  white-space: nowrap;
}

.huaxia-query-status.paused {
  color: #9a272a;
  background: #fff1f0;
}

.huaxia-query-row-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 34px;
  padding: 0 13px;
  border: 1px solid var(--hxzn-blue);
  color: var(--hxzn-blue);
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.huaxia-query-row-action:hover {
  color: #fff;
  background: var(--hxzn-blue);
}

.huaxia-query-row-action.disabled {
  cursor: not-allowed;
  color: #9aa7b7;
  border-color: #d8e0e8;
  background: #f5f7f9;
}

.huaxia-detail-panel {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 28px 70px rgba(8, 47, 85, .10);
}

.huaxia-detail-panel::after {
  content: "PUBLIC QUERY";
  position: absolute;
  right: 42px;
  top: 118px;
  color: rgba(15, 76, 129, .045);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  pointer-events: none;
}

.huaxia-detail-tools {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px 42px;
  border-bottom: 1px solid var(--hxzn-line);
}

.huaxia-detail-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hxzn-blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.huaxia-detail-back::before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.huaxia-detail-back:hover {
  color: var(--hxzn-blue-dark);
}

.huaxia-detail-tools span {
  color: var(--hxzn-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}

.huaxia-detail-header {
  position: relative;
  padding: 32px 42px 30px;
  border-bottom: 1px solid var(--hxzn-line);
  background:
    linear-gradient(100deg, rgba(245, 248, 251, .96), rgba(255, 255, 255, 1) 58%),
    repeating-linear-gradient(135deg, rgba(15, 76, 129, .045) 0 1px, transparent 1px 12px);
  overflow: hidden;
}

.huaxia-detail-header::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  width: 96px;
  height: 4px;
  background: var(--hxzn-red);
}

.huaxia-detail-title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-right: 210px;
  color: var(--hxzn-ink);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.28;
  text-wrap: balance;
}

.huaxia-detail-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--hxzn-red), rgba(181, 31, 37, 0));
}

.huaxia-detail-subtitle {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: var(--hxzn-muted);
  font-size: 14px;
  line-height: 1.75;
}

.huaxia-detail-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 146px minmax(210px, 280px) minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
  background: transparent;
}

.huaxia-detail-chip {
  min-height: 66px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(219, 228, 238, .88);
  box-shadow: inset 3px 0 0 rgba(15, 76, 129, .18);
}

.huaxia-detail-chip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--hxzn-muted);
  font-size: 12px;
  font-weight: 600;
}

.huaxia-detail-chip em {
  display: block;
  color: var(--hxzn-ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  word-break: break-word;
}

.huaxia-detail-chip:first-child em {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  color: var(--hxzn-green);
  background: #eaf6f1;
  font-size: 13px;
}

.huaxia-detail-chip:first-child em::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: currentColor;
}

.huaxia-detail-chip.is-paused:first-child em {
  color: #9a272a;
  background: #fff1f0;
}

.huaxia-detail-chip .is-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.huaxia-detail-body {
  padding: 30px 42px 42px;
}

.huaxia-detail-sections {
  display: grid;
  gap: 22px;
  counter-reset: detail-section;
}

.huaxia-detail-section {
  position: relative;
  border: 1px solid var(--hxzn-line);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 47, 85, .045);
  counter-increment: detail-section;
}

.huaxia-detail-section h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0;
  padding: 0 24px;
  color: var(--hxzn-ink);
  background:
    linear-gradient(90deg, #f6f9fc, #fff),
    repeating-linear-gradient(90deg, rgba(15, 76, 129, .04) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid var(--hxzn-line);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.huaxia-detail-section h3::before {
  content: counter(detail-section, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--hxzn-blue-dark);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.huaxia-detail-section.is-primary h3::before {
  background: var(--hxzn-blue);
}

.huaxia-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 0;
  margin: 18px 32px 26px;
}

.huaxia-detail-item {
  min-height: 72px;
  padding: 16px 0 17px;
  border-bottom: 1px solid rgba(219, 228, 238, .9);
  background: transparent;
}

.huaxia-detail-item.full {
  grid-column: 1 / -1;
}

.huaxia-detail-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--hxzn-muted);
  font-size: 12px;
  font-weight: 600;
}

.huaxia-detail-item span {
  color: var(--hxzn-ink);
  font-size: 15px;
  line-height: 1.65;
  word-break: break-word;
}

.huaxia-detail-item span.is-status {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 10px;
  color: var(--hxzn-green);
  background: #eaf6f1;
  font-size: 13px;
  font-weight: 600;
}

.huaxia-detail-item span.is-status::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  background: currentColor;
}

.huaxia-detail-item span.is-number {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.huaxia-detail-item span.is-empty {
  color: #9aa7b7;
}

.huaxia-detail-publish,
.huaxia-detail-statement {
  margin: 24px;
  color: var(--hxzn-text);
  font-size: 15px;
  line-height: 1.95;
}

.huaxia-detail-publish {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  background: transparent;
}

.huaxia-detail-publish p {
  position: relative;
  min-height: 62px;
  margin: 0;
  padding: 13px 0 13px 16px;
  border-bottom: 1px solid rgba(219, 228, 238, .9);
  word-break: break-word;
  transition: background-color .18s ease;
}

.huaxia-detail-publish p:hover {
  background: transparent;
}

.huaxia-detail-publish p::before {
  content: none;
}

.huaxia-detail-publish strong {
  display: flex;
  align-items: center;
  color: var(--hxzn-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.huaxia-detail-publish strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 5px;
  height: 20px;
  background: var(--hxzn-blue);
}

.huaxia-detail-publish a,
.huaxia-detail-publish span {
  display: block;
  margin-top: 6px;
  color: var(--hxzn-muted);
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}

.huaxia-detail-publish a:hover {
  color: var(--hxzn-blue);
}

.huaxia-detail-richtext {
  grid-column: 1 / -1;
  padding: 18px;
  border-right: 1px solid var(--hxzn-line);
  border-bottom: 1px solid var(--hxzn-line);
}

.huaxia-detail-statement {
  position: relative;
  padding: 21px 24px 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, 1)),
    repeating-linear-gradient(0deg, rgba(15, 76, 129, .04) 0 1px, transparent 1px 28px);
  border-left: 4px solid var(--hxzn-red);
}

.huaxia-detail-statement p {
  margin: 0 0 8px;
}

.huaxia-detail-statement p:last-child {
  margin-bottom: 0;
}

.huaxia-detail-statement strong {
  color: var(--hxzn-ink);
}

.huaxia-detail-query-time {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--hxzn-line);
  text-align: right;
}

.huaxia-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.huaxia-detail-header .huaxia-detail-actions {
  position: absolute;
  z-index: 2;
  right: 42px;
  top: 34px;
  margin-top: 0;
}

.huaxia-query-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 0 22px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 76, 129, .18);
}

#queryPdfButton {
  display: none;
}

.huaxia-query-detail-action::before {
  content: "";
  width: 14px;
  height: 16px;
  margin-right: 9px;
  background:
    linear-gradient(#fff, #fff) 4px 5px / 6px 1px no-repeat,
    linear-gradient(#fff, #fff) 4px 9px / 6px 1px no-repeat,
    linear-gradient(#fff, #fff) 4px 13px / 5px 1px no-repeat,
    linear-gradient(135deg, transparent 0 7px, rgba(255, 255, 255, .55) 7px 100%),
    linear-gradient(#fff, #fff);
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
}

.huaxia-query-password {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 22, 38, .58);
  backdrop-filter: blur(3px);
}

.huaxia-query-password.active {
  display: grid;
}

.huaxia-query-password-dialog {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid rgba(219, 228, 238, .95);
  box-shadow: 0 28px 80px rgba(6, 22, 38, .28);
  padding: 34px 34px 30px;
}

.huaxia-query-password-dialog::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--hxzn-blue-dark), var(--hxzn-blue), var(--hxzn-red));
}

.huaxia-query-password-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--hxzn-line);
  background: #fff;
  color: var(--hxzn-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}

.huaxia-query-password-close:hover {
  color: var(--hxzn-blue-dark);
  border-color: var(--hxzn-blue);
  background: #f7f9fb;
}

.huaxia-query-password-kicker {
  color: var(--hxzn-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.huaxia-query-password-dialog h3 {
  margin: 10px 42px 0 0;
  color: var(--hxzn-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.huaxia-query-password-dialog > p {
  margin: 13px 0 22px;
  color: var(--hxzn-muted);
  font-size: 14px;
  line-height: 1.8;
}

.huaxia-query-password-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--hxzn-text);
  font-size: 13px;
  font-weight: 600;
}

.huaxia-query-password-field input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--hxzn-line);
  background: #fff;
  color: var(--hxzn-ink);
  font-size: 15px;
  padding: 0 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.huaxia-query-password-field input:focus {
  border-color: var(--hxzn-blue);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, .10);
}

.huaxia-query-password-error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  color: #9a272a;
  background: #fff4f3;
  border: 1px solid #efcfcc;
  font-size: 13px;
  line-height: 1.6;
}

.huaxia-query-password-error.active {
  display: block;
}

.huaxia-query-password-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.huaxia-query-password-cancel,
.huaxia-query-password-submit {
  min-width: 108px;
  height: 44px;
  border: 1px solid var(--hxzn-line);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.huaxia-query-password-cancel {
  color: var(--hxzn-text);
  background: #fff;
}

.huaxia-query-password-submit {
  color: #fff;
  background: var(--hxzn-blue);
  border-color: var(--hxzn-blue);
}

.huaxia-query-password-cancel:hover {
  background: #f7f9fb;
  border-color: var(--hxzn-blue);
}

.huaxia-query-password-submit:hover {
  background: var(--hxzn-blue-dark);
  border-color: var(--hxzn-blue-dark);
  transform: translateY(-1px);
}

.huaxia-query-password-submit:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

body.huaxia-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .huaxia-disclosure-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 680px) {
  .huaxia-query-hero {
    min-height: 260px;
    padding: 100px 0 38px;
  }

  .huaxia-query-hero h1 {
    font-size: 30px;
  }

  .huaxia-query-wrap,
  .huaxia-detail-wrap {
    padding: 34px 0 58px;
  }

  .huaxia-disclosure-head,
  .huaxia-query-form,
  .huaxia-query-results,
  .huaxia-detail-tools,
  .huaxia-detail-header,
  .huaxia-detail-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .huaxia-query-options,
  .huaxia-query-search,
  .huaxia-detail-meta,
  .huaxia-detail-info-grid,
  .huaxia-detail-publish {
    grid-template-columns: 1fr;
  }

  .huaxia-detail-panel::after {
    display: none;
  }

  .huaxia-detail-title {
    padding-right: 0;
    font-size: 24px;
  }

  .huaxia-detail-section h3 {
    padding: 0 18px;
    font-size: 17px;
  }

  .huaxia-detail-info-grid,
  .huaxia-detail-publish,
  .huaxia-detail-statement {
    margin: 18px;
  }

  .huaxia-detail-info-grid,
  .huaxia-detail-publish {
    gap: 0;
  }

  .huaxia-detail-item {
    min-height: auto;
    padding: 14px 0 15px;
  }

  .huaxia-detail-header .huaxia-detail-actions {
    position: static;
    justify-content: stretch;
    margin-top: 18px;
  }

  .huaxia-query-detail-action {
    width: 100%;
  }

  .huaxia-query-password {
    padding: 18px;
  }

  .huaxia-query-password-dialog {
    padding: 30px 22px 24px;
  }

  .huaxia-query-password-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .huaxia-query-password-cancel,
  .huaxia-query-password-submit {
    width: 100%;
  }

  .huaxia-query-option + .huaxia-query-option {
    border-left: 0;
    border-top: 1px solid var(--hxzn-line);
  }

  .huaxia-detail-item.full {
    grid-column: auto;
  }
}
