    :root {
      --blue: #1e5bb8;
      --blue-dark: #154a9e;
      --blue-soft: #e8f2fb;
      --purple: #7c6fd6;
      --purple-soft: #edeaf8;
      --text: #1a1a1a;
      --text-2: #555;
      --text-3: #888;
      --white: #fff;
      --radius-lg: 14px;
      --radius-md: 10px;
      --radius-sm: 8px;
      --shadow: 0 8px 32px rgba(30, 91, 184, 0.08);
      --shadow-hover: 0 14px 40px rgba(30, 91, 184, 0.14);
      --maxw: 1240px;
      --header-h: 64px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
    }

    /* —— 顶栏 —— */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-h);
      display: flex;
      align-items: center;
      transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
    }
    .site-header.is-scrolled,
    .site-header.is-glass-static {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }
    .header-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
      color: var(--blue);
      line-height: 0;
      /* 无图时仍可作为文字 Logo */
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }
    .logo img {
      display: block;
      height: auto;
      max-height: 42px;
      width: auto;
      max-width: min(200px, 46vw);
      object-fit: contain;
      transition: opacity 0.2s ease;
    }
    .logo:hover img {
      opacity: 0.92;
    }
    .logo:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 3px;
      border-radius: 6px;
    }
    .logo span { color: var(--purple); }
    .nav-main {
      display: flex;
      align-items: center;
      flex: 1;
      justify-content: center;
    }
    .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: stretch;
      gap: 2px;
    }
    @media (min-width: 901px) and (max-width: 1100px) {
      .nav-item > .nav-link-root { padding: 8px 8px; font-size: 0.875rem; }
    }
    .nav-item {
      position: relative;
      display: flex;
      align-items: center;
    }
    /* 主导航根链接 */
    .nav-item > .nav-link-root {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      color: var(--text-2);
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 600;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
    }
    /* 有子菜单（.nav-dropdown）时显示下拉三角 */
    .nav-item:has(.nav-dropdown) > .nav-link-root::after {
      content: "";
      width: 0;
      height: 0;
      margin-left: 2px;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid currentColor;
      opacity: 0.45;
      flex-shrink: 0;
    }
    .nav-item.nav-item-flat:has(.nav-dropdown) > .nav-link-root::after { display: none; }
    .nav-item:hover > .nav-link-root,
    .nav-item:focus-within > .nav-link-root {
      color: var(--blue);
      background: rgba(30, 91, 184, 0.06);
    }
    /* 当前栏目（与模板中 nav-item active 对应） */
    .nav-item.active > .nav-link-root {
      color: var(--blue);
      background: rgba(30, 91, 184, 0.1);
    }
    .nav-item.active:has(.nav-dropdown) > .nav-link-root::after {
      opacity: 0.72;
      border-top-color: var(--blue);
    }
    .nav-item.active:hover > .nav-link-root,
    .nav-item.active:focus-within > .nav-link-root {
      color: var(--blue-dark);
      background: rgba(30, 91, 184, 0.14);
    }
    .nav-dropdown {
      position: absolute;
      top: calc(100% - 2px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 240px;
      max-width: min(92vw, 320px);
      padding: 10px 0;
      margin: 0;
      list-style: none;
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-hover);
      border: 1px solid rgba(30, 91, 184, 0.08);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      z-index: 1001;
    }
    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown li { margin: 0; }
    .nav-dropdown a {
      display: block;
      padding: 9px 18px;
      color: var(--text-2);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.4;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
      color: var(--blue);
      background: var(--blue-soft);
      outline: none;
    }
    .nav-dropdown .nav-dd-label {
      padding: 6px 18px 4px;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-3);
    }
    .nav-dropdown .nav-dd-label:not(:first-child) {
      margin-top: 6px;
      padding-top: 12px;
      border-top: 1px solid #eee;
    }
    .section,
    .contact-section {
      scroll-margin-top: calc(var(--header-h) + 12px);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), #3d7fd4);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(30, 91, 184, 0.35);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(30, 91, 184, 0.4);
    }
    .btn-ghost {
      background: transparent;
      color: var(--blue);
      border: 1px solid rgba(124, 111, 214, 0.45);
    }
    .btn-ghost:hover { background: var(--purple-soft); }
    .nav-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: none;
      background: var(--blue-soft);
      border-radius: var(--radius-sm);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--blue);
    }

    @media (max-width: 900px) {
      .nav-main { display: none; }
      .nav-main.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px 20px 20px;
        box-shadow: var(--shadow);
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
      }
      .nav-main.is-open .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
      }
      .nav-main.is-open .nav-item {
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid #eee;
      }
      .nav-main.is-open .nav-item > .nav-link-root {
        padding: 14px 0;
        border-radius: 0;
        white-space: normal;
      }
      .nav-main.is-open .nav-item.active > .nav-link-root {
        box-shadow: inset 4px 0 0 var(--blue);
        padding-left: 12px;
      }
      .nav-main.is-open .nav-item:has(.nav-dropdown) > .nav-link-root::after {
        display: none;
      }
      .nav-main.is-open .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        min-width: 0;
        max-width: none;
        padding: 0 0 8px 12px;
      }
      .nav-main.is-open .nav-dropdown .nav-dd-label {
        padding: 8px 0 4px;
        border: none;
        margin-top: 0;
      }
      .nav-main.is-open .nav-dropdown a {
        padding: 10px 0;
        font-size: 0.875rem;
      }
      .nav-toggle { display: flex; }
      .header-actions .btn-ghost { display: none; }
    }
    .section {
      padding: 72px 20px;
    }
    .section-head {
      max-width: var(--maxw);
      margin: 0 auto 44px;
      text-align: center;
    }
    .section-head h2 {
      font-size: clamp(1.5rem, 3vw, 1.875rem);
      margin: 0 0 12px;
      font-weight: 800;
    }
    .section-head p {
      margin: 0;
      color: var(--text-2);
      font-size: 1rem;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    .section-muted { background: #fafbfc; }

    /* —— 联系区 —— */
    .contact-section {
      background: linear-gradient(180deg, #1e5bb8 0%, #154a9e 100%);
      color: var(--white);
      padding: 56px 20px 32px;
    }
    .contact-grid {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr minmax(232px, 0.85fr) 1fr;
      gap: 22px 26px;
      align-items: stretch;
    }
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    }
    .contact-col {
      /* background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14); */
      border-radius: var(--radius-lg);
      padding: 22px 20px 24px;
    }
    .contact-col h3 { margin: 0 0 10px; font-size: 1.125rem; line-height: 1.35; }
    .contact-col .contact-lead {
      margin: 0 0 16px;
      opacity: 0.9;
      font-size: 0.875rem;
      line-height: 1.6;
    }
    .contact-col p { opacity: 0.92; font-size: 0.9375rem; margin: 0 0 12px; }
    .contact-col a.tel {
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      display: inline-block;
      letter-spacing: 0.02em;
    }
    .contact-col .subtel { font-size: 0.8125rem; opacity: 0.88; margin: 6px 0 0; }
    .contact-tel-row {
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .contact-meta-list {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0.8125rem;
      line-height: 1.55;
      opacity: 0.92;
    }
    .contact-meta-list li {
      display: flex;
      gap: 10px;
      margin-bottom: 11px;
      align-items: flex-start;
    }
    .contact-meta-list li:last-child { margin-bottom: 0; }
    .contact-meta-list .meta-k {
      flex-shrink: 0;
      width: 4.25em;
      opacity: 0.75;
      font-weight: 600;
    }
    .contact-meta-list a {
      color: var(--white);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .contact-quick-links {
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.8125rem;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
    }
    .contact-quick-links a {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.35);
      padding-bottom: 1px;
    }
    .contact-quick-links a:hover {
      color: #fff;
      border-bottom-color: #fff;
    }
    .contact-note {
      margin-top: 14px;
      font-size: 0.75rem;
      line-height: 1.5;
      opacity: 0.72;
    }
    .qr-block {
      text-align: left;
    }
    .qr-block .qr-head {
      font-size: 0.9375rem;
      font-weight: 700;
      margin: 0 0 6px;
    }
    .qr-block .qr-desc {
      font-size: 0.8125rem;
      opacity: 0.88;
      margin: 0 0 14px;
      line-height: 1.55;
    }
    .qr-row {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
    }
    .qr-placeholder {
      width: 112px;
      height: 112px;
      flex-shrink: 0;
      margin: 0;
      background: var(--white);
      border-radius: var(--radius-md);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    .qr-side {
      flex: 1;
      min-width: 0;
      font-size: 0.8125rem;
      line-height: 1.5;
      opacity: 0.9;
    }
    .qr-side .wxid { margin: 0 0 8px; font-weight: 600; }
    .qr-tip {
      margin: 0;
      font-size: 0.75rem;
      opacity: 0.78;
      line-height: 1.45;
    }
    .qr-side .qr-side-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
      padding: 6px 12px;
      font-size: 0.8125rem;
      font-weight: 600;
      line-height: 1.35;
      color: rgba(255, 255, 255, 0.95);
      text-decoration: none;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: var(--radius-sm);
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .qr-side .qr-side-link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.45);
    }
    .qr-side .qr-side-link:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.85);
      outline-offset: 2px;
    }
    .qr-actions {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .qr-actions .btn {
      width: 100%;
      justify-content: center;
    }
    .qr-mini {
      margin-top: 14px;
      padding: 10px 12px;
      background: rgba(0, 0, 0, 0.12);
      border-radius: var(--radius-sm);
      font-size: 0.75rem;
      line-height: 1.5;
      opacity: 0.88;
    }
    .qr-mini strong { font-weight: 700; opacity: 1; }
    .contact-form-wrap {
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      padding: 22px 20px 22px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: 100%;
    }
    .contact-form-head {
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .contact-form-head h3 {
      margin: 0 0 6px;
      font-size: 1.0625rem;
      font-weight: 700;
    }
    .contact-form-head p {
      margin: 0;
      font-size: 0.8125rem;
      opacity: 0.85;
      line-height: 1.5;
    }
    .contact-form-bullets {
      margin: 0 0 14px;
      padding-left: 1.1em;
      font-size: 0.75rem;
      opacity: 0.82;
      line-height: 1.55;
    }
    .contact-form-bullets li { margin-bottom: 4px; }
    .contact-form-wrap label {
      display: block;
      font-size: 0.75rem;
      margin-bottom: 4px;
      opacity: 0.9;
    }
    .contact-form-wrap input,
    .contact-form-wrap select,
    .contact-form-wrap textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.95);
      font-size: 0.875rem;
    }
    .contact-form-wrap textarea { min-height: 72px; resize: vertical; }
    .contact-form-wrap .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    @media (max-width: 520px) {
      .contact-form-wrap .form-row { grid-template-columns: 1fr; }
    }
    .contact-form-wrap .btn-submit {
      width: 100%;
      padding: 12px;
      background: var(--white);
      color: var(--blue);
      border: none;
      border-radius: var(--radius-sm);
      font-weight: 700;
      cursor: pointer;
      margin-top: 4px;
    }
    .contact-form-wrap .privacy {
      font-size: 0.6875rem;
      opacity: 0.75;
      margin-top: 10px;
    }
    .contact-form-wrap .privacy a { color: var(--white); }

    .site-footer {
      background: #0f3466;
      color: rgba(255, 255, 255, 0.75);
      padding: 24px 20px 32px;
      font-size: 0.8125rem;
    }
    .footer-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      text-align: center;
    }
    .footer-inner a { color: rgba(255, 255, 255, 0.9); }
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px 36px;
      margin-bottom: 20px;
      text-align: left;
    }
    .footer-nav-col {
      flex: 1 1 140px;
      min-width: 132px;
      max-width: 200px;
    }
    .footer-nav-title {
      margin: 0 0 10px;
      font-size: 0.875rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.3;
    }
    .footer-nav-title a {
      color: inherit;
      text-decoration: none;
    }
    .footer-nav-title a:hover { text-decoration: underline; }
    .footer-nav-sub {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .footer-nav-sub a {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.72);
      text-decoration: none;
      line-height: 1.35;
    }
    .footer-nav-sub a:hover {
      color: rgba(255, 255, 255, 0.95);
      text-decoration: underline;
    }
    @media (max-width: 640px) {
      .footer-nav {
        justify-content: space-between;
        gap: 20px 16px;
      }
      .footer-nav-col {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
      }
    }

    /* —— 右侧悬浮 —— */
    .float-bar {
      position: fixed;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 900;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--white);
      box-shadow: var(--shadow-hover);
      cursor: pointer;
      font-size: 0.6875rem;
      color: var(--blue);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.1;
      padding: 4px;
    }
    .float-btn a {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-sizing: border-box;
      width: 2em;
      max-width: calc(100% - 8px);
      min-width: 0;
      padding: 0;
      border-radius: inherit;
      color: inherit;
      font: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: 1.15;
      text-align: center;
      text-decoration: none;
      word-break: break-all;
      overflow-wrap: anywhere;
      -webkit-tap-highlight-color: transparent;
    }
    .float-btn a:hover,
    .float-btn a:visited,
    .float-btn a:active {
      color: inherit;
      text-decoration: none;
    }
    .float-btn a:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
      z-index: 1;
    }
    .float-btn:hover { background: var(--blue-soft); }
    @media (max-width: 768px) {
      .float-bar {
        top: auto;
        bottom: 20px;
        right: 16px;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 200px;
        justify-content: flex-end;
      }
      .float-btn { width: 44px; height: 44px; font-size: 0.625rem; }
    }

    /* —— 弹窗 —— */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .modal-overlay.is-open { display: flex; }
    .modal-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 440px;
      width: 100%;
      max-height: 90vh;
      overflow: auto;
      padding: 28px;
      position: relative;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    }
    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border: none;
      background: #f3f4f6;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
      color: var(--text-2);
    }
    .modal-box h3 { margin: 0 0 8px; font-size: 1.25rem; }
    .modal-box .hint { font-size: 0.8125rem; color: var(--text-3); margin: 0 0 20px; }
    .modal-box label { display: block; font-size: 0.8125rem; margin-bottom: 4px; color: var(--text-2); }
    .modal-box input,
    .modal-box select,
    .modal-box textarea {
      width: 100%;
      margin-bottom: 14px;
      padding: 10px 12px;
      border: 1px solid #ddd;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
    }
    .modal-box textarea { min-height: 80px; resize: vertical; }
    .modal-box .btn-primary { width: 100%; border-radius: var(--radius-sm); }

    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: #1a1a1a;
      color: var(--white);
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.875rem;
      z-index: 3000;
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
      pointer-events: none;
    }
    .toast.is-show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    /* —— 分页跳转（.gl-pagination 内 .jumpto / .page_number，与 generic-list 分页视觉一致）—— */
    .gl-pagination .pagination > li:has(form.jumpto),
    .gl-pagination .pager > li:has(form.jumpto) {
      display: inline-flex;
      align-items: center;
    }

    .gl-pagination form.jumpto {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
    }

    /* CMS 常把 input 包在 a 内；contents 便于与相邻页码对齐 */
    .gl-pagination form.jumpto > a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      text-decoration: none;
      color: inherit;
      cursor: default;
    }

    .gl-pagination form.jumpto .page_number {
      width: 52px;
      min-width: 0;
      height: 40px;
      padding: 0 8px;
      border: 1px solid #e8eaed;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-2);
      background: var(--white);
      box-sizing: border-box;
      text-align: center;
    }

    .gl-pagination form.jumpto .page_number::placeholder {
      color: var(--text-3);
      font-weight: 500;
    }

    .gl-pagination form.jumpto .page_number:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(30, 91, 184, 0.15);
    }

    .gl-pagination form.jumpto input[type="submit"] {
      height: 40px;
      padding: 0 14px;
      border: 1px solid #e8eaed;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-2);
      background: var(--white);
      cursor: pointer;
      box-sizing: border-box;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .gl-pagination form.jumpto input[type="submit"]:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-soft);
    }

    @media (max-width: 600px) {
      .gl-pagination form.jumpto .page_number,
      .gl-pagination form.jumpto input[type="submit"] {
        height: 36px;
        font-size: 0.8125rem;
      }
      .gl-pagination form.jumpto .page_number {
        width: 48px;
      }
    }
