
.landing-header[data-v-8e0d1632] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  min-width: 1200px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

/* 不支持 backdrop-filter 时提高不透明度，避免内容透出发糊 */
@supports not (backdrop-filter: blur(1px)) {
.landing-header[data-v-8e0d1632] {
    background: rgba(255, 255, 255, 0.92);
}
}
.landing-header__inner[data-v-8e0d1632] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}
.landing-header__logo[data-v-8e0d1632] {
  display: flex;
  align-items: center;
}
.landing-header__logo > a[data-v-8e0d1632]:first-child {
  display: block;
  width: 193px;
  height: 37px;
}
.landing-header__logo img[data-v-8e0d1632] {
  display: block;
  width: 193px;
  height: 37px;
}
.landing-header__title[data-v-8e0d1632] {
  display: block;
  padding: 0 20px;
  line-height: 37px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  font-family: inherit;
  cursor: default;
  text-decoration: none;
}
.landing-header__nav[data-v-8e0d1632] {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-family: inherit;
}
.landing-header__link[data-v-8e0d1632] {
  display: block;
  margin: 0 8px;
  padding: 0 5px;
  line-height: 30px;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  border-top: 2px solid rgba(42, 90, 249, 0);
  border-bottom: 2px solid rgba(42, 90, 249, 0);
}
.landing-header__link[data-v-8e0d1632]:hover {
  color: rgba(42, 90, 249, 1);
}


.hero-section[data-v-70aea6fe] {
  width: 100%;
}
.hero-image[data-v-70aea6fe] {
  display: block;
  width: 100%;
  height: calc(638px * var(--hero-scale));
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}


.lazy-section__placeholder[data-v-c65a5706] {
  width: 100%;
}

/* global-landing 页面样式变量与通用布局（替代 Tailwind utility） */
.global-landing-page,
.global-landing-page *,
.global-landing-page *::before,
.global-landing-page *::after {
  box-sizing: border-box;
}

.global-landing-page {
  /* 数值回退：旧浏览器不支持 CSS min()，由 JS（landingScale.js）写入真实比例 */
  --content-max: 1560px;
  --hero-max: 1920px;
  --page-scale: 1;
  --hero-scale: 1;
  --section-padding-x: 16px;

  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 现代浏览器可用纯 CSS；旧浏览器忽略，继续用上面的数值 + JS */
@supports (width: min(1px, 2px)) {
  .global-landing-page {
    --page-scale: min(1, 100vw / 1560px);
    --hero-scale: min(1, 100vw / 1920px);
    --section-padding-x: calc(16px * var(--page-scale));
  }
}

.global-landing-page .section-full {
  width: 100%;
}

.global-landing-page .section-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: var(--content-max);
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}

.global-landing-page .bg-brand-red {
  background-color: #e60012;
}

.global-landing-page .bg-white {
  background-color: #fff;
}

.global-landing-page .overflow-hidden {
  overflow: hidden;
}

.global-landing-page .relative {
  position: relative;
}

.global-landing-page .pointer-events-none {
  pointer-events: none;
}

.global-landing-page .icon-sm {
  width: 1rem;
  height: 1rem;
}

