:root {
  --global-nav-bar-height: 60px;
  --global-header-height: var(--global-nav-bar-height);
}

[data-global-navigation-mount] {
  width: 100%;
  height: var(--global-header-height);
  flex: 0 0 var(--global-header-height);
}

.top-nav {
  z-index: 2147483000;
  height: var(--global-header-height);
  border-bottom: 0;
  background: #c64b67;
  box-shadow: 0 1px 0 rgba(33, 31, 36, 0.08);
  color: #fffdfa;
  font-family: "Source Han Sans CN", sans-serif;
  isolation: isolate;
  overflow: visible;
  transform: translateZ(0);
  will-change: transform;
}

.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.top-nav.is-scrolled {
  background: #c64b67;
  box-shadow: 0 4px 16px rgba(33, 31, 36, 0.14);
}

.nav-inner {
  display: flex;
  position: relative;
  width: min(1504px, calc(100% - 128px));
  height: var(--global-nav-bar-height);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  position: absolute;
  left: 50%;
  min-width: max-content;
  height: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(-50%);
}

.global-nav-item {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
}

.global-nav-link {
  display: inline-flex;
  position: relative;
  min-height: 42px;
  align-items: center;
  gap: 0.3125rem;
  color: #fffdfa;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, opacity 160ms ease;
}

.global-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: #fffdfa;
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.global-nav-link:hover,
.global-nav-link:focus-visible,
.global-nav-link[aria-current="page"] {
  color: #fffdfa;
}

.global-nav-link:hover::after,
.global-nav-link:focus-visible::after,
.global-nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.global-nav-link:focus-visible,
.global-submenu a:focus-visible,
.brand-logo:focus-visible,
.global-mobile-trial-entry:focus-visible,
.consult-button:focus-visible {
  outline: 2px solid #fffdfa;
  outline-offset: 3px;
}

.global-nav-caret {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.global-submenu {
  display: grid;
  visibility: hidden;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 3;
  min-width: 208px;
  gap: 0.125rem;
  padding: 0.75rem;
  border-top: 3px solid #c64b67;
  border-radius: 0 0 6px 6px;
  background: #fffdfa;
  box-shadow: 0 14px 32px rgba(33, 31, 36, 0.16);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: visibility 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.global-submenu a {
  display: flex;
  min-height: 38px;
  padding: 0.5rem 0.75rem;
  align-items: center;
  border-radius: 4px;
  color: #211f24;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 150ms ease, color 150ms ease;
}

.global-submenu a::before {
  width: 12px;
  height: 1px;
  margin-right: 0.5625rem;
  background: #bfa86f;
  content: "";
}

.global-submenu a:hover,
.global-submenu a:focus-visible {
  background: #f8f5f4;
  color: #b6405a;
}

.global-nav-item:hover .global-submenu,
.global-nav-item:focus-within .global-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.global-nav-item:hover .global-nav-caret,
.global-nav-item:focus-within .global-nav-caret {
  transform: rotate(180deg);
}

.consult-button {
  display: inline-flex;
  box-sizing: border-box;
  min-width: 116px;
  height: 38px;
  margin: 0;
  padding: 0 0.375rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  border: 1px solid #fffdfa;
  border-radius: 6px;
  background: #fffdfa;
  color: #b6405a;
  appearance: none;
  font-family: "Source Han Sans CN", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.consult-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.global-mobile-trial-entry {
  display: none;
}

.consult-button:hover,
.consult-button:focus-visible,
.global-mobile-trial-entry:hover,
.global-mobile-trial-entry:focus-visible,
.global-mobile-trial-entry[aria-current="page"] {
  border-color: #fffdfa;
  background: #f8f5f4;
  color: #b6405a;
  transform: translateY(-1px);
}

.consult-button:active,
.global-mobile-trial-entry:active {
  border-color: #fffdfa;
  background: #f8f5f4;
  color: #b6405a;
  transform: translateY(0);
}

.global-mobile-menu-button,
.global-mobile-submenu-toggle {
  display: none;
}

@media (max-width: 1440px) {
  .nav-links {
    gap: 1.125rem;
  }

  .global-nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 1280px) {
  html.global-mobile-nav-open,
  body.global-mobile-nav-open {
    overflow: hidden !important;
  }

  body.global-mobile-nav-open .global-float-tools {
    display: none;
  }

  .global-trial-float {
    display: none;
  }

  .top-nav {
    right: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: var(--global-header-height);
  }

  .nav-inner {
    width: calc(100% - 32px);
    max-width: 100%;
    gap: 0.5rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .consult-button {
    min-width: 98px;
    height: 38px;
    margin-left: 0;
    padding: 0 0.75rem;
    gap: 0.375rem;
    font-size: 0.875rem;
  }

  .global-mobile-trial-entry {
    display: inline-flex;
    box-sizing: border-box;
    min-width: 0;
    height: 36px;
    margin-left: auto;
    padding: 0 0.625rem;
    flex: 0 1 auto;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    border: 1px solid #fffdfa;
    border-radius: 6px;
    background: #fffdfa;
    color: #b6405a;
    font-family: "Source Han Sans CN", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
  }

  .global-mobile-trial-entry svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .global-mobile-trial-entry svg use {
    fill: none;
    stroke: currentColor;
  }

  .global-mobile-menu-button {
    display: grid;
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: 0;
    padding: 0;
    flex: 0 0 44px;
    place-content: center;
    gap: 0.3125rem;
    border: 1px solid rgba(255, 253, 250, 0.56);
    border-radius: 6px;
    background: transparent;
    color: #fffdfa;
    cursor: pointer;
  }

  .global-mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .global-mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .global-mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .global-mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-mobile-menu-button:focus-visible,
  .global-mobile-submenu-toggle:focus-visible {
    outline: 2px solid #fffdfa;
    outline-offset: 2px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--global-header-height);
    right: 0;
    left: 0;
    z-index: 2147483000;
    width: auto;
    min-width: 0;
    height: auto;
    max-height: calc(100dvh - var(--global-header-height) - 48px);
    padding: 0.5rem 1rem 3rem;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(255, 253, 250, 0.95);
    box-shadow: inset 0 1px 0 rgba(216, 211, 212, 0.75), 0 18px 36px rgba(33, 31, 36, 0.12);
    transform: none;
    overscroll-behavior: contain;
  }

  body.global-mobile-nav-open .nav-links {
    display: block;
  }

  .global-nav-item {
    display: grid;
    height: auto;
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 52px;
    grid-template-rows: auto auto;
    align-items: stretch;
    border-bottom: 1px solid #e4dfe0;
  }

  .global-nav-item:not(.has-submenu) .global-nav-link {
    grid-column: 1 / -1;
  }

  .global-nav-link {
    width: 100%;
    min-height: 52px;
    padding: 0 0.25rem;
    color: #211f24;
    font-size: 1.0625rem;
    font-weight: 500;
  }

  .global-nav-link:hover,
  .global-nav-link:focus-visible,
  .global-nav-link[aria-current="page"] {
    color: #b6405a;
  }

  .global-nav-link::after {
    right: auto;
    bottom: 0;
    left: 4px;
    width: 34px;
    background: #c64b67;
  }

  .global-nav-link > .global-nav-caret {
    display: none;
  }

  .global-mobile-submenu-toggle {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    width: 52px;
    min-height: 52px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: #514d52;
    cursor: pointer;
  }

  .global-mobile-submenu-toggle .global-nav-caret {
    display: block;
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
  }

  .global-mobile-submenu-toggle[aria-expanded="true"] .global-nav-caret {
    transform: rotate(180deg);
  }

  .global-mobile-submenu-toggle:focus-visible {
    outline-color: #b6405a;
    outline-offset: -4px;
  }

  .global-submenu,
  .global-nav-item:hover .global-submenu,
  .global-nav-item:focus-within .global-submenu {
    display: none;
    visibility: hidden;
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    gap: 0.125rem;
    padding: 0 0.25rem 0.75rem 1.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
  }

  .global-nav-item[data-mobile-open="true"] > .global-submenu {
    display: grid;
    visibility: visible;
    opacity: 1;
  }

  .global-submenu a {
    min-height: 44px;
    padding: 0.5625rem 0.25rem;
    border-radius: 0;
    color: #514d52;
    font-size: 0.9375rem;
  }

  .global-submenu a::before {
    width: 10px;
    margin-right: 0.625rem;
  }
}

@media (max-width: 680px) {
  :root {
    --global-nav-bar-height: 56px;
  }

  [data-global-navigation-mount] {
    height: var(--global-header-height);
    flex-basis: var(--global-header-height);
  }

  .top-nav {
    height: var(--global-header-height);
  }

  .nav-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .consult-button {
    min-width: 0;
    height: 36px;
    margin-left: 0;
    padding: 0 0.625rem;
    font-size: 0.8125rem;
  }

  .consult-button svg {
    width: 16px;
    height: 16px;
  }

  .global-mobile-menu-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .nav-links {
    top: var(--global-header-height);
    height: auto;
    max-height: calc(100dvh - var(--global-header-height) - 40px);
    padding: 0.375rem 0.875rem 3rem;
  }

  .global-consult-layer {
    padding: 0.875rem;
    align-items: center;
  }

  .global-consult-dialog {
    width: 100%;
    max-height: calc(100dvh - 28px);
  }

  .global-consult-head {
    padding: 1.125rem 3.5rem 1rem 1.125rem;
  }

  .global-consult-title {
    font-size: 1.5rem;
  }

  .global-consult-form {
    padding: 1rem 1.125rem 1.125rem;
  }

  .global-consult-grid {
    grid-template-columns: 1fr;
    gap: 0.8125rem;
  }

  .global-consult-actions {
    display: grid;
    gap: 0.875rem;
  }

  .global-consult-privacy,
  .global-consult-submit {
    width: 100%;
    max-width: none;
  }

  .global-consult-submit {
    order: 1;
  }

  .global-consult-privacy {
    order: 2;
  }

  .global-float-tools {
    top: auto;
    right: 50%;
    bottom: calc(16px + var(--global-float-footer-offset, 0px));
    grid-template-columns: repeat(3, 42px);
    transform: translateX(50%);
    transition: bottom 160ms ease;
  }

  .global-float-item + .global-float-item {
    border-top: 0;
    border-left: 1px solid #c9dce7;
  }

  .global-float-item:first-child .global-float-button {
    border-radius: 5px 0 0 5px;
  }

  .global-float-item:last-child .global-float-button {
    border-radius: 0 5px 5px 0;
  }

  .global-float-button {
    width: 42px;
    height: 42px;
  }

  .global-float-panel {
    top: auto;
    right: 50%;
    bottom: calc(100% + 12px);
    max-width: calc(100dvw - 78px);
    white-space: normal;
    transform: translate(50%, 8px);
  }

  .global-float-panel::after {
    top: auto;
    right: 50%;
    bottom: -7px;
    border: 0;
    border-right: 1px solid rgba(33, 31, 36, 0.12);
    border-bottom: 1px solid rgba(33, 31, 36, 0.12);
    transform: translateX(50%) rotate(45deg);
  }

  .global-float-item:not([data-float-item]):hover .global-float-panel,
  .global-float-item:not([data-float-item]):focus-within .global-float-panel,
  .global-float-item[data-open="true"] .global-float-panel {
    transform: translate(50%, 0);
  }

  .global-back-top {
    right: 12px;
    bottom: calc(16px + var(--global-float-footer-offset, 0px));
    width: 42px;
    height: 42px;
  }
}

html.global-consult-open,
body.global-consult-open {
  overflow: hidden !important;
}

.global-consult-layer[hidden] {
  display: none !important;
}

.global-consult-layer {
  display: grid;
  position: fixed;
  inset: 0;
  z-index: 2147483200;
  padding: 1.5rem;
  place-items: center;
  font-family: "Source Han Sans CN", sans-serif;
}

.global-consult-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 22, 27, 0.7);
  backdrop-filter: blur(4px);
}

.global-consult-dialog {
  position: relative;
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(191, 168, 111, 0.45);
  border-radius: 6px;
  background: #f8f5f4;
  box-shadow: 0 24px 70px rgba(18, 16, 20, 0.32);
  color: #211f24;
  overscroll-behavior: contain;
}

.global-consult-head {
  position: relative;
  padding: 1.375rem 4rem 1.25rem 1.75rem;
  border-bottom: 3px solid #bfa86f;
  background: #211f24;
  color: #fffdfa;
}

.global-consult-kicker {
  margin: 0 0 0.4375rem;
  color: #d3bd83;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1273em;
  line-height: 1.4;
}

.global-consult-title {
  margin: 0;
  color: #fffdfa;
  font-family: "Source Han Serif CN", serif;
  font-size: 1.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.global-consult-summary {
  margin: 0.4375rem 0 0;
  color: #d8d3d4;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.global-consult-close {
  display: grid;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 253, 250, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fffdfa;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.global-consult-close:hover,
.global-consult-close:focus-visible {
  border-color: #fffdfa;
  background: rgba(255, 253, 250, 0.1);
}

.global-consult-close svg,
.global-float-button svg,
.global-consult-submit svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.global-float-button .global-wechat-icon {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

.global-float-button svg {
  width: 22px;
  height: 22px;
}

.global-consult-form {
  padding: 1.3125rem 1.75rem 1.5rem;
}

.global-consult-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9375rem 1.125rem;
}

.global-consult-field {
  display: grid;
  min-width: 0;
  gap: 0.375rem;
}

.global-consult-field--wide {
  grid-column: 1 / -1;
}

.global-consult-field > span {
  color: #373238;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
}

.global-consult-field > span em {
  margin-left: 0.3125rem;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 500;
}

.global-consult-required {
  color: #b6405a;
}

.global-consult-optional {
  color: #8b8388;
}

.global-consult-field input,
.global-consult-field select,
.global-consult-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8d1cf;
  border-radius: 4px;
  outline: 0;
  background: #fffdfa;
  color: #211f24;
  font: inherit;
  font-size: 0.875rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.global-consult-field input,
.global-consult-field select {
  height: 41px;
  padding: 0 0.75rem;
}

.global-consult-field select {
  cursor: pointer;
}

.global-consult-field textarea {
  min-height: 76px;
  padding: 0.625rem 0.75rem;
  line-height: 1.6;
  resize: vertical;
}

.global-consult-field input:focus,
.global-consult-field select:focus,
.global-consult-field textarea:focus {
  border-color: #b6405a;
  box-shadow: 0 0 0 3px rgba(198, 75, 103, 0.12);
}

.global-consult-field input::placeholder,
.global-consult-field textarea::placeholder {
  color: #8b8388;
}

.global-consult-actions {
  display: flex;
  margin-top: 1.125rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.125rem;
}

.global-consult-privacy {
  max-width: 330px;
  margin: 0;
  color: #6f686d;
  font-size: 0.75rem;
  line-height: 1.55;
}

.global-consult-submit {
  display: inline-flex;
  min-width: 132px;
  height: 42px;
  padding: 0 1.0625rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5625rem;
  border: 1px solid #c64b67;
  border-radius: 4px;
  background: #c64b67;
  color: #fffdfa;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.global-consult-submit:hover,
.global-consult-submit:focus-visible {
  border-color: #b6405a;
  background: #b6405a;
  transform: translateY(-1px);
}

.global-consult-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.global-consult-status {
  min-height: 0;
  margin: 0.75rem 0 0;
  padding: 0;
  color: #6f686d;
  font-size: 0.75rem;
  line-height: 1.55;
}

.global-consult-status:empty {
  display: none;
}

.global-consult-status.is-success {
  color: #34634a;
}

.global-consult-status.is-error {
  color: #a6344d;
}

@media (max-width: 680px) {
  .global-consult-actions {
    display: grid;
    justify-content: stretch;
    gap: 0.875rem;
  }

  .global-consult-submit {
    order: 1;
    width: 100%;
    max-width: none;
  }

  .global-consult-privacy {
    order: 2;
    width: 100%;
    max-width: none;
  }
}

.global-float-tools {
  display: grid;
  position: fixed;
  top: 50%;
  right: 45px;
  z-index: 9010;
  overflow: visible;
  border: 1px solid #c9dce7;
  border-radius: 6px;
  background: #fffdfa;
  box-shadow: 0 10px 30px rgba(33, 31, 36, 0.16);
  transform: translateY(-50%);
  font-family: "Source Han Sans CN", sans-serif;
}

.global-trial-float {
  position: fixed;
  top: 50%;
  left: 45px;
  z-index: 9010;
  width: 84px;
  height: 198px;
  overflow: hidden;
  border: 1px solid rgba(143, 38, 60, 0.28);
  border-radius: 5px;
  background: #f7f5f2;
  box-shadow: 0 14px 34px rgba(44, 35, 40, 0.18);
  font-family: "Source Han Sans CN", sans-serif;
  transform: translateY(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.global-trial-float-link {
  display: flex;
  position: relative;
  width: 84px;
  height: 100%;
  padding: 13px 8px 0;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: #f7f5f2;
  color: #171619;
  text-align: center;
  text-decoration: none;
}

.global-trial-float-link::before {
  position: absolute;
  top: 0;
  right: 9px;
  left: 9px;
  height: 3px;
  background: #8f263c;
  content: "";
}

.global-trial-float:hover,
.global-trial-float:focus-within {
  border-color: rgba(143, 38, 60, 0.5);
  box-shadow: 0 20px 46px rgba(44, 35, 40, 0.24);
}

.global-trial-float-link:focus-visible {
  outline: 0;
}

.global-trial-float-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 0 0 7px;
  padding: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 38, 60, 0.08);
}

.global-trial-float-icon svg {
  display: block;
  width: 29px;
  height: 29px;
  color: #8f263c;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.global-trial-float-icon svg use {
  fill: none;
  stroke: currentColor;
}

.global-trial-float-title {
  display: block;
  padding: 0;
  color: #8f263c;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.global-trial-float-meta {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(143, 38, 60, 0.18);
  color: #665e62;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
}

.global-trial-float-count {
  display: block;
  margin-top: 1px;
  padding: 0;
  color: #171619;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.global-trial-float-count b {
  color: #8f263c;
  font-family: "Source Han Serif CN", serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.global-trial-float-action {
  display: grid;
  width: calc(100% + 16px);
  height: 38px;
  margin: auto -8px 0;
  padding: 0;
  place-items: center;
  border-radius: 0 0 4px 4px;
  background: #8f263c;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.global-float-item {
  position: relative;
}

.global-float-item + .global-float-item {
  border-top: 1px solid #c9dce7;
}

.global-float-button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #315f62;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}

.global-float-item:first-child .global-float-button {
  border-radius: 5px 5px 0 0;
}

.global-float-item:last-child .global-float-button {
  border-radius: 0 0 5px 5px;
}

.global-float-button:hover,
.global-float-button:focus-visible,
.global-float-item[data-open="true"] .global-float-button {
  outline: 0;
  background: #315f62;
  color: #fffdfa;
}

.global-float-panel {
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  max-width: min(240px, calc(100dvw - 92px));
  padding: 0.8125rem 0.9375rem;
  border: 1px solid rgba(33, 31, 36, 0.12);
  border-radius: 5px;
  background: #fffdfa;
  box-shadow: 0 12px 32px rgba(33, 31, 36, 0.18);
  color: #211f24;
  opacity: 0;
  transform: translate(8px, -50%);
  pointer-events: none;
  transition: visibility 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.global-float-panel::after {
  position: absolute;
  top: 50%;
  right: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(33, 31, 36, 0.12);
  border-right: 1px solid rgba(33, 31, 36, 0.12);
  background: #fffdfa;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.global-float-item:not([data-float-item]):hover .global-float-panel,
.global-float-item:not([data-float-item]):focus-within .global-float-panel,
.global-float-item[data-open="true"] .global-float-panel {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .global-float-item[data-float-item="wechat"]:hover .global-float-panel,
  .global-float-item[data-float-item="wechat"]:focus-within .global-float-panel {
    visibility: visible;
    opacity: 1;
    transform: translate(0, -50%);
    pointer-events: auto;
  }
}

.global-float-panel-label {
  display: block;
  margin-bottom: 0.25rem;
  color: #8b7379;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.0727em;
  line-height: 1.4;
}

.global-float-phone {
  color: #211f24;
  font-family: "Source Han Serif CN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.global-float-phone:hover,
.global-float-phone:focus-visible {
  color: #b6405a;
}

.global-float-qr-panel {
  width: 180px;
  padding: 0.875rem;
  text-align: center;
}

.global-float-qr-panel img {
  display: block;
  width: 146px;
  height: 146px;
  margin: 0 auto 0.5rem;
  object-fit: contain;
  background: #fff;
}

.global-float-qr-panel strong,
.global-float-consult-panel strong {
  display: block;
  color: #211f24;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
}

.global-float-qr-panel span,
.global-float-consult-panel span {
  display: block;
  margin-top: 0.125rem;
  color: #766f73;
  font-size: 0.6875rem;
  line-height: 1.45;
}

.global-float-consult-panel {
  min-width: 142px;
}

.global-back-top {
  display: grid;
  visibility: hidden;
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9005;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid #d8d3d4;
  border-radius: 4px;
  background: #fffdfa;
  box-shadow: 0 6px 18px rgba(33, 31, 36, 0.08);
  color: #c64b67;
  appearance: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: visibility 160ms ease, opacity 160ms ease, transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.global-back-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.global-back-top:hover,
.global-back-top:focus-visible {
  border-color: #c64b67;
  outline: 0;
  background: #f8f5f4;
}

.global-back-top:focus-visible {
  box-shadow: 0 0 0 3px rgba(198, 75, 103, 0.2);
}

.global-back-top svg {
  display: block;
  width: 18px;
  height: 18px;
}

@media (max-width: 680px) {
  .global-float-tools {
    top: auto;
    right: 50%;
    bottom: calc(16px + var(--global-float-footer-offset, 0px));
    grid-template-columns: repeat(3, 42px);
    transform: translateX(50%);
    transition: bottom 160ms ease;
  }

  .global-trial-float {
    display: none;
  }

  .global-trial-float-link {
    width: 70px;
    height: 100%;
    padding: 10px 6px 0;
  }

  .global-trial-float-link::before {
    right: 7px;
    left: 7px;
  }

  .global-trial-float-icon {
    width: 28px;
    height: 28px;
    margin: 0 0 5px;
    padding: 0;
  }

  .global-trial-float-icon svg {
    width: 19px;
    height: 19px;
  }

  .global-trial-float-title {
    padding: 0;
    font-size: 17px;
  }

  .global-trial-float-meta {
    width: 100%;
    margin-top: 6px;
    padding-top: 5px;
    font-size: 9px;
  }

  .global-trial-float-count {
    margin-top: 0;
    padding: 0;
    font-size: 12px;
  }

  .global-trial-float-count b {
    font-size: 18px;
  }

  .global-trial-float-action {
    width: calc(100% + 12px);
    height: 32px;
    margin-right: -6px;
    margin-left: -6px;
    padding: 0;
    font-size: 11px;
  }

  .global-float-item + .global-float-item {
    border-top: 0;
    border-left: 1px solid #c9dce7;
  }

  .global-float-item:first-child .global-float-button {
    border-radius: 5px 0 0 5px;
  }

  .global-float-item:last-child .global-float-button {
    border-radius: 0 5px 5px 0;
  }

  .global-float-button {
    width: 42px;
    height: 42px;
  }

  .global-float-panel {
    top: auto;
    right: 50%;
    bottom: calc(100% + 12px);
    max-width: calc(100dvw - 78px);
    white-space: normal;
    transform: translate(50%, 8px);
  }

  .global-float-panel::after {
    top: auto;
    right: 50%;
    bottom: -7px;
    border: 0;
    border-right: 1px solid rgba(33, 31, 36, 0.12);
    border-bottom: 1px solid rgba(33, 31, 36, 0.12);
    transform: translateX(50%) rotate(45deg);
  }

  .global-float-item:not([data-float-item]):hover .global-float-panel,
  .global-float-item:not([data-float-item]):focus-within .global-float-panel,
  .global-float-item[data-open="true"] .global-float-panel {
    transform: translate(50%, 0);
  }

  .global-back-top {
    right: 12px;
    bottom: calc(16px + var(--global-float-footer-offset, 0px));
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-mobile-menu-button span,
  .global-mobile-submenu-toggle .global-nav-caret,
  .global-consult-close,
  .global-consult-submit,
  .global-trial-float-link,
  .global-float-button,
  .global-float-panel,
  .global-back-top {
    transition: none;
  }

}

@media print {
  .global-consult-layer,
  .global-trial-float,
  .global-float-tools,
  .global-back-top {
    display: none !important;
  }
}
