:root {
  --site-primary: #1684f5;
  --site-primary-light: #22d8e9;
  --site-heading: #111827;
  --site-text: #64748b;
  --site-muted: #8b96a8;
  --site-surface: #ffffff;
  --site-section: #f5f8fe;
  --site-footer: #0f192d;
  --site-container: 1460px;
  --site-canvas: 1920px;
  --site-shadow: 0 12px 36px rgb(22 51 88 / 10%);
}

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

html,
body {
  min-width: var(--site-canvas);
  margin: 0;
  background: #fff;
  color: var(--site-heading);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.site-page {
  width: var(--site-canvas);
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.site-container {
  width: var(--site-container);
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  height: 80px;
  border-bottom: 1px solid rgb(225 235 247 / 78%);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 2px 16px rgb(15 58 107 / 5%);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: 1320px;
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__brand {
  flex: 0 0 auto;
  display: flex;
  height: 100%;
}

.site-header__brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 29px;
  margin: 0 28px;
}

.site-nav__link {
  position: relative;
  padding: 28px 0 26px;
  color: #566174;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--site-primary);
}

.site-nav__link.is-active::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  content: "";
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    var(--site-primary-light),
    var(--site-primary)
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgb(8 123 245 / 20%);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-button:hover {
  box-shadow: 0 10px 24px rgb(8 123 245 / 28%);
  transform: translateY(-2px);
}

.site-button--small {
  min-width: 94px;
  height: 38px;
  padding: 0 18px;
  border-radius: 20px;
  font-size: 14px;
}

.site-button--outline {
  border-color: var(--site-primary);
  background: #fff;
  color: var(--site-primary);
  box-shadow: none;
}

.site-button--orange {
  background: linear-gradient(135deg, #ff9b24, #f45b0b);
}

.site-button:focus-visible,
.site-nav__link:focus-visible,
.faq-item__button:focus-visible,
.filter-button:focus-visible {
  outline: 3px solid rgb(22 132 245 / 35%);
  outline-offset: 3px;
}

.page-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-color: #edf6ff;
  background-image: var(--page-hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 165px;
}

.page-hero__title {
  color: #07afd9;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
}

.page-hero__en {
  margin-top: 22px;
  font-size: 34px;
  line-height: 1.2;
}

.page-hero__line {
  width: 54px;
  height: 5px;
  margin-top: 34px;
  background: #2885ef;
}

.page-hero__description {
  margin-top: 44px;
  color: #4f5b6d;
  font-size: 18px;
  line-height: 1.8;
}

.subpage-hero {
  position: relative;
  display: grid;
  height: 400px;
  place-items: center;
  overflow: hidden;
  background: var(--subpage-hero-image) center / cover no-repeat;
  text-align: center;
}

.subpage-hero::after {
  position: absolute;
  inset: 0;
  background: rgb(237 246 255 / 18%);
  content: "";
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  font-size: 38px;
  font-weight: 600;
}

.subpage-hero p {
  margin-top: 16px;
  color: #6b7280;
  font-size: 15px;
}

.section {
  padding: 94px 0;
}

.section--tinted {
  background: var(--site-section);
}

/* 文章详情卡片的外边距不再塌陷到主内容区域之外，顶部留白保持页面底色。 */
main.section--tinted {
  display: flow-root;
}

.section-heading {
  text-align: center;
}

.section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 32px;
  padding: 0 18px;
  border-radius: 16px;
  background: #eff6ff;
  color: #4d8fe9;
  font-size: 14px;
}

.section-heading h2 {
  margin-top: 24px;
  font-size: 38px;
  font-weight: 500;
}

.section-heading p {
  margin-top: 18px;
  color: var(--site-text);
  font-size: 18px;
  line-height: 1.7;
}

.quick-links {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 150px;
  margin-top: -75px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
}

.quick-links a + a::before {
  width: 1px;
  height: 54px;
  margin-right: 26px;
  background: #d6dde8;
  content: "";
}

.quick-links img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer {
  min-height: 480px;
  padding-top: 72px;
  background: var(--site-footer);
  color: rgb(255 255 255 / 58%);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 80px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 24px;
}

.site-footer__brand img {
  height: 80px;
  border-radius: 9px;
  object-fit: cover;
}

.site-footer__company > p {
  width: 330px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.site-footer__social {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.site-footer__social:hover,
.site-footer__social:focus-visible,
.site-footer__social.is-open {
  background: rgb(22 132 245 / 28%);
  box-shadow: 0 0 0 1px rgb(71 178 255 / 60%);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__social:focus-visible {
  outline: 2px solid #5ecbff;
  outline-offset: 3px;
}



.site-footer__social-popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: 154px;
  padding: 10px 10px 9px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgb(0 0 0 / 28%);
  color: #1f2937;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
  visibility: hidden;
}

.site-footer__social-popover::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  content: "";
  transform: translate(-50%, -5px) rotate(45deg);
}

.site-footer__social-popover > img {
  width: 132px;
  height: 132px;
  margin: 0 auto 7px;
  object-fit: contain;
}

.site-footer__social-popover strong,
.site-footer__social-popover small {
  position: relative;
  z-index: 1;
  display: block;
}

.site-footer__social-popover strong {
  font-size: 14px;
  font-weight: 600;
}

.site-footer__social-popover small {
  margin-top: 2px;
  color: #7b8492;
  font-size: 11px;
}

.site-footer__social:hover .site-footer__social-popover,
.site-footer__social:focus-visible .site-footer__social-popover,
.site-footer__social.is-open .site-footer__social-popover {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.site-footer h2 {
  margin: 7px 0 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.site-footer ul {
  display: grid;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__copyright {
  margin-top: 26px;
  font-size: 13px;
  text-align: center;
}

/* About */
body[data-page="about"] .page-hero {
  --page-hero-image: url("/static/image/frame-9/01-imgSectionHero.png");
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 690px;
  align-items: center;
  gap: 90px;
}

.about-intro__copy h2 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.45;
}

.about-intro__copy h2 strong {
  color: var(--site-primary);
  font-weight: 500;
}

.about-intro__copy > p {
  margin-top: 28px;
  color: var(--site-text);
  font-size: 17px;
  line-height: 1.9;
}

.about-intro__image {
  height: 430px;
  padding: 0 26px 26px 0;
  border-radius: 14px;
  background: #edf2ff;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 116px;
  margin-top: 40px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.about-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stats div + div {
  border-left: 1px solid #e4eaf2;
}

.about-stats dt {
  color: #247ee9;
  font-size: 28px;
}

.about-stats dd {
  margin-top: 8px;
  color: var(--site-muted);
  font-size: 13px;
}

.vision-card {
  position: relative;
  min-height: 570px;
  margin-top: 62px;
  overflow: hidden;
  border-radius: 120px 0 120px 0;
  background: url("/static/image/frame-9/14-imgRectangle43.png") center / cover
    no-repeat;
}

.vision-card__copy {
  position: absolute;
  top: 108px;
  left: 88px;
  width: 540px;
  min-height: 380px;
  padding: 65px 70px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--site-shadow);
}

.vision-card__copy h3 {
  color: #287fe9;
  font-size: 30px;
  font-weight: 500;
}

.vision-card__copy p {
  margin-top: 30px;
  color: var(--site-text);
  font-size: 17px;
  line-height: 2;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 80px;
}

.philosophy-card {
  min-height: 470px;
  padding: 90px 78px 60px;
  border: 1px solid var(--accent);
  border-radius: 0 90px 0 90px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(33 68 110 / 8%);
}

.philosophy-card--blue {
  --accent: #2196f3;
}

.philosophy-card--orange {
  --accent: #ffac35;
}

.philosophy-card h3 {
  font-size: 34px;
  font-weight: 400;
}

.philosophy-card p {
  margin-top: 34px;
  color: var(--site-text);
  font-size: 21px;
  line-height: 2;
}

/* Services */
body[data-page="services"] .page-hero {
  --page-hero-image: url("/static/image/frame-12/01-imgSectionHero.png");
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 62px;
}

.service-item {
  min-height: 250px;
  padding: 38px 32px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.service-item__head {
  display: flex;
  align-items: center;
  gap: 22px;
}

.service-item__head img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 500;
}

.service-item p {
  margin-top: 18px;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.7;
}

.service-item a {
  display: inline-flex;
  margin-top: 26px;
  color: #1677ed;
  font-size: 14px;
}

.service-benefits {
  padding: 80px 0;
  background: url("/static/image/frame-12/19-imgRectangle41.png") center / cover
    no-repeat;
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 140px;
  padding: 28px;
  border-radius: 14px;
  background: rgb(255 255 255 / 95%);
  box-shadow: var(--site-shadow);
}

.benefit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 19px;
  font-weight: 500;
}

.benefit-card p {
  margin-top: 8px;
  color: var(--site-text);
  font-size: 13px;
  line-height: 1.6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  margin-top: 70px;
}

.process-item {
  position: relative;
  text-align: center;
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -26px;
  color: #2584ef;
  content: "→";
  font-size: 38px;
}

.process-item__icon {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27d5ed, #1677f5);
  color: #fff;
  font-size: 28px;
  place-items: center;
  box-shadow: 0 10px 24px rgb(22 119 245 / 20%);
}

.process-item h3 {
  font-size: 18px;
  font-weight: 500;
}

.process-item p {
  margin-top: 12px;
  color: var(--site-text);
  font-size: 13px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.team-card {
  min-height: 378px;
  padding: 32px 24px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 26px rgb(24 55 90 / 7%);
}

.team-card img {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 400;
}

.team-card strong {
  display: block;
  margin-top: 12px;
  color: #247ee9;
  font-size: 15px;
  font-weight: 500;
}

.team-card p {
  margin-top: 20px;
  color: var(--site-text);
  font-size: 13px;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 18px;
  margin-top: 60px;
}

.faq-item {
  overflow: hidden;
  border-radius: 12px;
  background: #f4f7fb;
}

.faq-item__button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  font-size: 17px;
  text-align: left;
  cursor: pointer;
}

.faq-item__button::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-right: 20px;
  border-radius: 7px;
  background: #1677f5;
  color: #fff;
  content: "Q";
  font-size: 24px;
  place-items: center;
}

.faq-item__button::after {
  margin-left: auto;
  content: "+";
  font-size: 24px;
}

.faq-item.is-open .faq-item__button::after {
  content: "−";
}

.faq-item__answer {
  padding: 24px 32px 30px 90px;
  background: #fff;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.8;
}

/* Services interactions */
body[data-page="services"].services-motion-ready .service-item,
body[data-page="services"].services-motion-ready .benefit-card,
body[data-page="services"].services-motion-ready .team-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.48s ease var(--reveal-delay, 0ms),
    transform 0.48s ease var(--reveal-delay, 0ms),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

body[data-page="services"].services-motion-ready .service-item.is-visible,
body[data-page="services"].services-motion-ready .benefit-card.is-visible,
body[data-page="services"].services-motion-ready .team-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="services"] .service-item {
  border: 1px solid transparent;
}

body[data-page="services"] .service-item:hover {
  border-color: rgb(22 119 245 / 25%);
  box-shadow: 0 18px 38px rgb(18 89 170 / 16%);
  transform: translateY(-8px);
}

body[data-page="services"].services-motion-ready .service-item.is-visible:hover {
  transform: translateY(-8px);
}

body[data-page="services"] .service-item:hover .service-item__head img {
  transform: scale(1.08) rotate(-4deg);
}

body[data-page="services"] .service-item__head img {
  transition: transform 0.28s ease;
}

body[data-page="services"] .benefit-card:hover,
body[data-page="services"] .team-card:hover {
  box-shadow: 0 16px 34px rgb(24 55 90 / 15%);
}

body[data-page="services"] .team-card:hover img {
  transform: scale(1.05);
}

body[data-page="services"] .team-card img {
  transition: transform 0.28s ease;
}

body[data-page="services"].services-motion-ready .process-item__icon,
body[data-page="services"].services-motion-ready .process-item h3,
body[data-page="services"].services-motion-ready .process-item p,
body[data-page="services"].services-motion-ready .process-item::after {
  opacity: 0.48;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

body[data-page="services"].services-motion-ready .process-item.is-active .process-item__icon,
body[data-page="services"].services-motion-ready .process-item.is-active h3,
body[data-page="services"].services-motion-ready .process-item.is-active p,
body[data-page="services"].services-motion-ready .process-item.is-active::after {
  opacity: 1;
}

body[data-page="services"].services-motion-ready .process-item.is-active .process-item__icon {
  box-shadow: 0 14px 30px rgb(22 119 245 / 32%);
  transform: translateY(-5px);
}

body[data-page="services"].services-motion-ready .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

body[data-page="services"].services-motion-ready .faq-item__answer.is-expanded {
  padding-top: 24px;
  padding-bottom: 30px;
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="services"] .service-item,
  body[data-page="services"] .benefit-card,
  body[data-page="services"] .team-card,
  body[data-page="services"] .service-item__head img,
  body[data-page="services"] .team-card img,
  body[data-page="services"] .process-item__icon,
  body[data-page="services"] .process-item h3,
  body[data-page="services"] .process-item p,
  body[data-page="services"] .process-item::after,
  body[data-page="services"] .faq-item__answer {
    transition: none;
  }
}

/* Jobs and contact */
body[data-page="jobs"] .subpage-hero,
body[data-page="contact"] .subpage-hero {
  --subpage-hero-image: url("/static/image/jobs/02-imgHero.png");
}

body[data-page="cases"] .subpage-hero {
  --subpage-hero-image: url("/static/image/frame-21/02-imgHero.png");
}

body[data-page="news"] .page-hero {
  --page-hero-image: url("/static/image/frame-11/01-imgSectionHero.png");
}

body[data-page="products"] .subpage-hero {
  --subpage-hero-image: url("/static/image/products/02-imgHero.png");
}

.job-list {
  display: grid;
  gap: 30px;
}

.job-card {
  position: relative;
  min-height: 360px;
  padding: 48px 62px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.job-card__head {
  display: flex;
  align-items: center;
  gap: 28px;
}

.job-card__head img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.job-card h2 {
  font-size: 25px;
  font-weight: 400;
}

.job-card__meta {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 14px 65px;
  margin-top: 18px;
  color: var(--site-text);
  font-size: 14px;
}

.job-card__apply {
  position: absolute;
  top: 42px;
  right: 58px;
}

.job-card h3 {
  margin-top: 38px;
  color: #237fe7;
  font-size: 18px;
  font-weight: 500;
}

.job-card ol {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.9;
  list-style: decimal;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 680px;
  gap: 90px;
}

.contact-copy h2 {
  font-size: 34px;
  font-weight: 400;
}

.contact-copy > p {
  margin-top: 20px;
  color: var(--site-text);
  font-size: 15px;
  line-height: 1.8;
}

.contact-list {
  display: grid;
  gap: 28px;
  margin-top: 38px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.contact-list img {
  width: 42px;
  height: 42px;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  font-size: 18px;
  font-weight: 500;
}

.contact-list span {
  margin-top: 8px;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.contact-form__notice {
  padding: 12px 16px;
  border: 1px solid #b7e4c7;
  border-radius: 6px;
  background: #f0fff4;
  color: #1f7a43;
  font-size: 14px;
  line-height: 1.5;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  outline: 1px solid transparent;
  background: #f5f6f8;
}

.form-field input,
.form-field select {
  height: 42px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline-color: var(--site-primary);
}

.contact-map {
  height: 300px;
  margin-top: 55px;
  border-radius: 14px;
  background: url("/static/image/contact/03-imgCard.png") center / cover
    no-repeat;
}

.contact-cta {
  padding: 95px 0;
  background: linear-gradient(145deg, #40f0ee, #1da6fc 43%, #006bf5);
  color: #fff;
  text-align: center;
}

.contact-cta h2 {
  font-size: 38px;
  font-weight: 500;
}

.contact-cta p {
  margin-top: 22px;
  color: rgb(255 255 255 / 82%);
}

.contact-cta__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

/* Website and mini program */
.product-hero {
  position: relative;
  min-height: 600px;
  background: var(--product-hero-image) center / cover no-repeat;
  text-align: center;
}

body[data-page="website"] .product-hero {
  --product-hero-image: url("/static/image/frame-37/01-imgImage244.png");
}

body[data-page="mini-program"] .product-hero {
  --product-hero-image: url("/static/image/frame-38/01-imgImage244.png");
  text-align: left;
}

.product-hero__content {
  padding-top: 130px;
}

.product-hero h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.35;
}

.product-hero h1 strong {
  color: #08a9ef;
  font-weight: 500;
}

.product-hero p {
  margin-top: 25px;
  color: var(--site-text);
  font-size: 17px;
  line-height: 1.8;
}

.product-hero__features {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 28px;
  color: #5e6b7d;
}

body[data-page="mini-program"] .product-hero__features,
body[data-page="mini-program"] .product-hero__actions {
  justify-content: flex-start;
}

.product-hero__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 170px;
  margin-top: -60px;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.feature-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.feature-strip article + article {
  border-left: 1px solid #3f91ec;
}

.feature-strip img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.feature-strip h2 {
  font-size: 24px;
  font-weight: 400;
}

.feature-strip p {
  margin-top: 12px;
  color: var(--site-text);
  font-size: 15px;
}

.pricing-shell {
  margin-top: 64px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(145deg, #438ffb, #3bd5e7);
}

.pricing-shell > h3 {
  padding: 10px 20px 24px;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
}

.pricing-card {
  position: relative;
  min-height: 500px;
  padding: 60px;
  overflow: hidden;
  border-radius: 24px;
  background: rgb(255 255 255 / 92%);
}

.pricing-card__image {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 520px;
  height: 450px;
  object-fit: contain;
  opacity: 0.72;
}

.pricing-card h4 {
  position: relative;
  z-index: 1;
  color: #1684e8;
  font-size: 34px;
  font-weight: 400;
}

.pricing-card > p {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 20px;
}

.pricing-card__price {
  position: relative;
  z-index: 1;
  margin-top: 45px;
  font-size: 28px;
}

.pricing-card__price strong {
  color: #0b7deb;
  font-size: 72px;
  font-weight: 400;
}

.pricing-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  margin-top: 40px;
}

.price-note {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  min-height: 250px;
  margin-top: 45px;
  overflow: hidden;
  border-radius: 14px;
  background: #eef5ff;
}

.price-note > img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.price-note h3 {
  font-size: 28px;
  font-weight: 400;
}

.price-note h3 strong {
  color: #1684ed;
  font-size: 52px;
  font-weight: 400;
}

.price-note p {
  margin-top: 16px;
  color: var(--site-text);
}

.process-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 170px;
  margin-top: 65px;
  padding: 40px 70px;
  border-radius: 14px;
  background: #eef4ff var(--process-banner-image) center / cover no-repeat;
}

.process-banner h3 {
  color: #365eaa;
  font-size: 30px;
  font-weight: 500;
}

.process-banner p {
  margin-top: 14px;
  color: var(--site-text);
}

body[data-page="website"] .process-banner {
  --process-banner-image: url("/static/image/frame-37/18-imgImage259.png");
}

body[data-page="mini-program"] .process-banner {
  --process-banner-image: url("/static/image/frame-38/07-imgRectangle106.png");
}

/* Mini-program landing page */
body[data-page="mini-program"] .product-hero {
  min-height: 600px;
  background-position: center;
}

body[data-page="mini-program"] .feature-strip {
  min-height: 102px;
  margin-top: -54px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgb(41 74 120 / 13%);
}

body[data-page="mini-program"] .feature-strip article {
  justify-content: flex-start;
  gap: 20px;
  padding-left: 88px;
}

body[data-page="mini-program"] .feature-strip article + article {
  border-left: 2px solid #2386ff;
}

.mini-benefit__icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 8px;
  background: linear-gradient(145deg, #2f91ff, #1671ef);
  color: #fff;
  box-shadow: 0 7px 14px rgb(17 113 240 / 24%);
  place-items: center;
}

.mini-benefit__icon svg {
  width: 31px;
  height: 31px;
}

body[data-page="mini-program"] .feature-strip h2 {
  color: #272b35;
  font-size: 22px;
  font-weight: 600;
}

body[data-page="mini-program"] .feature-strip p {
  margin-top: 6px;
  color: #7e8798;
  font-size: 14px;
}

body[data-page="mini-program"] .section--tinted {
  background: #fff;
}

body[data-page="mini-program"] .section {
  padding: 78px 0 88px;
}

body[data-page="mini-program"] .section-heading__eyebrow {
  min-width: 88px;
  min-height: 32px;
  border-radius: 18px;
  background: #eef6ff;
  color: #64a2ee;
  font-size: 13px;
}

body[data-page="mini-program"] .section-heading h2 {
  margin-top: 16px;
  color: #12203a;
  font-size: 36px;
  font-weight: 700;
}

body[data-page="mini-program"] .section-heading p {
  margin-top: 16px;
  color: #8b9ab0;
  font-size: 17px;
}

body[data-page="mini-program"] .pricing-shell {
  position: relative;
  min-height: 660px;
  margin-top: 60px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f9ff url("/static/image/frame-38/04-imgImage265.png") center / cover no-repeat;
  box-shadow: 0 8px 24px rgb(31 75 137 / 12%);
}

body[data-page="mini-program"] .pricing-card {
  min-height: 660px;
  padding: 88px 78px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

body[data-page="mini-program"] .pricing-card::after {
  position: absolute;
  top: 270px;
  left: 78px;
  width: 66px;
  height: 5px;
  background: #197cff;
  content: "";
}

body[data-page="mini-program"] .pricing-card__image {
  top: auto;
  right: 190px;
  bottom: 72px;
  width: 310px;
  height: 310px;
  opacity: 1;
}

.pricing-card__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 16px;
  border-radius: 6px;
  background: linear-gradient(135deg, #16a9f8, #2874f8);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 5px 12px rgb(33 125 240 / 22%);
}

body[data-page="mini-program"] .pricing-card h4 {
  margin-top: 36px;
  color: #252831;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -1px;
}

body[data-page="mini-program"] .pricing-card h4 span {
  margin-left: 12px;
  background: linear-gradient(90deg, #1279ff, #02c3f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-page="mini-program"] .pricing-card > p {
  margin-top: 18px;
  color: #888f9e;
  font-size: 19px;
}

body[data-page="mini-program"] .pricing-card__price {
  margin-top: 105px;
  color: #2c2c2c;
  font-size: 30px;
}

body[data-page="mini-program"] .pricing-card__price strong {
  color: #137cff;
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
}

body[data-page="mini-program"] .pricing-card__price em {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-left: 18px;
  padding: 0 10px;
  background: #147bfa;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  vertical-align: middle;
}

body[data-page="mini-program"] .pricing-card__actions {
  gap: 28px;
  margin-top: 52px;
}

body[data-page="mini-program"] .pricing-card__actions .site-button {
  min-width: 174px;
  height: 54px;
}

body[data-page="mini-program"] .price-note {
  grid-template-columns: 390px 1fr;
  min-height: 270px;
  margin-top: 48px;
  padding: 18px 20px 18px 0;
  border-radius: 16px;
  background: #edf5ff;
}

.price-note__art {
  height: 270px;
  overflow: hidden;
}

body[data-page="mini-program"] .price-note__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body[data-page="mini-program"] .price-note > div:last-child {
  padding: 34px 58px;
  border-radius: 12px;
  background: rgb(255 255 255 / 92%);
}

body[data-page="mini-program"] .price-note h3 {
  color: #292929;
  font-size: 32px;
  font-weight: 600;
}

body[data-page="mini-program"] .price-note h3 strong {
  margin: 0 8px;
  color: #227efd;
  font-size: 52px;
}

body[data-page="mini-program"] .price-note p {
  margin-top: 12px;
  color: #8a919d;
  font-size: 15px;
}

.price-note__benefits {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 24px;
}

.price-note__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #687586;
  font-size: 17px;
  white-space: nowrap;
}

.price-note__benefits img {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 50%;
  background: #387ef5;
  object-fit: contain;
}

body[data-page="mini-program"] .process-list {
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 66px;
}

body[data-page="mini-program"] .process-item:not(:last-child)::after {
  top: 49px;
  right: -50%;
  z-index: -1;
  width: 100%;
  border-top: 4px dotted #4d9dfd;
  color: transparent;
  content: "";
}

body[data-page="mini-program"] .process-item__icon {
  width: 102px;
  height: 102px;
  margin-bottom: 22px;
  border: 3px solid #e8f3ff;
  background: linear-gradient(145deg, #28baf4, #246cf5);
  box-shadow: 0 8px 18px rgb(37 111 241 / 24%);
}

body[data-page="mini-program"] .process-item__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

body[data-page="mini-program"] .process-item h3 {
  color: #4f4f4f;
  font-size: 22px;
  font-weight: 500;
}

body[data-page="mini-program"] .process-banner {
  position: relative;
  min-height: 170px;
  margin-top: 74px;
  padding: 40px 70px 40px 170px;
  border-radius: 16px;
  background-color: #eff5ff;
  background-position: center;
  background-size: cover;
}

body[data-page="mini-program"] .process-banner::before {
  position: absolute;
  left: 44px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e6f1ff url("/static/image/frame-38/12-img5.png") center / 42px no-repeat;
  content: "";
}

body[data-page="mini-program"] .process-banner h3 {
  color: #323942;
  font-size: 28px;
}

body[data-page="mini-program"] .process-banner p {
  margin-top: 12px;
  color: #7f8b9d;
  font-size: 16px;
}

body[data-page="mini-program"] .process-banner .site-button {
  min-width: 154px;
  height: 52px;
  border-color: #299bff;
  border-radius: 26px;
  color: #1478fa;
}

/* Cases, news and products */
.case-industry-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  min-height: 100px;
  padding: 18px 28px;
  border-bottom: 1px solid #e7edf5;
  background: #fff;
}

.case-industry-nav__title,
body[data-page="cases"] .case-industry-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  color: #46546a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.case-industry-nav__title {
  color: #263246;
  font-weight: 600;
}

.case-industry-nav__divider {
  width: 1px;
  height: 28px;
  background: #d8e0eb;
}

body[data-page="cases"] .case-industry-nav__item {
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body[data-page="cases"] .case-industry-nav__item:hover,
body[data-page="cases"] .case-industry-nav__item.is-active {
  background: #0964dc;
  color: #fff;
  box-shadow: 0 4px 10px rgb(9 100 220 / 18%);
}

.case-industry-nav__icon,
.case-industry-nav__title-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-industry-nav__image {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.case-industry-nav__title-image {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.case-industry-nav__icon {
  color: #075fff;
}

.case-industry-nav__item:hover .case-industry-nav__icon,
.case-industry-nav__item.is-active .case-industry-nav__icon {
  color: #fff;
}

.case-industry-nav__item:hover .case-industry-nav__image,
.case-industry-nav__item.is-active .case-industry-nav__image {
  filter: brightness(0) invert(1);
}

.case-industry-nav__title-icon {
  color: #075fff;
}

.case-industry-icons {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.case-hero {
  height: 400px;
  background: url('/static/image/frame-21/02-imgHero.png') center / cover no-repeat;
}

.case-industry-bar {
  background: #fff;
  box-shadow: 0 3px 9px rgb(37 68 112 / 8%);
}

.case-industry-bar .case-industry-nav {
  justify-content: flex-start;
  min-height: 116px;
  padding: 16px 24px;
  border: 0;
}

.case-list-section {
  padding: 78px 0 104px;
  background: #f3f7fc;
}

.content-grid.case-content-grid {
  gap: 24px;
  margin-top: 0;
}

.content-card.case-card {
  border: 1px solid #e3e8f0;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgb(38 61 99 / 8%);
}

.case-card__media {
  position: relative;
  display: block;
}

.case-card .content-card__image {
  height: 300px;
}

.case-card__tag {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 9px;
  border-radius: 2px;
  background: #0d6df4;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.case-card .content-card__body {
  min-height: 156px;
  padding: 18px;
}

.case-card .content-card__summary {
  margin-top: 10px;
  color: #8390a4;
  font-size: 13px;
  line-height: 1.65;
}

.case-card .content-card__more {
  padding-top: 13px;
  font-size: 14px;
  font-weight: 600;
}

.case-list-section .pagination {
  margin-top: 58px;
}

.section-heading--cases {
  margin-top: 72px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid #dce6f2;
  border-radius: 20px;
  background: #fff;
  color: #5e6b7d;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--site-primary);
  background: var(--site-primary);
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.content-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.content-card__image {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.content-card__body {
  padding: 28px;
}

.content-card__meta {
  color: #8390a4;
  font-size: 13px;
}

.content-card h2,
.content-card h3 {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}

.content-card p {
  margin-top: 14px;
  color: var(--site-text);
  font-size: 14px;
  line-height: 1.75;
}

.content-card__summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.content-card__more {
  display: inline-flex;
  margin-top: 20px;
  color: var(--site-primary);
}

.content-card--article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content-card--article .content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.content-card--article h2 {
  display: -webkit-box;
  min-height: 1.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.content-card--article .content-card__summary {
  min-height: 3.5em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.content-card--article .content-card__more {
  margin-top: auto;
  padding-top: 20px;
}

.news-page {
  background: #f3f7fc;
}

.news-channel-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1460px;
  min-height: 150px;
  margin: -75px auto 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgb(31 55 91 / 12%);
}

.news-channel-nav__item {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 76px;
  color: #303746;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.news-channel-nav__item svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #2d70ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.news-channel-nav__item:hover,
.news-channel-nav__item.is-active {
  color: #2d70ff;
}

.news-channel-nav__divider {
  width: 1px;
  height: 30px;
  background: #c5c8cd;
}

.news-timeline-section {
  padding: 80px 0 96px;
}

.news-timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.news-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
}

.news-timeline__item::before,
.news-timeline__item::after {
  position: absolute;
  left: 19px;
  border-left: 2px dotted #b8d5ff;
  content: '';
}

.news-timeline__item::before {
  top: 0;
  height: 50%;
}

.news-timeline__item::after {
  top: 50%;
  bottom: -24px;
}

.news-timeline__item:first-child::before,
.news-timeline__item:last-child::after {
  display: none;
}

.news-timeline__date {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  flex-direction: column;
  padding-left: 38px;
  color: #2872ff;
}

.news-timeline__date::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 12px;
  height: 12px;
  border: 3px solid #f3f7fc;
  border-radius: 50%;
  background: #2872ff;
  content: '';
  transform: translateY(-50%);
}

.news-timeline__date strong {
  font-size: 28px;
  line-height: 1.1;
}

.news-timeline__date span {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 600;
}

.news-timeline__card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 156px;
  padding: 20px 82px 20px 20px;
  gap: 22px;
  border: 1px solid #e5eaf1;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 5px rgb(42 64 99 / 8%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.news-timeline__card:hover {
  border-color: #b8d5ff;
  box-shadow: 0 8px 20px rgb(42 86 150 / 12%);
  transform: translateY(-2px);
}

.news-timeline__image {
  flex: 0 0 auto;
  width: 186px;
  height: 116px;
  object-fit: cover;
}

.news-timeline__content {
  min-width: 0;
}

.news-timeline__content h2 {
  overflow: hidden;
  color: #263246;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-timeline__content p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: #7a8799;
  font-size: 14px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-timeline__views {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8390a4;
  font-size: 14px;
}

.news-timeline__views svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.news-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 100px 20px;
  border-radius: 14px;
  background: #fff;
  color: var(--site-muted);
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 42px;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  background: #fff;
  color: #5e6b7d;
  place-items: center;
}

.pagination .active span,
.pagination a:hover {
  background: var(--site-primary);
  color: #fff;
}

.cms-search {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
}

.cms-search input {
  flex: 1;
  height: 50px;
  padding: 0 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  outline: 0;
}

.cms-search input:focus {
  border-color: var(--site-primary);
}

.cms-search .site-button {
  height: 50px;
}

.article-shell {
  width: 1080px;
  margin: 80px auto;
  padding: 60px 70px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--site-shadow);
}

.article-shell__crumb,
.article-shell__meta {
  color: var(--site-muted);
  font-size: 14px;
}

.article-shell h1 {
  margin-top: 18px;
  font-size: 36px;
  line-height: 1.45;
}

.article-shell__meta {
  display: flex;
  gap: 22px;
  margin-top: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid #e8edf3;
}

.article-shell__cover {
  width: 100%;
  max-height: 560px;
  margin-top: 34px;
  border-radius: 12px;
  object-fit: cover;
}

.article-shell__body {
  margin-top: 34px;
  color: #3f4b5d;
  font-size: 17px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.article-shell__body img {
  max-width: 100%;
  height: auto;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 9px;
  object-fit: cover;
}

.article-back {
  display: inline-flex;
  margin-top: 34px;
  color: var(--site-primary);
}

/* 模板建站目录复用官网的内页英雄区和内容卡片。 */
body[data-page="templates"] .subpage-hero {
  --subpage-hero-image: url("/static/image/products/02-imgHero.png");
}

.template-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  padding: 20px;
  border: 1px solid #e4eaf2;
  border-radius: 12px;
  background: #fff;
}

.template-filter__item {
  padding: 8px 14px;
  border-radius: 6px;
  color: #5f6d80;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.template-filter__item:hover,
.template-filter__item.is-active {
  background: var(--site-primary);
  color: #fff;
}

.template-list-section {
  padding-bottom: 94px;
}

.template-grid {
  margin-top: 28px;
}

@media (max-width: 620px) {
  .template-filter {
    justify-content: flex-start;
    gap: 6px;
    padding: 12px;
  }
}

[data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

html.site-page-scaled,
html.site-page-scaled body {
  width: 100%;
  min-width: 0;
}

html.site-page-scaled .site-page {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(var(--site-page-scale, 1));
  transform-origin: top left;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
