/* 国产替代 — 对齐 https://www.xiaoshouyi.com/88361-2 */
.scn-loc {
  --loc-blue: #0564f5;
  --loc-ink: #1b2239;
  --loc-title: #2c2e30;
  --loc-muted: #333;
  --loc-q-bg: #f4fbfe;
  --loc-cap-bg: #f0f5fa;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--loc-ink);
  background: #fff;
}

.scn-loc .container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.loc-h2 {
  position: relative;
  margin: 0 0 45px;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: 48px;
  color: var(--loc-title);
}

.loc-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--loc-blue);
  border-radius: 2px;
}

.loc-h2--sm {
  font-size: 26px;
  margin-bottom: 64px;
  font-weight: 400;
}

.loc-h2--sm strong { font-weight: 700; }

.loc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  height: 55px;
  padding: 0 22px;
  border-radius: 1px;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity .2s, background .2s, color .2s;
}

.loc-btn--primary {
  background: var(--loc-blue);
  color: #fff;
  border: 1px solid var(--loc-blue);
}

.loc-btn--primary:hover { opacity: .92; color: #fff; }

.loc-btn--ghost {
  background: #fff;
  color: var(--loc-blue);
  border: 1px solid var(--loc-blue);
  min-width: 203px;
}

.loc-btn--ghost:hover {
  background: rgba(5, 100, 245, .06);
  color: var(--loc-blue);
}

.loc-sec { padding: 0 0 64px; }
.loc-sec__cta { margin-top: 40px; text-align: center; }

/* ===== Hero ===== */
.loc-hero {
  position: relative;
  height: 526px;
  overflow: hidden;
  background: #eef5fb;
}

.loc-hero__bg {
  position: absolute;
  inset: 0;
  background: center top / cover no-repeat;
}

.loc-hero__stage {
  position: relative;
  z-index: 1;
  width: 1200px;
  max-width: none;
  height: 526px;
  margin: 0 auto;
}

.loc-hero__copy {
  position: absolute;
  left: 0;
  top: 0;
  width: 640px;
  height: 100%;
}

.loc-hero__title {
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

.loc-hero__line {
  display: block;
  white-space: nowrap;
}

.loc-hero__line--1 {
  position: absolute;
  left: 0;
  top: 92px;
  font-size: 50px;
  line-height: 61px;
}

.loc-hero__line--1 em {
  font-style: normal;
  font-weight: 700;
}

.loc-hero__line--1 .is-ink { color: var(--loc-ink); }
.loc-hero__line--1 .is-blue { color: var(--loc-blue); }

.loc-hero__line--2 {
  position: absolute;
  left: 0;
  top: 175px;
  font-size: 50px;
  line-height: 61px;
  color: var(--loc-ink);
}

.loc-hero__stats {
  position: absolute;
  left: 0;
  top: 278px;
  display: flex;
  gap: 12px;
}

.loc-hero__stat {
  width: 262px;
  height: 98px;
  padding: 20px 18px 0 28px;
  box-sizing: border-box;
  background: center / 262px 98px no-repeat;
}

.loc-hero__stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 25px;
  color: var(--loc-blue);
}

.loc-hero__stat strong i {
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
}

.loc-hero__stat span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.35;
  color: #000;
  white-space: pre-line;
}

/* ===== Questions ===== */
.loc-q {
  background: var(--loc-q-bg);
  padding: 71px 0 72px;
}

.loc-q__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}

.loc-q__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(5, 100, 245, .1);
  min-height: 210px;
}

.loc-q__head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0 25%, transparent 25% 50%, rgba(255, 255, 255, .08) 50% 75%, transparent 75%),
    linear-gradient(135deg, #1b6ff5, #0564f5 55%, #0a58d6);
  background-size: 56px 56px, auto;
}

.loc-q__icon-wrap {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 30, 90, .18);
}

.loc-q__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.loc-q__head h3 {
  margin: 0;
  flex: 1;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.loc-q__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 24px 24px;
  background: #fff;
}

.loc-q__check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--loc-blue);
  position: relative;
}

.loc-q__check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.loc-q__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

/* ===== Stories ===== */
.loc-stories {
  background: #fff;
  padding-top: 71px;
}

.loc-stories__viewport {
  position: relative;
  overflow: visible;
  border-radius: 8px;
  margin: 0 52px;
}

.loc-stories__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
}

.loc-story {
  display: none;
  grid-template-columns: 1.05fr 1fr;
  background: #f7fafc;
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
}

.loc-story.is-active { display: grid; }

.loc-story__cover {
  position: relative;
  min-height: 320px;
  background: #dfe8f2 center / cover no-repeat;
}

.loc-story__logo {
  position: absolute;
  left: 20px;
  bottom: 20px;
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  padding: 6px 10px;
  border-radius: 4px;
}

.loc-story__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-story__body h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--loc-title);
}

.loc-story__body p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.loc-story__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 18px;
  border-radius: 2px;
  background: var(--loc-blue);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.loc-story__btn:hover { opacity: .9; color: #fff; }

.loc-stories__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95) center / 12px no-repeat;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  cursor: pointer;
  z-index: 2;
}

.loc-stories__nav--prev {
  left: -52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M8 1L3 6l5 5' stroke='%230564f5' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.loc-stories__nav--next {
  right: -52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M4 1l5 5-5 5' stroke='%230564f5' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.loc-stories__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.loc-stories__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #c9d3e0;
  cursor: pointer;
  padding: 0;
}

.loc-stories__dot.is-active { background: var(--loc-blue); }

/* ===== Dimensions ===== */
.loc-dim {
  background: #fff;
  padding-top: 40px;
}

.loc-dim__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loc-dim__grid li {
  text-align: center;
  font-size: 16px;
  color: var(--loc-title);
  font-weight: 500;
}

.loc-dim__grid img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto 14px;
  object-fit: contain;
}

/* ===== Capabilities ===== */
.loc-cap {
  background: var(--loc-cap-bg);
  padding: 72px 0 80px;
}

.loc-cap__box {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(196, 196, 196, .48);
  padding: 0 40px 48px;
  min-height: 520px;
}

.loc-cap__nav {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 44px 20px 22px;
  border-bottom: 2px solid #e7eaee;
}

.loc-cap__tab {
  position: relative;
  width: 10em;
  max-width: 33%;
  padding-top: 44px;
  text-align: center;
  font-size: 21px;
  line-height: 29px;
  color: var(--loc-title);
  cursor: pointer;
  background: var(--tab-icon) center top / 30px no-repeat;
  transition: .2s;
}

.loc-cap__tab span { font-size: 21px; }

.loc-cap__tab.is-active {
  font-weight: 700;
  background-image: var(--tab-icon-on);
}

.loc-cap__tab.is-active::after {
  content: "";
  display: block;
  width: 186px;
  max-width: 100%;
  border-bottom: 2px solid #2f5bea;
  margin: 22px auto 0;
}

.loc-cap__panel {
  display: none;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
}

.loc-cap__panel.is-active { display: grid; }

.loc-cap__media img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
}

.loc-cap__lead {
  margin: 0 0 24px;
  font-size: 23px;
  font-weight: 500;
  line-height: 38px;
  color: #222;
}

.loc-cap__points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.loc-cap__points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #383838;
}

.loc-cap__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--loc-blue);
}

/* ===== Partners ===== */
.loc-partners {
  background: #fff;
  padding: 72px 0 40px;
}

.loc-partners__img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: auto;
}

/* ===== Try CTA ===== */
.loc-try {
  background: #f5f8fc center top / cover no-repeat;
  padding: 40px 0 0;
  overflow: hidden;
}

.loc-try__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
  align-items: end;
  min-height: 520px;
}

.loc-try__copy {
  padding: 60px 0 120px;
}

.loc-try__title {
  margin: 0 0 48px;
  font-size: 32px;
  line-height: 39px;
  color: #222;
  white-space: pre-line;
  font-weight: 500;
}

.loc-try__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.loc-try__visual img {
  display: block;
  width: 100%;
  max-width: 715px;
  height: auto;
}

@media (max-width: 1200px) {
  .loc-hero { height: auto; min-height: 420px; }
  .loc-hero__stage {
    width: min(1200px, calc(100% - 2rem));
    height: auto;
    min-height: 420px;
    position: relative;
  }
  .loc-hero__copy {
    position: relative;
    width: auto;
    max-width: 560px;
    padding: 48px 0 40px;
    height: auto;
  }
  .loc-hero__line--1,
  .loc-hero__line--2,
  .loc-hero__stats {
    position: static;
    margin-bottom: 20px;
  }
  .loc-hero__line--1,
  .loc-hero__line--2 { font-size: 36px; line-height: 1.25; white-space: normal; }
  .loc-hero__stats { flex-wrap: wrap; }
  .loc-hero__stat { width: 220px; height: auto; min-height: 88px; background-size: 100% 100%; }
}

@media (max-width: 900px) {
  .loc-q__grid,
  .loc-story.is-active,
  .loc-cap__panel.is-active,
  .loc-try__inner,
  .loc-dim__grid {
    grid-template-columns: 1fr 1fr;
  }
  .loc-cap__nav { flex-wrap: wrap; gap: 12px; padding-top: 28px; }
  .loc-cap__tab { max-width: 45%; width: auto; flex: 1 1 40%; }
}

@media (max-width: 640px) {
  .loc-stories__viewport { margin: 0 36px; }
  .loc-stories__nav--prev { left: -36px; }
  .loc-stories__nav--next { right: -36px; }
  .loc-h2 { font-size: 24px; line-height: 1.4; margin-bottom: 28px; }
  .loc-q__grid,
  .loc-story.is-active,
  .loc-cap__panel.is-active,
  .loc-try__inner,
  .loc-dim__grid {
    grid-template-columns: 1fr;
  }
  .loc-hero__line--1,
  .loc-hero__line--2 { font-size: 26px; }
  .loc-hero__stat { width: 100%; }
  .loc-q__card h3 { font-size: 18px; line-height: 1.4; }
  .loc-cap__lead { font-size: 18px; line-height: 1.6; }
  .loc-try__copy { padding-bottom: 40px; }
  .loc-btn { height: 44px; letter-spacing: 1px; }
  .loc-btn--ghost { min-width: 152px; }
}
