:root {
      --hsj-navy: #10263f;
      --hsj-navy-deep: #091a2d;
      --hsj-teal: #0f6f73;
      --hsj-teal-dark: #0b5559;
      --hsj-amber: #d69a35;
      --hsj-ink: #172033;
      --hsj-muted: #657287;
      --hsj-line: #dce3ea;
      --hsj-surface: #ffffff;
      --hsj-page: #f6f8fa;
      --hsj-focus: #f2b84b;
      --hsj-danger: #a33d3d;
      --hsj-shadow: 0 18px 50px rgba(16, 38, 63, 0.10);
      --hsj-radius: 16px;
      --hsj-header-height: 112px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      background: var(--hsj-page);
      color: var(--hsj-ink);
      font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

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

    img,
    video,
    iframe {
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    a {
      color: var(--hsj-teal);
    }

    a:hover {
      color: var(--hsj-teal-dark);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid var(--hsj-focus);
      outline-offset: 3px;
    }

    .hsj-skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 2000;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--hsj-navy-deep);
      color: #ffffff;
      text-decoration: none;
      transform: translateY(-160%);
      transition: transform 0.18s ease;
    }

    .hsj-skip-link:focus {
      transform: translateY(0);
    }

    .hsj-visually-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      border: 0 !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      white-space: nowrap !important;
    }

    .hsj-site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      min-height: var(--hsj-header-height);
      border-top: 1px solid #d6d6d6;
      border-bottom: 1px solid #f0f2f7;
      background: #ffffff;
      box-shadow: 0 5px 18px rgba(13, 24, 54, 0.04);
    }

    .hsj-header-inner {
      display: flex;
      position: relative;
      width: min(1360px, calc(100% - 48px));
      min-height: var(--hsj-header-height);
      margin: 0 auto;
      align-items: center;
      justify-content: flex-start;
      gap: 120px;
    }

    .hsj-brand {
      display: inline-flex;
      flex: 0 0 auto;
      align-items: center;
      text-decoration: none;
    }

    .hsj-brand img {
      display: block;
      width: 162px;
      height: auto;
      max-height: 44px;
      object-fit: contain;
    }

    .hsj-nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 10px;
      border: 1px solid var(--hsj-line);
      border-radius: 10px;
      background: #ffffff;
      color: var(--hsj-navy);
      cursor: pointer;
    }

    .hsj-nav-toggle-lines,
    .hsj-nav-toggle-lines::before,
    .hsj-nav-toggle-lines::after {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      content: "";
      transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .hsj-nav-toggle-lines {
      position: relative;
      margin: 0 auto;
    }

    .hsj-nav-toggle-lines::before {
      position: absolute;
      top: -7px;
      left: 0;
    }

    .hsj-nav-toggle-lines::after {
      position: absolute;
      top: 7px;
      left: 0;
    }

    .hsj-nav-toggle[aria-expanded="true"] .hsj-nav-toggle-lines {
      background: transparent;
    }

    .hsj-nav-toggle[aria-expanded="true"] .hsj-nav-toggle-lines::before {
      transform: translateY(7px) rotate(45deg);
    }

    .hsj-nav-toggle[aria-expanded="true"] .hsj-nav-toggle-lines::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hsj-primary-nav {
      display: flex;
      flex: 1 1 1020px;
      width: 100%;
      max-width: 1020px;
      min-width: 0;
      align-items: center;
      justify-content: flex-start;
      gap: 48px;
    }

    .hsj-nav-item {
      position: relative;
      flex: 0 0 auto;
    }

    .hsj-nav-link,
    .hsj-dropdown-toggle {
      display: inline-flex;
      min-height: 48px;
      padding: 10px 3px;
      align-items: center;
      justify-content: center;
      gap: 7px;
      border: 0;
      border-radius: 7px;
      background: transparent;
      color: #333333;
      font-size: 16px;
      font-weight: 450;
      line-height: 1.2;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
    }

    .hsj-nav-link:hover,
    .hsj-nav-link:focus-visible,
    .hsj-dropdown-toggle:hover,
    .hsj-dropdown-toggle:focus-visible,
    .hsj-nav-item.is-open > .hsj-dropdown-toggle {
      background: #f6f8ff;
      color: #244de3;
    }

    .hsj-nav-chevron {
      width: 0;
      height: 0;
      margin-top: 2px;
      border-top: 4px solid currentColor;
      border-right: 3.5px solid transparent;
      border-left: 3.5px solid transparent;
      transition: transform 0.18s ease;
    }

    .hsj-nav-item.is-open > .hsj-dropdown-toggle .hsj-nav-chevron {
      transform: rotate(180deg);
    }

    .hsj-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      z-index: 1020;
      min-width: 270px;
      padding: 14px;
      border: 1px solid #e1e6f0;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 20px 48px rgba(15, 25, 63, 0.16);
      opacity: 1;
      visibility: hidden;
      pointer-events: none;
      transform: translate(-50%, -8px);
      transition: transform 0.16s ease;
    }

    .hsj-dropdown::before {
      position: absolute;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 14px;
      content: "";
    }

    .hsj-nav-item.is-open > .hsj-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .hsj-dropdown--incorporation {
      width: min(670px, calc(100vw - 40px));
    }

    .hsj-dropdown--compliance {
      width: 318px;
    }

    .hsj-dropdown-list {
      display: grid;
      margin: 0;
      padding: 0;
      gap: 4px;
      list-style: none;
    }

    .hsj-dropdown--incorporation .hsj-dropdown-list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hsj-dropdown a {
      display: flex;
      min-height: 40px;
      padding: 9px 11px;
      align-items: center;
      border-radius: 8px;
      color: #263048;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      text-decoration: none;
    }

    .hsj-dropdown a:hover,
    .hsj-dropdown a:focus-visible {
      background: #f0f4ff;
      color: #244de3;
    }

    @media (hover: hover) and (min-width: 1201px) {
      .hsj-nav-item:hover > .hsj-dropdown,
      .hsj-nav-item:focus-within > .hsj-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
      }
    }

    .hsj-language-wrap {
      position: relative;
      flex: 0 0 auto;
      margin-left: -34px;
    }

    .hsj-language-wrap::after {
      position: absolute;
      top: 50%;
      right: 16px;
      width: 7px;
      height: 7px;
      border-right: 2px solid #353b48;
      border-bottom: 2px solid #353b48;
      content: "";
      pointer-events: none;
      transform: translateY(-70%) rotate(45deg);
    }

    .hsj-language-select {
      width: 145px;
      min-height: 50px;
      padding: 10px 42px 10px 16px;
      border: 1px solid #edf0f7;
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 3px 7px rgba(49, 87, 238, 0.12);
      color: #333333;
      font-size: 14px;
      line-height: 1.2;
      appearance: none;
      cursor: pointer;
    }

    .hsj-language-select:hover {
      border-color: #d8def0;
    }

    .hsj-header-cta {
      display: inline-flex;
      width: 140px;
      min-height: 48px;
      padding: 10px 18px;
      align-items: center;
      justify-content: center;
      border: 1px solid #3157ee;
      border-radius: 10px;
      background: #3157ee;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: none;
      transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
    }

    .hsj-header-cta:hover {
      border-color: #2449d7;
      background: #2449d7;
      box-shadow: 0 8px 18px rgba(49, 87, 238, 0.22);
      transform: translateY(-1px);
    }

    .hsj-page-shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 24px 0 72px;
    }

    .hsj-breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin: 0 0 22px;
      color: var(--hsj-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .hsj-breadcrumb a {
      color: var(--hsj-teal);
      text-decoration: none;
    }

    .hsj-breadcrumb a:hover,
    .hsj-breadcrumb a:focus-visible {
      text-decoration: underline;
    }

    .hsj-breadcrumb-current {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .hsj-content-host {
      min-width: 0;
    }

    .hsj-content-host > main {
      width: 100%;
      min-width: 0;
      margin: 0;
      overflow-wrap: anywhere;
    }

    .hsj-content-host > main h1,
    .hsj-content-host > main h2,
    .hsj-content-host > main h3 {
      color: var(--hsj-navy);
      line-height: 1.25;
      text-wrap: balance;
    }

    .hsj-content-host > main h1 {
      font-size: clamp(34px, 5vw, 58px);
      letter-spacing: -0.035em;
    }

    .hsj-content-host > main h2 {
      font-size: clamp(25px, 3.2vw, 36px);
      letter-spacing: -0.02em;
    }

    .hsj-content-host > main h3 {
      font-size: clamp(19px, 2.3vw, 25px);
    }

    .hsj-content-host > main p,
    .hsj-content-host > main li {
      color: #29364a;
    }

    .hsj-content-host > main img,
    .hsj-content-host > main video,
    .hsj-content-host > main iframe {
      max-width: 100%;
      height: auto;
    }

    .hsj-content-host > main table {
      max-width: 100%;
      border-collapse: collapse;
    }

    .hsj-content-host > main a {
      overflow-wrap: anywhere;
    }

    .hsj-content-host .key-takeaways-title,
    .hsj-content-host .toc-title {
      max-width: 820px;
      margin-right: auto;
      margin-left: auto;
    }

    .hsj-content-host .key-takeaways-title + ul,
    .hsj-content-host .toc-title + ul {
      max-width: 820px;
      margin-right: auto;
      margin-left: auto;
    }

    .hsj-site-footer {
      border-top: 0;
      background: #070e30;
      color: #ffffff;
    }

    .hsj-footer-inner {
      display: grid;
      width: min(1320px, calc(100% - 96px));
      margin: 0 auto;
      padding: 74px 0 37px;
      grid-template-columns:
        minmax(380px, 1.2fr)
        minmax(320px, 1fr)
        minmax(150px, 0.55fr);
      gap: clamp(56px, 5vw, 88px);
      align-items: start;
      justify-content: center;
    }

    .hsj-footer-logo {
      display: block;
      width: 232px;
      height: auto;
      margin: 0 0 30px;
      object-fit: contain;
    }

    .hsj-footer-about {
      transform: translateY(2px);
    }

    .hsj-footer-services,
    .hsj-footer-company {
      padding-top: 82px;
    }

    .hsj-footer-address,
    .hsj-footer-contact {
      margin: 0;
      color: #ffffff;
      font-size: 13px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.85;
    }

    .hsj-footer-contact {
      margin-top: 23px;
    }

    .hsj-footer-address strong,
    .hsj-footer-contact strong {
      display: block;
      margin-bottom: 1px;
      font-size: 16px;
      font-weight: 750;
      line-height: 1.55;
    }

    .hsj-footer-contact a {
      color: #ffffff;
      text-decoration: none;
    }

    .hsj-footer-contact a:hover,
    .hsj-footer-contact a:focus-visible {
      color: #ffffff;
      text-decoration: underline;
    }

    .hsj-footer-title {
      margin: 2px 0 12px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      line-height: 1.5;
      text-transform: uppercase;
    }

    .hsj-footer-links {
      display: grid;
      gap: 13px;
    }

    .hsj-footer-links a {
      width: fit-content;
      color: #ffffff;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.6;
      text-decoration: none;
    }

    .hsj-footer-services .hsj-footer-links {
      gap: 13px;
    }

    .hsj-footer-services .hsj-footer-links a {
      font-size: 14px;
      line-height: 1.6;
    }

    .hsj-footer-company .hsj-footer-links {
      gap: 13px;
    }

    .hsj-footer-company .hsj-footer-links a {
      white-space: nowrap;
    }

    .hsj-footer-links a:hover,
    .hsj-footer-links a:focus-visible {
      color: #ffffff;
      text-decoration: underline;
    }

    .hsj-footer-bottom {
      width: min(1320px, calc(100% - 96px));
      margin: 0 auto;
      padding: 40px 0 7px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      color: #ffffff;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
    }

    .hsj-footer-legal-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      column-gap: 28px;
      row-gap: 8px;
      margin-top: 12px;
      padding-bottom: 20px;
    }

    .hsj-footer-legal-links a {
      color: #ffffff;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.5;
      text-decoration: none;
      white-space: nowrap;
    }

    .hsj-footer-legal-links a:hover,
    .hsj-footer-legal-links a:focus-visible {
      color: #ffffff;
      text-decoration: underline;
    }

    .hsj-modal {
      position: fixed;
      inset: 0;
      z-index: 1500;
      display: none;
      padding: 24px;
      align-items: center;
      justify-content: center;
      background: rgba(5, 17, 30, 0.72);
      overflow-y: auto;
    }

    .hsj-modal.is-open {
      display: flex;
    }

    .hsj-modal-dialog {
      position: relative;
      width: min(680px, 100%);
      max-height: calc(100vh - 48px);
      overflow-y: auto;
      border: 1px solid rgba(16, 38, 63, 0.10);
      border-radius: 20px;
      background: #ffffff;
      box-shadow: 0 28px 90px rgba(3, 16, 29, 0.35);
    }

    .hsj-modal-header {
      padding: 28px 70px 18px 28px;
      border-bottom: 1px solid var(--hsj-line);
    }

    .hsj-modal-kicker {
      display: block;
      margin: 0 0 6px;
      color: var(--hsj-teal);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .hsj-modal-title {
      margin: 0 0 8px;
      color: var(--hsj-navy);
      font-size: clamp(24px, 4vw, 34px);
      line-height: 1.2;
    }

    .hsj-modal-intro {
      margin: 0;
      color: var(--hsj-muted);
      font-size: 15px;
    }

    .hsj-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--hsj-line);
      border-radius: 50%;
      background: #ffffff;
      color: var(--hsj-navy);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
    }

    .hsj-modal-close:hover {
      background: #f0f4f7;
    }

    .hsj-contact-form {
      padding: 24px 28px 30px;
    }

    .hsj-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 17px;
    }

    .hsj-field {
      display: grid;
      gap: 7px;
    }

    .hsj-field-full {
      grid-column: 1 / -1;
    }

    .hsj-field label {
      color: var(--hsj-navy);
      font-size: 14px;
      font-weight: 700;
    }

    .hsj-field input,
    .hsj-field select,
    .hsj-field textarea {
      width: 100%;
      min-height: 46px;
      padding: 11px 12px;
      border: 1px solid #cbd5df;
      border-radius: 9px;
      background: #ffffff;
      color: var(--hsj-ink);
      transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .hsj-field textarea {
      min-height: 124px;
      resize: vertical;
    }

    .hsj-field input:hover,
    .hsj-field select:hover,
    .hsj-field textarea:hover {
      border-color: #9baabc;
    }

    .hsj-required {
      color: var(--hsj-danger);
    }

    .hsj-form-note {
      margin: 16px 0 0;
      color: var(--hsj-muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .hsj-form-actions {
      display: flex;
      margin-top: 20px;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .hsj-button-secondary,
    .hsj-button-primary {
      display: inline-flex;
      min-height: 46px;
      padding: 11px 18px;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      font-weight: 750;
      cursor: pointer;
    }

    .hsj-button-secondary {
      border: 1px solid var(--hsj-line);
      background: #ffffff;
      color: var(--hsj-navy);
    }

    .hsj-button-secondary:hover {
      background: #f0f4f7;
    }

    .hsj-button-primary {
      border: 1px solid var(--hsj-teal);
      background: var(--hsj-teal);
      color: #ffffff;
    }

    .hsj-button-primary:hover {
      border-color: var(--hsj-teal-dark);
      background: var(--hsj-teal-dark);
    }

    @media (max-width: 1200px) {
      :root {
        --hsj-header-height: 76px;
      }

      .hsj-header-inner {
        justify-content: space-between;
        gap: 20px;
      }

      .hsj-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .hsj-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - var(--hsj-header-height) - 18px);
        padding: 14px;
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        justify-content: stretch;
        gap: 4px;
        border: 1px solid var(--hsj-line);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: var(--hsj-shadow);
        overflow-y: auto;
      }

      .hsj-primary-nav.is-open {
        display: grid;
      }

      .hsj-nav-item,
      .hsj-language-wrap,
      .hsj-header-cta {
        width: 100%;
      }

      .hsj-language-wrap {
        margin-left: 0;
      }

      .hsj-nav-link,
      .hsj-dropdown-toggle {
        width: 100%;
        min-height: 46px;
        padding: 11px 13px;
        justify-content: flex-start;
      }

      .hsj-dropdown-toggle {
        justify-content: space-between;
      }

      .hsj-dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 2px 0 8px;
        padding: 10px;
        border-radius: 10px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
      }

      .hsj-dropdown::before {
        display: none;
      }

      .hsj-nav-item.is-open > .hsj-dropdown {
        display: block;
        transform: none;
      }

      .hsj-dropdown--incorporation .hsj-dropdown-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hsj-language-select {
        width: 100%;
        min-height: 46px;
        box-shadow: none;
      }

      .hsj-header-cta {
        margin-top: 3px;
        justify-content: center;
      }

      .hsj-footer-inner {
        width: min(100% - 48px, 1200px);
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 48px 70px;
      }

      .hsj-footer-bottom {
        width: min(100% - 48px, 1200px);
        margin: 0 auto;
      }

      .hsj-footer-about {
        grid-column: 1 / -1;
      }

      .hsj-footer-services,
      .hsj-footer-company {
        padding-top: 0;
      }
    }

    @media (max-width: 640px) {
      :root {
        --hsj-header-height: 64px;
      }

      .hsj-header-inner,
      .hsj-page-shell,
      .hsj-footer-inner,
      .hsj-footer-bottom {
        width: min(100% - 28px, 1200px);
      }

      .hsj-brand img {
        width: 148px;
        height: auto;
      }

      .hsj-page-shell {
        padding: 16px 0 48px;
      }

      .hsj-breadcrumb {
        margin-bottom: 16px;
        font-size: 13px;
      }

      .hsj-content-host > main h1 {
        font-size: clamp(30px, 10vw, 42px);
      }

      .hsj-footer-inner {
        grid-template-columns: 1fr;
        padding: 46px 0 30px;
        gap: 38px;
      }

      .hsj-footer-about {
        grid-column: auto;
      }

      .hsj-footer-logo {
        width: 210px;
        margin-bottom: 24px;
      }

      .hsj-footer-services .hsj-footer-links a {
        font-size: 15px;
      }

      .hsj-footer-services .hsj-footer-links,
      .hsj-footer-company .hsj-footer-links {
        gap: 12px;
      }

      .hsj-footer-company .hsj-footer-links a {
        white-space: normal;
      }

      .hsj-footer-bottom {
        padding: 26px 0 8px;
      }

      .hsj-modal {
        padding: 10px;
        align-items: flex-start;
      }

      .hsj-modal-dialog {
        max-height: calc(100vh - 20px);
        margin: 0;
        border-radius: 15px;
      }

      .hsj-modal-header {
        padding: 24px 58px 16px 20px;
      }

      .hsj-modal-close {
        top: 13px;
        right: 13px;
      }

      .hsj-contact-form {
        padding: 20px;
      }

      .hsj-form-grid {
        grid-template-columns: 1fr;
      }

      .hsj-field-full {
        grid-column: auto;
      }

      .hsj-form-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hsj-button-secondary,
      .hsj-button-primary {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
	@media (min-width: 1025px) {
  .hsj-footer-inner {
    transform: translateX(60px);
  }
}
/* 内置翻译按钮——桌面端 */
#translate.language-switcher {
  position: relative;
  display: flex;
  flex: 0 0 145px;
  width: 145px;
  min-width: 145px;
  height: 50px;
  min-height: 50px;
  margin-left: -34px;
  align-items: center;
}

/* 自定义右侧箭头 */
#translate.language-switcher::after {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-right: 2px solid #353b48;
  border-bottom: 2px solid #353b48;
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

/* 翻译程序自动生成的下拉框 */
#translate.language-switcher select {
  display: block !important;
  box-sizing: border-box !important;
  width: 145px !important;
  height: 50px !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 10px 42px 10px 16px !important;
  border: 1px solid #edf0f7 !important;
  border-radius: 10px !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: 0 3px 7px rgba(49, 87, 238, 0.12) !important;
  color: #333333 !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-align: left;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer;
}

#translate.language-switcher select:hover {
  border-color: #d8def0 !important;
  box-shadow: 0 5px 12px rgba(49, 87, 238, 0.16) !important;
}

#translate.language-switcher select:focus-visible {
  border-color: #3157ee !important;
}

/* 手机和平板端 */
@media (max-width: 1200px) {
  #translate.language-switcher {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    margin-left: 0;
  }

  #translate.language-switcher select {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    box-shadow: none !important;
  }
}