/* ==========================================================================
   CSS Architecture
   - l-  layout
   - c-  component
   - u-  utility
   ========================================================================== */



:root {
  
  --color-primary: #0068ff;
  --color-primary-light: #0dbbff;
  --color-nav-active: #0068ff;
  --color-icon-bg: #c5d5e8;
  --header-height: 0.64rem;
  --page-max-width: 1440px;
  --color-text: #333333;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-bg: #ffffff;
  --color-bg-secondary: #f5f5f5;
  --color-border: #eeeeee;

  
  --space-xs: 0.08rem;
  --space-sm: 0.16rem;
  --space-md: 0.24rem;
  --space-lg: 0.32rem;
  --space-xl: 0.48rem;

  
  --radius-sm: 0.08rem;
  --radius-md: 0.16rem;
  --radius-lg: 0.24rem;

  
  --font-size-xs: 0.14rem;
  --font-size-sm: 0.16rem;
  --font-size-md: 0.18rem;
  --font-size-lg: 0.2rem;
  --font-size-xl: 0.22rem;

  
  --duration-fast: 0.2s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 13.333333vw; 
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 6.944444vw; 
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 100px;
  }
}

body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.l-page {
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow-x: hidden;
}

.l-container {
  width: 100%;
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.l-flex {
  display: flex;
}

.l-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-flex-column {
  display: flex;
  flex-direction: column;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-md);
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.c-btn:active {
  opacity: 0.85;
  transform: scale(0.98);
}

.c-card {
  padding: var(--space-md);
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 0.04rem 0.16rem rgba(0, 0, 0, 0.06);
}

.c-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.c-text-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.u-hidden {
  display: none !important;
}

.u-desktop-only {
  display: block;
}

.u-mobile-only {
  display: none;
}

.u-text-center {
  text-align: center;
}

.u-text-primary {
  color: var(--color-primary);
}

.u-text-secondary {
  color: var(--color-text-secondary);
}

.u-text-muted {
  color: var(--color-text-muted);
}

.u-mt-sm { margin-top: var(--space-sm); }
.u-mt-md { margin-top: var(--space-md); }
.u-mt-lg { margin-top: var(--space-lg); }

.u-mb-sm { margin-bottom: var(--space-sm); }
.u-mb-md { margin-bottom: var(--space-md); }
.u-mb-lg { margin-bottom: var(--space-lg); }

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(0.3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-0.3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-0.3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(0.3rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.u-animate {
  opacity: 0;
}

.u-animate.is-animate {
  animation-fill-mode: forwards;
}

.u-animate--fade-in.is-animate {
  animation: fade-in var(--duration-normal) var(--ease-default);
}

.u-animate--fade-in-up.is-animate {
  animation: fade-in-up var(--duration-normal) var(--ease-default);
}

.u-animate--fade-in-down.is-animate {
  animation: fade-in-down var(--duration-normal) var(--ease-default);
}

.u-animate--scale-in.is-animate {
  animation: scale-in var(--duration-normal) var(--ease-bounce);
}

.u-animate--slide-in-left.is-animate {
  animation: slide-in-left var(--duration-normal) var(--ease-default);
}

.u-animate--slide-in-right.is-animate {
  animation: slide-in-right var(--duration-normal) var(--ease-default);
}

.u-delay-1 { animation-delay: 0.1s; }
.u-delay-2 { animation-delay: 0.2s; }
.u-delay-3 { animation-delay: 0.3s; }
.u-delay-4 { animation-delay: 0.4s; }
.u-delay-5 { animation-delay: 0.5s; }

.u-transition {
  transition: all var(--duration-normal) var(--ease-default);
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.06);
  overflow: visible;
  transition: transform var(--duration-normal) var(--ease-default);
}

.c-header.is-hidden {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.c-header__inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 0.4rem;
  overflow: visible;
}

.c-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 0.16rem;
}

.c-header__logo img {
  width: auto;
  height: 0.36rem;
}

.c-nav {
  position: relative;
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.c-nav::-webkit-scrollbar {
  display: none;
}

.c-nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.36rem;
  white-space: nowrap;
}

.c-nav__item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.c-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 0.03rem;
  background-color: var(--color-nav-active);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center center;
  transition: transform var(--duration-normal) var(--ease-default);
}

.c-nav__item.is-active::after,
.c-nav__item.is-open::after,
.c-nav__item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.c-nav__list:hover .c-nav__item.is-active:not(:hover):not(.is-open)::after {
  transform: translateX(-50%) scaleX(0);
}

.c-nav__item.has-dropdown.is-open,
.c-nav__item.has-dropdown:hover {
  z-index: 101;
}

.c-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.04rem;
  padding: 0.2rem 0.08rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
  transition: color var(--duration-fast) var(--ease-default);
}

.c-nav__item.is-active .c-nav__link,
.c-nav__item.is-open .c-nav__link,
.c-nav__item:hover .c-nav__link {
  color: var(--color-nav-active);
}

.c-nav__list:hover .c-nav__item.is-active:not(:hover):not(.is-open) .c-nav__link {
  color: var(--color-text);
}

.c-nav__arrow {
  display: inline-block;
  width: 0.06rem;
  height: 0.06rem;
  margin-left: 0.04rem;
  border-right: 0.015rem solid currentColor;
  border-bottom: 0.015rem solid currentColor;
  transform: rotate(45deg) translateY(-0.01rem);
  transition: transform var(--duration-fast) var(--ease-default);
}

.c-nav__item.is-open .c-nav__arrow {
  transform: rotate(-135deg) translateY(0.01rem);
}

.c-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1001;
  width: max-content;
  padding: 0.12rem 0.28rem 0.22rem;
  margin-top: 0;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow:
    0 0.05rem 0.1rem rgba(104, 108, 115, 0.1),
    -0.04rem 0.02rem 0.08rem rgba(104, 108, 115, 0.07),
    0.04rem 0.02rem 0.08rem rgba(104, 108, 115, 0.07);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.04rem);
  transition: opacity var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default),
    visibility var(--duration-normal);
}

.c-nav__dropdown::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0;
  right: 0;
  height: 0.2rem;
}

.c-nav__item.is-open .c-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media screen and (min-width: 768px) {
  .c-nav__item.has-dropdown:hover .c-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.c-nav__dropdown-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.56rem;
}

.c-nav__dropdown-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.11rem;
  padding: 0.08rem 0.12rem;
  text-align: center;
}

.c-nav__icon-wrap {
  position: relative;
  width: 0.16rem;
  height: 0.16rem;
}

.c-nav__icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity var(--duration-fast) var(--ease-default);
}

.c-nav__icon-img--active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.c-nav__dropdown-link:hover .c-nav__icon-img:not(.c-nav__icon-img--active),
.c-nav__dropdown-item.is-hover .c-nav__icon-img:not(.c-nav__icon-img--active) {
  opacity: 0;
}

.c-nav__dropdown-link:hover .c-nav__icon-img--active,
.c-nav__dropdown-item.is-hover .c-nav__icon-img--active {
  opacity: 1;
}

.c-nav__dropdown-text {
  font-size: 0.14rem;
  line-height: 1;
  color: #6f6f6f;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-default);
}

.c-nav__dropdown-link:hover .c-nav__dropdown-text,
.c-nav__dropdown-item.is-hover .c-nav__dropdown-text {
  color: var(--color-nav-active);
}

.c-header__phone {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  margin-left: 0.24rem;
  padding-left: 0.24rem;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-nav-active);
  white-space: nowrap;
  border-left: 1px solid var(--color-border);
}

.c-header__phone-icon {
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230068ff'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.c-header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  width: 0.44rem;
  height: 0.44rem;
  padding: 0.1rem;
  margin-left: auto;
  cursor: pointer;
}

.c-header__menu-line {
  display: block;
  width: 100%;
  height: 0.02rem;
  background-color: var(--color-text);
  border-radius: 0.01rem;
  transition: transform var(--duration-normal) var(--ease-default),
    opacity var(--duration-normal) var(--ease-default);
}

.c-header.is-menu-open .c-header__menu-line:nth-child(1) {
  transform: translateY(0.07rem) rotate(45deg);
}

.c-header.is-menu-open .c-header__menu-line:nth-child(2) {
  opacity: 0;
}

.c-header.is-menu-open .c-header__menu-line:nth-child(3) {
  transform: translateY(-0.07rem) rotate(-45deg);
}

.c-nav__mask {
  display: none;
}

.c-nav__panel-head {
  display: none;
}

.c-nav__close {
  display: none;
}

.c-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  height: 60dvh;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.c-banner.is-dragging {
  cursor: grabbing;
}

.c-banner--static {
  cursor: default;
  user-select: auto;
  -webkit-user-select: auto;
  touch-action: auto;
}

.c-banner--static .c-banner__track {
  will-change: auto;
  transform: none !important;
  transition: none;
}

.c-banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform var(--duration-slow) var(--ease-default);
}

.c-banner.is-dragging .c-banner__track {
  transition: none;
}

.c-banner__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.c-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-banner__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.c-banner__content {
  position: relative;
  z-index: 2;
  max-width: 6.4rem;
  padding-top: 1.18rem;
  color: #ffffff;
}

.c-banner__content--dark,
.c-banner__content--dark .c-banner__title,
.c-banner__content--dark .c-banner__desc {
  color: #0c0c0c;
}

.c-banner__logo {
  display: block;
  width: 1.5rem;
  height: auto;
  margin-bottom: 0.22rem;
}

.c-banner__logo--partner {
  width: 1.89rem;
  margin-bottom: 0.28rem;
}

.c-banner__content--center {
  max-width: 7.2rem;
  padding-top: 0.97rem;
}

.c-banner__title-img {
  display: block;
  width: 5.6rem;
  height: auto;
  margin-bottom: 0.09rem;
}

.c-banner__title--italic {
  font-style: italic;
}

.c-banner__title {
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  color: #ffffff;
}

.c-banner__focus {
  margin-top: 0.16rem;
  font-size: 0.18rem;
  line-height: 1.4;
  color: #ffffff;
}

.c-banner__tag {
  display: inline-block;
  padding: 0.02rem 0.1rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.04rem;
}

.c-banner__desc {
  margin-top: 0.12rem;
  font-size: 0.18rem;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.95;
}

.c-banner__desc + .c-banner__desc {
  margin-top: 0.06rem;
}

.c-banner__desc-group .c-banner__desc {
  margin-top: 0;
}

.c-banner__desc-group .c-banner__desc + .c-banner__desc {
  margin-top: 0.06rem;
}

.c-banner__overlay {
  display: none;
}

.c-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.14rem 0.32rem;
  font-size: 0.16rem;
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.c-banner__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.c-banner__btn--orange {
  color: #ffffff;
  background: linear-gradient(180deg, #f3b83e 0%, #f39800 100%);
}

.c-banner__btn--white {
  color: #2d6bd8;
  background-color: #f3f6ff;
  border: 1px solid #ffffff;
}

.c-banner__btn--blue {
  color: #ffffff;
  background-color: #2c55fb;
}

.c-banner__figure {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
}

.c-banner__figure--1 {
  right: 0;
  bottom: 0;
  width: 6.41rem;
  height: 5.08rem;
}

.c-banner__figure--3 {
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

.c-banner__visual {
  display: contents;
}

@media screen and (min-width: 768px) {
  .c-banner__slide:nth-child(3) .c-banner__visual,
  .c-banner__slide--3 .c-banner__visual {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .c-banner__slide:nth-child(3) .c-banner__figure--3,
  .c-banner__slide--3 .c-banner__figure--3 {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: 100%;
    max-width: none;
    object-position: right bottom;
  }
}

.c-banner__pagination {
  position: absolute;
  left: 50%;
  bottom: 0.24rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.08rem;
  transform: translateX(-50%);
}

.c-banner__dot {
  width: 0.24rem;
  height: 0.04rem;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: 0.02rem;
  cursor: pointer;
  transition: width var(--duration-normal) var(--ease-default),
    background-color var(--duration-normal) var(--ease-default);
}

.c-banner__dot.is-active {
  width: 0.4rem;
  background-color: #ffffff;
}

.c-sec2 {
  position: relative;
  padding: 0.8rem 0 0.88rem;
  overflow: hidden;
}

.c-sec2__bg,
.c-sec2 picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.c-sec2__bg {
  object-fit: cover;
  object-position: center top;
}

.c-sec2__inner {
  position: relative;
  z-index: 1;
}

.c-sec2__title {
  margin: 0 0 0.48rem;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: var(--color-text);
}

.c-sec2__title-highlight {
  color: var(--color-primary);
}

.c-sec2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

.c-sec2__card {
  display: flex;
  flex-direction: column;
  min-height: 1.68rem;
  padding: 0.24rem 0.2rem 0.22rem 0.28rem;
  background-color: #ffffff;
  border-left: 0.04rem solid #6fe0d0;
  border-radius: 0.04rem;
  box-shadow: 0 0.04rem 0.2rem rgba(104, 108, 115, 0.08);
  transition: transform var(--duration-normal) var(--ease-default),
    box-shadow var(--duration-normal) var(--ease-default),
    border-left-color var(--duration-normal) var(--ease-default);
}

.c-sec2__icon {
  flex-shrink: 0;
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.c-sec2__card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
}

.c-sec2__problem {
  flex: 1;
  min-width: 0;
}

.c-sec2__problem p {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.44;
  color: var(--color-text);
}

.c-sec2__problem p + p {
  margin-top: 0.02rem;
}

.c-sec2__solution {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  margin: 0.16rem 0 0;
  padding-left: 0.04rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: rgb(144, 144, 144);
}

.c-sec2__solution::before {
  content: "";
  flex-shrink: 0;
  width: 0.14rem;
  height: 0.14rem;
  background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6l2.5 2.5 4.5-4.5'/%3E%3C/svg%3E") center / 0.08rem no-repeat;
  border-radius: 50%;
  transition: transform var(--duration-normal) var(--ease-bounce),
    box-shadow var(--duration-normal) var(--ease-default);
}

@media (hover: hover) {
  .c-sec2__card:hover {
    transform: translateY(-0.06rem);
    border-left-color: var(--color-primary);
    box-shadow: 0 0.1rem 0.28rem rgba(0, 104, 255, 0.14);
  }

  .c-sec2__card:hover .c-sec2__icon {
    transform: scale(1.1);
  }

  .c-sec2__card:hover .c-sec2__solution::before {
    transform: scale(1.15);
    box-shadow: 0 0.02rem 0.08rem rgba(0, 104, 255, 0.35);
  }

  .c-sec2__btn:hover {
    transform: translateY(-0.02rem);
    box-shadow: 0 0.06rem 0.18rem rgba(0, 104, 255, 0.35);
  }

  .c-banner__btn:hover {
    transform: translateY(-0.02rem);
    box-shadow: 0 0.06rem 0.18rem rgba(0, 0, 0, 0.12);
  }
}

.c-sec2__consult {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  max-width: 11.04rem;
  margin: 0.4rem auto 0;
}

.c-sec2__pic {
  display: block;
  width: 100%;
  height: auto;
  max-height: 3.68rem;
  object-fit: contain;
}

.c-sec2__pic--left {
  flex: 0 0 32%;
  max-width: 3.52rem;
  object-position: center bottom;
}

.c-sec2__consult-main {
  display: flex;
  flex: 0 0 66%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.16rem;
  max-width: 7.28rem;
}

.c-sec2__pic--right {
  width: 100%;
  object-position: left center;
}

.c-sec2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding: 0.12rem 0.4rem;
  font-size: 0.18rem;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.c-sec2__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.c-sec2__consult-mobile,
.c-sec2__btn--consult-mobile {
  display: none;
}

.c-sec3__flow {
  position: relative;
  margin-top: 0.48rem;
  overflow: hidden;
  border-radius: 0.12rem;
}

.c-sec3__flow-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec3__flow-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.48rem;
}

.c-sec3__flow-intro {
  flex-shrink: 0;
  width: 2.2rem;
}

.c-sec3__flow-title {
  margin: 0;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.36;
  color: #ffffff;
}

.c-sec3__flow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  padding: 0.1rem 0.24rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #2c55fb;
  background-color: #ffffff;
  border-radius: 0.06rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.c-sec3__flow-btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.c-sec3__flow-steps {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.16rem;
  min-width: 0;
  list-style: none;
}

.c-sec3__flow-step {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-start;
  gap: 0.04rem;
  min-width: 0;
}

.c-sec3__flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: calc(100% - 0.08rem);
  width: 0.24rem;
  height: 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.7);
}

.c-sec3__flow-num {
  flex-shrink: 0;
  margin-top: -0.08rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
}

.c-sec3__flow-content {
  min-width: 0;
  padding-top: 0.12rem;
}

.c-sec3__flow-step-title {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

.c-sec3__flow-step-desc {
  margin: 0.06rem 0 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

@media (hover: hover) {
  .c-sec3__flow-btn:hover {
    transform: translateY(-0.02rem);
  }
}

.c-sec3 {
  padding: 0.72rem 0 0.8rem;
  background-color: rgba(84, 116, 255, 0.12);
}

.c-sec3__title {
  margin: 0 0 0.48rem;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: var(--color-text);
}

.c-sec3__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}

.c-sec3__card {
  display: flex;
  flex-direction: column;
  padding: 0.24rem 0.24rem 0.32rem;
  background-color: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.24rem rgba(84, 116, 255, 0.08);
}

.c-sec3__cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  object-fit: cover;
}

.c-sec3__card-title {
  margin: 0.28rem 0 0;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.c-sec3__card-desc {
  margin: 0.08rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.c-sec3__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem 0.12rem;
  margin: 0.28rem 0 0.36rem;
}

.c-sec3__feature {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  min-width: 0;
}

.c-sec3__feature-icon {
  flex-shrink: 0;
  width: 0.18rem;
  height: 0.18rem;
  object-fit: contain;
}

.c-sec3__feature-text {
  flex: none;
  font-size: 0.14rem;
  line-height: 1.4;
  color: rgb(144, 144, 144);
  white-space: nowrap;
}

.c-sec3__feature-check {
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 15px;
  object-fit: contain;
}

.c-sec3__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.14rem 0.36rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.c-sec3__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

@media (hover: hover) {
  .c-sec3__btn:hover {
    transform: translateY(-0.02rem);
    box-shadow: 0 0.06rem 0.18rem rgba(0, 104, 255, 0.35);
  }
}

.c-sec4 {
  position: relative;
  padding: 0.72rem 0 0.8rem;
  overflow: hidden;
}

.c-sec4__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec4__inner {
  position: relative;
  z-index: 1;
}

.c-sec4__pic {
  display: block;
  width: 100%;
  height: auto;
}

.c-sec5 {
  position: relative;
  padding: 0.72rem 0 0.8rem;
  overflow: hidden;
}

.c-sec5__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec5__inner {
  position: relative;
  z-index: 1;
}

.c-sec5__title {
  margin: 0 0 0.48rem;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: var(--color-text);
}

.c-sec5__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

.c-sec5__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.32rem 0.24rem 0.28rem;
  background-color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.12rem;
  box-shadow: 0 0.08rem 0.28rem rgba(84, 116, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform var(--duration-normal) var(--ease-default),
    box-shadow var(--duration-normal) var(--ease-default),
    background-color var(--duration-normal) var(--ease-default),
    border-color var(--duration-normal) var(--ease-default);
}

.c-sec5__card-title {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: rgb(51, 51, 51);
}

.c-sec5__card-desc {
  margin: 0.1rem 0 0;
  font-size: 0.14rem;
  line-height: 1.55;
  text-align: center;
  color: rgb(144, 144, 144);
}

.c-sec5__pic {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  background-color: transparent;
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.c-sec5__link {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 1.4;
  color: rgb(144, 144, 144);
  transition: color var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.c-sec5__link:hover {
  color: var(--color-primary);
}

.c-sec5__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.24rem;
  margin-top: 0.48rem;
}

.c-sec5__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding: 0.14rem 0.4rem;
  font-size: 0.18rem;
  font-weight: 500;
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default),
    background-color var(--duration-fast) var(--ease-default),
    color var(--duration-fast) var(--ease-default);
}

.c-sec5__btn--outline {
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid var(--color-primary);
}

.c-sec5__btn--primary {
  color: #ffffff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.c-sec5__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

@media (hover: hover) {
  .c-sec5__card:hover {
    transform: translateY(-0.08rem);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 104, 255, 0.22);
    box-shadow: 0 0.14rem 0.36rem rgba(0, 104, 255, 0.18);
  }

  .c-sec5__card:hover .c-sec5__pic {
    transform: scale(1.04);
  }

  .c-sec5__card:hover .c-sec5__link {
    color: var(--color-primary);
  }

  .c-sec5__link:hover {
    transform: translateY(-0.02rem);
  }

  .c-sec5__btn:hover {
    transform: translateY(-0.03rem);
    box-shadow: 0 0.08rem 0.2rem rgba(0, 104, 255, 0.28);
  }

  .c-sec5__btn--outline:hover {
    color: #ffffff;
    background-color: var(--color-primary);
  }
}

.c-sec6 {
  position: relative;
  padding: 0.72rem 0 0.8rem;
  overflow: hidden;
}

.c-sec6__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec6__inner {
  position: relative;
  z-index: 1;
}

.c-sec6__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  margin-bottom: 0.4rem;
}

.c-sec6__logo {
  flex-shrink: 0;
  width: 0.72rem;
  height: 0.72rem;
  object-fit: contain;
}

.c-sec6__header-text {
  margin: 0;
  font-size: 0.28rem;
  line-height: 1.4;
  color: rgb(144, 144, 144);
}

.c-sec6__blocks {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.c-sec6__block {
  display: flex;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.24rem rgba(84, 116, 255, 0.08);
  transition: box-shadow var(--duration-normal) var(--ease-default);
}

.c-sec6__block--bordered {
  border: 1px solid rgb(221, 225, 255);
}

.c-sec6__banner {
  position: relative;
  flex: 0 0 2.8rem;
  min-height: 2.4rem;
  overflow: hidden;
}

.c-sec6__banner-pic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-sec6__banner-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0.32rem 0.28rem;
}

.c-sec6__banner-title {
  margin: 0;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.c-sec6__banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.08rem 0.2rem;
  font-size: 0.14rem;
  color: #2c55fb;
  background-color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  transition: transform var(--duration-fast) var(--ease-default),
    background-color var(--duration-fast) var(--ease-default);
}

.c-sec6__banner-btn:active {
  transform: scale(0.98);
}

.c-sec6__grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem 0.16rem;
  align-content: center;
  min-width: 0;
  padding: 0.36rem 0.4rem;
  list-style: none;
  background-color: rgb(245, 246, 251);
}

.c-sec6__item {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  font-size: 0.18rem;
  line-height: 1.4;
  color: rgb(102, 102, 102);
}

.c-sec6__item-icon {
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  padding: 0.06rem;
  box-sizing: content-box;
  object-fit: contain;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0.02rem 0.08rem rgba(84, 116, 255, 0.08);
}

@media (hover: hover) {
  .c-sec6__block:hover {
    box-shadow: 0 0.12rem 0.32rem rgba(0, 104, 255, 0.14);
  }

  .c-sec6__banner-btn:hover {
    background-color: #ffffff;
    transform: translateY(-0.02rem);
  }
}

.c-sec7 {
  position: relative;
  padding: 0.72rem 0 0.8rem;
  overflow: hidden;
}

.c-sec7__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec7__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.c-sec7__title {
  margin: 0.24rem 0 0.56rem;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: #ffffff;
}

.c-sec7__viewport {
  overflow: hidden;
  cursor: grab;
  container-type: inline-size;
}

.c-sec7__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.c-sec7__track {
  display: flex;
  gap: 0.24rem;
  width: max-content;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.c-sec7__viewport.is-dragging .c-sec7__track,
.c-sec7__viewport.is-jumping .c-sec7__track {
  transition: none;
}

.c-sec7__card {
  flex: 0 0 calc((100cqi - 0.72rem) / 4);
  width: calc((100cqi - 0.72rem) / 4);
  padding: 0.16rem 0.16rem 0.24rem;
  background-color: rgb(245, 246, 251);
  border: 1px solid rgb(221, 225, 255);
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.2rem rgba(84, 116, 255, 0.08);
  transition: transform var(--duration-normal) var(--ease-default),
    box-shadow var(--duration-normal) var(--ease-default);
}

.c-sec7__pic {
  display: block;
  width: 100%;
  height: 1.8rem;
  object-fit: cover;
  border-radius: 0.08rem;
}

.c-sec7__card-title {
  margin: 0.16rem 0 0;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgb(51, 51, 51);
}

.c-sec7__card-desc {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: rgb(144, 144, 144);
}

@media (hover: hover) {
  .c-sec7__card:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.1rem 0.28rem rgba(0, 104, 255, 0.14);
  }
}

.c-sec8 {
  position: relative;
  padding: 0.72rem 0 0.88rem;
  overflow: hidden;
}

.c-sec8__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.c-sec8__inner {
  position: relative;
  z-index: 1;
}

.c-sec8__title {
  margin: 0 0 0.48rem;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: rgb(51, 51, 51);
}

.c-sec8__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.32rem;
  max-width: 11rem;
  margin: 0 auto;
}

.c-sec8__group {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.16rem;
  width: 100%;
}

.c-sec8__label {
  position: relative;
  flex: 0 0 1.8rem;
  margin: 0;
  padding-top: 0.12rem;
  padding-left: 0.14rem;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgb(51, 51, 51);
  white-space: nowrap;
}

.c-sec8__label::before {
  content: "";
  position: absolute;
  top: 0.04rem;
  bottom: 0.04rem;
  left: 0;
  width: 0.04rem;
  background-color: #2ad2c9;
  border-radius: 0.02rem;
}

.c-sec8__logos {
  display: block;
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 9.2rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.c-sec8__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.24rem;
  margin-top: 0.48rem;
}

.c-sec8__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.14rem 0.36rem;
  font-size: 0.16rem;
  font-weight: 500;
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default),
    background-color var(--duration-fast) var(--ease-default),
    color var(--duration-fast) var(--ease-default);
}

.c-sec8__btn--outline {
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid var(--color-primary);
}

.c-sec8__btn--primary {
  color: #ffffff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.c-sec8__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

@media (hover: hover) {
  .c-sec8__btn:hover {
    transform: translateY(-0.02rem);
    box-shadow: 0 0.06rem 0.18rem rgba(0, 104, 255, 0.25);
  }

  .c-sec8__btn--outline:hover {
    color: #ffffff;
    background-color: var(--color-primary);
  }
}

.c-footer {
  background-color: rgb(40, 41, 44);
  color: rgba(255, 255, 255, 0.72);
}

.c-footer__inner {
  padding-top: 0.64rem;
  padding-bottom: 0.4rem;
}

.c-footer__main {
  display: flex;
  justify-content: space-between;
  gap: 0.64rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-footer__brand {
  flex: 0 0 3.6rem;
}

.c-footer__logo {
  display: inline-block;
}

.c-footer__logo img {
  display: block;
  height: 0.42rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.c-footer__slogan {
  margin: 0.2rem 0 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.c-footer__phone {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.22rem;
  font-weight: 700;
  color: #ffffff;
  transition: color var(--duration-fast) var(--ease-default);
}

.c-footer__phone:hover {
  color: var(--color-primary-light);
}

.c-footer__cols {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 0.8rem;
}

.c-footer__col {
  min-width: 1.6rem;
}

.c-footer__title {
  margin: 0 0 0.2rem;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}

.c-footer__links {
  list-style: none;
}

.c-footer__links li + li {
  margin-top: 0.1rem;
}

.c-footer__links a {
  font-size: 0.14rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--duration-fast) var(--ease-default);
}

.c-footer__links a:hover {
  color: #ffffff;
}

.c-footer__wechat {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  margin-left: 0.24rem;
}

.c-footer__wechat img {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0.08rem;
  padding: 0.08rem;
  box-sizing: border-box;
}

.c-footer__wechat span {
  margin-top: 0.12rem;
  font-size: 0.14rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.c-footer__bottom {
  padding-top: 0.28rem;
  text-align: center;
}

.c-footer__copy {
  margin: 0;
  font-size: 0.12rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem;
}

.c-modal[hidden] {
  display: none;
}

.c-modal__mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
}

.c-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 6.4rem;
}

.c-modal__close {
  position: absolute;
  top: -0.16rem;
  right: -0.16rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  font-size: 0.28rem;
  line-height: 1;
  color: #ffffff;
  background-color: rgba(40, 40, 40, 0.88);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-default),
    opacity var(--duration-fast) var(--ease-default);
}

.c-modal__close:hover {
  transform: scale(1.06);
}

.c-modal__panel {
  overflow: hidden;
  padding: 0.28rem 0.32rem 0.36rem;
  background-color: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.16rem 0.48rem rgba(0, 0, 0, 0.18);
}

.c-modal__head {
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #ececec;
}

.c-modal__logo {
  display: block;
  width: auto;
  max-width: 2.8rem;
  height: 0.28rem;
  object-fit: contain;
  object-position: left center;
}

.c-modal__partner {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.18rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #1a73e8;
}

.c-modal__partner-arrow {
  display: inline-flex;
  width: 0.18rem;
  height: 0.18rem;
  background-color: #1a73e8;
  border-radius: 50%;
  position: relative;
}

.c-modal__partner-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.06rem;
  height: 0.06rem;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}

.c-modal__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.36rem 0.24rem 0.32rem;
  background-color: #f5f6f8;
  border-radius: 0.1rem;
}

.c-modal__badge {
  display: block;
  width: 0.88rem;
  height: 0.88rem;
  object-fit: contain;
}

.c-modal__company {
  margin: 0.2rem 0 0;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #333333;
}

.c-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.28rem;
  padding: 0.14rem 0.48rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1a73e8;
  border-radius: 0.06rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.c-modal__btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.c-modal__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin: 0.28rem 0 0;
  list-style: none;
}

.c-modal__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-modal__feature-icon {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  object-fit: contain;
}

.c-modal__feature-title {
  margin: 0.1rem 0 0;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}

.c-modal__feature-desc {
  margin: 0.04rem 0 0;
  font-size: 0.13rem;
  line-height: 1.4;
  color: rgb(144, 144, 144);
}

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

@media screen and (max-width: 767px) {
  :root {
    --header-height: 0.88rem;
    --space-md: 0.32rem;
  }

  .c-header.is-menu-open {
    z-index: 100;
  }

  .c-header.is-menu-open .c-header__logo,
  .c-header.is-menu-open .c-header__menu-btn,
  .c-header.is-menu-open .c-header__phone {
    visibility: hidden;
    pointer-events: none;
  }

  .l-container {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .c-header__inner {
    gap: 0.16rem;
  }

  .c-header__logo {
    margin-right: 0;
  }

  .c-header__logo img {
    width: auto;
    height: 0.44rem;
  }

  .c-header__menu-btn {
    display: flex;
  }

  .c-header__phone {
    margin-left: 0.16rem;
    padding-left: 0;
    border-left: none;
    font-size: 0;
  }

  .c-header__phone-icon {
    width: 0.44rem;
    height: 0.44rem;
  }

  .c-nav__mask {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 111;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-default),
      visibility var(--duration-normal);
  }

  .c-header.is-menu-open .c-nav__mask {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .c-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 112;
    flex: none;
    align-self: auto;
    display: flex;
    flex-direction: column;
    width: 60%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    padding-top: 0;
    background-color: var(--color-bg);
    box-shadow: -0.04rem 0 0.24rem rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-default);
    overflow: hidden;
  }

  .c-header.is-menu-open .c-nav {
    transform: translateX(0);
  }

  .c-nav__panel-head {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    flex-shrink: 0;
    height: var(--header-height);
    padding: 0;
    pointer-events: none;
    border-bottom: none;
  }

  .c-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.12rem;
    right: 0.12rem;
    z-index: 11;
    width: 0.64rem;
    height: 0.64rem;
    padding: 0;
    pointer-events: auto;
    cursor: pointer;
    background-color: transparent;
  }

  .c-nav__close-line {
    position: absolute;
    width: 0.28rem;
    height: 0.03rem;
    background-color: var(--color-text);
    border-radius: 0.01rem;
  }

  .c-nav__close-line:nth-child(1) {
    transform: rotate(45deg);
  }

  .c-nav__close-line:nth-child(2) {
    transform: rotate(-45deg);
  }

  .c-nav__list {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding-top: calc(var(--header-height) + 0.08rem);
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    white-space: normal;
    -webkit-overflow-scrolling: touch;
  }

  .c-nav__item {
    flex-shrink: 1;
    display: block;
    height: auto;
    border-bottom: 1px solid var(--color-border);
  }

  .c-nav__item::after {
    display: none;
  }

  .c-nav__link {
    width: 100%;
    padding: 0.3rem 0.4rem;
    font-size: 0.28rem;
  }

  .c-nav__dropdown {
    position: static;
    left: auto;
    width: 100%;
    padding: 0 0.4rem;
    margin-top: 0;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-default),
      opacity var(--duration-fast) var(--ease-default),
      visibility var(--duration-fast);
  }

  .c-nav__dropdown::before {
    display: none;
  }

  .c-nav__item.is-open .c-nav__dropdown {
    max-height: 4.2rem;
    padding: 0 0.4rem 0.24rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .c-nav__item.has-dropdown:not(.is-open) .c-nav__dropdown {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .c-nav__dropdown-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }

  .c-nav__dropdown-link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.16rem;
    padding: 0.22rem 0;
    text-align: left;
  }

  .c-nav__icon-wrap {
    width: 0.28rem;
    height: 0.28rem;
  }

  .c-nav__dropdown-text {
    font-size: 0.26rem;
  }

  .u-desktop-only {
    display: none !important;
  }

  .u-mobile-only {
    display: block;
  }

  .c-banner {
    touch-action: none;
  }

  .c-banner__slide {
    position: relative;
  }

  .c-banner__bg {
    object-position: center top;
  }

  .c-banner__overlay {
    display: none;
  }

  .c-banner__inner {
    display: grid;
    grid-template-rows: auto minmax(2.4rem, 1fr);
    gap: 0.12rem;
    height: 100%;
    padding: 0.52rem 0 0;
  }

  .c-banner__inner:not(:has(.c-banner__visual)) {
    grid-template-rows: 1fr;
    align-content: center;
    padding-bottom: 0;
  }

  .c-banner__content,
  .c-banner__content--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .c-banner__logo,
  .c-banner__logo--partner {
    width: 1.52rem;
    margin: 0 0 0.16rem;
  }

  .c-banner__logo--partner {
    width: 1.84rem;
    margin-bottom: 0.2rem;
  }

  .c-banner__title,
  .c-banner__content--dark .c-banner__title {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    margin: 0.04rem 0 0;
    font-size: 0.4rem;
    font-weight: 700;
    line-height: 1.38;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #0c0c0c;
  }

  .c-banner__content:not(.c-banner__content--dark) .c-banner__title {
    color: #ffffff;
  }

  .c-banner__title--italic {
    font-size: 0.38rem;
    line-height: 1.32;
  }

  .c-banner__desc-group {
    width: 100%;
    margin-top: 0.14rem;
  }

  .c-banner__desc,
  .c-banner__content--dark .c-banner__desc {
    margin: 0;
    font-size: 0.26rem;
    line-height: 1.6;
    text-align: center;
    color: #666666;
    opacity: 1;
  }

  .c-banner__content:not(.c-banner__content--dark) .c-banner__desc {
    color: rgba(255, 255, 255, 0.88);
  }

  .c-banner__desc-group .c-banner__desc + .c-banner__desc {
    margin-top: 0.1rem;
  }

  .c-banner__btn {
    display: inline-flex;
    align-self: center;
    width: auto;
    min-width: 3.2rem;
    height: 0.8rem;
    margin-top: 0.28rem;
    padding: 0 0.48rem;
    font-size: 0.3rem;
    font-weight: 500;
    border-radius: 0.1rem;
    white-space: nowrap;
  }

  .c-banner__visual {
    display: block;
    position: relative;
    min-height: 0;
    overflow: hidden;
    margin-bottom: 0;
  }

  .c-banner--static:not(.t-banner) .c-banner__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    grid-template-rows: none;
    gap: 0;
    height: 100%;
    padding: 0;
  }

  .c-banner--static:not(.t-banner) .c-banner__content {
    position: relative;
    z-index: 2;
    justify-content: center;
  }

  .c-banner--static:not(.t-banner) .c-banner__visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 46%;
    pointer-events: none;
  }

  .c-banner__figure,
  .c-banner__figure--1,
  .c-banner__figure--3 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
  }

  .c-banner__pagination {
    bottom: 0.2rem;
    z-index: 5;
    gap: 0.08rem;
    padding: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .c-banner__dot {
    width: 0.1rem;
    height: 0.1rem;
    background-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0.04rem rgba(0, 0, 0, 0.25);
  }

  .c-banner__dot.is-active {
    width: 0.24rem;
    background-color: #ffffff;
    box-shadow: 0 0 0.06rem rgba(0, 0, 0, 0.3);
  }

  .c-sec2 {
    padding: 0.64rem 0 0.72rem;
  }

  .c-sec2__title {
    margin: 0.24rem 0 0.4rem;
    font-size: 0.28rem;
    line-height: 1.38;
  }

  .c-sec2__title-highlight {
    display: block;
    margin-top: 0.12rem;
  }

  .c-sec2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.16rem;
  }

  .c-sec2__card {
    min-height: auto;
    padding: 0.2rem 0.14rem 0.18rem 0.2rem;
  }

  .c-sec2__card-head {
    gap: 0.08rem;
  }

  .c-sec2__icon {
    width: 0.44rem;
    height: 0.44rem;
  }

  .c-sec2__problem p {
    font-size: 0.22rem;
    line-height: 1.36;
  }

  .c-sec2__solution {
    margin-top: 0.12rem;
    font-size: 0.2rem;
  }

  .c-sec2__solution::before {
    width: 0.16rem;
    height: 0.16rem;
    background-size: 0.08rem;
  }

  .c-sec2__consult {
    flex-direction: column;
    gap: 0.24rem;
    max-width: 100%;
    margin-top: 0.32rem;
  }

  .c-sec2__pic--left,
  .c-sec2__consult-main {
    display: none;
  }

  .c-sec2__consult-mobile {
    display: block;
    width: 100%;
    height: auto;
  }

  .c-sec2__btn--consult-mobile {
    display: inline-flex;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.88rem;
    font-size: 0.28rem;
    border-radius: 0.12rem;
  }

  .c-sec3__flow {
    margin-top: 0.4rem;
    border-radius: 0.16rem;
  }

  .c-sec3__flow-body {
    flex-direction: column;
    align-items: stretch;
    gap: 0.36rem;
    padding: 0.4rem 0.32rem 0.44rem;
  }

  .c-sec3__flow-intro {
    width: 100%;
  }

  .c-sec3__flow-title {
    font-size: 0.4rem;
  }

  .c-sec3__flow-btn {
    margin-top: 0.24rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.26rem;
    border-radius: 0.1rem;
  }

  .c-sec3__flow-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.28rem 0.2rem;
  }

  .c-sec3__flow-step {
    width: auto;
  }

  .c-sec3__flow-step:not(:last-child)::after {
    display: none;
  }

  .c-sec3__flow-num {
    font-size: 0.56rem;
  }

  .c-sec3__flow-content {
    padding-top: 0.12rem;
  }

  .c-sec3__flow-step-title {
    font-size: 0.26rem;
  }

  .c-sec3__flow-step-desc {
    margin-top: 0.08rem;
    font-size: 0.22rem;
    line-height: 1.45;
  }

  .c-sec3 {
    padding: 0.56rem 0 0.64rem;
  }

  .c-sec3__title {
    margin-bottom: 0.32rem;
    font-size: 0.32rem;
    line-height: 1.4;
  }

  .c-sec3__cards {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .c-sec3__card {
    padding: 0.24rem 0.24rem 0.36rem;
  }

  .c-sec3__card-title {
    margin-top: 0.24rem;
    font-size: 0.32rem;
  }

  .c-sec3__card-desc {
    margin-top: 0.1rem;
    font-size: 0.24rem;
  }

  .c-sec3__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem 0.12rem;
    margin-top: 0.28rem;
  }

  .c-sec3__feature-icon {
    width: 0.26rem;
    height: 0.26rem;
  }

  .c-sec3__feature-text {
    font-size: 0.22rem;
    white-space: normal;
  }

  .c-sec3__feature-check {
    width: 0.22rem;
    height: 0.22rem;
    margin-left: 15px;
  }

  .c-sec3__btn {
    align-self: flex-start;
    width: auto;
    max-width: none;
    min-height: 0.8rem;
    margin-top: 0.36rem;
    font-size: 0.26rem;
    border-radius: 0.1rem;
  }

  .c-sec4 {
    padding: 0.48rem 0 0.56rem;
  }

  .c-sec5 {
    padding: 0.56rem 0 0.64rem;
  }

  .c-sec5__title {
    margin-bottom: 0.32rem;
    font-size: 0.32rem;
    line-height: 1.4;
  }

  .c-sec5__cards {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .c-sec5__card {
    padding: 0.32rem 0.24rem 0.28rem;
  }

  .c-sec5__card-title {
    font-size: 0.3rem;
  }

  .c-sec5__card-desc {
    margin-top: 0.12rem;
    font-size: 0.22rem;
  }

  .c-sec5__link {
    margin-top: 0.12rem;
    font-size: 0.22rem;
  }

  .c-sec5__actions {
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.4rem;
  }

  .c-sec5__btn {
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    font-size: 0.26rem;
    border-radius: 0.1rem;
  }

  .c-modal {
    padding: 0.4rem 0.32rem;
  }

  .c-modal__dialog {
    max-width: 100%;
  }

  .c-modal__close {
    top: -0.2rem;
    right: 0;
    width: 0.56rem;
    height: 0.56rem;
    font-size: 0.4rem;
  }

  .c-modal__panel {
    padding: 0.32rem 0.28rem 0.4rem;
  }

  .c-modal__logo {
    max-width: 4.2rem;
    height: 0.4rem;
  }

  .c-modal__partner {
    margin-top: 0.24rem;
    font-size: 0.26rem;
  }

  .c-modal__partner-arrow {
    width: 0.28rem;
    height: 0.28rem;
  }

  .c-modal__hero {
    margin-top: 0.24rem;
    padding: 0.4rem 0.24rem 0.36rem;
  }

  .c-modal__badge {
    width: 1.2rem;
    height: 1.2rem;
  }

  .c-modal__company {
    margin-top: 0.24rem;
    font-size: 0.36rem;
  }

  .c-modal__btn {
    margin-top: 0.32rem;
    min-height: 0.72rem;
    padding: 0.16rem 0.48rem;
    font-size: 0.26rem;
  }

  .c-modal__features {
    gap: 0.12rem;
    margin-top: 0.32rem;
  }

  .c-modal__feature-icon {
    width: 0.56rem;
    height: 0.56rem;
  }

  .c-modal__feature-title {
    margin-top: 0.12rem;
    font-size: 0.24rem;
  }

  .c-modal__feature-desc {
    font-size: 0.2rem;
  }

  .c-sec6 {
    padding: 0.56rem 0 0.64rem;
  }

  .c-sec6__header {
    justify-content: center;
    gap: 0.16rem;
    margin-bottom: 0.32rem;
  }

  .c-sec6__logo {
    width: 0.72rem;
    height: 0.72rem;
  }

  .c-sec6__header-text {
    font-size: 0.28rem;
  }

  .c-sec6__blocks {
    gap: 0.24rem;
  }

  .c-sec6__block {
    flex-direction: column;
  }

  .c-sec6__banner {
    flex: none;
    width: 100%;
    min-height: 2.8rem;
  }

  .c-sec6__banner-body {
    padding: 0.36rem 0.32rem;
  }

  .c-sec6__banner-title {
    font-size: 0.36rem;
  }

  .c-sec6__banner-btn {
    margin-top: 0.24rem;
    padding: 0.12rem 0.28rem;
    font-size: 0.22rem;
  }

  .c-sec6__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem 0.12rem;
    padding: 0.32rem 0.24rem;
  }

  .c-sec6__item {
    font-size: 0.26rem;
  }

  .c-sec6__item-icon {
    width: 0.4rem;
    height: 0.4rem;
    padding: 0.08rem;
  }

  .c-sec7 {
    padding: 0.56rem 0 0.64rem;
  }

  .c-sec7__title {
    margin: 0.2rem 0 0.44rem;
    font-size: 0.32rem;
  }

  .c-sec7__inner {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .c-sec7__track {
    gap: 0.2rem;
  }

  .c-sec7__card {
    flex-basis: 5.2rem;
    width: 5.2rem;
    padding: 0.2rem 0.2rem 0.28rem;
  }

  .c-sec7__pic {
    height: 2.8rem;
  }

  .c-sec7__card-title {
    margin-top: 0.2rem;
    font-size: 0.28rem;
  }

  .c-sec7__card-desc {
    margin-top: 0.1rem;
    font-size: 0.22rem;
  }

  .c-sec8 {
    padding: 0.56rem 0 0.72rem;
  }

  .c-sec8__title {
    margin-bottom: 0.36rem;
    font-size: 0.32rem;
  }

  .c-sec8__list {
    gap: 0.28rem;
    max-width: 100%;
  }

  .c-sec8__group {
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
  }

  .c-sec8__label {
    flex: none;
    font-size: 0.26rem;
  }

  .c-sec8__logos {
    width: 100%;
    max-width: 100%;
  }

  .c-sec8__actions {
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.4rem;
  }

  .c-sec8__btn {
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    font-size: 0.26rem;
  }

  .c-footer__inner {
    padding-top: 0.56rem;
    padding-bottom: 0.36rem;
  }

  .c-footer__main {
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .c-footer__brand {
    flex: none;
  }

  .c-footer__logo img {
    height: 0.56rem;
  }

  .c-footer__slogan {
    font-size: 0.22rem;
  }

  .c-footer__phone {
    margin-top: 0.16rem;
    font-size: 0.32rem;
  }

  .c-footer__cols {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.32rem 0.48rem;
  }

  .c-footer__wechat {
    margin-left: 0;
    align-self: center;
  }

  .c-footer__wechat img {
    width: 1.6rem;
    height: 1.6rem;
  }

  .c-footer__wechat span {
    font-size: 0.22rem;
  }

  .c-footer__title {
    margin-bottom: 0.16rem;
    font-size: 0.26rem;
  }

  .c-footer__links a {
    font-size: 0.22rem;
  }

  .c-footer__links li + li {
    margin-top: 0.12rem;
  }

  .c-footer__copy {
    font-size: 0.2rem;
  }

}

.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.14rem 0.36rem;
  font-size: 0.16rem;
  font-weight: 500;
  border-radius: 0.08rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.g-btn--primary {
  color: #ffffff;
  background-color: var(--color-primary);
}

.g-btn--light {
  color: var(--color-primary);
  background-color: #ffffff;
}

.g-btn--outline {
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid var(--color-primary);
}

.g-btn--sm {
  padding: 0.1rem 0.28rem;
  font-size: 0.14rem;
}

.g-btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.g-sec {
  position: relative;
  padding: 0.72rem 0 0.8rem;
  overflow: hidden;
}

.g-sec--eco {
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}

.g-sec__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.g-sec__inner {
  position: relative;
  z-index: 1;
}

.g-sec__title {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #38393d;
}

.g-sec__title--light,
.g-sec__subtitle--light {
  color: #ffffff;
}

.g-sec__subtitle {
  margin: 0.16rem 0 0;
  font-size: 0.18rem;
  line-height: 1.5;
  text-align: center;
  color: #8b8f99;
}

.g-sec__cta {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.g-hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 0.56rem 0 0;
  overflow: visible;
  background: linear-gradient(110deg, #1a4fd8 0%, #2c6dff 48%, #4d8dff 100%);
}

.g-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.g-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 5.6rem;
}

.g-hero__main {
  display: flex;
  align-items: flex-start;
  flex: 1;
  padding-top: 0.48rem;
  padding-bottom: 1rem;
}

.g-hero__content {
  width: 48%;
  max-width: 5.6rem;
}

.g-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.2rem;
}

.g-hero__badge-logo {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  object-fit: contain;
  background: #ffffff;
  border-radius: 0.08rem;
  box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.08);
}

.g-hero__badge-text {
  margin: 0;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
}

.g-hero__title {
  margin: 0;
  font-size: 0.44rem;
  font-weight: 700;
  line-height: 1.25;
  font-style: italic;
  color: #ffffff;
}

.g-hero__desc {
  margin: 0.16rem 0 0;
  font-size: 0.18rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.g-hero__btn {
  margin-top: 0.28rem;
  min-width: 1.8rem;
  padding: 0.14rem 0.4rem;
  font-size: 0.18rem;
  color: #2c55fb;
  background-color: #ffffff;
  box-shadow: 0 0.06rem 0.18rem rgba(0, 0, 0, 0.12);
}

.g-hero__stats-wrap {
  position: relative;
  z-index: 3;
  height: 0;
  margin-top: 0;
  overflow: visible;
}

.g-hero__stats {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0.28rem 0;
  list-style: none;
  background: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.1rem 0.28rem rgba(30, 64, 175, 0.12);
  transform: translateY(-50%);
}

.g-hero__stats li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.08rem 0.12rem;
  text-align: center;
}

.g-hero__stats li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: #e8ebf2;
}

.g-hero__stat-num {
  margin: 0;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c55fb;
}

.g-hero__stat-num--green::after,
.g-hero__stat-num--blue::after,
.g-hero__stat-num--orange::after {
  content: "\2191";
  display: inline-block;
  margin-left: 0.04rem;
  font-size: 0.18rem;
  vertical-align: middle;
}

.g-hero__stat-num--green::after {
  color: #22c55e;
}

.g-hero__stat-num--blue::after {
  color: #3b82f6;
}

.g-hero__stat-num--orange::after {
  color: #f59e0b;
}

.g-hero__stat-label {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #909299;
}

.g-eco {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
  margin-top: 0.48rem;
}

.g-eco__card {
  display: flex;
  align-items: center;
  gap: 0.2rem 0.32rem;
  min-height: 2.2rem;
  padding: 0.32rem 0.36rem;
  background: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.2rem rgba(44, 85, 251, 0.08);
  transition: background-color var(--duration-normal) var(--ease-default),
    box-shadow var(--duration-normal) var(--ease-default),
    transform var(--duration-normal) var(--ease-default);
}

.g-eco__main {
  flex: 1 1 48%;
  min-width: 0;
}

.g-eco__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.64rem;
  height: 0.64rem;
  margin-bottom: 0.16rem;
  border-radius: 50%;
  background: transparent;
  transition: background-color var(--duration-normal) var(--ease-default);
}

.g-eco__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center center;
  transition: transform var(--duration-normal) var(--ease-default);
}

.g-eco__card h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: #38393d;
  transition: color var(--duration-normal) var(--ease-default);
}

.g-eco__card .g-eco__main > p {
  margin: 0.1rem 0 0;
  font-size: 0.14rem;
  line-height: 1.55;
  color: #909299;
  transition: color var(--duration-normal) var(--ease-default),
    opacity var(--duration-normal) var(--ease-default);
}

.g-eco__list {
  flex: 1 1 42%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.g-eco__list li {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0.16rem;
  line-height: 1.7;
  color: #666666;
  transition: color var(--duration-normal) var(--ease-default),
    padding-left var(--duration-normal) var(--ease-default);
}

.g-eco__list li + li {
  margin-top: 0.06rem;
}

.g-eco__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.16rem;
  height: 0.16rem;
  background: url("../images/google/sec2-icon3@2x.a5a9b053.png") center / contain no-repeat;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
}

@media (hover: hover) {
  .g-eco__card:hover {
    background: #2c6dff;
    box-shadow: 0 0.1rem 0.28rem rgba(44, 109, 255, 0.28);
    transform: translateY(-0.04rem);
  }

  .g-eco__card:hover .g-eco__icon-wrap {
    background: #ffffff;
  }

  .g-eco__card:hover .g-eco__icon {
    transform: scale(0.45);
  }

  .g-eco__card:hover h3,
  .g-eco__card:hover .g-eco__main > p,
  .g-eco__card:hover .g-eco__list li {
    color: #ffffff;
  }

  .g-eco__card:hover .g-eco__main > p {
    opacity: 0.92;
  }

  .g-eco__card:hover .g-eco__list li {
    padding-left: 0.28rem;
  }

  .g-eco__card:hover .g-eco__list li::before {
    opacity: 1;
  }
}

.g-eco__cta {
  min-width: 4.6rem;
  padding: 0.18rem 0.48rem;
  font-size: 0.18rem;
  border-radius: 0.1rem;
}

.g-sec--cases {
  overflow: visible;
}

.g-sec--cases .g-sec__cta {
  position: relative;
  z-index: 1;
  margin-top: 0.4rem;
}

.g-cases__cta {
  min-width: 3.2rem;
  padding: 0.18rem 0.52rem;
  font-size: 0.18rem;
  border-radius: 0.12rem;
}

.g-cases {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  margin-top: 0.48rem;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.g-cases.is-dragging {
  cursor: grabbing;
}

.g-cases__track {
  display: flex;
  gap: 0.32rem;
  width: max-content;
  will-change: transform;
}

.g-cases__card {
  display: flex;
  flex: 0 0 10rem;
  width: 10rem;
  min-height: 3.8rem;
  overflow: hidden;
  background: #eef3fb;
  border-radius: 0.2rem;
  box-shadow: 0 0.08rem 0.28rem rgba(44, 85, 251, 0.08);
}

.g-cases__media {
  flex: 0 0 40%;
  width: 40%;
  min-height: 100%;
  background: #dce6f5;
}

.g-cases__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-cases__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.32rem 0.36rem 0.28rem;
  background: #eef3fb;
}

.g-cases__body h3 {
  margin: 0;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.35;
  color: #38393d;
}

.g-cases__block {
  margin-top: 0.18rem;
}

.g-cases__block h4 {
  margin: 0;
  font-size: 0.16rem;
  font-weight: 600;
  line-height: 1.4;
  color: #2c55fb;
}

.g-cases__block p {
  margin: 0.06rem 0 0;
  font-size: 0.14rem;
  line-height: 1.55;
  color: #8b8f99;
}

.g-cases__metrics {
  display: flex;
  align-items: stretch;
  margin: auto 0 0;
  padding: 0.24rem 0 0;
  list-style: none;
}

.g-cases__metrics li {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 0 0.1rem;
  text-align: center;
}

.g-cases__metrics li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #d5deee;
}

.g-cases__metric-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.06rem;
  margin: 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.15;
  color: #38393d;
}

.g-cases__metric-num img {
  display: block;
  width: 0.16rem;
  height: auto;
}

.g-cases__metric-label {
  margin: 0.08rem 0 0;
  font-size: 0.13rem;
  line-height: 1.4;
  color: #909299;
}

.g-cases__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
  margin-top: 0.32rem;
}

.g-cases__dot {
  width: 0.12rem;
  height: 0.12rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(44, 85, 251, 0.12);
  cursor: pointer;
  transition: width var(--duration-fast) var(--ease-default),
    background-color var(--duration-fast) var(--ease-default);
}

.g-cases__dot.is-active {
  width: 0.36rem;
  background: #2c55fb;
  box-shadow: none;
}

.g-sec--service {
  overflow: hidden;
}

.g-service-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.g-service__top {
  display: grid;
  grid-template-columns: minmax(2.6rem, 3.2rem) repeat(2, 3.4rem);
  gap: 0.2rem;
  align-items: start;
  justify-content: center;
}

.g-service__bottom {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.g-service__intro {
  position: relative;
  z-index: 1;
  padding-top: 0.32rem;
  padding-right: 0.12rem;
}

.g-service__title {
  margin: 0;
  font-size: 0.34rem;
  font-weight: 700;
  line-height: 1.35;
  color: #38393d;
}

.g-service__subtitle {
  margin: 0.16rem 0 0;
  font-size: 0.15rem;
  line-height: 1.5;
  color: #8b8f99;
}

.g-service__intro-btn {
  margin-top: 0.24rem;
  min-width: 1.4rem;
  padding: 0.12rem 0.32rem;
  font-size: 0.16rem;
  border-radius: 0.08rem;
}

.g-service__card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  max-width: 3.4rem;
  padding: 0.2rem 0.18rem 0.24rem;
  background: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.2rem rgba(44, 85, 251, 0.08);
}

.g-service__bottom .g-service__card {
  flex: 0 1 3.4rem;
  width: 3.4rem;
}

.g-service__card h3 {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 1.35;
  color: #38393d;
}

.g-service__card > p {
  margin: 0.08rem 0 0;
  font-size: 0.12rem;
  line-height: 1.45;
  color: #8b8f99;
}

.g-service__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.08rem 0.1rem;
  margin: 0.14rem 0 0;
  padding: 0;
  list-style: none;
}

.g-service__list li {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  min-width: 0;
  margin: 0;
  font-size: 0.11rem;
  line-height: 1.35;
  color: #666666;
}

.g-service__list li > img {
  flex: 0 0 auto;
  width: 0.16rem;
  height: 0.16rem;
  object-fit: contain;
}

.g-service__list li span {
  flex: 1;
  min-width: 0;
}

.g-service__list li::after {
  content: "";
  flex: 0 0 auto;
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.02rem;
  background: url("../images/sec3-icon-shark@2x.e755ee43.png") center / contain no-repeat;
}

.g-service__pic {
  display: block;
  width: 100%;
  height: auto;
  max-height: 1.6rem;
  margin-top: 0.14rem;
  border-radius: 0.06rem;
  object-fit: contain;
  object-position: center;
}

.g-service__card .g-btn {
  align-self: center;
  min-width: 1.4rem;
  margin-top: 0.16rem;
  padding: 0.08rem 0.24rem;
  font-size: 0.13rem;
  border-radius: 0.08rem;
}

.g-duo {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.g-duo__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.g-duo__panel {
  position: relative;
  min-height: 3.2rem;
  overflow: hidden;
}

.g-duo__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/sec5-bg@2x.0b4d2c3c.png");
  background-repeat: no-repeat;
  background-size: 200% 100%;
  pointer-events: none;
}

.g-duo__panel--agent .g-duo__bg {
  background-position: left center;
}

.g-duo__panel--traffic .g-duo__bg {
  background-position: right center;
}

.g-duo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  height: 100%;
  min-height: 3.2rem;
  padding: 0.4rem 0.48rem;
}

.g-duo__copy {
  flex: 1;
  min-width: 0;
}

.g-duo__copy h2 {
  margin: 0;
  font-size: 0.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.g-duo__copy p {
  margin: 0.16rem 0 0;
  font-size: 0.15rem;
  line-height: 1.6;
}

.g-duo__copy .g-btn {
  margin-top: 0.28rem;
}

.g-duo__visual {
  flex: 0 0 46%;
  max-width: 3.8rem;
  text-align: center;
}

.g-duo__visual > img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.g-duo__query {
  display: inline-block;
  margin-top: 0.08rem;
  font-size: 0.14rem;
  color: #ffffff;
  transition: opacity var(--duration-fast) var(--ease-default);
}

.g-duo__query:hover {
  opacity: 0.85;
}

.g-duo__panel--agent .g-duo__copy h2 {
  color: #ffffff;
}

.g-duo__panel--agent .g-duo__copy p {
  color: rgba(255, 255, 255, 0.92);
}

.g-duo__panel--traffic .g-duo__copy h2 {
  color: #1f2a44;
}

.g-duo__panel--traffic .g-duo__copy p {
  color: #3b6ef5;
}

.g-agent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-height: 3rem;
}

.g-agent__copy h2 {
  margin: 0;
  font-size: 0.32rem;
  color: #ffffff;
}

.g-agent__copy p {
  margin: 0.12rem 0 0;
  font-size: 0.16rem;
  color: #e9e9e9;
}

.g-agent__copy .g-btn {
  margin-top: 0.28rem;
}

.g-agent__visual {
  position: relative;
  flex: 0 0 4.8rem;
}

.g-agent__visual > img {
  width: 100%;
  height: auto;
}

.g-agent__query {
  display: inline-block;
  margin-top: 0.12rem;
  font-size: 0.14rem;
  color: #ffffff;
}

.g-traffic__title {
  margin: 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #38393d;
}

.g-traffic__subtitle {
  margin: 0.12rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  text-align: center;
  color: #8b8f99;
}

.g-traffic__pic {
  display: block;
  width: 100%;
  max-width: 9.6rem;
  height: auto;
  margin: 0.4rem auto 0;
}

.g-traffic__ind-title {
  margin: 0.56rem 0 0;
  font-size: 0.24rem;
  font-weight: 700;
  text-align: center;
  color: #38393d;
}

.g-traffic__industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.16rem 0.2rem;
  margin: 0.32rem 0 0;
  padding: 0;
  list-style: none;
}

.g-traffic__industries li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-height: 0.64rem;
  padding: 0.12rem 0.08rem;
  font-size: 0.15rem;
  color: #38393d;
  background: #ffffff;
  border-radius: 0.1rem;
  box-shadow: 0 0.04rem 0.14rem rgba(47, 109, 255, 0.08);
}

.g-traffic__industries img {
  width: 0.28rem;
  height: 0.28rem;
  object-fit: contain;
  flex-shrink: 0;
}

.g-tabs {
  margin-top: 0.4rem;
}

.g-tabs__nav {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.08rem;
  border-bottom: 1px solid #e8ebf2;
}

.g-tabs__nav button {
  position: relative;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-height: 0.64rem;
  padding: 0.14rem 0.08rem 0.18rem;
  font-size: 0.16rem;
  color: #8b8f99;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.g-tabs__nav button img {
  width: 0.22rem;
  height: 0.22rem;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.g-tabs__nav button.is-active {
  color: #2c55fb;
  background: transparent;
  font-weight: 600;
}

.g-tabs__nav button.is-active img {
  opacity: 1;
  filter: none;
}

.g-tabs__ink {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 0.04rem;
  background: #2c55fb;
  border-radius: 999px;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform, width;
}

.g-tabs__viewport {
  overflow: hidden;
  margin-top: 0.4rem;
}

.g-tabs__track {
  display: flex;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.g-tabs__panel {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0.48rem;
  align-items: center;
  padding: 0.16rem 0 0;
  background: transparent;
}

.g-tabs__pic {
  display: block;
  width: 88%;
  max-width: 4.4rem;
  height: auto;
  margin: 0 auto;
}

.g-tabs__body h3 {
  margin: 0;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2c55fb;
}

.g-tabs__body p {
  margin: 0.16rem 0 0;
  font-size: 0.15rem;
  line-height: 1.7;
  color: #5c6068;
}

.g-tabs__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.18rem 0.24rem;
  margin: 0.28rem 0 0;
  padding: 0;
  list-style: none;
}

.g-tabs__body li {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.15rem;
  color: #38393d;
}

.g-tabs__body li img {
  width: 0.28rem;
  height: 0.28rem;
  object-fit: contain;
}

.g-tabs__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  min-width: 3.6rem;
  margin-top: 0.36rem;
  padding: 0.16rem 0.18rem 0.16rem 0.28rem;
  font-size: 0.16rem;
  font-weight: 500;
  color: #ffffff;
  background: #2c55fb;
  border-radius: 0.1rem;
  box-shadow: 0 0.08rem 0.2rem rgba(44, 85, 251, 0.28);
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default);
}

.g-tabs__cta img {
  width: 0.36rem;
  height: 0.36rem;
  object-fit: contain;
}

.g-tabs__cta:hover {
  opacity: 0.92;
}

.g-tabs__cta:active {
  transform: scale(0.98);
}

.g-sec--growth {
  background: rgba(245, 247, 251, 0.55);
}

.g-growth {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
  margin-top: 0.48rem;
}

.g-growth__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.12rem;
  box-shadow: 0 0.08rem 0.24rem rgba(47, 109, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform var(--duration-normal) var(--ease-default),
    box-shadow var(--duration-normal) var(--ease-default);
}

.g-growth__card:hover {
  transform: translateY(-0.06rem);
  box-shadow: 0 0.14rem 0.32rem rgba(47, 109, 255, 0.14);
}

.g-growth__pic {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.g-growth__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0.28rem 0.2rem 0.32rem;
}

.g-growth__body h3 {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #38393d;
}

.g-growth__body h3::after {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.04rem;
  margin: 0.14rem auto 0;
  background: #2c55fb;
  border-radius: 999px;
}

.g-growth__body p {
  margin: 0.16rem 0 0;
  font-size: 0.14rem;
  line-height: 1.6;
  color: #8b8f99;
}

.g-growth__cta {
  min-width: 3.6rem;
  padding: 0.16rem 0.4rem;
  font-size: 0.16rem;
}

.g-site__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.g-site__title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.12rem 0.16rem;
  max-width: 100%;
}

.g-site__logo {
  flex-shrink: 0;
  height: 0.44rem;
  width: auto;
  object-fit: contain;
}

.g-site__title {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.3;
  color: #38393d;
}

.g-site__subtitle {
  margin: 0.16rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #8b8f99;
}

.g-site__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.g-site__card {
  display: flex;
  flex-direction: column;
  min-height: 3.6rem;
  padding: 0.24rem 0.16rem 0.12rem;
  border-radius: 0.16rem;
  box-shadow: none;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-default);
}

.g-site__card:hover {
  transform: translateY(-0.06rem);
  box-shadow: none;
}

.g-site__card--1 {
  background: rgba(232, 236, 255, 0.72);
}

.g-site__card--2 {
  background: rgba(224, 240, 255, 0.72);
  padding-bottom: 0;
}

.g-site__card--3 {
  background: rgba(226, 247, 236, 0.72);
}

.g-site__card--4 {
  background: rgba(234, 240, 248, 0.72);
}

.g-site__card--5 {
  background: rgba(220, 246, 250, 0.72);
}

.g-site__card--6 {
  background: rgba(236, 232, 255, 0.72);
}

.g-site__copy {
  text-align: left;
}

.g-site__copy h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2a44;
}

.g-site__copy p {
  margin: 0.1rem 0 0;
  font-size: 0.14rem;
  line-height: 1.5;
  color: #8b8f99;
}

.g-site__card > img {
  display: block;
  width: 100%;
  max-width: 3.85rem;
  height: auto;
  margin: 0.12rem auto 0;
  object-fit: contain;
}

.g-site__visual {
  width: 100%;
  max-width: 3.85rem;
  margin: 0.12rem auto 0;
}

.g-site__visual--stack {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.g-site__visual-top {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.g-site__visual-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2rem;
  overflow: hidden;
  border-radius: 0.1rem;
}

.g-site__card--2 .g-site__visual-foot {
  width: calc(100% + 0.32rem);
  margin-left: -0.16rem;
  margin-right: -0.16rem;
  margin-bottom: 0;
  border-radius: 0 0 0.16rem 0.16rem;
}

.g-site__visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.g-site__visual-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c55fb;
  text-align: center;
}

.g-faq {
  margin-top: 0.4rem;
  padding: 0.24rem 0.32rem;
  background: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.2rem rgba(0, 0, 0, 0.06);
}

.g-faq__item {
  border-bottom: 1px solid #f0f0f0;
}

.g-faq__item:last-child {
  border-bottom: none;
}

.g-faq__item summary {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.2rem 0;
  font-size: 0.16rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.g-faq__item summary::-webkit-details-marker {
  display: none;
}

.g-faq__item summary img {
  width: 0.28rem;
  height: 0.28rem;
  transition: transform 0.25s ease;
}

.g-faq__item[open] summary,
.g-faq__item:hover summary,
.g-faq__item.is-open summary {
  color: #000000;
}

.g-faq__item.is-open summary img {
  transform: scale(1.08);
}

.g-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.g-faq__item.is-open .g-faq__answer {
  grid-template-rows: 1fr;
}

.g-faq__answer > p {
  overflow: hidden;
  margin: 0 0 0 0.4rem;
  padding: 0 0 0.2rem;
  font-size: 0.14rem;
  line-height: 1.6;
  color: #909299;
  opacity: 0;
  transform: translateY(-0.06rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.g-faq__item.is-open .g-faq__answer > p {
  opacity: 1;
  transform: translateY(0);
}

.g-faq__item a {
  color: var(--color-primary);
}

@media screen and (max-width: 767px) {
  .g-hero {
    min-height: 7.6rem;
    padding-top: 0.48rem;
    padding-bottom: 0.64rem;
    overflow: hidden;
  }

  .g-hero__bg {
    inset: auto;
    top: 0;
    left: 50%;
    width: 9.2rem;
    max-width: none;
    height: 7.6rem;
    object-fit: cover;
    object-position: center top;
    transform: translateX(-50%);
  }

  .g-sec--eco {
    padding-top: 0.48rem;
  }

  .g-hero__inner {
    min-height: 6.8rem;
    justify-content: center;
  }

  .g-hero__main {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .g-hero__content {
    width: 100%;
    max-width: none;
  }

  .g-hero__badge-logo {
    width: 0.88rem;
    height: 0.88rem;
  }

  .g-hero__badge-text {
    font-size: 0.24rem;
  }

  .g-hero__title {
    font-size: 0.4rem;
  }

  .g-hero__desc {
    font-size: 0.26rem;
  }

  .g-hero__btn {
    min-height: 0.8rem;
    font-size: 0.28rem;
  }

  .g-hero__stats-wrap {
    height: auto;
    margin: 0;
    padding: 0.28rem 0.24rem 0.08rem;
    overflow: visible;
    background: #ffffff;
  }

  .g-hero__stats {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.16rem;
    width: 100%;
    margin: 0;
    padding: 0.28rem 0.2rem;
    border-radius: 0.16rem;
    box-shadow: 0 0.08rem 0.24rem rgba(30, 64, 175, 0.14);
    transform: none;
  }

  .g-hero__stats li {
    flex: none;
    padding: 0.16rem 0.08rem;
    background: #f5f8ff;
    border-radius: 0.12rem;
  }

  .g-hero__stats li:last-child {
    grid-column: 1 / -1;
  }

  .g-hero__stats li + li::before {
    display: none;
  }

  .g-hero__stat-num {
    font-size: 0.32rem;
  }

  .g-hero__stat-label {
    margin-top: 0.06rem;
    font-size: 0.22rem;
    line-height: 1.35;
  }

  .g-sec__title {
    font-size: 0.32rem;
  }

  .g-eco {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }

  .g-growth {
    grid-template-columns: 1fr;
    max-width: 5.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .g-growth__body h3 {
    font-size: 0.3rem;
  }

  .g-growth__body p {
    font-size: 0.24rem;
  }

  .g-growth__cta {
    width: 100%;
    min-width: 0;
    font-size: 0.26rem;
  }

  .g-site__grid {
    grid-template-columns: 1fr;
  }

  .g-site__logo {
    height: 0.4rem;
  }

  .g-site__title {
    font-size: 0.3rem;
  }

  .g-site__subtitle {
    font-size: 0.24rem;
  }

  .g-site__copy h3 {
    font-size: 0.3rem;
  }

  .g-site__copy p {
    font-size: 0.24rem;
  }

  .g-site__card > img {
    max-width: 100%;
  }

  .g-site__visual {
    max-width: 100%;
  }

  .g-site__visual-label {
    font-size: 0.42rem;
  }

  .g-service-wrap {
    gap: 0.24rem;
  }

  .g-service__top,
  .g-service__bottom {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.2rem;
  }

  .g-service__intro {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0 0 0.08rem;
    text-align: center;
  }

  .g-service__title {
    font-size: 0.36rem;
  }

  .g-service__title br {
    display: none;
  }

  .g-service__subtitle {
    font-size: 0.24rem;
  }

  .g-service__intro-btn {
    margin-top: 0.24rem;
    font-size: 0.26rem;
  }

  .g-service__top .g-service__card,
  .g-service__bottom .g-service__card {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 0.28rem 0.24rem 0.32rem;
  }

  .g-service__card h3 {
    font-size: 0.3rem;
  }

  .g-service__card > p {
    font-size: 0.22rem;
  }

  .g-service__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.14rem 0.16rem;
    margin-top: 0.2rem;
  }

  .g-service__list li {
    font-size: 0.22rem;
  }

  .g-service__list li > img {
    width: 0.32rem;
    height: 0.32rem;
  }

  .g-service__list li::after {
    width: 0.18rem;
    height: 0.18rem;
  }

  .g-service__pic {
    width: 100%;
    max-height: none;
    margin-top: 0.2rem;
    border-radius: 0.1rem;
    object-fit: contain;
  }

  .g-service__card .g-btn {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 0.2rem;
    font-size: 0.26rem;
  }

  .g-eco__card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.2rem 0.24rem;
    min-height: 0;
    padding: 0.28rem 0.24rem;
  }

  .g-eco__main {
    flex: 1 1 calc(100% - 1.4rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.12rem 0.16rem;
  }

  .g-eco__icon-wrap {
    flex: 0 0 1.12rem;
    width: 1.12rem;
    height: 1.12rem;
    margin: 0;
  }

  .g-eco__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .g-eco__card h3 {
    flex: 1 1 auto;
    margin: 0;
    font-size: 0.3rem;
  }

  .g-eco__card .g-eco__main > p {
    flex: 0 0 100%;
    margin: 0;
    font-size: 0.22rem;
  }

  .g-eco__list {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.08rem 0.16rem;
    width: 100%;
    margin-top: 0;
  }

  .g-eco__list li {
    margin: 0;
    font-size: 0.22rem;
    line-height: 1.45;
  }

  .g-eco__list li + li {
    margin-top: 0;
  }

  .g-eco__cta {
    width: 100%;
    min-width: 0;
    font-size: 0.26rem;
  }

  .g-cases {
    margin-top: 0.36rem;
    overflow: hidden;
  }

  .g-cases__track {
    gap: 0.16rem;
    padding: 0;
  }

  .g-cases__cta {
    width: auto;
    min-width: 4.4rem;
    padding: 0.2rem 0.4rem;
    font-size: 0.26rem;
    border-radius: 0.14rem;
  }

  .g-cases__dot {
    width: 0.14rem;
    height: 0.14rem;
  }

  .g-cases__dot.is-active {
    width: 0.4rem;
  }

  .g-cases__card {
    flex-direction: column;
    flex: 0 0 calc(100vw - 1.28rem);
    width: calc(100vw - 1.28rem);
    max-width: none;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 0.16rem;
  }

  .g-cases__media {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 700 / 760;
    background: #eef3fb;
    border-radius: 0.16rem 0.16rem 0 0;
    overflow: hidden;
  }

  .g-cases__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .g-cases__body {
    flex: 0 0 auto;
    padding: 0.28rem 0.24rem 0.32rem;
    background: #ffffff;
  }

  .g-cases__body h3 {
    font-size: 0.3rem;
  }

  .g-cases__block {
    margin-top: 0.2rem;
  }

  .g-cases__block h4 {
    font-size: 0.24rem;
  }

  .g-cases__block p,
  .g-cases__metric-label {
    font-size: 0.22rem;
  }

  .g-cases__metric-num {
    font-size: 0.34rem;
  }

  .g-cases__metric-num img {
    width: 0.2rem;
  }

  .g-cases__metrics {
    flex-wrap: nowrap;
    flex-shrink: 0;
    gap: 0;
    margin-top: 0.24rem;
    padding-top: 0.2rem;
  }

  .g-cases__metrics li {
    flex: 1 1 0;
    min-width: 0;
  }

  .g-cases__metrics li + li::before {
    display: block;
    top: 15%;
    bottom: 15%;
  }

  .g-duo__grid {
    grid-template-columns: 1fr;
  }

  .g-duo__panel {
    min-height: 0;
  }

  .g-duo__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.28rem;
    min-height: 0;
    padding: 0.48rem 0.36rem 0.52rem;
  }

  .g-duo__bg {
    display: none;
  }

  .g-duo__panel--agent {
    background: linear-gradient(160deg, #2c6dff 0%, #1a4fd8 100%);
  }

  .g-duo__panel--traffic {
    background: linear-gradient(160deg, #eef4ff 0%, #d7e6ff 100%);
  }

  .g-duo__copy {
    width: 100%;
    text-align: center;
  }

  .g-duo__copy h2 {
    font-size: 0.36rem;
  }

  .g-duo__copy p {
    margin-top: 0.14rem;
    font-size: 0.24rem;
    line-height: 1.55;
  }

  .g-duo__copy .g-btn {
    width: 100%;
    max-width: 5.2rem;
    margin-top: 0.28rem;
    min-height: 0.8rem;
    font-size: 0.26rem;
  }

  .g-duo__visual {
    flex: none;
    width: 78%;
    max-width: 4.4rem;
    align-self: center;
    margin-top: 0.08rem;
  }

  .g-duo__visual > img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .g-duo__query {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0.64rem;
    margin-top: 0.12rem;
    padding: 0 0.2rem;
    font-size: 0.26rem;
    font-weight: 600;
  }

  .g-agent {
    flex-direction: column;
    align-items: flex-start;
  }

  .g-agent__visual {
    flex: none;
    width: 100%;
  }

  .g-traffic__title {
    font-size: 0.32rem;
  }

  .g-traffic__subtitle {
    font-size: 0.24rem;
  }

  .g-traffic__industries {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.16rem;
  }

  .g-traffic__industries li {
    flex-direction: column;
    gap: 0.08rem;
    min-height: 1.2rem;
    padding: 0.16rem 0.08rem;
    font-size: 0.22rem;
    text-align: center;
  }

  .g-traffic__industries img {
    width: 0.4rem;
    height: 0.4rem;
  }

  .g-tabs__nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.12rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .g-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .g-tabs__nav button {
    flex: 0 0 auto;
    min-width: 1.72rem;
    font-size: 0.24rem;
    padding: 0.16rem 0.2rem 0.22rem;
  }

  .g-tabs__nav button img {
    width: 0.28rem;
    height: 0.28rem;
  }

  .g-tabs__ink {
    bottom: 0;
    height: 0.04rem;
  }

  .g-tabs__viewport {
    touch-action: pan-y;
    margin-top: 0.32rem;
  }

  .g-tabs__panel {
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }

  .g-tabs__body h3 {
    font-size: 0.3rem;
  }

  .g-tabs__body p {
    font-size: 0.24rem;
  }

  .g-tabs__body ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
  }

  .g-tabs__body li {
    font-size: 0.22rem;
  }

  .g-tabs__cta {
    width: 100%;
    min-width: 0;
    font-size: 0.26rem;
  }

  .g-tabs__pic {
    order: -1;
    width: 100%;
    max-width: none;
  }
}

/* ========== Facebook投放页 ========== */
.f-eco {
  padding-top: 0.8rem;
  padding-bottom: 0.88rem;
}

.f-eco__visual {
  margin: 0.4rem auto 0;
  max-width: 11.2rem;
}

.f-eco__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.f-eco__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  margin-top: 0.4rem;
}

.f-eco__cta .g-btn {
  min-width: 2.4rem;
  padding: 0.16rem 0.48rem;
  font-size: 0.18rem;
  border-radius: 0.1rem;
}

.f-cases-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.48rem;
}

.f-cases {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.f-cases.is-dragging {
  cursor: grabbing;
}

.f-cases__track {
  display: flex;
  gap: 0.24rem;
  width: max-content;
  will-change: transform;
}

.f-cases__card {
  flex: 0 0 auto;
  width: 5.84rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.16rem;
  box-shadow: 0 0.08rem 0.24rem rgba(44, 85, 251, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.f-cases__media {
  position: relative;
  height: 3.2rem;
  overflow: hidden;
}

.f-cases__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-cases__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.56rem 0.24rem 0.2rem;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.f-cases__overlay h3 {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.f-cases__overlay p {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.f-cases__foot {
  padding: 0.28rem 0.2rem 0.32rem;
  background: #ffffff;
}

.f-cases__metrics {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-cases__metrics li {
  position: relative;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.f-cases__metrics li + li::before {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 0;
  width: 1px;
  background: #e8ebf2;
}

.f-cases__metric-num {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.15;
  color: #2c55fb;
}

.f-cases__metric-label {
  margin: 0.1rem 0 0;
  font-size: 0.14rem;
  line-height: 1.45;
  color: #8b8f99;
}

.f-cases__arrow {
  flex: 0 0 0.48rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  border-radius: 50%;
  box-shadow: 0 0.04rem 0.14rem rgba(44, 85, 251, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.f-cases__arrow img {
  display: block;
  width: 0.12rem;
  height: auto;
}

.f-cases__arrow--next img {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .f-cases__arrow:hover {
    border-color: #c5d4ff;
    box-shadow: 0 0.06rem 0.18rem rgba(44, 85, 251, 0.14);
  }
}

.f-cases-promo {
  position: relative;
  z-index: 1;
  margin-top: 0.48rem;
}

.f-cases-promo img {
  display: block;
  width: 100%;
  height: auto;
}

.f-hero {
  background: linear-gradient(120deg, #1877f2 0%, #3b82f6 45%, #60a5fa 100%);
}

.f-hero .g-hero__badge-logo {
  width: auto;
  max-width: 2.4rem;
  height: 0.56rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.f-hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding-left: 0.24rem;
}

.f-hero__visual img {
  display: block;
  width: 100%;
  max-width: 5.6rem;
  height: auto;
  object-fit: contain;
}

.f-mid {
  padding-bottom: 0.72rem;
}

.f-mid__head {
  text-align: center;
}

.f-mid__head .g-sec__subtitle {
  margin-top: 0.16rem;
}

.f-mid__tags-wrap {
  max-width: 11.2rem;
  margin: 0.48rem auto 0;
}

.f-mid__tags {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-mid__tags--bottom {
  margin-top: 0.18rem;
  padding: 0 calc((100% - 0.72rem) / 10);
}

.f-mid__tags li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.14rem;
  min-height: 1.48rem;
  padding: 0.32rem 0.1rem 0.28rem;
  font-size: 0.16rem;
  line-height: 1.35;
  text-align: center;
  color: #38393d;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 0.12rem;
  box-shadow: 0 0.04rem 0.16rem rgba(44, 85, 251, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.f-mid__tags img {
  width: 0.48rem;
  height: 0.48rem;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.f-mid__tags span {
  display: block;
}

.f-mid .g-sec__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.f-ind {
  padding-top: 0.64rem;
  padding-bottom: 0.72rem;
}

.f-ind__main {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.f-ind__visual {
  flex: 0 0 42%;
  max-width: 5.2rem;
}

.f-ind__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.f-ind__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.14rem 0.16rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-ind__grid li {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  min-height: 0.56rem;
  padding: 0.12rem 0.16rem;
  font-size: 0.15rem;
  color: #38393d;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 0.1rem;
  box-shadow: 0 0.04rem 0.14rem rgba(44, 85, 251, 0.08);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.f-ind__grid img {
  width: 0.28rem;
  height: 0.28rem;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.f-ind__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  margin-top: 0.48rem;
}

.f-ind__cta .g-btn {
  min-width: 2.4rem;
  padding: 0.16rem 0.48rem;
  font-size: 0.18rem;
  border-radius: 0.1rem;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
}

.f-offer__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5.2rem;
  min-height: 7.2rem;
  margin-top: 0.48rem;
}

.f-offer__col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 100%;
  max-width: 3.44rem;
  min-height: 7.2rem;
}

.f-offer__col--left {
  justify-self: end;
  align-items: flex-end;
}

.f-offer__col--right {
  justify-self: start;
  align-items: flex-start;
}

.f-offer__card {
  display: flex;
  align-items: flex-start;
  gap: 0.14rem;
  width: 100%;
  padding: 0.2rem 0.22rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.12rem;
  box-shadow: 0 0.06rem 0.2rem rgba(44, 85, 251, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.f-offer__card img {
  display: block;
  flex: 0 0 0.56rem;
  width: 0.56rem;
  height: 0.56rem;
  margin: 0;
  object-fit: contain;
}

.f-offer__body {
  flex: 1;
  min-width: 0;
}

.f-offer__card h3 {
  margin: 0;
  font-size: 0.17rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1f2430;
}

.f-offer__card p {
  margin: 0.08rem 0 0;
  font-size: 0.13rem;
  line-height: 1.55;
  color: #6b7280;
}

.f-offer__pill {
  display: inline-block;
  padding: 0.04rem 0.1rem;
  font-size: 0.17rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  background: #2c55fb;
  border-radius: 0.04rem;
}

.f-offer__pill--sm {
  margin-bottom: 0.04rem;
  font-size: 0.13rem;
  font-weight: 600;
}

.f-offer__card.is-active {
  color: #ffffff;
  background: rgba(44, 85, 251, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0.1rem 0.28rem rgba(44, 85, 251, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.f-offer__card.is-active h3 {
  color: #ffffff;
}

.f-offer__card.is-active p {
  color: rgba(255, 255, 255, 0.92);
}

.f-offer__card.is-active .f-offer__pill {
  color: #2c55fb;
  background: #ffffff;
}

@media (hover: hover) {
  .f-offer__card:hover {
    color: #ffffff;
    background: rgba(44, 85, 251, 0.82);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 0.1rem 0.28rem rgba(44, 85, 251, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-0.03rem);
  }

  .f-offer__card:hover h3 {
    color: #ffffff;
  }

  .f-offer__card:hover p {
    color: rgba(255, 255, 255, 0.92);
  }

  .f-offer__card:hover .f-offer__pill {
    color: #2c55fb;
    background: #ffffff;
  }
}

.f-steps {
  padding-bottom: 0.88rem;
}

.f-steps__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.48rem;
}

.f-steps__card {
  position: relative;
  padding: 0.44rem 0.32rem 0.48rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.16rem;
  box-shadow: 0 0.08rem 0.24rem rgba(44, 85, 251, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.f-steps__card img {
  display: block;
  width: 1.88rem;
  height: 1.88rem;
  margin: 0 auto 0.28rem;
  object-fit: contain;
}

.f-steps__card h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1.4;
  color: #38393d;
}

.f-steps__card p {
  margin: 0.16rem 0 0;
  font-size: 0.14rem;
  line-height: 1.7;
  color: #8b8f99;
}

.f-formats__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.f-formats__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.f-formats__track {
  display: flex;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-formats__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-height: 4.76rem;
  box-sizing: border-box;
}

.f-formats__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.f-formats__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.14rem;
  min-height: 4.76rem;
  padding: 0 0.48rem 0 0.4rem;
}

.f-formats__pic {
  flex: 0 0 2.96rem;
  width: 2.96rem;
  height: auto;
  margin-top: -0.23rem;
  margin-left: 0.53rem;
  object-fit: contain;
}

.f-formats__body {
  flex: 1;
  min-width: 0;
  padding-top: 1.13rem;
}

.f-formats__head {
  display: flex;
  align-items: flex-start;
  gap: 0.14rem;
}

.f-formats__quote {
  flex: 0 0 0.24rem;
  width: 0.24rem;
  height: 0.21rem;
  margin-top: 0.04rem;
  object-fit: contain;
}

.f-formats__head h3 {
  margin: 0;
  font-size: 0.26rem;
  font-weight: 600;
  line-height: 1.4;
  color: #3d4351;
}

.f-formats__head p {
  margin: 0.2rem 0 0;
  font-size: 0.16rem;
  line-height: 1.55;
  color: #6e7a95;
}

.f-formats__feats {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin: 0.64rem 0 0;
  padding: 0;
  list-style: none;
}

.f-formats__feats li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 1.2rem;
  text-align: center;
}

.f-formats__feats li:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.75rem;
  width: 0.02rem;
  height: 0.49rem;
  background: #abbcff;
  transform: translateY(-50%);
}

.f-formats__feats li img {
  width: 0.42rem;
  height: 0.33rem;
  object-fit: contain;
}

.f-formats__feats li span {
  margin-top: 0.14rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #6e7a95;
}

.f-formats__arrow {
  flex: 0 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  box-shadow: 0 0.04rem 0.14rem rgba(44, 85, 251, 0.08);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.f-formats__arrow img {
  display: block;
  width: 0.13rem;
  height: auto;
}

.f-formats__arrow--next img {
  transform: rotate(180deg);
}

@media (hover: hover) {
  .f-formats__arrow:hover {
    border-color: #c5d4ff;
    box-shadow: 0 0.06rem 0.18rem rgba(44, 85, 251, 0.14);
  }

  .f-formats__cta .g-btn--outline:hover {
    color: #ffffff;
    background-color: var(--color-primary);
  }

  .f-formats__cta .g-btn--primary:hover {
    opacity: 0.92;
    box-shadow: 0 0.1rem 0.24rem rgba(44, 85, 251, 0.28);
  }
}

.f-formats__pager {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  margin-top: 0.32rem;
}

.f-formats__pager-cur {
  font-size: 0.2rem;
  font-weight: 600;
  color: #212121;
}

.f-formats__pager-sep,
.f-formats__pager-total {
  font-size: 0.16rem;
  font-weight: 500;
  color: #c8c9cb;
}

.f-formats__progress {
  width: 2.5rem;
  height: 0.03rem;
  margin-left: 0.16rem;
  overflow: hidden;
  background: #cde0f6;
  border-radius: 999px;
}

.f-formats__progress-fill {
  display: block;
  height: 100%;
  background: #0088f5;
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-formats__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.43rem;
}

.f-formats__cta .g-btn {
  min-width: 2.58rem;
  padding: 0.16rem 0.4rem;
  font-size: 0.2rem;
  border-radius: 0.06rem;
  box-shadow: -0.008rem 0.05rem 0.13rem 0.05rem rgba(19, 52, 105, 0.11);
}

@media (hover: hover) {
  .f-mid__tags li:hover {
    transform: translateY(-0.04rem);
    border-color: rgba(44, 85, 251, 0.2);
    box-shadow: 0 0.12rem 0.28rem rgba(44, 85, 251, 0.16);
  }

  .f-mid__tags li:hover img {
    transform: scale(1.08);
  }

  .f-ind__grid li:hover {
    transform: translateY(-0.02rem);
    background: #f5f8ff;
    border-color: #2c55fb;
    box-shadow: 0 0.08rem 0.2rem rgba(44, 85, 251, 0.12);
  }

  .f-ind__grid li:hover img {
    transform: scale(1.1);
  }

  .f-ind__cta .g-btn--outline:hover {
    color: #ffffff;
    background: #2c55fb;
    border-color: #2c55fb;
  }

  .f-ind__cta .g-btn--primary:hover {
    opacity: 0.92;
    box-shadow: 0 0.08rem 0.2rem rgba(44, 85, 251, 0.28);
  }

  .f-cases:not(.is-dragging) .f-cases__card:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.14rem 0.32rem rgba(44, 85, 251, 0.16);
  }

  .f-steps__card:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.14rem 0.32rem rgba(44, 85, 251, 0.16);
  }
}

/* ========== TikTok投放页 ========== */
.t-banner.c-banner {
  height: 72vh;
  height: 72dvh;
  min-height: 6.8rem;
}

.t-banner .c-banner__content {
  padding-top: 1.88rem;
}

.t-banner .c-banner__title {
  font-size: 0.46rem;
  color: #252525;
}

.t-banner .c-banner__desc {
  color: #4d4d4d;
}

.t-banner__btn {
  color: #ffffff;
  background: #fe2c55;
}

.t-banner__btn:hover {
  background: #df113a;
}

.t-banner .c-banner__slide--3 .c-banner__figure--3 {
  top: auto;
  right: 0.72rem;
  height: 88%;
  pointer-events: auto;
  transform-origin: right bottom;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) {
  .t-banner .c-banner__figure--3:hover {
    transform: translateY(-0.12rem);
  }
}

.t-banner .c-banner__desc {
  color: #4d4d4d;
}

.t-banner__btn {
  color: #ffffff;
  background: #fe2c55;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.t-banner__btn:hover {
  background: #df113a;
}

.t-eco {
  padding: 1.38rem 0 1.12rem;
}

.t-eco .g-sec__bg {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.t-eco__grid {
  display: flex;
  justify-content: center;
  gap: 0.08rem;
  margin-top: 0.63rem;
}

.t-eco__card {
  position: relative;
  flex: 0 0 3.6rem;
  width: 3.6rem;
  height: 4.14rem;
  min-height: 4.14rem;
  overflow: hidden;
  padding: 0.44rem 0.28rem 0.32rem 0.55rem;
  border-radius: 0.16rem;
  color: #ffffff;
  transition: transform 0.28s ease;
}

.t-eco__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.t-eco__icon,
.t-eco__card h3,
.t-eco__card ul {
  position: relative;
  z-index: 1;
}

.t-eco__icon {
  display: block;
  width: 0.87rem;
  height: 1.18rem;
  object-fit: contain;
  transition: transform 0.28s ease;
}

.t-eco__card h3 {
  margin: 0.16rem 0 0;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1.25;
  color: #6ef3ea;
}

.t-eco__card ul {
  margin: 0.36rem 0 0;
  padding: 0;
  list-style: none;
}

.t-eco__card li {
  position: relative;
  padding-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 1.88;
  color: #f5f5f5;
}

.t-eco__card li::before {
  content: "";
  position: absolute;
  top: 0.14rem;
  left: 0;
  width: 0.04rem;
  height: 0.04rem;
  background: #a8b9ff;
  border-radius: 50%;
}

.t-plan__row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.48rem;
  align-items: center;
  margin-top: 0.56rem;
  padding: 0.48rem 0;
}

.t-plan__row + .t-plan__row {
  border-top: 1px solid #f0f3f8;
}

.t-plan__row--reverse {
  position: relative;
  z-index: 0;
  grid-template-columns: 1.15fr 1fr;
  border-top: none;
  background: rgb(250, 251, 255);
}

.t-plan__row--reverse::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  background: rgb(250, 251, 255);
  pointer-events: none;
}

.t-plan__row--reverse + .t-plan__row {
  border-top: none;
}

.t-plan__row--reverse .t-plan__copy {
  order: 2;
}

.t-plan__row--reverse .t-plan__pic {
  order: 1;
}

.t-plan__copy h3 {
  margin: 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.35;
  color: #5c5c5c;
}

.t-plan__copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.18rem 0.2rem;
  margin: 0.32rem 0 0;
  padding: 0;
  list-style: none;
}

.t-plan__copy li {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.16rem;
  color: #6f6f6f;
}

.t-plan__copy li img {
  width: 0.32rem;
  height: 0.32rem;
  object-fit: contain;
  flex-shrink: 0;
}

.t-plan__copy .g-btn {
  margin-top: 0.32rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.t-plan__pic {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.t-kol {
  padding: 1.6rem 0 1.68rem;
  text-align: center;
}

.t-kol .g-sec__title--light {
  font-size: 0.4rem;
  color: #ffffff;
}

.t-kol .g-sec__subtitle--light {
  margin-top: 0.29rem;
  font-size: 0.2rem;
  color: #d0d9ff;
}

.t-kol__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 5.7rem;
  max-width: 100%;
  height: 0.7rem;
  margin: 0.75rem auto 0;
  padding: 0 0.17rem 0 0.47rem;
  background: #ffffff;
  border-radius: 0.1rem;
}

.t-kol__bar span {
  font-size: 0.18rem;
  color: #a9a9a9;
}

.t-kol__bar .g-btn {
  min-width: 1.36rem;
  height: 0.48rem;
  padding: 0 0.28rem;
  font-size: 0.18rem;
  background: #5bc0f5;
  border-radius: 0.1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.t-kol__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
}

.t-kol__stats li {
  position: relative;
  min-width: 2.2rem;
  padding: 0 0.56rem;
  transition: transform 0.28s ease;
}

.t-kol__stats li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.01rem;
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.29);
  transform: translateY(-50%);
}

.t-kol__num {
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
}

.t-kol__num span {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.t-kol__label {
  margin: 0.07rem 0 0;
  font-size: 0.16rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
}

.t-formats {
  padding: 1.36rem 0 1.2rem;
}

.t-formats .g-sec__title {
  font-size: 0.4rem;
  line-height: 1;
  color: #404040;
}

.t-formats .g-tabs {
  margin-top: 0.74rem;
}

.t-formats .g-tabs__nav {
  border-bottom-color: #dae2eb;
}

.t-formats .g-tabs__nav button {
  padding: 0.14rem 0.08rem 0.29rem;
  font-size: 0.23rem;
  font-weight: 400;
  color: #404040;
  transition: color 0.28s ease, transform 0.28s ease;
}

.t-formats .g-tabs__nav button img {
  width: 0.34rem;
  height: 0.28rem;
  opacity: 1;
  filter: none;
  mix-blend-mode: screen;
}

.t-formats .g-tabs__nav .t-formats__icon-on {
  display: none;
}

.t-formats .g-tabs__nav button.is-active .t-formats__icon-idle {
  display: none;
}

.t-formats .g-tabs__nav button.is-active .t-formats__icon-on {
  display: block;
}

.t-formats .g-tabs__nav button.is-active {
  color: #2863f5;
  font-weight: 500;
}

.t-formats .g-tabs__ink {
  height: 0.03rem;
  background: #2863f5;
  border-radius: 0;
}

.t-formats .g-tabs__panel {
  grid-template-columns: 1fr 1.15fr;
  gap: 0.24rem 0.4rem;
  align-items: center;
  padding: 0.17rem 0.34rem 0 0.34rem;
}

.t-formats__head {
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
  padding-top: 0.28rem;
}

.t-formats__quote {
  flex: 0 0 0.26rem;
  width: 0.26rem;
  height: 0.21rem;
  margin-top: 0.04rem;
  object-fit: contain;
}

.t-formats .g-tabs__body h3 {
  font-size: 0.26rem;
  font-weight: 500;
  line-height: 1.38;
  color: #404040;
}

.t-formats .g-tabs__body ul {
  grid-template-columns: 1fr;
  gap: 0.12rem;
  margin-top: 0.28rem;
}

.t-formats .g-tabs__body li {
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #666666;
}

.t-formats .g-tabs__body li::before {
  content: "\2713";
  flex: 0 0 auto;
  margin-top: 0.04rem;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1;
  color: #2863f5;
}

.t-formats .g-tabs__cta {
  justify-content: center;
  min-width: 0;
  margin-top: 0.4rem;
  margin-left: 0.17rem;
  padding: 0.2rem 0.4rem;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  background: #fe2c55;
  border-radius: 0.04rem;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, opacity 0.28s ease;
}

.t-formats .g-tabs__cta:hover {
  opacity: 1;
  background: #df113a;
}

.t-formats .g-tabs__pic {
  width: 6.32rem;
  max-width: 100%;
  transition: transform 0.35s ease;
}

.t-formats .g-tabs__pic:hover {
  transform: translateY(-0.08rem);
}

.t-show-ind {
  padding: 0;
  overflow: hidden;
}

.t-show-ind__light {
  z-index: 0;
}

.t-show {
  position: relative;
  z-index: 1;
  height: 8.37rem;
  box-sizing: border-box;
  padding: 0.89rem 0 0.72rem;
  overflow: hidden;
}

.t-show .g-sec__bg {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.t-show__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.24rem;
}

.t-show__title {
  display: block;
  width: 6.21rem;
  max-width: 100%;
  height: auto;
  margin: 0;
  mix-blend-mode: screen;
}

.t-show__viewport {
  overflow: hidden;
  margin-top: 0.28rem;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.t-show__viewport.is-dragging {
  cursor: grabbing;
}

.t-show__viewport.is-dragging .t-show__card {
  transform: none;
}

.t-show__track {
  display: flex;
  gap: 0.2rem;
  width: max-content;
  will-change: transform;
}

.t-show__card {
  flex: 0 0 auto;
  width: 2.4rem;
  background: transparent;
  transition: transform 0.28s ease;
}

.t-show__pic {
  display: block;
  width: 100%;
  height: 2.7rem;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}

.t-show__caption {
  display: block;
  width: 100%;
  height: 0.83rem;
  margin-top: 0.2rem;
  object-fit: contain;
  object-position: left top;
  mix-blend-mode: screen;
  -webkit-user-drag: none;
  pointer-events: none;
}

.t-show__dots {
  display: flex;
  justify-content: center;
  gap: 0.16rem;
  margin-top: 0.48rem;
}

.t-show__dots button {
  width: 0.2rem;
  height: 0.04rem;
  padding: 0;
  background: #3b406e;
  border: none;
  cursor: pointer;
}

.t-show__dots button.is-active {
  background: #bec0d1;
}

.t-ind {
  position: relative;
  z-index: 1;
  padding: 0.7rem 0 0.74rem;
  overflow: visible;
}

.t-ind__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.16rem 0.16rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.t-ind__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  height: 1.16rem;
  padding: 0.07rem 0.08rem 0.08rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #4d4d4d;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #ffffff;
  border-radius: 0.06rem;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.t-ind__grid li img {
  width: 0.66rem;
  height: 0.66rem;
  object-fit: contain;
  mix-blend-mode: screen;
}

.t-ind__grid li span {
  margin-top: 0.05rem;
}

.t-ind__cta {
  display: flex;
  align-items: center;
  width: 4.75rem;
  max-width: 100%;
  height: 0.52rem;
  margin: 0.64rem auto 0;
  overflow: visible;
  border: 1px solid #266dff;
  border-radius: 0.06rem;
}

.t-ind__cta span {
  flex: 1;
  padding: 0 0.16rem;
  font-size: 0.16rem;
  line-height: 0.5rem;
  text-align: center;
  color: #4d4d4d;
}

.t-ind__cta .g-btn {
  position: relative;
  min-width: 1.3rem;
  width: 1.3rem;
  height: 0.52rem;
  padding: 0;
  font-size: 0.18rem;
  background: #266dff;
  border-radius: 0;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.t-ind__cursor {
  position: absolute;
  right: -0.06rem;
  bottom: -0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  pointer-events: none;
}

.t-plus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem;
  margin-top: 0.56rem;
}

.t-plus__card {
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 3px solid #ffffff;
  border-radius: 0.15rem;
  transition: transform 0.28s ease;
}

.t-plus__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 544 / 238;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.t-plus__card h3 {
  margin: 0.24rem 0 0;
  font-size: 0.22rem;
  font-weight: 700;
  color: #181818;
}

.t-plus__card p {
  margin: 0.12rem 0 0.28rem;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #818491;
}

.t-faq {
  padding: 1.35rem 0 1.07rem;
}

.t-faq .g-sec__bg {
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.t-faq .g-sec__inner {
  position: relative;
}

.t-faq .g-sec__title {
  font-size: 0.4rem;
  color: #414141;
}

.t-faq__quote {
  position: absolute;
  left: 0;
  top: 0.8rem;
  z-index: 1;
  width: 0.72rem;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  pointer-events: none;
}

.t-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.36rem 0.32rem;
  margin-top: 0.69rem;
}

.t-faq__q {
  display: flex;
  align-items: center;
  gap: 0.11rem;
}

.t-faq__q img {
  width: 0.69rem;
  height: 0.68rem;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.t-faq__q h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 600;
  line-height: 1.25;
  color: #42444a;
}

.t-faq__a {
  box-sizing: border-box;
  min-height: 1.2rem;
  margin: 0.02rem 0 0 0.8rem;
  padding: 0.28rem 0.28rem 0.14rem;
  color: #7c808d;
  background: #ffffff;
  border-radius: 0.15rem;
  box-shadow: 0 0.02rem 0.15rem rgba(189, 201, 242, 0.55);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.t-faq__a p {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.45;
  color: inherit;
}

.t-faq__a a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.1rem;
  width: 100%;
  margin-top: 0.16rem;
  font-size: 0.14rem;
  color: #266dff;
  transition: gap 0.28s ease, opacity 0.28s ease;
}

.t-faq__a a img {
  width: 0.25rem;
  height: 0.08rem;
  object-fit: contain;
}

.t-faq__card--blue .t-faq__a {
  color: #ffffff;
  background: linear-gradient(-86deg, #3b7df7, #5399f5);
  border: 2px solid #ffffff;
}

.t-faq__card--blue .t-faq__a a {
  color: #ffffff;
}

@media (hover: hover) {
  .t-banner__btn:hover,
  .t-plan__copy .g-btn:hover,
  .t-kol__bar .g-btn:hover,
  .t-formats .g-tabs__cta:hover,
  .t-ind__cta .g-btn:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.08rem 0.18rem rgba(38, 109, 255, 0.22);
  }

  .t-banner__btn:hover {
    box-shadow: 0 0.08rem 0.18rem rgba(254, 44, 85, 0.28);
  }

  .t-formats .g-tabs__cta:hover {
    box-shadow: 0 0.08rem 0.18rem rgba(254, 44, 85, 0.28);
  }

  .t-eco__card:hover,
  .t-plus__card:hover,
  .t-show__card:hover,
  .t-faq__card:hover .t-faq__a {
    transform: translateY(-0.08rem);
  }

  .t-eco__card:hover .t-eco__icon,
  .t-plan__pic:hover {
    transform: translateY(-0.08rem);
  }

  .t-plus__card:hover img {
    transform: scale(1.04);
  }

  .t-kol__stats li:hover {
    transform: translateY(-0.06rem);
  }

  .t-formats .g-tabs__nav button:hover {
    color: #2863f5;
    transform: translateY(-0.02rem);
  }

  .t-ind__grid li:hover {
    transform: translateY(-0.06rem);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0.08rem 0.2rem rgba(38, 109, 255, 0.16);
  }

  .t-faq__card:hover .t-faq__a {
    box-shadow: 0 0.08rem 0.2rem rgba(189, 201, 242, 0.7);
  }

  .t-faq__a a:hover {
    gap: 0.16rem;
    opacity: 0.85;
  }

  .t-ind__cta .g-btn:hover {
    background: #1b5cf0;
  }

  .t-kol__bar .g-btn:hover {
    background: #3ab0ee;
  }

  .y-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-0.02rem);
    box-shadow: 0 0.08rem 0.18rem rgba(255, 158, 55, 0.35);
  }

  .y-eco__card:hover {
    transform: translateY(-0.06rem);
    color: #ffffff;
    background-image: linear-gradient(to top right, #1a283d, #203455);
    box-shadow: 0 0.12rem 0.32rem rgba(32, 52, 85, 0.28);
  }

  .y-eco__card:hover li::before,
  .y-eco__card:hover a {
    color: #ffffff;
  }

  .y-cases__card:hover {
    transform: translateY(-0.04rem);
  }

  .y-niche__grid article:hover img {
    transform: scale(1.04);
  }

  .y-goals__nav button:hover:not(.is-active) {
    color: #227ae7;
  }
}

.y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #ff9e37;
  border: none;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.y-btn--pill {
  width: 1.8rem;
  height: 0.45rem;
  margin-top: 0.6rem;
  font-size: 0.16rem;
  border-radius: 999px;
}

.y-btn--block {
  width: 2.7rem;
  height: 0.54rem;
  margin-top: 0.37rem;
  font-size: 0.16rem;
  border-radius: 0.1rem;
}

.y-btn--rect {
  width: 1.84rem;
  height: 0.46rem;
  font-size: 0.16rem;
  border-radius: 0.08rem;
}

.y-hero {
  position: relative;
  height: 4.9rem;
  overflow: hidden;
  background: #1a3f8a;
}

.y-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.y-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.y-hero__copy {
  padding-top: 0.97rem;
  color: #ffffff;
}

.y-hero__logo {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  object-fit: contain;
}

.y-hero__copy h1 {
  margin: 0.22rem 0 0;
  font-size: 0.38rem;
  font-weight: 500;
  line-height: 1;
}

.y-hero__copy p {
  margin: 0.1rem 0 0;
  font-size: 0.2rem;
  line-height: 1.2;
}

.y-hero__copy p:first-of-type {
  margin-top: 0.23rem;
}

.y-hero__visual {
  width: 6.86rem;
  height: 4.7rem;
  align-self: flex-end;
}

.y-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.y-stats {
  height: 1.4rem;
  background: #ffffff;
}

.y-stats__list {
  display: flex;
  align-items: center;
  height: 100%;
}

.y-stats__list li {
  position: relative;
  flex: 1;
  text-align: center;
}

.y-stats__list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.52rem;
  background: #e2e7f1;
  transform: translateY(-50%);
}

.y-stats__num {
  margin: 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1;
  color: #2e66c9;
}

.y-stats__num span {
  margin-left: 0.02rem;
  font-size: 0.16rem;
  font-weight: 500;
  vertical-align: top;
}

.y-stats__num img {
  width: 0.13rem;
  height: 0.15rem;
  margin-left: 0.09rem;
  vertical-align: 0.04rem;
}

.y-stats__label {
  margin: 0.13rem 0 0;
  font-size: 0.16rem;
  line-height: 1;
  color: #808080;
}

.y-eco {
  padding: 0.95rem 0 0.88rem;
  min-height: 9.59rem;
}

.y-eco .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  color: #474747;
}

.y-eco__layout {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 6.8rem;
  margin-top: 0.73rem;
}

.y-eco__intro {
  flex: 0 0 4.4rem;
  padding: 0.18rem 0 0 0.17rem;
}

.y-eco__intro h3 {
  margin: 0;
  font-size: 0.28rem;
  font-weight: 500;
  line-height: 1;
  color: #38393d;
}

.y-eco__intro p {
  margin: 0.19rem 0 0;
  font-size: 0.18rem;
  color: #808080;
}

.y-eco__figure {
  position: absolute;
  left: -0.4rem;
  bottom: 0;
  width: 5.03rem;
  pointer-events: none;
}

.y-eco__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  width: 6.9rem;
}

.y-eco__card {
  position: relative;
  width: 3.3rem;
  height: 3.2rem;
  padding: 0.42rem 0.32rem 0.4rem 0.42rem;
  overflow: hidden;
  color: #38393d;
  background: #ffffff;
  border-radius: 0.11rem;
  box-shadow: 0 0.07rem 0.38rem rgba(178, 201, 233, 0.23);
  transition: transform 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}

.y-eco__card h3 {
  margin: 0;
  font-size: 0.26rem;
  font-weight: 500;
  line-height: 1.25;
}

.y-eco__card ul {
  margin: 0.28rem 0 0;
  padding: 0;
  list-style: none;
}

.y-eco__card li {
  position: relative;
  margin-top: 0.16rem;
  padding-left: 0.24rem;
  font-size: 0.16rem;
  line-height: 1.4;
}

.y-eco__card li:first-child {
  margin-top: 0;
}

.y-eco__card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #2e66c9;
}

.y-eco__card a {
  position: absolute;
  right: 0.5rem;
  bottom: 0.44rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.16rem;
  color: #38393d;
  transition: color 0.28s ease;
}

.y-eco__card a::after {
  content: "\203A";
  margin-left: 0.06rem;
  font-size: 0.2rem;
  line-height: 1;
}

.y-cases {
  position: relative;
  height: 5.5rem;
  overflow: hidden;
  background: #dbe6f8;
}

.y-cases__deco {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 1.76rem;
  pointer-events: none;
}

.y-cases__visual {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: 48%;
  height: 100%;
}

.y-cases__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.y-cases__visual img.is-active {
  opacity: 1;
}

.y-cases__inner {
  position: relative;
  z-index: 1;
  width: 12rem;
  max-width: calc(100% - 0.48rem);
  margin: 0 auto;
  padding-top: 0.95rem;
}

.y-cases .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  color: #474747;
}

.y-cases .g-sec__subtitle {
  margin-top: 0.18rem;
  font-size: 0.18rem;
  line-height: 1;
  text-align: left;
  color: #808080;
}

.y-cases__viewport {
  width: 8.15rem;
  max-width: 100%;
  margin-top: 0.36rem;
  overflow: hidden;
  border-radius: 0.11rem;
}

.y-cases__track {
  display: flex;
  gap: 0.29rem;
}

.y-cases__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 3.93rem;
  min-height: 2.3rem;
  height: auto;
  padding: 0.32rem 0.24rem 0.28rem 0.25rem;
  background: #f7faff;
  border: 1px solid #f5f9ff;
  border-radius: 0.11rem;
  box-shadow: 0.05rem 0.05rem 0.57rem #e4eefe;
  transition: transform 0.28s ease;
}

.y-cases__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  align-self: flex-start;
  min-width: 1.02rem;
  height: 0.32rem;
  padding: 0 0.12rem;
  font-size: 0.18rem;
  line-height: 0.32rem;
  text-align: center;
  color: #ffffff;
  border-radius: 999px;
  white-space: nowrap;
}

.y-cases__card p {
  margin: 0.16rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #666666;
}

.y-cases__card ul {
  display: flex;
  gap: 0.77rem;
  margin: 0.28rem 0 0 0.09rem;
  padding: 0;
  list-style: none;
}

.y-cases__card li {
  position: relative;
}

.y-cases__card li + li::before {
  content: "";
  position: absolute;
  left: -0.38rem;
  top: 50%;
  width: 1px;
  height: 0.26rem;
  background: #d3d3d6;
  transform: translateY(-50%);
}

.y-cases__card strong {
  display: flex;
  align-items: center;
  gap: 0.07rem;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1;
  color: #4d4d4d;
}

.y-cases__card strong img {
  width: 0.13rem;
  height: 0.15rem;
}

.y-cases__card li span {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #999999;
}

.y-cases__nav {
  display: flex;
  justify-content: center;
  gap: 0.26rem;
  width: 100%;
  margin-top: 0.26rem;
}

.y-cases__nav button {
  width: 0.31rem;
  height: 0.31rem;
  padding: 0;
  color: #eef4ff;
  background: #c3d6f7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.y-cases__nav button::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.y-cases__nav button:first-child::before {
  transform: rotate(-135deg);
}

.y-niche {
  padding: 0.95rem 0 0.88rem;
}

.y-niche .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  color: #474747;
}

.y-niche__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.26rem 0;
  margin-top: 0.47rem;
}

.y-niche__grid article {
  position: relative;
  width: 5.49rem;
  height: 2.23rem;
  overflow: hidden;
  border-radius: 0.08rem;
}

.y-niche__grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.y-niche__grid h3 {
  position: absolute;
  left: 0.26rem;
  top: 1.03rem;
  margin: 0;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}

.y-niche__bar {
  display: flex;
  height: 1.76rem;
  margin: 0.42rem 0 0;
  padding: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 0 0.6rem 0 0.6rem;
  box-shadow: 0 0.07rem 0.38rem rgba(178, 201, 233, 0.23);
}

.y-niche__bar li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.21rem;
}

.y-niche__bar li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0.68rem;
  background: rgba(218, 218, 218, 0.61);
  transform: translateY(-50%);
}

.y-niche__bar img {
  width: 0.64rem;
  height: 0.55rem;
  object-fit: contain;
}

.y-niche__bar h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 500;
  color: #474747;
}

.y-niche__bar p {
  margin: 0.18rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #808080;
}

.y-spots {
  padding: 0.95rem 0 0.72rem;
}

.y-spots .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.y-spots__nav {
  position: relative;
  display: flex;
  margin-top: 0.7rem;
  border-bottom: 1px solid #ffffff;
}

.y-spots__nav button {
  position: relative;
  flex: 1;
  padding: 0 0.08rem 0.23rem;
  font-size: 0.2rem;
  line-height: 1;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
}

.y-spots__ink {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: #ffcc00;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform, width;
}

.y-spots__stage {
  position: relative;
  min-height: 4.5rem;
  padding: 0 0.5rem;
}

.y-spots__panel {
  display: none;
  overflow: hidden;
}

.y-spots__panel.is-active {
  display: block;
}

.y-spots__track {
  display: flex;
  gap: 0.24rem;
  padding-top: 0.46rem;
}

.y-spots__card {
  position: relative;
  flex: 0 0 3.24rem;
  height: 3.99rem;
  overflow: hidden;
}

.y-spots__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.y-spots__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0.2rem 0.28rem 0.32rem;
}

.y-spots__copy h3 {
  margin: 0;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.y-spots__copy ul {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
}

.y-spots__copy li {
  display: flex;
  align-items: flex-start;
  margin-top: 0.12rem;
  font-size: 0.14rem;
  line-height: 1.3;
  color: #a2b7d1;
}

.y-spots__copy li::before {
  content: "";
  flex: 0 0 0.05rem;
  width: 0.05rem;
  height: 0.05rem;
  margin: 0.05rem 0.06rem 0 0;
  background: #229bea;
  border-radius: 50%;
}

.y-spots__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 0.34rem;
  height: 0.34rem;
  padding: 0;
  color: #000000;
  background: #1b415d;
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.y-spots__arrow--prev {
  left: 0;
}

.y-spots__arrow--next {
  right: 0;
}

.y-spots__arrow::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.y-spots__arrow--prev::before {
  transform: rotate(-135deg);
}

.y-goals {
  padding: 0.95rem 0 0.8rem;
  background: #e4eefe;
}

.y-goals .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  color: #474747;
}

.y-goals__nav {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-top: 0.53rem;
  background: #d6e2f4;
  border-radius: 0.11rem;
}

.y-goals__ink {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 0;
  height: 0.7rem;
  background: #227ae7;
  border-radius: 0.11rem;
  transform: translate(0, 0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform, width, height;
}

.y-goals__nav button {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 0.7rem;
  font-size: 0.18rem;
  color: #666666;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.y-goals__nav button.is-active {
  color: #ffffff;
}

.y-goals__panel {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.58rem;
}

.y-goals__panel.is-active {
  display: flex;
}

.y-goals__copy {
  max-width: 5.4rem;
  padding-top: 0.3rem;
}

.y-goals__copy h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333333;
}

.y-goals__copy p {
  margin: 0.26rem 0 0;
  font-size: 0.16rem;
  line-height: 1.6;
  color: #666666;
}

.y-goals__copy ul {
  display: flex;
  width: 4rem;
  justify-content: space-between;
  margin: 0.43rem 0 0;
  padding: 0;
  list-style: none;
}

.y-goals__copy li {
  text-align: center;
}

.y-goals__copy img {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 auto;
  object-fit: contain;
}

.y-goals__copy span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.14rem;
  color: #808080;
}

.y-goals__copy .y-btn {
  margin-top: 0.47rem;
}

.y-goals__pic {
  width: 6.6rem;
  height: 4.1rem;
  object-fit: contain;
}

.y-show {
  padding: 0.95rem 0 0.4rem;
  overflow: hidden;
  background: #ffffff;
}

.y-show .g-sec__title {
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  color: #474747;
}

.y-show__visual {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 0.22rem;
}

.y-show__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.2rem;
  width: 12.79rem;
  height: 5.6rem;
  background: rgba(230, 238, 252, 0.25);
  border-radius: 2.8rem;
  transform: translateX(-50%);
}

.y-show__visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.35rem;
  width: 10.8rem;
  height: 3.3rem;
  background: #e6eefc;
  border-radius: 1.65rem;
  transform: translateX(-50%);
}

.y-show__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 11.7rem;
  max-width: 100%;
  margin-top: 0.41rem;
}

.y-form {
  padding: 0.74rem 0 0.95rem;
}

.y-form .g-sec__title {
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 1;
  color: #414141;
}

.y-form__box {
  position: relative;
  width: 10rem;
  max-width: 100%;
  height: 2.9rem;
  margin: 0.46rem auto 0;
  overflow: hidden;
  box-shadow: 0 0.08rem 0.24rem rgba(62, 122, 241, 0.12);
}

.y-form__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.y-form__fields {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 0.2rem;
  padding-top: 0.89rem;
}

.y-form__fields label {
  display: flex;
  align-items: center;
  width: 2.9rem;
  height: 0.5rem;
  padding: 0 0.12rem 0 0.17rem;
  background: #ffffff;
  border: 1px solid #c2c6cc;
  border-radius: 0.02rem;
}

.y-form__icon {
  flex: 0 0 0.14rem;
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.15rem;
  color: #c2c6cc;
}

.y-form__icon--user {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0.08rem 0 -0.04rem currentColor;
}

.y-form__icon--phone {
  border: 1.5px solid currentColor;
  border-radius: 0.03rem;
}

.y-form__fields input {
  flex: 1;
  height: 100%;
  padding: 0 0.08rem;
  font-size: 0.14rem;
  color: #333333;
  background: transparent;
  border: none;
  outline: none;
}

.y-form__fields input::placeholder {
  color: #cdcdcd;
}

.y-form__fields button {
  grid-column: 1 / -1;
  justify-self: center;
  width: 2.2rem;
  height: 0.55rem;
  margin-top: 0.43rem;
  font-size: 0.18rem;
  color: #ffffff;
  background: #3e7af1;
  border: none;
  border-radius: 0.04rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .f-eco__cta .g-btn {
    width: 100%;
    max-width: 4.2rem;
  }

  .f-cases-wrap {
    gap: 0.12rem;
    padding: 0;
  }

  .f-cases__arrow {
    flex-basis: 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
  }

  .f-cases__card {
    width: auto;
  }

  .f-cases__media {
    height: 3rem;
  }

  .f-cases__overlay h3 {
    font-size: 0.26rem;
  }

  .f-cases__overlay p,
  .f-cases__metric-label {
    font-size: 0.22rem;
  }

  .f-cases__metric-num {
    font-size: 0.4rem;
  }

  .f-hero .g-hero__main {
    flex-direction: column;
  }

  .f-hero .g-hero__content {
    width: 100%;
    max-width: none;
  }

  .f-hero__visual {
    width: 100%;
    padding: 0.24rem 0 0;
    justify-content: center;
  }

  .f-mid__tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .f-mid__tags--bottom {
    padding: 0;
  }

  .f-mid__tags li {
    min-height: 1.28rem;
    padding: 0.28rem 0.1rem 0.24rem;
    font-size: 0.22rem;
  }

  .f-mid__tags li:last-child {
    grid-column: 1 / -1;
  }

  .f-mid__tags img {
    width: 0.4rem;
    height: 0.4rem;
  }

  .f-ind__main {
    flex-direction: column;
    gap: 0.32rem;
  }

  .f-ind__visual {
    flex: 0 0 auto;
    width: 100%;
    max-width: 5.6rem;
  }

  .f-ind__grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .f-ind__grid li {
    min-height: 0.72rem;
    font-size: 0.22rem;
  }

  .f-ind__cta .g-btn {
    width: 100%;
    max-width: 4.2rem;
  }

  .f-offer__stage {
    display: flex;
    flex-direction: column;
    gap: 0.16rem;
    min-height: 0;
    margin-top: 0.36rem;
    padding: 0;
  }

  .f-offer__col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.16rem;
    width: 100%;
    max-width: none;
    min-height: 0;
    padding: 0;
    align-items: stretch;
  }

  .f-offer__col--left,
  .f-offer__col--right {
    justify-self: stretch;
    margin: 0;
    align-items: stretch;
  }

  .f-offer__card {
    width: 100%;
    max-width: none;
    padding: 0.24rem 0.22rem;
  }

  .f-offer__card img {
    flex: 0 0 0.64rem;
    width: 0.64rem;
    height: 0.64rem;
  }

  .f-offer__card h3 {
    font-size: 0.28rem;
  }

  .f-offer__card p,
  .f-offer__pill--sm {
    font-size: 0.22rem;
  }

  .f-offer__card p br {
    display: none;
  }

  .f-offer__pill {
    font-size: 0.26rem;
  }

  .f-steps__grid {
    grid-template-columns: 1fr;
  }

  .f-steps__card img {
    width: 1.56rem;
    height: 1.56rem;
  }

  .f-steps__card h3 {
    font-size: 0.28rem;
  }

  .f-steps__card p {
    font-size: 0.22rem;
  }

  .f-formats__wrap {
    gap: 0.12rem;
  }

  .f-formats__viewport {
    touch-action: pan-y;
  }

  .f-formats__arrow {
    flex: 0 0 0.4rem;
    width: 0.4rem;
    height: 0.4rem;
  }

  .f-formats__content {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 0.32rem 0.24rem 0.4rem;
  }

  .f-formats__pic {
    flex: none;
    width: 72%;
    max-width: 3.2rem;
    margin: 0;
  }

  .f-formats__body {
    width: 100%;
    padding-top: 0.24rem;
  }

  .f-formats__head h3 {
    font-size: 0.3rem;
  }

  .f-formats__head p {
    font-size: 0.24rem;
  }

  .f-formats__feats {
    gap: 0.8rem;
    margin-top: 0.4rem;
  }

  .f-formats__feats li:first-child::after {
    right: -0.4rem;
    height: 0.4rem;
  }

  .f-formats__feats li span {
    font-size: 0.22rem;
  }

  .f-formats__slide {
    min-height: auto;
  }

  .f-formats__cta .g-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.26rem;
  }

  .t-banner.c-banner {
    height: 68vh;
    height: 68dvh;
    min-height: 7.2rem;
  }

  .t-banner .c-banner__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    grid-template-rows: none;
    gap: 0;
    height: 100%;
    padding: 0;
  }

  .t-banner .c-banner__content {
    position: relative;
    z-index: 2;
    padding-top: 0;
    justify-content: center;
  }

  .t-banner .c-banner__title {
    font-size: 0.4rem;
    color: #1a1a1a;
  }

  .t-banner .c-banner__desc {
    font-size: 0.24rem;
    color: #333333;
  }

  .t-banner .c-banner__visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 48%;
    pointer-events: none;
  }

  .t-banner .c-banner__figure--3 {
    right: auto;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .t-banner__btn {
    min-height: 0.8rem;
    font-size: 0.28rem;
  }

  .t-eco {
    padding: 0.72rem 0 0.64rem;
  }

  .t-eco__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin-top: 0.36rem;
  }

  .t-eco__card {
    flex: none;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 3.6rem;
    padding: 0.36rem 0.32rem 0.36rem 0.4rem;
  }

  .t-eco__icon {
    width: 0.72rem;
    height: auto;
  }

  .t-eco__card h3 {
    font-size: 0.3rem;
  }

  .t-eco__card li {
    font-size: 0.22rem;
    line-height: 1.7;
  }

  .t-plan__row,
  .t-plan__row--reverse {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-top: 0.4rem;
    padding: 0.36rem 0;
  }

  .t-plan__row--reverse .t-plan__copy,
  .t-plan__row--reverse .t-plan__pic {
    order: 0;
  }

  .t-plan__pic {
    width: 100%;
    max-width: none;
    order: -1;
  }

  .t-plan__copy h3 {
    font-size: 0.32rem;
    text-align: center;
  }

  .t-plan__copy h3 br {
    display: none;
  }

  .t-plan__copy ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
  }

  .t-plan__copy li {
    font-size: 0.22rem;
  }

  .t-plan__copy .g-btn {
    width: 100%;
    min-width: 0;
    font-size: 0.26rem;
  }

  .t-kol {
    padding: 0.8rem 0 0.72rem;
  }

  .t-kol .g-sec__title--light {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .t-kol .g-sec__subtitle--light {
    font-size: 0.24rem;
  }

  .t-kol__bar {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0.24rem;
    gap: 0.16rem;
  }

  .t-kol__bar span {
    font-size: 0.24rem;
    text-align: center;
  }

  .t-kol__bar .g-btn {
    width: 100%;
    height: 0.72rem;
    font-size: 0.26rem;
  }

  .t-kol__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.16rem;
    margin: 0.36rem 0 0;
    padding: 0;
    list-style: none;
  }

  .t-kol__stats li {
    min-width: 0;
    padding: 0.24rem 0.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.12rem;
  }

  .t-kol__stats li + li::before {
    display: none;
  }

  .t-kol__num {
    font-size: 0.26rem;
  }

  .t-kol__num span {
    font-size: 0.36rem;
  }

  .t-kol__label {
    margin-top: 0.08rem;
    font-size: 0.22rem;
  }

  .t-formats {
    padding: 0.72rem 0 0.64rem;
  }

  .t-formats .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .t-formats .g-tabs {
    margin-top: 0.36rem;
  }

  .t-formats .g-tabs__nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .t-formats .g-tabs__nav::-webkit-scrollbar {
    display: none;
  }

  .t-formats .g-tabs__nav button {
    flex: 0 0 auto;
    min-width: 1.6rem;
    padding: 0.16rem 0.2rem 0.2rem;
    font-size: 0.22rem;
  }

  .t-formats .g-tabs__viewport {
    touch-action: pan-y;
  }

  .t-formats .g-tabs__panel {
    grid-template-columns: 1fr;
    gap: 0.28rem;
    padding: 0.2rem 0 0;
  }

  .t-formats .g-tabs__pic {
    order: -1;
    width: 72%;
    max-width: 3.6rem;
    margin: 0 auto;
  }

  .t-formats__head {
    padding-top: 0;
  }

  .t-formats .g-tabs__body h3 {
    font-size: 0.28rem;
    line-height: 1.4;
  }

  .t-formats .g-tabs__body h3 br {
    display: none;
  }

  .t-formats .g-tabs__body ul {
    grid-template-columns: 1fr;
    gap: 0.14rem;
  }

  .t-formats .g-tabs__body li {
    font-size: 0.22rem;
  }

  .t-formats .g-tabs__cta {
    width: 100%;
    margin-left: 0;
    margin-top: 0.32rem;
    font-size: 0.26rem;
  }

  .t-show {
    height: auto;
    min-height: 0;
    padding: 0.56rem 0 0.48rem;
  }

  .t-show__title {
    width: 100%;
  }

  .t-show__viewport {
    overflow: hidden;
  }

  .t-show__card {
    width: calc(100vw - 1.28rem);
    max-width: 5.6rem;
  }

  .t-show__pic {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: 6.4rem;
    object-fit: cover;
    border-radius: 0.12rem;
  }

  .t-show__caption {
    height: auto;
    margin-top: 0.16rem;
  }

  .t-ind {
    padding: 0.48rem 0 0.64rem;
  }

  .t-ind__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.16rem;
  }

  .t-ind__grid li {
    height: auto;
    min-height: 1.36rem;
    padding: 0.16rem 0.08rem 0.18rem;
    font-size: 0.22rem;
  }

  .t-ind__grid li img {
    width: 0.4rem;
    height: 0.4rem;
  }

  .t-ind__cta {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0.16rem;
    margin-top: 0.32rem;
    padding: 0.24rem;
    overflow: hidden;
  }

  .t-ind__cta span {
    line-height: 1.4;
    font-size: 0.26rem;
    text-align: center;
  }

  .t-ind__cta .g-btn {
    width: 100%;
    min-height: 0.8rem;
    font-size: 0.26rem;
  }

  .t-ind__cursor {
    display: none;
  }

  .t-plus__grid,
  .t-faq__grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .t-plus__card h3,
  .t-faq__q h3 {
    font-size: 0.28rem;
  }

  .t-plus__card p,
  .t-faq__a p {
    font-size: 0.22rem;
  }

  .t-faq {
    padding: 0.72rem 0 0.64rem;
  }

  .t-faq .g-sec__title {
    font-size: 0.32rem;
  }

  .t-faq__quote {
    display: none;
  }

  .t-faq__a {
    margin-left: 0;
    min-height: 0;
  }

  .y-hero {
    height: auto;
    min-height: 7.2rem;
  }

  .y-hero__inner {
    flex-direction: column;
    justify-content: center;
    min-height: 7.2rem;
    padding: 0.48rem 0 0.32rem;
  }

  .y-hero__copy {
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: center;
  }

  .y-hero__logo {
    width: 0.64rem;
    height: 0.64rem;
    margin: 0 auto;
  }

  .y-hero__copy h1 {
    margin-top: 0.2rem;
    font-size: 0.4rem;
    line-height: 1.3;
  }

  .y-hero__copy p {
    font-size: 0.24rem;
    line-height: 1.5;
  }

  .y-hero__copy .y-btn {
    margin-top: 0.28rem;
  }

  .y-hero__visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 48%;
    align-self: auto;
    pointer-events: none;
  }

  .y-hero__visual img {
    object-position: center bottom;
  }

  .y-stats {
    height: auto;
    padding: 0.28rem 0.16rem;
  }

  .y-stats__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
    height: auto;
  }

  .y-stats__list li {
    flex: none;
    padding: 0.24rem 0.12rem;
    background: #f5f8ff;
    border-radius: 0.12rem;
  }

  .y-stats__list li + li::before {
    display: none;
  }

  .y-stats__num {
    font-size: 0.32rem;
  }

  .y-stats__label {
    margin-top: 0.1rem;
    font-size: 0.22rem;
    line-height: 1.35;
  }

  .y-eco {
    min-height: 0;
    padding: 0.72rem 0 0.64rem;
  }

  .y-eco .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-eco__layout {
    flex-direction: column;
    min-height: 0;
    margin-top: 0.36rem;
    gap: 0.24rem;
  }

  .y-eco__intro {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .y-eco__intro h3 {
    font-size: 0.3rem;
    line-height: 1.35;
  }

  .y-eco__intro p {
    font-size: 0.24rem;
  }

  .y-eco__intro .y-btn {
    width: 100%;
    max-width: 5.2rem;
    margin-top: 0.24rem;
  }

  .y-eco__figure {
    position: relative;
    left: 0;
    bottom: 0;
    width: 78%;
    max-width: 4.4rem;
    margin: 0.24rem auto 0;
    display: block;
  }

  .y-eco__grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.16rem;
    margin-top: 0;
  }

  .y-eco__card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0.28rem 0.24rem;
  }

  .y-eco__card h3 {
    font-size: 0.28rem;
  }

  .y-eco__card h3 br {
    display: none;
  }

  .y-eco__card li {
    font-size: 0.22rem;
  }

  .y-eco__card a {
    font-size: 0.24rem;
  }

  .y-cases {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 0.48rem;
  }

  .y-cases__deco {
    opacity: 0.35;
  }

  .y-cases__inner {
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.4rem var(--space-md) 0;
  }

  .y-cases__visual {
    position: relative;
    order: 2;
    width: 100%;
    height: 3.2rem;
    margin-top: 0.24rem;
  }

  .y-cases .g-sec__title,
  .y-cases .g-sec__subtitle {
    text-align: center;
  }

  .y-cases__viewport {
    width: 100%;
    margin-top: 0.28rem;
    overflow: hidden;
  }

  .y-cases__card {
    width: calc(100vw - 1.2rem);
    max-width: 6.4rem;
    min-height: 0;
    padding: 0.28rem 0.24rem;
  }

  .y-cases__card p {
    font-size: 0.24rem;
  }

  .y-cases__card strong {
    font-size: 0.32rem;
  }

  .y-cases__card li span {
    font-size: 0.2rem;
  }

  .y-cases__nav {
    justify-content: center;
    margin-top: 0.28rem;
    gap: 0.2rem;
  }

  .y-niche {
    padding: 0.72rem 0 0.64rem;
  }

  .y-niche .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-niche__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
    margin-top: 0.36rem;
  }

  .y-niche__grid article {
    width: 100%;
    height: 2.2rem;
  }

  .y-niche__grid h3 {
    top: auto;
    bottom: 0.2rem;
    font-size: 0.24rem;
  }

  .y-niche__grid h3 br {
    display: none;
  }

  .y-niche__bar {
    flex-direction: column;
    height: auto;
    margin-top: 0.28rem;
    border-radius: 0.16rem;
  }

  .y-niche__bar li {
    padding: 0.28rem 0.24rem;
  }

  .y-niche__bar li + li::before {
    display: none;
  }

  .y-niche__bar h3 {
    font-size: 0.28rem;
  }

  .y-niche__bar p {
    font-size: 0.22rem;
  }

  .y-niche__bar p br {
    display: none;
  }

  .y-spots {
    padding: 0.72rem 0 0.64rem;
  }

  .y-spots .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-spots__nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .y-spots__nav::-webkit-scrollbar {
    display: none;
  }

  .y-spots__nav button {
    flex: 0 0 auto;
    min-width: 1.6rem;
    padding: 0.16rem 0.2rem 0.2rem;
    font-size: 0.24rem;
  }

  .y-spots__stage {
    padding: 0;
    min-height: 0;
    overflow: hidden;
    touch-action: pan-y;
  }

  .y-spots__arrow {
    display: none;
  }

  .y-spots__track {
    gap: 0.16rem;
    padding-top: 0.28rem;
  }

  .y-spots__card {
    flex: 0 0 calc(100vw - 0.96rem);
    width: calc(100vw - 0.96rem);
    max-width: 6.4rem;
    height: auto;
    aspect-ratio: 324 / 399;
  }

  .y-spots__copy h3 {
    font-size: 0.28rem;
  }

  .y-spots__copy li {
    font-size: 0.22rem;
  }

  .y-goals {
    padding: 0.72rem 0 0.64rem;
  }

  .y-goals .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-goals__nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .y-goals__nav::-webkit-scrollbar {
    display: none;
  }

  .y-goals__nav button {
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.24rem;
    padding: 0.16rem 0.2rem;
  }

  .y-goals__panel.is-active {
    flex-direction: column;
    gap: 0.24rem;
  }

  .y-goals__copy {
    max-width: none;
    text-align: center;
  }

  .y-goals__copy h3 {
    font-size: 0.3rem;
  }

  .y-goals__copy p {
    font-size: 0.24rem;
  }

  .y-goals__copy ul {
    width: 100%;
    justify-content: center;
  }

  .y-goals__copy li span {
    font-size: 0.22rem;
  }

  .y-goals__copy .y-btn {
    width: 100%;
    max-width: 5.2rem;
  }

  .y-goals__pic {
    order: -1;
    width: 100%;
    max-width: 5.6rem;
    height: auto;
    margin: 0 auto;
  }

  .y-show {
    padding: 0.72rem 0 0.64rem;
  }

  .y-show .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-show__visual {
    margin-top: 0.28rem;
  }

  .y-show__visual::before,
  .y-show__visual::after {
    display: none;
  }

  .y-show__visual img {
    width: 100%;
    height: auto;
  }

  .y-form {
    padding: 0.72rem 0 0.8rem;
  }

  .y-form .g-sec__title {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .y-form__box {
    height: auto;
    min-height: 0;
    margin-top: 0.36rem;
    border-radius: 0.16rem;
    overflow: hidden;
  }

  .y-form__fields {
    grid-template-columns: 1fr;
    gap: 0.16rem;
    padding: 0.4rem 0.24rem 0.36rem;
  }

  .y-form__fields label {
    width: 100%;
  }

  .y-form__fields button {
    width: 100%;
  }
}

.geo-sec {
  position: relative;
  padding: 1rem 0 1.1rem;
  overflow: hidden;
}

.geo-sec__title {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 700;
  line-height: 1.44;
  text-align: center;
  color: #3d3d3d;
}

.geo-sec__subtitle {
  margin: 0.08rem 0 0;
  font-size: 0.18rem;
  line-height: 1.44;
  text-align: center;
  color: #64748b;
}

.geo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.48rem;
  padding: 0 0.5rem;
  font-size: 0.16rem;
  color: #ffffff;
  background: #336ffc;
  border-radius: 0.1rem;
  transition: opacity var(--duration-fast) var(--ease-default),
    transform var(--duration-fast) var(--ease-default),
    box-shadow var(--duration-fast) var(--ease-default);
}

.geo-btn:active {
  opacity: 0.88;
  transform: scale(0.98);
}

.geo-plus {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.26rem;
  height: 0.26rem;
  border: 1px solid #e4eeff;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0.02rem 0.08rem rgba(51, 111, 252, 0.12);
  transition: background-color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.geo-plus::before,
.geo-plus::after {
  content: "";
  position: absolute;
  background: #336ffc;
  border-radius: 1px;
  transition: background-color 0.25s ease;
}

.geo-plus::before {
  width: 0.1rem;
  height: 1.5px;
}

.geo-plus::after {
  width: 1.5px;
  height: 0.1rem;
}

.geo-hero {
  position: relative;
  height: 5.5rem;
  overflow: hidden;
  background: #dfebfa;
}

.geo-hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 19.2rem;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-50%);
  pointer-events: none;
}

.geo-hero__orb {
  position: absolute;
  left: -2.38rem;
  bottom: -3.02rem;
  width: 5.68rem;
  height: 5.68rem;
  background: #85c2fe;
  border-radius: 50%;
  filter: blur(2.55rem);
  pointer-events: none;
}

.geo-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.geo-hero h1 {
  margin: 0;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.geo-hero p {
  margin: 0.27rem 0 0;
  font-size: 0.2rem;
  line-height: 1.3;
  color: #3d3d3d;
}

.geo-hero .geo-btn {
  align-self: flex-start;
  margin-top: 0.55rem;
}

.geo-pain {
  overflow: visible;
  background: #f0f5fa;
}

.geo-pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  margin-top: 0.46rem;
}

.geo-pain__card {
  position: relative;
  height: 3.46rem;
  overflow: hidden;
  padding: 0.4rem 0.5rem 0 0.44rem;
  background: #ffffff;
  border-radius: 0.06rem;
  box-shadow: 0 0.04rem 0.18rem rgba(103, 106, 111, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.geo-pain__card img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.4rem;
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.geo-pain__go {
  position: absolute;
  right: 0.5rem;
  bottom: 0.4rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.24rem;
  height: 0.24rem;
  background: #111111;
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.geo-pain__go::before {
  content: "";
  display: block;
  width: 0.07rem;
  height: 0.07rem;
  margin-left: -1px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg);
}

.geo-pain__meta {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.44;
  color: #565e6d;
}

.geo-pain__meta i {
  flex-shrink: 0;
  width: 0.14rem;
  height: 0.14rem;
  background: #caddff;
  border-radius: 50%;
}

.geo-pain__card h3 {
  margin: 0.1rem 0 0;
  font-size: 0.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #336ffc;
}

.geo-universe {
  background: #fafcfd;
}

.geo-universe__stage {
  position: relative;
  margin-top: 0.4rem;
  padding-bottom: 0.32rem;
  overflow: hidden;
  background: #ffffff;
  border: 6px solid #9eabff;
  border-radius: 0.18rem;
  box-shadow: 0 0.04rem 0.15rem rgba(165, 176, 222, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.geo-universe__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 0.73rem;
  padding: 0 0.35rem;
  background: linear-gradient(180deg, #f9fafe, #eef2fa);
}

.geo-universe__bar p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 0.5rem;
  margin: 0;
  font-size: 0.2rem;
  font-weight: 500;
  color: #474747;
  background: #ffffff;
  border-radius: 0.1rem 0.1rem 0 0;
}

.geo-universe__dots {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 0.06rem;
}

.geo-universe__dots i {
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
}

.geo-universe__dots i:nth-child(1) {
  background: #34c759;
}

.geo-universe__dots i:nth-child(2) {
  background: #ffcc00;
}

.geo-universe__dots i:nth-child(3) {
  background: #ff3b30;
}

.geo-universe__lead {
  height: 0.23rem;
  margin: 0.3rem 0.35rem 0;
  padding-left: 0.08rem;
  font-size: 0.16rem;
  line-height: 0.23rem;
  color: #525151;
  border-left: 3px solid #8072ff;
}

.geo-universe__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.34rem;
  padding: 0 0.35rem;
}

.geo-universe__visual {
  flex: 1;
  min-width: 0;
  height: 3.38rem;
}

.geo-universe__orbit {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.geo-universe__aside {
  position: relative;
  width: 2.67rem;
  height: 3.73rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.12rem;
}

.geo-universe__aside > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geo-universe__aside ul {
  position: absolute;
  left: 0.14rem;
  right: 0.1rem;
  bottom: 0.16rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.geo-universe__aside li {
  display: inline-flex;
  align-items: center;
  gap: 0.09rem;
  height: 0.52rem;
  padding: 0 0.2rem;
  font-size: 0.14rem;
  color: #0c0c0c;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0.12rem;
  box-shadow: 0 0.04rem 0.1rem rgba(155, 145, 100, 0.29);
  backdrop-filter: blur(0.31rem);
}

.geo-universe__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.13rem;
  height: 0.13rem;
  background: #f1a445;
  border-radius: 50%;
}

.geo-universe__check::before {
  content: "";
  width: 0.04rem;
  height: 0.07rem;
  margin-top: -1px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(45deg);
}

.geo-universe__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.28rem;
  padding: 0 0.35rem;
}

.geo-universe__stat {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
  font-size: 0.18rem;
  line-height: 1.44;
  color: #6959ff;
}

.geo-universe__stat i {
  width: 0.06rem;
  height: 0.06rem;
  background: #6959ff;
  border-radius: 50%;
}

.geo-universe__delta {
  display: inline-flex;
  align-items: center;
  gap: 0.03rem;
  font-size: 0.14rem;
  font-weight: 500;
  color: #f53b1f;
}

.geo-universe__delta::after {
  content: "\2191";
  font-size: 0.12rem;
}

.geo-universe__stat em {
  font-size: 0.11rem;
  font-style: normal;
  color: #8e8c99;
}

.geo-universe__scene {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.44;
  color: #3d3d3d;
}

.geo-steps {
  overflow: visible;
  background: #f5f9ff;
}

.geo-steps__orb {
  position: absolute;
  right: -1.43rem;
  bottom: -1.37rem;
  width: 7.9rem;
  height: 7.9rem;
  background: #7199ff;
  border-radius: 50%;
  filter: blur(4rem);
  pointer-events: none;
}

.geo-steps__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.geo-step {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.22rem 0.2rem 0;
  background: #ffffff;
  border-radius: 0.12rem;
  box-shadow: 0 0.04rem 0.18rem rgba(103, 106, 111, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.geo-step:nth-child(-n+3) {
  width: calc((100% - 0.4rem) / 3);
  padding: 0.2rem 0 0.1rem;
}

.geo-step:nth-child(-n+3) > p {
  margin-bottom: 0;
}

.geo-step:nth-child(-n+3) .geo-step__no,
.geo-step:nth-child(-n+3) h3,
.geo-step:nth-child(-n+3) > p {
  padding: 0 0.18rem;
}

.geo-step:nth-child(5) {
  width: 4.9rem;
  padding: 0.22rem 0 0.14rem;
}

.geo-step:nth-child(n+6) {
  width: calc((100% - 0.2rem) / 2);
  padding: 0.22rem 0 0.14rem;
}

.geo-step:nth-child(5) .geo-step__no,
.geo-step:nth-child(5) h3,
.geo-step:nth-child(5) > p,
.geo-step:nth-child(n+6) .geo-step__no,
.geo-step:nth-child(n+6) h3,
.geo-step:nth-child(n+6) > p {
  padding: 0 0.2rem;
}

.geo-step:nth-child(4) {
  width: calc(100% - 5.1rem);
  min-height: 0;
  padding: 0.22rem 0.16rem 0.2rem 0.22rem;
}

.geo-step:nth-child(4) img {
  position: static;
  width: 100%;
  height: auto;
  margin-top: 0;
}

.geo-step:nth-child(4) ul {
  width: auto;
  margin-top: 0.16rem;
}

.geo-step__row {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0;
}

.geo-step__copy {
  flex: 1;
  min-width: 0;
}

.geo-step:nth-child(4) .geo-step__row img {
  width: 54%;
  flex-shrink: 0;
  height: auto;
  margin-top: 0;
}

.geo-step__no {
  margin: 0;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 1.4;
  color: #336ffc;
  background: linear-gradient(99deg, #0152ff 7%, #28b8ff 94%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.geo-step h3 {
  margin: 0.02rem 0 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.45;
  color: #000000;
}

.geo-step > p {
  margin: 0.04rem 0 0;
  font-size: 0.14rem;
  line-height: 1.43;
  color: #565e6d;
}

.geo-step ul {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: calc(100% - 3.9rem);
  margin-top: 0.24rem;
}

.geo-step li {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #64748b;
}

.geo-step li::before {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  background: #b1d1ff;
  border-radius: 50%;
}

.geo-step img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  object-fit: contain;
  pointer-events: none;
}

.geo-step:nth-child(-n+3) img,
.geo-step:nth-child(5) img,
.geo-step:nth-child(n+6) img {
  width: 100%;
  margin-top: 0.06rem;
  margin-left: 0;
  margin-right: 0;
}

.geo-step:nth-child(-n+3) .geo-step__foot,
.geo-step:nth-child(5) .geo-step__foot,
.geo-step:nth-child(n+6) .geo-step__foot {
  margin-top: 0;
  padding: 0 0.4rem 0 0.18rem;
}

.geo-step__foot {
  position: relative;
  display: block;
  margin-top: 0.06rem;
  padding-right: 0.32rem;
  font-size: 0.12rem;
  line-height: 1.4;
  text-align: center;
  color: #93a4bc;
}

.geo-step:nth-child(4) .geo-step__foot {
  display: none;
}

.geo-step .geo-pain__go {
  right: 0.18rem;
  bottom: 0.16rem;
  z-index: 2;
}

.geo-local {
  overflow: visible;
  background: #ffffff;
}

.geo-local__layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.geo-local__cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.23rem;
  flex: 5 1 0;
  min-width: 0;
}

.geo-local__cards article {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.22rem;
  min-height: 1.24rem;
  padding: 0 0.26rem 0 0.2rem;
  background: #ffffff;
  border-radius: 0.1rem;
  box-shadow: 0 0.05rem 0.15rem rgba(109, 126, 146, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.geo-local__cards img {
  width: 0.6rem;
  height: 0.6rem;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0.05rem 0.1rem rgba(54, 83, 143, 0.2);
}

.geo-local__cards h3 {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.44;
  color: #3d3d3d;
}

.geo-local__cards p {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.43;
  color: #565e6d;
}

.geo-local__panel {
  display: flex;
  flex-direction: column;
  flex: 6.6 1 0;
  min-width: 0;
  height: 4.2rem;
  padding: 0.15rem 0.2rem 0.16rem;
  background: #f0f7ff;
  border-radius: 0.08rem;
}

.geo-local__panel > h3 {
  margin: 0;
  font-size: 0.18rem;
  font-weight: 600;
  line-height: 1.44;
  color: #3d3d3d;
}

.geo-local__matrix {
  flex: 1;
  margin-top: 0.1rem;
  padding: 0.16rem 0.2rem 0.14rem;
  background: #ffffff;
  border-radius: 0.1rem;
}

.geo-local__channels {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.14rem;
  line-height: 1.8;
  color: #565e6d;
}

.geo-local__channels li {
  display: flex;
  align-items: center;
  flex: 0 0 33.33%;
  gap: 0.08rem;
}

.geo-local__channels i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  background: #e8f1ff;
  border-radius: 50%;
}

.geo-local__channels i::before {
  content: "";
  width: 0.05rem;
  height: 0.08rem;
  margin-top: -1px;
  border-right: 1.5px solid #5a9bff;
  border-bottom: 1.5px solid #5a9bff;
  transform: rotate(45deg);
}

.geo-local__bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 0.3rem;
  margin-top: 0.14rem;
  padding-right: 0.2rem;
}

.geo-local__bars p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.12rem;
  margin: 0;
}

.geo-local__bars img {
  width: 0.22rem;
  height: 0.22rem;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.geo-local__bars span {
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  overflow: hidden;
  background: #eef3fa;
  border-radius: 0.1rem;
}

.geo-local__bars span::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: 0.1rem;
}

.geo-local__bars .is-reddit::before {
  width: 86%;
  background: #ff4801;
}

.geo-local__bars .is-linkedin::before {
  width: 72%;
  background: #0a66c2;
}

.geo-local__bars .is-meta::before {
  width: 64%;
  background: #037cef;
}

.geo-local__bars .is-x::before {
  width: 48%;
  background: #111111;
}

.geo-local__boards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.18rem;
  margin-top: 0.12rem;
}

.geo-local__boards > div {
  height: 1.68rem;
  padding: 0.12rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.1rem;
}

.geo-local__boards > div > p {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin: 0 0 0.08rem;
  font-size: 0.16rem;
  font-weight: 600;
  color: #3d3d3d;
}

.geo-local__boards > div > p img {
  width: 0.3rem;
  height: 0.3rem;
  object-fit: contain;
}

.geo-local__boards li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.08rem;
  min-height: 0.36rem;
  margin-top: 0.06rem;
  padding: 0.04rem 0.1rem;
  font-size: 0.11rem;
  line-height: 1.3;
  white-space: nowrap;
  border-radius: 0.05rem;
  background: #eef6ff;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.geo-local__boards li span {
  min-width: 0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.geo-local__boards li em {
  flex-shrink: 0;
  font-style: normal;
  opacity: 0.85;
}

.geo-local__boards .is-high {
  background: #e1f5ee;
  color: #2d7a5f;
}

.geo-local__boards .is-mid {
  background: #e6f1fb;
  color: #346da0;
}

.geo-local__boards .is-miss {
  background: #faeeda;
  color: #916d32;
}

.geo-local__tasks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.07rem 0.1rem;
}

.geo-local__tasks li {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 0.52rem;
  margin-top: 0;
  padding: 0.06rem 0.08rem;
  white-space: normal;
}

.geo-local__tasks .is-guide {
  background: #e1f5ee;
  color: #2d7a5f;
}

.geo-local__tasks .is-reddit {
  background: #eaf3ff;
  color: #346da0;
}

.geo-local__tasks .is-in {
  background: #eef1ff;
  color: #3d4ea8;
}

.geo-local__tasks .is-yt {
  background: #faeeda;
  color: #916d32;
}

.geo-local__tasks strong {
  display: block;
  font-size: 0.12rem;
}

.geo-local__tasks span {
  font-weight: 400;
  font-size: 0.1rem;
}

.geo-cases {
  background: #ecf3ff;
}

.geo-cases__viewport {
  overflow: hidden;
  margin-top: 0.4rem;
}

.geo-cases__track {
  display: flex;
  gap: 0.2rem;
  will-change: transform;
}

.geo-cases__card {
  position: relative;
  flex: 0 0 5.8rem;
  height: 5rem;
  padding: 0.18rem 0.2rem 0.2rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.05rem;
}

.geo-cases__pic {
  position: relative;
  height: 2.6rem;
  overflow: hidden;
  border-radius: 0.04rem;
}

.geo-cases__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.geo-cases__pic span {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 0.3rem;
  font-size: 0.14rem;
  color: #ffffff;
  background: #336ffc;
  border-radius: 0.04rem;
}

.geo-cases__tags {
  display: flex;
  gap: 0.2rem;
  margin-top: 0.16rem;
}

.geo-cases__tags em {
  display: inline-flex;
  align-items: center;
  height: 0.34rem;
  padding: 0 0.18rem;
  font-size: 0.14rem;
  font-style: normal;
  color: #7b6dff;
  background: #f0f3ff;
  border-radius: 0.05rem;
}

.geo-cases__card h3 {
  margin: 0.1rem 0 0;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1.44;
  color: #3d3d3d;
}

.geo-cases__card > p {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  color: #565e6d;
}

.geo-cases__card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.08rem 0.12rem;
  margin-top: 0.1rem;
  width: 100%;
}

.geo-cases__card li {
  display: flex;
  align-items: flex-start;
  gap: 0.08rem;
  font-size: 0.14rem;
  line-height: 1.43;
  color: #565e6d;
}

.geo-cases__card li::before {
  content: "";
  flex-shrink: 0;
  width: 0.16rem;
  height: 0.16rem;
  margin-top: 0.02rem;
  background: #b1d1ff;
  border-radius: 50%;
}

.geo-cases__card .geo-plus {
  right: 0.2rem;
  bottom: 0.2rem;
}

.geo-cases__nav {
  display: flex;
  justify-content: center;
  gap: 0.16rem;
  margin-top: 0.28rem;
}

.geo-cases__nav button {
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  color: #336ffc;
  background: #ffffff;
  border: 1px solid #d7e4ff;
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
}

.geo-cases__nav button::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 0.1rem;
  margin: 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.geo-cases__nav button:first-child::before {
  transform: rotate(-135deg);
}

.geo-aud {
  overflow: visible;
  background: #f7fbff;
}

.geo-aud__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.4rem;
}

.geo-aud__pic {
  position: relative;
  height: 2.81rem;
  overflow: hidden;
  border-radius: 0.2rem;
}

.geo-aud__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.geo-aud__pic ul {
  position: absolute;
  left: 0.3rem;
  bottom: 0.22rem;
  color: #ffffff;
}

.geo-aud__pic li {
  display: flex;
  align-items: center;
  gap: 0.06rem;
  font-size: 0.14rem;
  font-weight: 700;
  line-height: 0.24rem;
}

.geo-aud__pic li::before {
  content: "";
  width: 0.03rem;
  height: 0.03rem;
  background: currentColor;
  border-radius: 50%;
}

.geo-aud__grid h3 {
  margin: 0.11rem 0 0;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 0.25rem;
  text-align: center;
  color: #3d3d3d;
}

.geo-aud__rule {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  height: 0.08rem;
  margin-top: 0.13rem;
}

.geo-aud__rule::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #4076ff, #dae4ff);
  border-radius: 1px;
}

.geo-aud__rule span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 3px;
  height: 0.08rem;
  background: #418dff;
  border-radius: 1.5px;
  opacity: 0.4;
}

.geo-aud__rule span:nth-child(2) {
  opacity: 0.7;
}

.geo-aud__rule span:nth-child(n+3) {
  opacity: 1;
}

.geo-aud__feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-top: 0.2rem;
}

.geo-aud__feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.08rem;
  height: 1.27rem;
  padding: 0.15rem 0.16rem 0 0.15rem;
  background: #ffffff;
  border-radius: 0.2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.geo-aud__feats img {
  width: 0.8rem;
  height: 0.8rem;
  object-fit: contain;
}

.geo-aud__feats div {
  padding-top: 0.1rem;
}

.geo-aud__feats h3 {
  margin: 0;
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 0.22rem;
  color: #3d3d3d;
}

.geo-aud__feats p {
  margin: 0.1rem 0 0;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #64748b;
}

.geo-faq {
  overflow: visible;
  background: linear-gradient(180deg, #fdfdfd, #e9f1f8);
  padding-bottom: 1.1rem;
}

.geo-faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 0.25rem;
  margin-top: 0.4rem;
}

.geo-faq__item {
  position: relative;
  min-height: 1.5rem;
  padding: 0.27rem 0.3rem 0.4rem 0.17rem;
  background: #ffffff;
  border-radius: 0.1rem;
  box-shadow: 0 0.04rem 0.1rem rgba(194, 208, 220, 0.6);
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.geo-faq__q {
  display: flex;
  align-items: center;
  gap: 0.09rem;
  margin: 0;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 0.26rem;
  color: #3d3d3d;
}

.geo-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 0.22rem;
  height: 0.22rem;
  background: #336ffc;
  border-radius: 50%;
}

.geo-faq__icon::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.03rem;
  width: 0.07rem;
  height: 0.07rem;
  background: inherit;
  border-radius: 0 0 0.02rem 0.04rem;
  transform: rotate(32deg);
}

.geo-faq__icon::after {
  content: "?";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.13rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.geo-faq__item p {
  margin: 0.1rem 0.1rem 0 0.32rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #565e6d;
}

.geo-faq__link {
  position: absolute;
  right: 0.3rem;
  bottom: 0.12rem;
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.12rem;
  color: #336ffc;
  transition: opacity 0.2s ease;
}

.geo-faq__link::after {
  content: "";
  width: 0.06rem;
  height: 0.06rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.geo-faq__item.is-hl {
  background: #336ffc;
}

.geo-faq__item.is-hl .geo-faq__q,
.geo-faq__item.is-hl p,
.geo-faq__item.is-hl .geo-faq__link {
  color: #ffffff;
}

.geo-faq__item.is-hl .geo-faq__icon {
  background: #ffbb00;
}

@media (hover: hover) {
  .geo-btn:hover {
    opacity: 0.94;
    transform: translateY(-0.03rem);
    box-shadow: 0 0.08rem 0.2rem rgba(51, 111, 252, 0.32);
  }

  .geo-pain__card:hover {
    transform: translateY(-0.06rem);
    box-shadow: 0 0.12rem 0.28rem rgba(51, 111, 252, 0.14);
  }

  .geo-pain__card:hover img {
    transform: scale(1.06);
  }

  .geo-pain__card:hover .geo-pain__go,
  .geo-step:hover .geo-pain__go {
    background: #336ffc;
    transform: translateX(0.04rem);
  }

  .geo-universe__stage:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.12rem 0.32rem rgba(110, 128, 214, 0.28);
  }

  .geo-step:hover {
    transform: translateY(-0.06rem);
    box-shadow: 0 0.12rem 0.28rem rgba(51, 111, 252, 0.12);
  }

  .geo-local__cards article:hover {
    transform: translateY(-0.05rem);
    box-shadow: 0 0.12rem 0.28rem rgba(109, 126, 146, 0.28);
  }

  .geo-local__boards ul:not(.geo-local__tasks) li:hover {
    transform: translateX(0.04rem);
    filter: brightness(0.97);
  }

  .geo-local__tasks li:hover {
    transform: translateY(-0.02rem);
    filter: brightness(0.97);
  }

  .geo-cases__card:hover .geo-cases__pic img {
    transform: scale(1.06);
  }

  .geo-cases__card:hover .geo-plus {
    background: #336ffc;
    border-color: #336ffc;
    transform: rotate(90deg);
  }

  .geo-cases__card:hover .geo-plus::before,
  .geo-cases__card:hover .geo-plus::after {
    background: #ffffff;
  }

  .geo-cases__nav button:hover {
    color: #ffffff;
    background: #336ffc;
    border-color: #336ffc;
    transform: scale(1.08);
  }

  .geo-aud__grid article:hover .geo-aud__pic img {
    transform: scale(1.06);
  }

  .geo-aud__feats li:hover {
    transform: translateY(-0.05rem);
    box-shadow: 0 0.1rem 0.24rem rgba(51, 111, 252, 0.12);
  }

  .geo-faq__item:hover {
    transform: translateY(-0.04rem);
    box-shadow: 0 0.1rem 0.22rem rgba(51, 111, 252, 0.16);
  }

  .geo-faq__link:hover {
    opacity: 0.82;
  }
}

@media screen and (max-width: 767px) {
  .geo-hero {
    height: auto;
    min-height: 5.2rem;
    padding: 0.48rem 0 0.64rem;
  }

  .geo-hero h1 {
    font-size: 0.44rem;
    line-height: 1.35;
  }

  .geo-hero p {
    font-size: 0.26rem;
    line-height: 1.55;
  }

  .geo-hero .geo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 5.2rem;
    min-height: 0.84rem;
    margin-top: 0.36rem;
    font-size: 0.28rem;
    box-sizing: border-box;
  }

  .geo-sec {
    padding: 0.64rem 0 0.72rem;
  }

  .geo-sec__title {
    font-size: 0.34rem;
  }

  .geo-sec__subtitle {
    font-size: 0.24rem;
    line-height: 1.5;
  }

  .geo-pain__grid,
  .geo-local__layout,
  .geo-local__boards,
  .geo-aud__grid,
  .geo-aud__feats,
  .geo-faq__list {
    grid-template-columns: 1fr;
    display: grid;
  }

  .geo-local__layout,
  .geo-universe__body,
  .geo-universe__foot {
    flex-direction: column;
  }

  .geo-local__panel {
    height: auto;
  }

  .geo-local__boards > div {
    height: auto;
  }

  .geo-local__channels li {
    flex: 0 0 50%;
  }

  .geo-local__bars {
    padding-right: 0;
  }

  .geo-local__bars span {
    flex: 1;
    width: auto;
  }

  .geo-aud__rule {
    display: none;
  }

  .geo-aud__pic {
    height: 3.2rem;
  }

  .geo-aud__feats li {
    height: auto;
    min-height: 1.27rem;
    padding-bottom: 0.16rem;
  }

  .geo-pain__card,
  .geo-step,
  .geo-local__cards,
  .geo-local__panel,
  .geo-universe__visual,
  .geo-universe__orbit,
  .geo-universe__aside,
  .geo-cases__card {
    flex: none;
    width: 100%;
    max-width: none;
    flex-basis: 100%;
  }

  .geo-pain__card {
    height: auto;
    min-height: 4.2rem;
  }

  .geo-universe__bar p {
    width: auto;
    padding: 0 0.16rem;
  }

  .geo-universe__lead {
    height: auto;
    line-height: 1.5;
  }

  .geo-universe__visual,
  .geo-universe__orbit {
    width: 100%;
    height: auto;
  }

  .geo-universe__aside {
    height: 4.2rem;
    margin-top: 0.2rem;
  }

  .geo-universe__foot {
    align-items: flex-start;
    gap: 0.12rem;
  }

  .geo-step {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .geo-step:nth-child(-n+3),
  .geo-step:nth-child(4),
  .geo-step:nth-child(5),
  .geo-step:nth-child(n+6) {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .geo-step__row {
    flex-direction: column;
    align-items: stretch;
  }

  .geo-step:nth-child(4) .geo-step__row img {
    width: 100%;
  }

  .geo-cases__card {
    height: auto;
  }

  .geo-cases__card ul {
    width: 100%;
  }
}

.s-hero {
  position: relative;
  height: 4.9rem;
  overflow: hidden;
  background: #1a2a5a;
}

.s-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.s-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

.s-hero__copy {
  align-self: flex-start;
  padding-top: 1.31rem;
}

.s-hero__copy h1 {
  margin: 0;
  font-size: 0.38rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}

.s-hero__copy p {
  margin: 0.1rem 0 0;
  font-size: 0.2rem;
  line-height: 1;
  color: #ffffff;
}

.s-hero__copy p:first-of-type {
  margin-top: 0.43rem;
}

.s-hero__cta {
  display: inline-block;
  margin-top: 0.88rem;
  padding: 0.13rem 0.18rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #825a02;
  background: #ffb001;
  border-radius: 0.22rem;
  text-decoration: none;
  transition: opacity var(--duration-fast);
}

.s-hero__cta:hover {
  opacity: 0.9;
}

.s-hero__pic {
  display: block;
  width: 7rem;
  max-width: 52%;
  height: auto;
  pointer-events: none;
}

.s-books {
  background: #1f2549;
}

.s-books__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 1.2rem;
  padding-left: 1.8rem;
}

.s-books__stack {
  position: absolute;
  left: 0.24rem;
  bottom: 0;
  width: 1.6rem;
  height: 1.39rem;
  object-fit: contain;
  pointer-events: none;
}

.s-books__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.16rem;
  text-decoration: none;
}

.s-books__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 0.6rem;
  background: rgba(75, 77, 90, 0.32);
  transform: translateY(-50%);
}

.s-books__item span {
  font-size: 0.16rem;
  line-height: 1;
  color: #ffffff;
}

.s-books__item em {
  display: flex;
  align-items: center;
  margin-top: 0.11rem;
  padding-left: 0.1rem;
  font-style: normal;
  font-size: 0.14rem;
  line-height: 1;
  color: #2385ff;
}

.s-books__item:hover em {
  color: #0872f6;
}

.s-books__item em img {
  width: 0.16rem;
  height: 0.09rem;
  margin-left: 0.15rem;
}

.s-break {
  padding: 0.93rem 0 0.8rem;
  background: #f2f5fa;
}

.s-break h2,
.s-cates h2,
.s-rank h2,
.s-caps h2,
.s-mix h2 {
  margin: 0;
  font-size: 0.34rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #474747;
}

.s-break img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.49rem;
}

.s-cates {
  position: relative;
  padding: 0.95rem 0 0.7rem;
  overflow: hidden;
}

.s-cates__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.s-cates__inner {
  position: relative;
  z-index: 1;
}

.s-cates h2 {
  color: #ffffff;
}

.s-cates__row {
  display: flex;
  align-items: stretch;
  margin-top: 0.61rem;
  min-height: 3.65rem;
}

.s-cates__nav {
  position: relative;
  flex: 0 0 0.9rem;
  margin-right: 0.78rem;
  padding-top: 0.05rem;
}

.s-cates__bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.35rem;
  height: 3px;
  background: #437ef3;
  border-radius: 2px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform;
}

.s-cates__bar.is-ready {
  opacity: 1;
}

.s-cates__tab {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.39rem;
  padding: 0;
  font-size: 0.18rem;
  line-height: 1;
  color: #a2aab8;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.s-cates__tab:last-child {
  margin-bottom: 0;
}

.s-cates__tab.is-active {
  color: #ffffff;
}

.s-cates__stage {
  position: relative;
  flex: 1;
  min-width: 0;
}

.s-cates__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0.1rem;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.s-cates__viewport.is-dragging {
  cursor: grabbing;
}

.s-cates__track {
  display: flex;
  height: 3.65rem;
  will-change: transform;
}

.s-cates__panel {
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.s-cates__panel img {
  -webkit-user-drag: none;
  user-select: none;
}

.s-cates__thumb {
  flex: 0 0 2.6rem;
  width: 2.6rem;
  height: 3.65rem;
  object-fit: cover;
}

.s-cates__body {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.4rem 0.4rem 0.56rem;
  background: #f2f5ff;
}

.s-cates__quote {
  position: absolute;
  left: 0.26rem;
  top: 1.12rem;
  width: 0.29rem;
  height: 0.23rem;
}

.s-cates__body h3 {
  margin: 0;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1.3;
  color: #404040;
}

.s-cates__body p {
  margin: 0.32rem 0 0;
  font-size: 0.16rem;
  line-height: 1.6;
  color: #808082;
}

.s-cates__stats {
  display: flex;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.s-cates__stats li {
  position: relative;
  flex: 1;
  padding-right: 0.2rem;
  text-align: center;
}

.s-cates__stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 0.19rem;
  background: #dcdcdc;
  transform: translateY(-50%);
}

.s-cates__stats b {
  position: relative;
  display: inline-block;
  font-size: 0.22rem;
  font-weight: 700;
  line-height: 1;
  color: #437ef3;
}

.s-cates__stats b span {
  font-size: 0.14rem;
  font-weight: 400;
}

.s-cates__stats b i {
  position: absolute;
  left: 100%;
  top: 0;
  width: 0.13rem;
  height: 0.15rem;
  background: url("../images/solution/sec3-arrow@2x.e71c7466.png") no-repeat center / contain;
}

.s-cates__stats li > span {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.14rem;
  color: #808082;
}

.s-cates__dots {
  position: absolute;
  left: 2.6rem;
  right: 0;
  bottom: 0.16rem;
  display: flex;
  justify-content: center;
  gap: 0.06rem;
}

.s-cates__dots button {
  width: 0.05rem;
  height: 0.05rem;
  padding: 0;
  background: #bdc1d2;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.s-cates__dots button.is-active {
  background: #437ef3;
}

.s-cates__cta {
  display: block;
  width: fit-content;
  margin: 0.6rem auto 0;
  padding: 0.18rem 0.72rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #ffffff;
  background: #437ef3;
  border-radius: 0.1rem;
  text-decoration: none;
  transition: background var(--duration-fast);
}

.s-cates__cta:hover {
  background: #286df6;
}

.s-rank {
  padding: 0.95rem 0 0.8rem;
  background: #ffffff;
}

.s-rank__map {
  position: relative;
  margin-top: 0.72rem;
}

.s-rank__map-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.s-rank__card {
  position: absolute;
  left: 0.4rem;
  top: 0.38rem;
  z-index: 1;
  width: 2.7rem;
  height: 4.3rem;
  padding: 0.08rem 0.09rem;
  background: #ffffff;
  box-shadow: 0.04rem 0.07rem 0.27rem rgba(129, 148, 176, 0.18);
}

.s-rank__viewport {
  height: 100%;
  overflow: hidden;
  border: 1px solid #eaeaea;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.s-rank__viewport.is-dragging {
  cursor: grabbing;
}

.s-rank__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.s-rank__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.s-rank__slide img {
  -webkit-user-drag: none;
  user-select: none;
}

.s-rank__slide h3 {
  margin: 0;
  padding: 0.28rem 0 0 0.17rem;
  font-size: 0.18rem;
  font-weight: 500;
  line-height: 1;
  color: #616161;
}

.s-rank__slide ul {
  margin: 0.16rem 0 0 0.17rem;
  padding: 0;
  list-style: none;
}

.s-rank__slide li {
  display: flex;
  align-items: center;
  width: 2.15rem;
  height: 0.59rem;
  margin-bottom: 0.1rem;
  padding-left: 0.12rem;
  border-radius: 0.06rem;
  box-shadow: 0.04rem 0.07rem 0.27rem rgba(129, 148, 176, 0.18);
}

.s-rank__slide li:last-child {
  margin-bottom: 0;
}

.s-rank__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.04rem;
  font-size: 0.14rem;
  color: #ffffff;
  background: #4961eb;
  border-radius: 50%;
}

.s-rank__num.is-plain {
  color: #485fe8;
  background: transparent;
}

.s-rank__slide li img {
  width: 0.48rem;
  height: 0.5rem;
  object-fit: contain;
}

.s-rank__slide li em {
  font-style: normal;
  font-size: 0.16rem;
  color: #8e8e8e;
}

.s-rank__dots {
  position: absolute;
  left: 0.4rem;
  top: 4.9rem;
  z-index: 1;
  display: flex;
  gap: 0.06rem;
}

.s-rank__dots button {
  width: 0.24rem;
  height: 0.08rem;
  padding: 0;
  background: #bbd6ff;
  border: none;
  border-radius: 0.04rem;
  cursor: pointer;
}

.s-rank__dots button.is-active {
  background: #437ef3;
}

.s-belt {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.3rem;
}

.s-belt__card {
  position: relative;
  flex: 1;
  height: 2rem;
  padding: 0.4rem 0.2rem 0.2rem 0.44rem;
  overflow: hidden;
  color: #616161;
  background: #ffffff;
  box-shadow: 0.04rem 0.07rem 0.27rem rgba(129, 148, 176, 0.18);
  text-decoration: none;
}

.s-belt__bg {
  position: absolute;
  inset: 0;
  background-color: #3d7ef5;
  background-image: url("../images/solution/sec4-interaction@2x.0c306ab8.png"),
    linear-gradient(145deg, #5aa8ff 0%, #3d7ef5 48%, #2f63e8 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate3d(-101%, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.s-belt__card.is-back .s-belt__bg {
  transform: translate3d(101%, 0, 0);
}

.s-belt__card.is-on .s-belt__bg {
  transform: translate3d(0, 0, 0);
}

.s-belt__delta {
  position: absolute;
  left: 0.23rem;
  top: 0.86rem;
  width: 0.07rem;
  height: 0.09rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease, top 0.35s ease;
}

.s-belt__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 0.39rem;
  height: 0.3rem;
  overflow: hidden;
  object-fit: contain;
  transition: opacity 0.28s ease, height 0.35s ease, margin 0.35s ease;
}

.s-belt__card h3,
.s-belt__card p,
.s-belt__go {
  position: relative;
  z-index: 1;
}

.s-belt__card h3 {
  margin: 0.12rem 0 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease, margin 0.35s ease;
}

.s-belt__card p {
  margin: 0.09rem 0 0;
  font-size: 0.16rem;
  line-height: 1.4;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.s-belt__card h3 + p {
  margin-top: 0.24rem;
}

.s-belt__go {
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  margin-top: 0.18rem;
  opacity: 0;
  transform: translateX(-0.08rem);
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.s-belt__card.is-on {
  color: #ffffff;
}

.s-belt__card.is-on .s-belt__icon {
  height: 0;
  margin: 0;
  opacity: 0;
}

.s-belt__card.is-on .s-belt__delta {
  opacity: 1;
  top: 0.51rem;
}

.s-belt__card.is-on h3 {
  margin-top: 0.05rem;
}

.s-belt__card.is-on .s-belt__go {
  opacity: 1;
  transform: translateX(0);
}

.s-caps {
  position: relative;
  padding: 0.95rem 0 0.8rem;
  overflow: hidden;
}

.s-caps__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.s-caps__inner {
  position: relative;
  z-index: 1;
}

.s-caps__flow {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.56rem auto 0;
}

.s-caps__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.37rem 0.24rem;
  margin-top: 0.46rem;
}

.s-caps__card {
  display: flex;
  justify-content: space-between;
  height: 2.9rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.06rem;
  box-shadow: 0.07rem 0.04rem 0.81rem rgba(207, 217, 238, 0.4);
  transition: transform var(--duration-fast);
}

.s-caps__card:hover {
  transform: translateY(-0.06rem);
}

.s-caps__info {
  padding: 0.48rem 0.1rem 0.2rem 0.46rem;
}

.s-caps__info h3 {
  margin: 0;
  font-size: 0.24rem;
  font-weight: 500;
  line-height: 1;
  color: #474747;
}

.s-caps__info ul {
  margin: 0.24rem 0 0;
  padding: 0;
  list-style: none;
}

.s-caps__info li {
  display: flex;
  align-items: center;
  margin-top: 0.12rem;
}

.s-caps__info li:first-child {
  margin-top: 0;
}

.s-caps__info li img {
  width: 0.17rem;
  height: 0.17rem;
  object-fit: contain;
}

.s-caps__info li span {
  margin: 0 0.1rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #909090;
}

.s-caps__check {
  width: 0.16rem !important;
  height: 0.13rem !important;
}

.s-caps__more {
  display: inline-flex;
  align-items: center;
  width: 1.45rem;
  height: 0.4rem;
  margin-top: 0.35rem;
  padding-left: 0.27rem;
  font-size: 0.14rem;
  color: #437ef3;
  background: #ffffff url("../images/solution/sec5-arrow@2x.de81808d.png") no-repeat right 0.18rem center / 0.25rem 0.06rem;
  border: 1px solid #eeeeee;
  border-radius: 0.05rem;
  text-decoration: none;
}

.s-caps__more:hover {
  background-image: url("../images/solution/sec5-arrow-active@2x.950247e4.png");
}

.s-caps__pic {
  align-self: flex-end;
  width: 3.27rem;
  height: 2.71rem;
  object-fit: contain;
}

.s-mix {
  position: relative;
  padding: 0.95rem 0 0.8rem;
  overflow: hidden;
}

.s-mix__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.s-mix__inner {
  position: relative;
  z-index: 1;
}

.s-mix__tabs {
  position: relative;
  display: flex;
  margin-top: 0.59rem;
  border-bottom: 2px solid #d8e1ed;
}

.s-mix__bar {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: #0072ff;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform, width;
}

.s-mix__bar.is-ready {
  opacity: 1;
}

.s-mix__tab {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0.18rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #505050;
  background: none;
  border: none;
  cursor: pointer;
}

.s-mix__tab img {
  width: 0.28rem;
  height: 0.28rem;
  margin-right: 0.13rem;
  object-fit: contain;
}

.s-mix__view {
  overflow: hidden;
  width: 90%;
  margin: 0.71rem auto 0;
}

.s-mix__track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
}

.s-mix__track img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: auto;
}

#sConsult {
  scroll-margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .s-hero {
    height: auto;
    min-height: 7.2rem;
  }

  .s-hero__inner {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 7.2rem;
    padding: 0.56rem 0 3.4rem;
  }

  .s-hero__copy {
    position: relative;
    z-index: 2;
    align-self: stretch;
    padding: 0;
    text-align: center;
  }

  .s-hero__copy h1 {
    font-size: 0.4rem;
    line-height: 1.3;
  }

  .s-hero__copy p {
    font-size: 0.24rem;
    line-height: 1.5;
  }

  .s-hero__cta {
    margin-top: 0.28rem;
    min-height: 0.8rem;
    padding: 0.2rem 0.36rem;
    font-size: 0.26rem;
  }

  .s-hero__pic {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: 92%;
    max-width: 5.8rem;
    height: 3.2rem;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .s-books__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.12rem;
    min-height: 0;
    padding: 0.28rem 0.24rem 0.32rem;
  }

  .s-books__stack {
    position: static;
    width: 1.4rem;
    height: auto;
    margin: 0 auto 0.08rem;
  }

  .s-books__item {
    flex: none;
    width: 100%;
    align-items: flex-start;
    padding: 0.24rem 0.2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.12rem;
  }

  .s-books__item:not(:last-child)::after {
    display: none;
  }

  .s-books__item span {
    font-size: 0.26rem;
    line-height: 1.4;
  }

  .s-books__item em {
    margin-top: 0.12rem;
    font-size: 0.22rem;
  }

  .s-break {
    padding: 0.64rem 0 0.56rem;
  }

  .s-break h2,
  .s-cates h2,
  .s-rank h2,
  .s-caps h2,
  .s-mix h2 {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .s-break img {
    margin-top: 0.32rem;
  }

  .s-cates {
    padding: 0.72rem 0 0.64rem;
  }

  .s-cates__row {
    flex-direction: column;
    min-height: 0;
    margin-top: 0.36rem;
  }

  .s-cates__nav {
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 0 0 0.28rem;
    padding: 0 0 0.12rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .s-cates__nav::-webkit-scrollbar {
    display: none;
  }

  .s-cates__bar {
    width: 0;
    height: 0.04rem;
    top: auto;
    bottom: 0;
    left: 0;
    background: #437ef3;
  }

  .s-cates__tab {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    padding: 0.16rem 0.2rem 0.2rem;
    font-size: 0.24rem;
    white-space: nowrap;
    text-align: center;
  }

  .s-cates__stage {
    width: 100%;
  }

  .s-cates__viewport {
    border-radius: 0.16rem;
  }

  .s-cates__track {
    height: auto;
  }

  .s-cates__panel {
    flex-direction: column;
    height: auto;
    background: rgba(15, 24, 56, 0.35);
  }

  .s-cates__thumb {
    width: 100%;
    flex: none;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .s-cates__body {
    padding: 0.28rem 0.24rem 0.36rem;
  }

  .s-cates__body h3 {
    font-size: 0.3rem;
    line-height: 1.4;
  }

  .s-cates__body p {
    font-size: 0.24rem;
    line-height: 1.55;
  }

  .s-cates__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.12rem;
    margin-top: 0.24rem;
  }

  .s-cates__stats li {
    padding: 0.16rem 0.08rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.1rem;
    text-align: center;
  }

  .s-cates__stats li:not(:last-child)::after {
    display: none;
  }

  .s-cates__stats b {
    font-size: 0.3rem;
  }

  .s-cates__stats li > span {
    display: block;
    margin-top: 0.06rem;
    font-size: 0.2rem;
    line-height: 1.3;
  }

  .s-cates__dots {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin-top: 0.24rem;
  }

  .s-cates__cta {
    display: flex;
    width: 100%;
    max-width: 5.6rem;
    margin: 0.32rem auto 0;
    padding: 0.22rem 0.24rem;
    font-size: 0.26rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .s-rank {
    padding: 0.64rem 0 0.56rem;
  }

  .s-rank__map {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 0.32rem;
  }

  .s-rank__map-img {
    position: relative;
    width: 100%;
    height: auto;
  }

  .s-rank__card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0.2rem 0 0;
    padding: 0.28rem 0.24rem;
  }

  .s-rank__viewport {
    height: auto;
  }

  .s-rank__track {
    height: auto;
  }

  .s-rank__slide {
    height: auto;
    padding: 0;
  }

  .s-rank__slide h3 {
    padding-left: 0;
    font-size: 0.28rem;
  }

  .s-rank__slide ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
    margin: 0.2rem 0 0;
  }

  .s-rank__slide li {
    width: 100%;
    height: auto;
    min-height: 0.72rem;
    margin: 0;
    padding: 0.14rem 0.16rem;
    font-size: 0.24rem;
    box-sizing: border-box;
  }

  .s-rank__slide li:last-child {
    grid-column: 1 / -1;
  }

  .s-rank__dots {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    justify-content: center;
    margin: 0.2rem 0 0;
  }

  .s-belt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.16rem;
    margin-top: 0.28rem;
  }

  .s-belt__card {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 2.4rem;
    padding: 0.32rem 0.28rem 0.36rem;
  }

  .s-belt__card h3 {
    font-size: 0.3rem;
  }

  .s-belt__card p {
    font-size: 0.22rem;
  }

  .s-caps {
    padding: 0.72rem 0 0.64rem;
  }

  .s-caps__flow {
    width: 100%;
    margin-top: 0.32rem;
  }

  .s-caps__grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin-top: 0.28rem;
  }

  .s-caps__card {
    height: auto;
    flex-direction: column;
    padding: 0.28rem 0.24rem;
  }

  .s-caps__info h3 {
    font-size: 0.3rem;
  }

  .s-caps__info li span {
    font-size: 0.22rem;
  }

  .s-caps__pic {
    width: 100%;
    height: auto;
    margin-top: 0.2rem;
  }

  .s-caps__more {
    margin-top: 0.2rem;
  }

  .s-mix {
    padding: 0.72rem 0 0.64rem;
  }

  .s-mix__tabs {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .s-mix__tabs::-webkit-scrollbar {
    display: none;
  }

  .s-mix__bar {
    bottom: 0;
  }

  .s-mix__tab {
    flex: 0 0 auto;
    white-space: nowrap;
    margin: 0;
    padding: 0.16rem 0.2rem 0.2rem;
    font-size: 0.24rem;
  }

  .s-mix__view {
    margin-top: 0.28rem;
  }

  .s-mix__track img {
    width: 100%;
    height: auto;
  }
}

.k-wrap {
  width: 12rem;
  max-width: calc(100% - 0.48rem);
  margin: 0 auto;
}

.k-hero {
  position: relative;
  height: 5.35rem;
  overflow: hidden;
  background: #274be0;
}

.k-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.k-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

.k-hero__copy {
  align-self: flex-start;
  padding-top: 1.15rem;
}

.k-hero__copy h1 {
  margin: 0;
  font-size: 0.42rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.k-hero__copy p {
  margin: 0.1rem 0 0;
  font-size: 0.22rem;
  line-height: 1;
  color: #ffffff;
}

.k-hero__copy p:first-of-type {
  margin-top: 0.34rem;
}

.k-hero__cta {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.14rem 0.24rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #825a02;
  background: #ffb001;
  border: none;
  border-radius: 0.23rem;
  text-decoration: none;
  transition: opacity var(--duration-fast);
}

.k-hero__cta:hover {
  opacity: 0.9;
}

.k-hero__pic {
  display: block;
  width: 6.59rem;
  max-width: 52%;
  height: auto;
  pointer-events: none;
}

.k-ind {
  overflow: hidden;
  padding: 0.95rem 0 0.85rem;
  background: #e6f1ff;
}

.k-ind h2,
.k-show h2 {
  margin: 0;
  font-size: 0.36rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.k-ind h2 {
  color: #333333;
}

.k-ind__tabs {
  position: relative;
  display: flex;
  height: 0.64rem;
  margin-top: 0.6rem;
  overflow: hidden;
  background: #f7fbff;
  border-radius: 0.04rem;
}

.k-ind__bar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  height: 100%;
  background: #2f54eb;
  pointer-events: none;
  opacity: 0;
  will-change: transform, width;
}

.k-ind__bar.is-ready,
.k-show__bar.is-ready {
  opacity: 1;
}

.k-ind__tab {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
  padding: 0;
  font-size: 0.18rem;
  line-height: 1;
  color: #474747;
  background: none;
  border: none;
  cursor: pointer;
}

.k-ind__tab.is-active {
  color: #ffffff;
}

.k-ind__bar:not(.is-ready) ~ .k-ind__tab.is-active {
  background: #2f54eb;
}

.k-ind__view,
.k-show__view {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.k-ind__view {
  margin-top: 0.1rem;
}

.k-ind__track,
.k-show__track {
  display: flex;
}

.k-ind__panel,
.k-show__panel {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
}

.k-ind__panel {
  padding: 0 0.43rem;
}

.k-ind__top {
  display: flex;
}

.k-ind__pic {
  display: block;
  flex-shrink: 0;
  width: 5.96rem;
  height: 3.76rem;
  object-fit: cover;
}

.k-ind__info {
  padding: 0.66rem 0 0 0.52rem;
}

.k-ind__info h3 {
  margin: 0;
  font-size: 0.26rem;
  font-weight: 700;
  line-height: 1.2;
  color: #505050;
}

.k-ind__info ul {
  margin: 0.38rem 0 0;
  padding: 0;
  list-style: none;
}

.k-ind__info li {
  display: flex;
  align-items: center;
  margin-bottom: 0.13rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #636363;
}

.k-ind__info li i {
  flex-shrink: 0;
  width: 0.06rem;
  height: 0.06rem;
  background: #28b446;
  border-radius: 50%;
}

.k-ind__info li span {
  padding-left: 0.1rem;
}

.k-ind__cta {
  display: inline-block;
  margin-top: 0.44rem;
  padding: 0.21rem 0.79rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #ffffff;
  background: #273dc6;
  border-radius: 0.08rem;
  text-decoration: none;
  transition: background var(--duration-fast);
}

.k-ind__cta:hover,
.k-grid__more:hover,
.k-show__cta:hover {
  background: #081da0;
}

.k-ind__feats {
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
  margin-top: 0.49rem;
}

.k-ind__feat {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.k-ind__feat img {
  display: block;
  width: 100%;
  height: 2.32rem;
  object-fit: cover;
}

.k-ind__feat h3 {
  margin: 0.34rem 0 0;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 1;
  color: #505050;
}

.k-ind__feat p {
  margin: 0.1rem 0 0;
  font-size: 0.16rem;
  line-height: 1.3;
  color: #8e8e8e;
}

.k-night {
  position: relative;
  min-height: 8.35rem;
  overflow: hidden;
  padding-bottom: 0.48rem;
}

.k-night__split {
  position: absolute;
  inset: 0;
  display: flex;
}

.k-night__col {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.k-night__band--dark {
  height: 3.3rem;
  background: #00152a;
}

.k-night__band--mist {
  flex: 1;
  background: #f5f6fb;
}

.k-night__band--blue {
  height: 6.46rem;
  background: #2f54eb;
}

.k-night__band--white {
  flex: 1;
  background: #ffffff;
}

.k-night__inner {
  position: relative;
  z-index: 1;
  padding-top: 1.12rem;
  box-sizing: border-box;
}

.k-night__quote {
  position: absolute;
  right: -0.2rem;
  top: 1.12rem;
  width: 0.36rem;
  height: 0.28rem;
}

.k-night h2 {
  margin: 0;
  font-size: 0.4rem;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.k-night__body {
  display: grid;
  grid-template-columns: 7.22rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  margin-top: 0.56rem;
}

.k-night__device {
  position: relative;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  overflow: hidden;
  background: #ffc400;
  border: 0.06rem solid #1a1a1a;
  border-radius: 0.18rem;
}

.k-night__device::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.05rem;
  z-index: 2;
  width: 0.42rem;
  height: 0.08rem;
  background: #1a1a1a;
  border-radius: 0.04rem;
  transform: translateX(-50%);
}

.k-night__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.28rem 0.24rem 0.12rem 0.28rem;
  color: #ffffff;
}

.k-night__brand {
  display: flex;
  align-items: center;
}

.k-night__brand > span {
  font-size: 0.28rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}

.k-night__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 0.16rem;
  height: 0.12rem;
  margin-left: 0.1rem;
}

.k-night__burger span {
  display: block;
  height: 2px;
  background: #ffffff;
}

.k-night__links {
  display: flex;
  align-items: center;
  gap: 0.14rem;
  font-size: 0.1rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.k-night__search {
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  margin-left: 0.02rem;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0.05rem 0.05rem 0 -0.03rem #ffffff;
}

.k-night__viewport {
  flex: 1;
  width: 100%;
  min-height: 2.97rem;
  height: 3.2rem;
  margin: 0;
  padding: 0 0 0.22rem 0.22rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  box-sizing: border-box;
}

.k-night__viewport.is-dragging {
  cursor: grabbing;
}

.k-night__track {
  display: flex;
  gap: 0.12rem;
  height: 100%;
  will-change: transform;
}

.k-night__slide {
  display: block;
  flex: 0 0 4.95rem;
  width: 4.95rem;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 0.08rem;
}

.k-night__ctrl {
  display: flex;
  align-items: center;
  grid-column: 1;
  grid-row: 2;
  margin-top: 0.36rem;
  padding: 0 0.08rem;
}

.k-night__idx {
  width: 0.4rem;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1;
  color: #6783f5;
}

.k-night__rail {
  position: relative;
  align-self: center;
  width: 4.2rem;
  height: 1px;
  margin-left: 0.12rem;
  background: rgba(181, 189, 220, 0.45);
}

.k-night__thumb {
  position: absolute;
  left: 0;
  top: -1px;
  width: 16.666%;
  height: 3px;
  background: #6783f5;
  border-radius: 1px;
  will-change: transform;
}

.k-night__btns {
  display: flex;
  gap: 0.16rem;
  margin-left: auto;
}

.k-night__btn {
  position: relative;
  width: 0.36rem;
  height: 0.36rem;
  padding: 0;
  background: #fefefe;
  border: 1px solid #f0f0f1;
  border-radius: 50%;
  cursor: pointer;
}

.k-night__btn:hover {
  background: #fafafa;
  border-color: #c6c6c9;
}

.k-night__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.08rem;
  height: 0.08rem;
  border-left: 1px solid #67676f;
  border-bottom: 1px solid #67676f;
  transform: translate(-30%, -50%) rotate(45deg);
}

.k-night__btn--next::before {
  transform: translate(-70%, -50%) rotate(-135deg);
}

.k-night__aside {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  margin-left: 0;
  padding: 0.36rem 0.16rem 0.32rem 0.4rem;
  background: #2f54eb;
  box-sizing: border-box;
}

.k-night__copies {
  position: relative;
  min-height: 2.8rem;
}

.k-night__copy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.k-night__copy.is-on {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.k-night__lead {
  margin: 0;
  font-size: 0.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.k-night__desc {
  margin: 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #eaeaea;
}

.k-night__lead + .k-night__desc {
  margin-top: 0.2rem;
}

.k-night__desc + .k-night__desc {
  margin-top: 0.06rem;
}

.k-night__line {
  width: 1.9rem;
  height: 1px;
  margin-top: 0.2rem;
  background: rgba(234, 234, 234, 0.53);
}

.k-night__meta {
  margin: 0.28rem 0 0;
  font-size: 0.16rem;
  line-height: 1.4;
  color: #d6d6d6;
}

.k-night__meta + .k-night__meta {
  margin-top: 0.06rem;
}

.k-night__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 0.14rem 0.16rem 0.14rem 0.21rem;
  font-size: 0.14rem;
  line-height: 1;
  color: #dddddd;
  background: #273dc6;
  border-radius: 0 5px 5px 5px;
  text-decoration: none;
  transition: background var(--duration-fast), color var(--duration-fast);
}

.k-night__cta:hover {
  color: #2f2f2f;
  background: #ffc801;
}

.k-night__cta img {
  width: 0.15rem;
  height: 0.07rem;
  margin-left: 0.16rem;
}

.k-grid {
  padding: 0.63rem 0 1.03rem;
  background: #ffffff;
}

.k-grid__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.k-card {
  width: 5.7rem;
  margin-bottom: 0.42rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f9f9f9;
  border-radius: 0.08rem;
  box-shadow: 0 0 0.2rem rgba(135, 133, 147, 0.15);
}

.k-card__cover {
  height: 2.9rem;
  overflow: hidden;
}

.k-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k-card__body {
  position: relative;
  padding: 0.32rem 0.4rem 0.52rem;
}

.k-card__body h3 {
  margin: 0;
  font-size: 0.26rem;
  font-weight: 700;
  line-height: 1.3;
  color: #505050;
}

.k-card__body > p {
  margin: 0.06rem 0 0;
  font-size: 0.16rem;
  line-height: 1.3;
  color: #8e8e8e;
}

.k-card__rule {
  display: block;
  width: 1.4rem;
  height: 1px;
  margin-top: 0.19rem;
  background: #e4e4e4;
}

.k-card__body ul {
  margin: 0.33rem 0 0;
  padding: 0;
  list-style: none;
}

.k-card__body li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 2.4rem;
  margin-bottom: 0.12rem;
  font-size: 0.16rem;
  line-height: 1;
  color: #636363;
}

.k-card__body li b {
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 0.24rem;
  color: #ff7f2a;
}

.k-card__body li i {
  margin-left: 0.06rem;
  font-size: 0.16rem;
  font-style: normal;
  color: #636363;
}

.k-card__body li em {
  font-style: normal;
  color: #ff7f2a;
}

.k-card__more {
  position: absolute;
  right: 0.47rem;
  bottom: 0.37rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.31rem;
  height: 0.31rem;
  background: #f6f7f9;
  border-radius: 50%;
}

.k-card__more img,
.k-card__go img {
  width: 0.12rem;
  height: 0.08rem;
}

.k-card__go {
  position: absolute;
  right: 0.26rem;
  bottom: 0.37rem;
  display: flex;
  align-items: center;
  width: 0.93rem;
  height: 0.31rem;
  padding-left: 0.12rem;
  font-size: 0.12rem;
  line-height: 1;
  color: #ffffff;
  background: #2254f4;
  border-radius: 0.16rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
}

.k-card__go img {
  margin-left: 0.08rem;
}

.k-card:hover .k-card__more {
  visibility: hidden;
}

.k-card:hover .k-card__go {
  opacity: 1;
  visibility: visible;
}

.k-grid__more,
.k-show__cta {
  display: block;
  width: fit-content;
  margin: 0.45rem auto 0;
  padding: 0.21rem 0.43rem;
  font-size: 0.18rem;
  line-height: 1;
  color: #ffffff;
  background: #273dc6;
  border-radius: 0.08rem;
  text-decoration: none;
  transition: background var(--duration-fast);
}

.k-grid__more {
  margin-top: 0.45rem;
}

.k-show {
  position: relative;
  overflow: hidden;
  padding: 0.8rem 0 0.9rem;
  background: #1b1d33;
}

.k-show__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.k-show__inner {
  position: relative;
  z-index: 1;
}

.k-show h2 {
  color: #ffffff;
}

.k-show__tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 0.63rem;
  padding: 0 0.1rem 0.19rem;
  border-bottom: 1px solid #eaebf4;
}

.k-show__bar {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 1;
  height: 2px;
  background: #ffffff;
  pointer-events: none;
  opacity: 0;
  will-change: transform, width;
}

.k-show__tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 1.81rem;
  padding: 0;
  font-size: 0.18rem;
  line-height: 1;
  color: #aaaaaa;
  background: none;
  border: none;
  cursor: pointer;
}

.k-show__tab.is-active {
  color: #ffffff;
}

.k-show__tab img {
  width: 0.36rem;
  height: 0.23rem;
  margin-right: 0.07rem;
  object-fit: contain;
}

.k-show__view {
  height: 4.83rem;
  margin-top: 0;
  background: rgba(40, 40, 40, 0.33);
  border: 1px solid rgba(177, 177, 177, 0.33);
  border-radius: 0.09rem;
}

.k-show__track {
  height: 100%;
}

.k-show__panel {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  height: 100%;
}

.k-show__panel img {
  display: block;
  object-fit: cover;
}

.k-show__panel--logo,
.k-show__panel--banner {
  padding: 0.66rem 1.06rem 0;
}

.k-show__panel--logo img,
.k-show__panel--banner img {
  width: 2.95rem;
  height: 1.57rem;
  margin-bottom: 0.24rem;
  object-fit: contain;
}

.k-show__panel--page {
  padding: 0.57rem 1.01rem 0;
}

.k-show__panel--page img {
  width: 2.34rem;
  height: 3.81rem;
}

.k-show__panel--thumb {
  padding: 0.56rem 1.78rem 0;
}

.k-show__panel--thumb img {
  width: 1.84rem;
  height: 1.75rem;
  margin-bottom: 0.17rem;
}

.k-show__cta {
  margin-top: 0.35rem;
}

#kConsult {
  scroll-margin-top: 0.8rem;
}

@media (max-width: 768px) {
  .k-wrap {
    width: 100%;
    max-width: none;
    padding: 0 0.24rem;
    box-sizing: border-box;
  }

  .k-hero {
    height: auto;
    min-height: 7.2rem;
  }

  .k-hero__inner {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 7.2rem;
    padding: 0.56rem 0 3.4rem;
  }

  .k-hero__copy {
    position: relative;
    z-index: 2;
    align-self: stretch;
    padding: 0;
    text-align: center;
  }

  .k-hero__copy h1 {
    font-size: 0.4rem;
    line-height: 1.3;
  }

  .k-hero__copy p {
    font-size: 0.24rem;
    line-height: 1.5;
  }

  .k-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    margin: 0.28rem auto 0;
    padding: 0.2rem 0.36rem;
    font-size: 0.26rem;
    box-sizing: border-box;
  }

  .k-hero__pic {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: 92%;
    max-width: 5.8rem;
    height: 3.2rem;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .k-ind {
    padding: 0.72rem 0 0.64rem;
  }

  .k-ind h2,
  .k-night h2,
  .k-show h2 {
    font-size: 0.34rem;
    line-height: 1.4;
  }

  .k-ind__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.36rem;
  }

  .k-ind__tabs::-webkit-scrollbar {
    display: none;
  }

  .k-ind__tab {
    flex: 0 0 auto;
    padding: 0.16rem 0.2rem 0.2rem;
    font-size: 0.24rem;
    white-space: nowrap;
  }

  .k-ind__panel {
    padding: 0;
  }

  .k-ind__top {
    flex-direction: column;
    gap: 0.2rem;
  }

  .k-ind__pic {
    width: 100%;
    height: auto;
    border-radius: 0.12rem;
  }

  .k-ind__info {
    padding: 0.08rem 0 0;
  }

  .k-ind__info h3 {
    font-size: 0.3rem;
    line-height: 1.4;
  }

  .k-ind__info li {
    font-size: 0.24rem;
  }

  .k-ind__cta {
    display: flex;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    margin: 0.24rem auto 0;
    padding: 0.2rem 0.24rem;
    font-size: 0.26rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .k-ind__feats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.1rem;
    margin-top: 0.2rem;
  }

  .k-ind__feat {
    padding: 0.12rem 0.08rem 0.16rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 0.1rem;
  }

  .k-ind__feat img {
    width: 100%;
    height: 1.28rem;
    object-fit: cover;
    border-radius: 0.06rem;
  }

  .k-ind__feat h3 {
    margin-top: 0.12rem;
    font-size: 0.22rem;
    line-height: 1.3;
  }

  .k-ind__feat p {
    margin-top: 0.06rem;
    font-size: 0.18rem;
    line-height: 1.35;
  }

  .k-night {
    height: auto;
    min-height: 0;
    padding-bottom: 0.48rem;
  }

  .k-night__inner {
    height: auto;
    padding: 0.64rem 0 0.4rem;
  }

  .k-night__quote {
    display: none;
  }

  .k-night__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.32rem;
    margin-top: 0.2rem;
  }

  .k-night__device {
    width: 100%;
  }

  .k-night__links {
    display: none;
  }

  .k-night__viewport {
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow: hidden;
  }

  .k-night__track {
    gap: 0.16rem;
  }

  .k-night__slide {
    flex: 0 0 calc(100% - 0.64rem);
    width: calc(100% - 0.64rem);
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0.08rem;
  }

  .k-night__ctrl {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0.2rem;
    padding-left: 0;
    order: 3;
    gap: 0.16rem;
  }

  .k-night__rail {
    flex: 1;
    width: auto;
    overflow-x: auto;
  }

  .k-night__aside {
    width: 100%;
    padding: 0.32rem 0.24rem;
    order: 2;
    border-radius: 0.12rem;
  }

  .k-night__copies {
    min-height: 0;
  }

  .k-night__cta {
    display: flex;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    margin: 0.24rem auto 0;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .k-grid {
    padding: 0.64rem 0 0.72rem;
  }

  .k-grid__list {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
  }

  .k-card {
    width: 100%;
    margin: 0;
  }

  .k-card__body {
    padding: 0.28rem 0.24rem 0.32rem;
  }

  .k-card__body h3 {
    font-size: 0.3rem;
  }

  .k-card__body > p,
  .k-card__body li {
    font-size: 0.24rem;
  }

  .k-card__body ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.12rem;
  }

  .k-card__body li {
    width: auto;
    max-width: none;
  }

  .k-grid__more {
    display: flex;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    margin: 0.36rem auto 0;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  .k-show {
    padding: 0.72rem 0 0.8rem;
  }

  .k-show__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.08rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .k-show__tabs::-webkit-scrollbar {
    display: none;
  }

  .k-show__tab {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    padding: 0.16rem 0.2rem;
    font-size: 0.24rem;
  }

  .k-show__view,
  .k-show__track,
  .k-show__panel {
    height: auto;
  }

  .k-show__panel--logo,
  .k-show__panel--banner,
  .k-show__panel--page,
  .k-show__panel--thumb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.16rem;
    padding: 0.24rem;
  }

  .k-show__panel--logo img,
  .k-show__panel--banner img,
  .k-show__panel--page img,
  .k-show__panel--thumb img {
    width: 100%;
    height: auto;
  }

  .k-show__cta {
    display: flex;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.8rem;
    margin: 0.32rem auto 0;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
}

.ab-wrap {
  width: 12rem;
  max-width: calc(100% - 0.48rem);
  margin: 0 auto;
}

.ab-hero {
  background: rgb(243, 247, 255);
}

.ab-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  box-sizing: border-box;
}

.ab-hero__copy {
  flex-shrink: 0;
  padding: 1.32rem 0 0.4rem 0.2rem;
}

.ab-hero__logo {
  display: block;
  width: 3.6rem;
  height: auto;
}

.ab-hero__copy h1 {
  margin: 0.33rem 0 0;
  font-size: 0.48rem;
  font-weight: 600;
  line-height: 1.5;
  color: #191919;
}

.ab-hero__pic {
  display: block;
  width: 6.4rem;
  max-width: 58%;
  height: auto;
}

.ab-chu,
.ab-office {
  background: #ffffff;
}

.ab-chu {
  padding: 0.83rem 0 1rem;
}

.ab-chu h2,
.ab-wm h2,
.ab-office h2 {
  margin: 0;
  font-size: 0.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: #191919;
  text-align: center;
}

.ab-chu__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
  margin-top: 1.09rem;
  padding-right: 0.35rem;
}

.ab-chu__pic {
  display: block;
  width: 5.4rem;
  max-width: 48%;
  height: auto;
}

.ab-chu__row p {
  width: 5.49rem;
  max-width: 48%;
  margin: 0;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 0.4rem;
  color: #191919;
}

.ab-wm {
  padding: 0.9rem 0 1rem;
  background: #f7f8fc;
}

.ab-wm__text {
  max-width: 11.62rem;
  margin: 0.42rem auto 0;
  font-size: 0.2rem;
  line-height: 0.36rem;
  color: #191919;
  text-align: justify;
}

.ab-wm__text p {
  margin: 0 0 0.36rem;
}

.ab-wm__text p:last-child {
  margin-bottom: 0.4rem;
}

.ab-wm__pic,
.ab-office__pic {
  display: block;
  width: 100%;
  height: auto;
}

.ab-office {
  padding: 0.8rem 0 1.2rem;
}

.ab-office h2 {
  margin-bottom: 0.47rem;
}

@media (max-width: 768px) {
  .ab-wrap {
    width: 100%;
    max-width: none;
    padding: 0 0.32rem;
    box-sizing: border-box;
  }

  .ab-hero {
    padding-bottom: 0.16rem;
  }

  .ab-hero__inner {
    flex-direction: column;
    min-height: 0;
    padding: 0.56rem 0 0.4rem;
  }

  .ab-hero__copy {
    padding: 0 0 0.28rem;
    text-align: center;
  }

  .ab-hero__logo {
    margin: 0 auto;
    width: 3.2rem;
  }

  .ab-hero__copy h1 {
    margin-top: 0.24rem;
    font-size: 0.4rem;
    line-height: 1.4;
  }

  .ab-hero__pic {
    width: 100%;
    max-width: 100%;
  }

  .ab-chu {
    padding: 0.56rem 0 0.72rem;
  }

  .ab-chu h2,
  .ab-wm h2,
  .ab-office h2 {
    font-size: 0.36rem;
  }

  .ab-chu__row {
    flex-direction: column;
    gap: 0.28rem;
    margin-top: 0.4rem;
    padding-right: 0;
  }

  .ab-chu__pic,
  .ab-chu__row p {
    width: 100%;
    max-width: 100%;
  }

  .ab-chu__row p {
    font-size: 0.26rem;
    line-height: 1.7;
  }

  .ab-wm {
    padding: 0.56rem 0 0.72rem;
  }

  .ab-wm__text {
    margin-top: 0.32rem;
    font-size: 0.26rem;
    line-height: 1.7;
  }

  .ab-wm__text p {
    margin-bottom: 0.28rem;
  }

  .ab-wm__pic {
    margin-top: 0.24rem;
    border-radius: 0.12rem;
  }

  .ab-office {
    padding: 0.56rem 0 0.8rem;
  }

  .ab-office h2 {
    margin-bottom: 0.32rem;
  }

  .ab-office__pic {
    border-radius: 0.12rem;
  }
}

.ct-hero {
  padding: 0.88rem 0 0.48rem;
  background: rgb(243, 247, 255);
  text-align: center;
}

.ct-hero h1 {
  margin: 0;
  font-size: 0.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #191919;
}

.ct-hero p {
  margin: 0.16rem 0 0;
  font-size: 0.18rem;
  line-height: 1.5;
  color: #666666;
}

.ct-main {
  padding: 0.72rem 0 1.2rem;
  background: #ffffff;
}

.ct-main__grid {
  display: flex;
  justify-content: center;
  gap: 0.48rem;
}

.ct-card {
  display: flex;
  flex: 0 1 4.8rem;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0.56rem 0.4rem 0.48rem;
  background: #f7f9fc;
  border-radius: 0.12rem;
  box-sizing: border-box;
  text-align: center;
}

.ct-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.64rem;
  height: 0.64rem;
  margin-bottom: 0.28rem;
  background: #2f54eb;
  border-radius: 50%;
}

.ct-card__qr {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.28rem;
  padding: 0.12rem;
  background: #ffffff;
  border-radius: 0.08rem;
  box-sizing: border-box;
}

.ct-card__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ct-card h2 {
  margin: 0;
  font-size: 0.24rem;
  font-weight: 600;
  line-height: 1.4;
  color: #191919;
}

.ct-card p {
  margin: 0.08rem 0 0;
  font-size: 0.16rem;
  line-height: 1.5;
  color: #666666;
}

.ct-card__phone {
  margin-top: 0.2rem;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2f54eb;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.ct-card__phone:hover {
  color: #1d39c4;
}

@media (max-width: 768px) {
  .ct-hero {
    padding: 0.56rem 0 0.32rem;
  }

  .ct-hero h1 {
    font-size: 0.32rem;
  }

  .ct-hero p {
    font-size: 0.15rem;
  }

  .ct-main {
    padding: 0.4rem 0 0.8rem;
  }

  .ct-main__grid {
    flex-direction: column;
    gap: 0.24rem;
  }

  .ct-card {
    flex: 1 1 auto;
    width: 100%;
    padding: 0.4rem 0.24rem;
  }

  .ct-card__phone {
    font-size: 0.28rem;
  }
}

.c-consult {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem;
}

.c-consult[hidden] {
  display: none;
}

.c-consult__mask {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 56, 0.55);
  backdrop-filter: blur(4px);
}

.c-consult__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 7.2rem;
}

.c-consult__close {
  position: absolute;
  top: -0.12rem;
  right: -0.12rem;
  z-index: 2;
  width: 0.4rem;
  height: 0.4rem;
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0.06rem 0.18rem rgba(24, 47, 110, 0.18);
  cursor: pointer;
}

.c-consult__close::before,
.c-consult__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.16rem;
  height: 2px;
  background: #666666;
  transform-origin: center;
}

.c-consult__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.c-consult__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.c-consult__close:hover {
  background: #f5f7fb;
}

.c-consult__panel {
  overflow: hidden;
  background: linear-gradient(165deg, #f4f7ff 0%, #ffffff 42%, #ffffff 100%);
  border-radius: 0.2rem;
  box-shadow: 0 0.24rem 0.64rem rgba(24, 47, 110, 0.22);
}

.c-consult__head {
  padding: 0.48rem 0.48rem 0.28rem;
  text-align: center;
}

.c-consult__eyebrow {
  margin: 0;
  font-size: 0.14rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2f54eb;
}

.c-consult__head h3 {
  margin: 0.1rem 0 0;
  font-size: 0.32rem;
  font-weight: 700;
  line-height: 1.3;
  color: #191919;
}

.c-consult__sub {
  margin: 0.12rem auto 0;
  max-width: 4.8rem;
  font-size: 0.15rem;
  line-height: 1.5;
  color: #666666;
}

.c-consult__body {
  display: flex;
  gap: 0.24rem;
  padding: 0.12rem 0.4rem 0.48rem;
}

.c-consult__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 0.32rem 0.2rem 0.28rem;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 0.16rem;
  box-shadow: 0 0.08rem 0.24rem rgba(47, 84, 235, 0.06);
  text-align: center;
  box-sizing: border-box;
}

.c-consult__card--phone {
  background: linear-gradient(180deg, #3b63f0 0%, #2f54eb 100%);
  border-color: transparent;
  box-shadow: 0 0.12rem 0.28rem rgba(47, 84, 235, 0.28);
}

.c-consult__qr {
  width: 2rem;
  height: 2rem;
  padding: 0.1rem;
  background: #ffffff;
  border: 1px solid #eef2f8;
  border-radius: 0.12rem;
  box-sizing: border-box;
}

.c-consult__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-consult__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.64rem;
  height: 0.64rem;
  margin-bottom: 0.08rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.c-consult__card h4 {
  margin: 0.16rem 0 0;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #191919;
}

.c-consult__card--phone h4 {
  color: #ffffff;
}

.c-consult__card > p {
  margin: 0.08rem 0 0;
  font-size: 0.14rem;
  line-height: 1.4;
  color: #666666;
}

.c-consult__card--phone > p {
  color: rgba(255, 255, 255, 0.82);
}

.c-consult__tel {
  margin-top: 0.2rem;
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.c-consult__tel:hover {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .c-consult {
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.24rem;
    padding-bottom: max(0.32rem, env(safe-area-inset-bottom));
  }

  .c-consult__dialog {
    max-width: 100%;
  }

  .c-consult__close {
    top: -0.12rem;
    right: -0.04rem;
    width: 0.56rem;
    height: 0.56rem;
  }

  .c-consult__panel {
    border-radius: 0.24rem;
  }

  .c-consult__head {
    padding: 0.48rem 0.32rem 0.24rem;
  }

  .c-consult__eyebrow {
    font-size: 0.22rem;
  }

  .c-consult__head h3 {
    font-size: 0.36rem;
  }

  .c-consult__sub {
    max-width: none;
    font-size: 0.24rem;
    line-height: 1.5;
  }

  .c-consult__body {
    flex-direction: column;
    padding: 0.08rem 0.28rem 0.4rem;
    gap: 0.2rem;
  }

  .c-consult__card {
    padding: 0.36rem 0.24rem 0.32rem;
  }

  .c-consult__card h4 {
    font-size: 0.28rem;
  }

  .c-consult__card > p {
    font-size: 0.22rem;
  }

  .c-consult__qr {
    width: 2.8rem;
    height: 2.8rem;
  }

  .c-consult__phone-icon {
    width: 0.8rem;
    height: 0.8rem;
  }

  .c-consult__tel {
    font-size: 0.36rem;
  }
}

.c-float {
  position: fixed;
  right: 0.1rem;
  bottom: 1.8rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.14rem;
}

.c-float__wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1.4rem;
  padding: 0.12rem 0.1rem 0.1rem;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 0.1rem;
  box-shadow: 0 0.08rem 0.24rem rgba(24, 47, 110, 0.12);
  box-sizing: border-box;
}

.c-float__wechat img {
  display: block;
  width: 1.16rem;
  height: 1.16rem;
  object-fit: contain;
}

.c-float__wechat span {
  margin-top: 0.08rem;
  font-size: 0.13rem;
  line-height: 1.2;
  color: #333333;
}

.c-float__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  padding: 0.14rem 0.08rem;
  background: #2f54eb;
  border-radius: 0.1rem;
  box-shadow: 0 0.08rem 0.24rem rgba(47, 84, 235, 0.28);
  text-decoration: none;
  box-sizing: border-box;
  transition: background var(--duration-fast);
}

.c-float__phone:hover {
  background: #1d39c4;
}

.c-float__phone-label {
  font-size: 0.12rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
}

.c-float__phone strong {
  margin-top: 0.06rem;
  font-size: 0.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  word-break: break-all;
}

.c-float__top {
  position: relative;
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 50%;
  box-shadow: 0 0.06rem 0.18rem rgba(24, 47, 110, 0.12);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast), visibility var(--duration-fast), background var(--duration-fast);
}

.c-float__top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-float__top:hover {
  background: #f5f7fb;
}

.c-float__top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 0.12rem;
  height: 0.12rem;
  border-left: 2px solid #2f54eb;
  border-top: 2px solid #2f54eb;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
  .c-float {
    right: 0.16rem;
    bottom: calc(0.48rem + env(safe-area-inset-bottom, 0px));
    gap: 0.12rem;
  }

  .c-float__wechat {
    width: 1.6rem;
    padding: 0.12rem;
    border-radius: 0.12rem;
  }

  .c-float__wechat img {
    width: 1.28rem;
    height: 1.28rem;
  }

  .c-float__wechat span {
    margin-top: 0.08rem;
    font-size: 0.2rem;
  }

  .c-float__phone {
    width: 1.6rem;
    min-height: 1.1rem;
    padding: 0.14rem 0.08rem;
    border-radius: 0.12rem;
  }

  .c-float__phone-label {
    font-size: 0.18rem;
  }

  .c-float__phone strong {
    font-size: 0.2rem;
    line-height: 1.3;
  }

  .c-float__top {
    width: 0.72rem;
    height: 0.72rem;
  }

  .c-float__top::before {
    width: 0.16rem;
    height: 0.16rem;
  }
}

/* ==========================================================================
   Mobile polish (all pages)
   ========================================================================== */
@media screen and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
  }

  .c-header__menu-btn {
    width: 0.72rem;
    height: 0.72rem;
  }

  .c-header__phone {
    min-width: 0.72rem;
    min-height: 0.72rem;
    justify-content: center;
  }

  .c-header__phone-icon {
    width: 0.52rem;
    height: 0.52rem;
  }

  .c-footer__wechat {
    margin: 0.16rem auto 0;
  }

  .c-footer__wechat img {
    width: 2rem;
    height: 2rem;
  }

  .c-footer__wechat span {
    font-size: 0.24rem;
  }

  .g-faq {
    margin-top: 0.32rem;
    padding: 0.2rem 0.24rem;
  }

  .g-faq__item summary {
    gap: 0.16rem;
    min-height: 0.88rem;
    padding: 0.24rem 0;
    font-size: 0.28rem;
    line-height: 1.45;
  }

  .g-faq__item summary img {
    width: 0.36rem;
    height: 0.36rem;
    flex-shrink: 0;
  }

  .g-faq__item p {
    padding: 0 0 0.24rem 0.52rem;
    font-size: 0.24rem;
    line-height: 1.6;
  }

  .g-btn,
  .y-btn,
  .geo-btn,
  .s-hero__cta,
  .k-hero__cta,
  .c-banner__btn,
  .c-sec2__btn,
  .c-sec3__btn,
  .c-sec5__btn,
  .c-sec8__btn {
    min-height: 0.8rem;
    padding-left: 0.36rem;
    padding-right: 0.36rem;
    font-size: 0.26rem;
    box-sizing: border-box;
  }

  .g-btn,
  .geo-btn,
  .s-hero__cta,
  .k-hero__cta {
    width: 100%;
    max-width: 5.6rem;
    justify-content: center;
  }

  .g-sec__title,
  .y-sec__title,
  .t-sec__title {
    font-size: 0.36rem !important;
    line-height: 1.4 !important;
  }

  .g-sec__subtitle {
    font-size: 0.24rem !important;
    line-height: 1.5 !important;
  }

  .g-eco__grid,
  .g-service__grid,
  .g-cases__list {
    grid-template-columns: 1fr !important;
  }

  .g-traffic__industries {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.16rem;
  }

  .g-tabs__nav,
  .s-cates__nav,
  .k-ind__tabs,
  .y-spots__nav,
  .k-show__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .g-tabs__nav::-webkit-scrollbar,
  .s-cates__nav::-webkit-scrollbar,
  .k-ind__tabs::-webkit-scrollbar,
  .y-spots__nav::-webkit-scrollbar,
  .k-show__tabs::-webkit-scrollbar {
    display: none;
  }

  .geo-hero h1 {
    font-size: 0.44rem;
    line-height: 1.35;
  }

  .geo-hero p,
  .geo-sec__subtitle {
    font-size: 0.26rem !important;
    line-height: 1.55 !important;
  }

  .geo-sec__title {
    font-size: 0.34rem !important;
  }

  .geo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.6rem;
    margin-top: 0.36rem !important;
  }

  .geo-pain__card,
  .geo-step,
  .geo-aud__feats li {
    padding: 0.28rem 0.24rem;
  }

  .geo-pain__go,
  .geo-plus {
    width: 0.56rem;
    height: 0.56rem;
  }

  .geo-faq__item summary,
  .geo-faq__link {
    font-size: 0.26rem;
    line-height: 1.5;
  }

  .s-hero__copy h1 {
    font-size: 0.42rem !important;
  }

  .s-hero__copy p,
  .s-books__item,
  .s-cates__cta,
  .s-caps__more {
    font-size: 0.26rem;
  }

  .s-hero__cta,
  .s-cates__cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.84rem;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
  }

  .s-books__item {
    width: 100%;
  }

  .s-cates__tab {
    padding: 0.2rem 0.28rem;
    font-size: 0.24rem;
  }

  .s-caps__more {
    display: inline-flex;
    min-height: 0.72rem;
    align-items: center;
  }

  .k-hero__copy h1 {
    font-size: 0.4rem !important;
  }

  .k-hero__copy p,
  .k-ind__info p,
  .k-ind__info li,
  .k-card__body p,
  .k-card__body li {
    font-size: 0.24rem !important;
    line-height: 1.55 !important;
  }

  .k-hero__cta,
  .k-ind__cta,
  .k-show__cta,
  .k-grid__more {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 5.6rem;
    min-height: 0.84rem;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 0.26rem;
    box-sizing: border-box;
  }

  .k-grid__list {
    gap: 0.28rem 0;
  }

  .k-card {
    width: 100% !important;
    margin-bottom: 0.28rem;
  }

  .k-card__body {
    padding: 0.28rem 0.24rem 0.32rem;
  }

  .k-card__body h3 {
    font-size: 0.3rem;
    line-height: 1.4;
  }

  .k-card__body ul li {
    width: auto !important;
    max-width: 100%;
  }

  .k-ind__tab {
    padding: 0.18rem 0.24rem;
    font-size: 0.24rem;
  }

  .k-night__aside {
    padding: 0.36rem 0.28rem !important;
  }

  .k-night__lead {
    font-size: 0.3rem !important;
  }

  .k-night__desc,
  .k-night__meta {
    font-size: 0.24rem !important;
    line-height: 1.5 !important;
  }

  .f-cases__btn,
  .f-formats__btn,
  .t-cases__btn {
    width: 0.64rem !important;
    height: 0.64rem !important;
  }

  .t-ind__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .y-btn--pill,
  .y-btn--block,
  .y-btn--rect {
    min-height: 0.8rem;
    font-size: 0.26rem;
  }

  .c-sec2__grid {
    grid-template-columns: 1fr !important;
  }

  .c-sec6__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .c-sec3__flow-steps {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.28rem 0.2rem !important;
  }

  .c-sec3__flow-num {
    font-size: 0.48rem !important;
  }

  .c-banner__title {
    font-size: 0.4rem !important;
    line-height: 1.35 !important;
  }

  .c-banner__desc {
    font-size: 0.26rem !important;
    line-height: 1.5 !important;
  }

  .c-banner__btn {
    min-width: 3.2rem;
  }

  .g-form__fields,
  .y-form__fields {
    flex-direction: column;
  }

  .g-form__fields label,
  .y-form__fields label,
  .g-form__fields input,
  .y-form__fields input,
  .g-form__fields button,
  .y-form__fields button {
    width: 100% !important;
  }

  .g-form__fields button,
  .y-form__fields button,
  .k-form button,
  button[type="submit"] {
    min-height: 0.88rem;
    font-size: 0.28rem;
  }
}
