    #homeConsolePane {
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: rgba(15, 15, 15, 0.85);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
      border-bottom: 1px solid rgba(255, 248, 235, 0.08);
      border-radius: 12px;
      overflow: hidden;
      transform-origin: top center;
      max-height: 1400px;
      opacity: 1;
      transform: translateY(0);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      margin-top: 0.35rem;
    }
    #homeConsolePane.is-collapsed {
      max-height: 0;
      opacity: 0;
      transform: translateY(-14px);
      margin-top: 0;
      padding-top: 0;
      padding-bottom: 0;
      border: none !important;
      box-shadow: none;
      pointer-events: none;
    }
    /* 不可对工具栏同时设 overflow-x: auto + overflow-y: visible（规范会把 y 算成 auto），会裁掉向下展开的 listbox */
    .console-toolbar { overflow: visible; }
    .console-shell.cg-shell {
      border: 1px solid rgba(212, 175, 118, 0.14);
      border-radius: 14px;
      padding: 0.55rem 0.7rem 0.58rem;
      background: rgba(34, 30, 26, 0.52);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 252, 245, 0.06);
      display: grid;
      grid-template-columns:
        minmax(4.75rem, 6.8em)
        minmax(2.85rem, 3.35rem)
        max-content
        minmax(3rem, 0.92fr)
        minmax(3rem, 0.92fr)
        minmax(3rem, 0.92fr)
        minmax(6.5rem, 1fr)
        minmax(clamp(15.5rem, 25vw, 21.5rem), 1.45fr);
      grid-template-rows: auto auto auto;
      gap: 0.42rem 0.48rem;
      align-items: start;
      overflow: visible;
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }
    .cg-r1-name { grid-column: 1; grid-row: 1; min-width: 0; align-self: end; }
    .cg-r1-gen { grid-column: 2; grid-row: 1; align-self: end; }
    .cg-r1-cal {
      grid-column: 3; grid-row: 1;
      justify-self: start; width: fit-content; max-width: 100%;
      align-self: end;
    }
    .cg-date-block { grid-column: 4 / 7; grid-row: 1; min-width: 0; width: 100%; align-self: end; }
    .cg-r1-time { grid-column: 7; grid-row: 1; min-width: 0; width: 100%; align-self: end; }
    /* 批文侧重 + 排盘 / 生成：壳内第 8 列侧栏（图2） */
    .console-shell.cg-shell > .console-actions.cg-actions {
      grid-column: 8;
      grid-row: 1 / 4;
      align-self: stretch;
      display: flex;
      flex-flow: column nowrap;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0.42rem;
      min-width: 0;
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 0.18rem 0 0.22rem 0.62rem;
      box-sizing: border-box;
      border-top: none;
      border-left: 1px solid rgba(255, 248, 235, 0.08);
      background: rgba(34, 30, 26, 0.45);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: relative;
      z-index: 2;
    }
    .cg-actions-stack {
      display: flex; flex-direction: column; align-items: stretch; gap: 0.4rem; width: 100%; min-width: 0;
    }
    .reading-question-wrap {
      width: 100%;
      min-width: 0;
      margin: 0 0 0.12rem;
      padding: 0;
      border: none;
      background: transparent;
    }
    .reading-question-label {
      margin: 0 0 0.28rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: rgba(188, 178, 168, 0.84);
      text-align: left;
      text-indent: 0;
    }
    .reading-question-input {
      width: 100%;
      min-height: 4rem;
      height: 4rem;
      max-height: 4rem;
      resize: none;
      overflow-y: auto;
      border-radius: 8px;
      border: 1px solid rgba(196, 165, 118, 0.24);
      background: rgba(14, 12, 10, 0.72);
      color: rgba(238, 232, 222, 0.94);
      padding: 0.4rem 0.45rem;
      font: inherit;
      font-size: 0.73rem;
      line-height: 1.45;
      box-sizing: border-box;
    }
    .reading-question-input:focus {
      outline: none;
      border-color: rgba(196, 165, 118, 0.5);
      box-shadow: 0 0 0 1px rgba(196, 165, 118, 0.2);
    }
    .cg-actions-main-btns {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 0.35rem 0.55rem;
      width: 100%;
      min-width: 0;
      padding: 0.38rem 0 0;
    }
    .cg-actions-main-btns .ai-reading-item {
      flex: 1 1 min(0, 9.5rem);
      min-width: 0;
      max-width: 100%;
    }
    /* 521px+：排盘与专业生成键同一网格行等高，说明在第二行 */
    @media (min-width: 521px) {
      .cg-actions-main-btns {
        display: grid;
        grid-template-columns: minmax(5.75rem, auto) 1fr;
        grid-template-rows: auto auto;
        column-gap: 0.45rem;
        row-gap: 0.22rem;
        align-items: stretch;
        justify-items: stretch;
      }
      .cg-actions-main-btns .ai-reading-item {
        display: contents;
      }
      .console-shell.cg-shell .cg-actions-main-btns #btnPaipan {
        grid-column: 1;
        grid-row: 1;
        align-self: stretch;
        justify-self: stretch;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 2.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      #btnAiPro {
        grid-column: 2;
        grid-row: 1;
        align-self: stretch;
        width: 100%;
        min-height: 2.35rem;
        height: auto;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal;
        line-height: 1.25;
      }
      #btnAiPro + .ai-reading-hint {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
        text-align: center;
        max-width: 100%;
      }
    }
    @media (min-width: 961px) {
      .console-shell.cg-shell > .cg-actions .cg-actions-main-btns .ai-reading-item button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.25;
        min-height: 2.35rem;
        height: auto;
        padding-left: 0.45rem;
        padding-right: 0.45rem;
        font-size: 0.74rem;
      }
      .console-shell.cg-shell > .cg-actions .cg-actions-main-btns .ai-reading-hint {
        max-width: 100%;
        font-size: 0.58rem;
        line-height: 1.32;
      }
    }
    .reading-topic-wrap {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.42rem;
    }
    .reading-moa-wrap {
      width: 100%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
    .reading-moa-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
      font-size: 0.78rem;
      color: rgba(196, 186, 172, 0.92);
      user-select: none;
      cursor: pointer;
      white-space: nowrap;
    }
    .reading-moa-toggle input {
      width: auto;
      height: auto;
      margin: 0;
      accent-color: #a68b5c;
      cursor: pointer;
    }
    .reading-topic-legend {
      font-size: clamp(1rem, 2.6vw, 1.28rem);
      color: rgba(220, 210, 196, 0.94);
      font-weight: 700;
      letter-spacing: 0.38em;
      text-indent: 0.38em;
      text-align: center;
      width: 100%;
    }
    .console-shell.cg-shell > .cg-actions .reading-topic-legend {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-indent: 0;
      text-align: left;
      color: rgba(200, 190, 176, 0.9);
    }
    .console-shell.cg-shell > .cg-actions .reading-topic-wrap {
      align-items: flex-end;
      gap: 0.32rem;
    }
    .console-shell.cg-shell > .cg-actions .reading-moa-wrap {
      justify-content: flex-end;
    }
    .console-shell.cg-shell > .cg-actions .reading-topic-group button {
      font-size: 0.72rem;
      padding: 0.38rem 0.52rem 0.32rem 0.22rem;
      height: auto;
      min-height: 2.15rem;
      white-space: normal;
      line-height: 1.28;
      text-align: center;
      word-break: keep-all;
    }
    .console-shell.cg-shell > .cg-actions .reading-topic-group button::after {
      width: 0.4rem;
      height: 0.4rem;
      top: 0.2rem;
      right: 0.14rem;
    }
    .reading-topic-group {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      width: 100%;
      min-width: 0;
      border: 1px solid rgba(212, 175, 118, 0.14); border-radius: 8px; overflow: hidden;
      background: rgba(20, 18, 16, 0.55); box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.04);
    }
    .console-actions.cg-actions .reading-topic-group button {
      position: relative;
      min-width: 0;
      width: 100%;
      height: 2.05rem;
      margin: 0;
      padding: 0.38rem 1.15rem 0.28rem 0.22rem;
      border: none;
      border-radius: 0;
      border-right: 1px solid rgba(255, 248, 235, 0.06);
      background: rgba(34, 30, 26, 0.4);
      color: rgba(168, 158, 148, 0.85);
      font: inherit;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      cursor: pointer;
      white-space: nowrap;
      box-shadow: none;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .console-actions.cg-actions .reading-topic-group button::after {
      content: "";
      position: absolute;
      top: 0.22rem;
      right: 0.24rem;
      width: 0.48rem;
      height: 0.48rem;
      box-sizing: border-box;
      border: 1px solid rgba(200, 188, 168, 0.55);
      border-radius: 2px;
      pointer-events: none;
      background: transparent;
      transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }
    .console-actions.cg-actions .reading-topic-group button.active::after {
      border-color: rgba(255, 246, 228, 0.95);
      background: rgba(228, 205, 160, 0.96);
      box-shadow: inset 0 0 0 1px rgba(62, 50, 36, 0.35);
    }
    .console-actions.cg-actions .reading-topic-group button:last-child { border-right: none; }
    .console-actions.cg-actions .reading-topic-group button:hover:not(.active) {
      background: rgba(48, 44, 40, 0.55); color: rgba(218, 208, 196, 0.9);
    }
    .console-actions.cg-actions .reading-topic-group button:focus-visible {
      outline: 2px solid #8b6914; outline-offset: -2px; z-index: 1; position: relative;
    }
    .console-actions.cg-actions .reading-topic-group button.active {
      background: linear-gradient(180deg, rgba(90, 78, 58, 0.95) 0%, rgba(58, 50, 40, 0.98) 100%);
      color: rgba(220, 200, 160, 0.95); font-weight: 600;
      box-shadow: inset 0 1px 0 rgba(196, 165, 118, 0.18);
    }
    .cg-bazi-manual-shell {
      grid-column: 1 / 8;
      grid-row: 2;
      align-self: start;
      min-width: 0;
      width: 100%;
      padding: 0.35rem 0.25rem 0.15rem;
      border-radius: 10px;
      border: 1px solid rgba(212, 175, 118, 0.12);
      background: rgba(20, 18, 16, 0.35);
    }
    .cg-bazi-manual-shell > .micro-field > label {
      letter-spacing: 0.12em;
    }
    .cg-bazi-manual__controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.45rem;
      width: 100%;
      min-width: 0;
    }
    .cg-bazi-manual__input {
      flex: 1 1 12rem;
      min-width: 0;
      max-width: 100%;
      height: 1.88rem;
      min-height: 1.88rem;
    }
    .cg-bazi-manual__controls button {
      height: 1.88rem;
      padding: 0 0.85rem;
      border-radius: 8px;
      border: 1px solid rgba(196, 165, 118, 0.35);
      background: rgba(42, 38, 34, 0.88);
      color: rgba(245, 238, 228, 0.95);
      font: inherit;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      cursor: pointer;
      white-space: nowrap;
    }
    .cg-bazi-manual__controls button:disabled {
      opacity: 0.5;
      cursor: wait;
    }
    .cg-bazi-manual__range {
      margin: 0.28rem 0 0.15rem;
      font-size: 0.65rem;
      color: rgba(148, 138, 128, 0.78);
      letter-spacing: 0.04em;
    }
    .cg-bazi-manual__results {
      margin-top: 0.35rem;
      display: flex;
      flex-direction: column;
      gap: 0.32rem;
      max-height: 7.5rem;
      overflow-y: auto;
      scrollbar-width: thin;
    }
    .cg-bazi-manual__hit {
      text-align: left;
      padding: 0.38rem 0.45rem;
      border-radius: 8px;
      border: 1px solid rgba(212, 175, 118, 0.16);
      background: rgba(18, 16, 14, 0.55);
      color: rgba(228, 220, 208, 0.94);
      font-size: 0.78rem;
      font-variant-numeric: tabular-nums;
      cursor: pointer;
      line-height: 1.45;
      transition: border-color 0.15s ease, background 0.15s ease;
    }
    button.cg-bazi-manual__hit {
      font: inherit;
      width: 100%;
      display: block;
    }
    .cg-bazi-manual__hit:hover {
      border-color: rgba(196, 165, 118, 0.42);
      background: rgba(32, 28, 24, 0.75);
    }
    .cg-bazi-manual__hit--muted {
      cursor: default;
      opacity: 0.72;
      font-size: 0.72rem;
    }
    .cg-geo-dd-row {
      flex: 1 1 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.4rem 0.5rem;
      min-width: 0;
      width: 100%;
    }
    .cg-geo-dd-row .geo-dd {
      flex: 1 1 4.5rem;
      min-width: 3.85rem;
      max-width: 7.8rem;
      width: clamp(4.2rem, 12vw, 7.2rem);
    }
    .cg-geo-dd-row .geo-pair {
      display: inline-flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 0.18rem 0.32rem;
      flex: 0 1 auto;
      min-width: 0;
    }
    .cg-geo-dd-row .geo-pair .ctrl-input--lng {
      width: 4.05rem;
      min-width: 3.35rem;
    }
    .cg-place-subrow {
      flex: 1 1 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: 0.45rem 0.75rem;
      min-width: 0;
      width: 100%;
    }
    .cg-place-line-geo {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.45rem 0.65rem;
      width: 100%;
      min-width: 0;
    }
    .place-inline-head {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.08rem;
      min-width: 3.1rem;
    }
    .place-heading {
      display: block;
      width: 100%;
      text-align: left;
      font-size: 0.9rem;
      color: rgba(210, 200, 188, 0.92);
      letter-spacing: 0.12em;
      font-weight: 600;
      line-height: 1.2;
      margin: 0;
    }
    .place-inline-head .region-status {
      display: block;
      max-width: 10rem;
      text-align: left;
      font-size: 0.65rem;
      color: rgba(148, 138, 128, 0.75);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .cg-place-line-geo .cg-geo-dd-row {
      flex: 1 1 10rem;
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
      gap: 0.4rem 0.48rem;
      align-items: center;
    }
    .cg-place-line-geo .cg-geo-dd-row .geo-dd {
      min-width: 0;
      max-width: none;
      width: 100%;
    }
    .cg-place-subrow--solar {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.45rem 0.65rem;
      align-items: center;
      width: 100%;
      margin-top: 0.12rem;
    }
    .cg-solar-slot {
      min-width: 0;
      justify-self: stretch;
      width: 100%;
    }
    .cg-solar-slot .ctrl-check,
    .cg-solar-slot .zi-inline {
      width: 100%;
      justify-content: flex-start;
    }
    .cg-solar-slot--zi select {
      width: 100%;
      max-width: 100%;
    }
    .cg-place-rest {
      grid-column: 1 / 8;
      grid-row: 3;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.22rem;
      min-width: 0;
      width: 100%;
      overflow: visible;
      align-self: start;
    }
    .console-shell.cg-shell .cg-actions-main-btns #btnPaipan {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-width: 5.75rem;
      min-height: 2.35rem;
      height: auto;
      padding: 0 0.85rem;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-indent: 0.18em;
      border-radius: 10px;
      border: 1px solid rgba(210, 178, 118, 0.55);
      background: linear-gradient(180deg, rgba(92, 76, 54, 0.98) 0%, rgba(48, 40, 32, 0.99) 100%);
      color: rgba(255, 250, 238, 0.98);
      cursor: pointer;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      transition:
        transform 0.08s ease,
        box-shadow 0.12s ease,
        filter 0.12s ease,
        border-color 0.12s ease;
      box-shadow:
        0 5px 22px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 252, 245, 0.12);
    }
    .console-shell.cg-shell .cg-actions-main-btns #btnPaipan:hover:not(:disabled) {
      border-color: rgba(236, 208, 150, 0.88);
      filter: brightness(1.08);
      box-shadow:
        0 6px 26px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 252, 245, 0.16);
    }
    .console-shell.cg-shell .cg-actions-main-btns #btnPaipan:active:not(:disabled) {
      transform: translateY(2px);
      filter: brightness(0.94);
      box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        inset 0 2px 8px rgba(0, 0, 0, 0.35);
    }
    .console-shell.cg-shell .cg-actions-main-btns #btnPaipan:focus-visible {
      outline: 2px solid rgba(236, 200, 130, 0.9);
      outline-offset: 3px;
    }
    /* 出生地：自定义浮层（面板打开时挂到 body，避免被工具栏裁切） */
    /* ========== picker 样式区：自定义下拉浮层 ========== */
