﻿* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  touch-action: pan-y;
}

body {
  margin: 0;
  overflow-x: hidden;
  touch-action: pan-y;
  color: #0b1324;
  background: #f6f7fb;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

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

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

.page-pad {
  padding-right: 18px;
  padding-left: 18px;
}

.mobile-header {
  --nav-alpha: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  background: rgba(0, 0, 0, var(--nav-alpha));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 134px;
  height: 34px;
}

.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.brand::after {
  position: absolute;
  inset: 0;
  background: url("../../assets/psd-export/hover-states/header-logo-white.png") center / contain no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.header-quick-cta {
  display: inline-flex;
  min-width: 126px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 999px;
  color: #fff;
  background: #071325;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.24s ease, background-color 0.24s ease;
}

.mobile-header.is-blue .header-quick-cta {
  color: #0042f8;
  background: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  width: 34px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: none;
}

.mobile-header.is-blue .menu-toggle {
  background: transparent;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}

.mobile-header.is-blue .menu-toggle span {
  background: #0042f8;
}

.mobile-nav {
  position: absolute;
  top: 68px;
  left: 0;
  display: none;
  width: 100%;
  padding: 10px 18px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e6edf7;
}

.mobile-nav.open {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid #edf1f7;
  color: #172033;
  font-size: 15px;
}

.mobile-nav a.active {
  color: #0042f8;
}

.mobile-nav .nav-cta {
  justify-content: center;
  margin-top: 8px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  background: #071325;
}

.mobile-header.on-dark-hero:not(.is-blue) .brand img {
  opacity: 0;
}

.mobile-header.on-dark-hero:not(.is-blue) .brand::after {
  opacity: 1;
}

.mobile-header.on-dark-hero:not(.is-blue) .menu-toggle {
  background: transparent;
}

.mobile-header.on-dark-hero:not(.is-blue) .menu-toggle span {
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding-top: 68px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-bg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.5s linear;
}

.hero-bg.is-active,
.hero-bg.is-next {
  opacity: 1;
}

.hero-bg.is-active {
  z-index: 1;
}

.hero-bg.is-next {
  z-index: 0;
}

.hero-bg.is-fading-out {
  z-index: 1;
  opacity: 0;
}

.hero-home { background-image: none; }
.hero-products { background-image: url("../../assets/psd-export/products/003-banner-rect-1-copy-31.png"); }
.hero-cases { background-image: url("../../assets/psd-export/cases/003-banner-rect-1-copy-31.png"); }
.hero-news { background-image: url("../../assets/psd-export/news/003-banner-rect-1-copy-31.png"); }
.hero-about { background-image: url("../../assets/psd-export/about/about-banner.png"); }

.hero:not(.hero-home)::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(10, 17, 31, 0.58) 0%, rgba(10, 17, 31, 0.4) 54%, rgba(10, 17, 31, 0.18) 100%);
  content: "";
  pointer-events: none;
}

.hero-home .hero-bg {
  background-position: 30% top;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 58px;
}

.hero-home .hero-content {
  z-index: 2;
  min-height: 552px;
  padding-top: 0;
}

.hero-copy {
  position: absolute;
  top: 66px;
  right: 18px;
  left: 18px;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.5s linear;
}

.hero-copy.is-active,
.hero-copy.is-next {
  opacity: 1;
  pointer-events: auto;
}

.hero-copy.is-active {
  z-index: 2;
}

.hero-copy.is-next {
  z-index: 1;
}

.hero-copy.is-fading-out {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.hero-dot {
  display: block;
  width: 32px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.24s ease;
}

.hero-dot.is-active,
.hero-dot:hover {
  opacity: 1;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  line-height: 44px;
  letter-spacing: 0;
}

.hero h1 span,
.blue {
  color: #0042f8;
}

.hero:not(.hero-home) h1 span,
.hero:not(.hero-home) .blue {
  color: #fff;
}

.hero-subtitle,
.hero-lead {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 25px;
}

.hero-subtitle {
  margin: 24px 0 0;
}

.hero-products .hero-subtitle {
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.hero-products .hero-lead,
.hero-cases .hero-subtitle,
.hero-news .hero-subtitle,
.hero-about .hero-subtitle {
  max-width: 340px;
}

.hero-lead {
  margin: 14px 0 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags {
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 22px;
}

.btn {
  display: inline-flex;
  min-width: 128px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 7px;
  font-size: 14px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: "->";
}

.more-link::after {
  width: 16px;
  height: 11px;
  background-image: url("../../assets/psd-export/hover-states/more-arrow.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  transition: background-image 0.18s ease;
}

.btn-dark {
  color: #fff;
  background: #071325;
}

.btn-light {
  color: #1c2739;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.22);
}

.hero-actions .btn-light {
  color: #fff;
  background: #0042f8;
  border-color: #0042f8;
}

.hero-home h1,
.hero-home .hero-subtitle,
.hero-home .hero-lead,
.hero-home .hero-tags,
.hero-home .btn {
  transition: color 0.8s ease, background-color 0.8s ease, border-color 0.8s ease;
}

.hero-home.is-dark-slide h1 {
  color: #fff;
}

.hero-home.is-dark-slide .hero-subtitle,
.hero-home.is-dark-slide .hero-lead {
  color: #bac0cc;
}

.hero-home.is-dark-slide .hero-actions .btn-dark {
  color: #fff;
  background: #0042f8;
}

.hero-home.is-dark-slide .hero-actions .btn-light {
  color: #0042f8;
  background: #fff;
  border-color: #fff;
}

.section {
  background: #f7f8fb;
}

.section-title,
.section-line-title {
  padding: 0 18px;
  text-align: center;
}

.section-title h2,
.section-line-title h2,
.section-bar h2 {
  margin: 0;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
}

.section-title p {
  margin: 12px auto 0;
  color: #7c8494;
  font-size: 14px;
  line-height: 22px;
}

.section-line-title h2::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 3px;
  background: #0042f8;
  content: "";
}

.value-section {
  padding: 36px 0 24px;
}

.value-grid,
.stats-grid,
.process-grid,
.choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article,
.stats-grid article,
.process-grid article,
.choose-card,
.service-card,
.culture-card {
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.value-grid article {
  min-height: 170px;
  padding: 20px 16px;
}

.value-grid img {
  width: 38px;
  height: 38px;
}

.value-grid h2,
.process-grid h3,
.choose-card h3 {
  margin: 16px 0 0;
  color: #111827;
  font-size: 19px;
  font-weight: 800;
  line-height: 24px;
}

.value-grid p,
.process-grid p,
.choose-card p {
  margin: 10px 0 0;
  color: #737b8f;
  font-size: 13px;
  line-height: 21px;
  overflow-wrap: anywhere;
}

.company-home,
.stats-section,
.solutions-section,
.process-section,
.home-cases,
.news-home,
.products-main,
.case-list-section,
.partners-section,
.news-page-section,
.about-section,
.services-section,
.choose-section,
.env-section,
.culture-section,
.contact-section {
  padding-bottom: 48px;
}

.products-main,
.case-list-section,
.news-page-section,
.about-section {
  padding-top: 44px;
}

.case-list-section::before,
.news-page-section::before {
  display: block;
  margin: 0 18px 28px;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
  text-align: center;
}

.case-list-section::before {
  content: "成功案例";
}

.partners-section {
  padding-top: 70px;
}

.news-page-section::before {
  content: "资讯中心";
}

.company-card {
  min-height: 520px;
  padding: 26px 18px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72)), url("../../assets/psd-export/mobile/home-company-card-mobile.jpg") 65% bottom / cover no-repeat;
}

.company-card h2,
.about-intro h2 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 32px;
}

.company-card span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 19px;
  color: #7b8495;
  background: #f1f5fb;
  font-size: 13px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 210px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.partner-grid img {
  max-height: 34px;
  margin: auto;
}

.partner-grid img:last-child {
  grid-column: span 2;
}

.stats-grid article {
  display: grid;
  min-height: 126px;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.stats-grid img {
  width: 46px;
  height: 46px;
}

.stats-grid strong {
  margin-top: 10px;
  color: #172033;
  font-size: 24px;
  line-height: 28px;
}

.stats-grid article > span {
  color: #70798c;
  font-size: 12px;
  line-height: 18px;
}

.count-value,
.count-plus,
.count-suffix {
  display: inline-block;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.count-plus,
.count-suffix {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.count-up.is-complete .count-plus,
.count-up.is-complete .count-suffix {
  opacity: 1;
}

.card-list,
.product-list,
.case-list,
.news-page-list,
.service-list,
.culture-list,
.env-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.card-list article,
.product-card,
.case-card,
.news-row {
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-list article:hover,
.card-list article:active {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.case-card.is-filter-hidden {
  display: none;
}

.card-list article > img,
.case-card > img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transform: scale(1.01);
}

.card-list article > div,
.case-body,
.product-body {
  padding: 20px 18px 24px;
}

.card-list h3,
.product-body h3,
.case-body h3,
.news-row h2 {
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.card-list p,
.product-body p,
.case-body p,
.news-row p {
  margin: 10px 0 0;
  color: #70798c;
  font-size: 13px;
  line-height: 21px;
  overflow-wrap: anywhere;
}

.solutions-section .card-list p {
  margin-top: 14px;
}

.process-grid {
  margin-top: 26px;
}

.process-grid article {
  min-height: 168px;
  padding: 18px 10px;
  text-align: center;
}

.process-grid span {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border: 1px solid #0042f8;
  border-radius: 50%;
}

.process-grid img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.section-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-bar a,
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #60656f;
  font-size: 13px;
  transition: color 0.18s ease;
}

.more-link:hover {
  color: #0042f8;
}

.more-link:hover::after {
  background-image: url("../../assets/psd-export/hover-states/more-arrow-hover.png");
}

.featured-news,
.mini-news {
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #f0f3f9;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-news:hover,
.mini-news:hover {
  background: #fff;
}

.featured-news > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transform: scale(1.01);
}

.featured-news > div,
.mini-news > div {
  padding: 18px;
}

.tag {
  display: inline-flex;
  height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: #0042f8;
  background: #e1eaff;
  font-size: 12px;
}

.featured-news h3,
.mini-news h3 {
  margin: 14px 0 0;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
}

.featured-news h3 {
  white-space: normal;
}

.mini-news h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

time {
  display: block;
  margin-top: 12px;
  color: #7d8797;
  font-size: 12px;
}

.mini-news {
  display: grid;
  grid-template-columns: 116px 1fr;
}

.mini-news > div {
  min-width: 0;
}

.mini-news > img {
  width: 116px;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  transform: scale(1.01);
}

.product-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1.01);
}

.product-card {
  display: block;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: #667086;
  font-size: 13px;
  list-style: none;
}

.check-list li::before {
  margin-right: 10px;
  color: #0042f8;
  content: "✓";
}

.product-detail-hero {
  display: flex;
  min-height: 240px;
  align-items: center;
  padding-top: 64px;
  background-image: linear-gradient(90deg, rgba(246, 249, 255, 0.98) 0%, rgba(246, 249, 255, 0.82) 48%, rgba(246, 249, 255, 0.2) 100%), var(--detail-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.product-detail-hero-inner {
  padding-top: 28px;
  padding-bottom: 34px;
}

.product-detail-hero span {
  color: #0042f8;
  font-size: 13px;
  font-weight: 800;
}

.product-detail-hero h1 {
  margin: 12px 0 0;
  color: #0b1324;
  font-size: 30px;
  font-weight: 800;
  line-height: 38px;
}

.product-detail-hero p {
  max-width: 300px;
  margin: 14px 0 0;
  color: #566073;
  font-size: 15px;
  line-height: 24px;
}

.product-detail-content {
  padding: 34px 0 48px;
  background: #fff;
}

.rich-text h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 32px;
}

.rich-text h3 {
  margin: 28px 0 0;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  line-height: 26px;
}

.rich-text p {
  margin: 12px 0 0;
  color: #5f6878;
  font-size: 14px;
  line-height: 24px;
}

.rich-text ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  color: #5f6878;
  font-size: 14px;
  line-height: 23px;
  list-style: none;
}

.rich-text li::before {
  margin-right: 8px;
  color: #0042f8;
  content: "•";
}

.rich-text .btn {
  margin-top: 28px;
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0 0 22px;
  overflow: visible;
  padding-bottom: 4px;
}

.filter-tabs a {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #667085;
  background: #fff;
  font-size: 13px;
  text-align: center;
  white-space: normal;
  transition: background-color 0.35s ease, color 0.35s ease;
  transition-delay: 0s;
}

.filter-tabs a.active {
  color: #fff;
  background: #0042f8;
}

.filter-tabs a:hover {
  color: #fff;
  background: #0042f8;
}

.filter-tabs:has(a:hover) a {
  color: #667085;
  background: #fff;
  transition-delay: 0s;
}

.filter-tabs:has(a:hover) a:hover {
  color: #fff;
  background: #0042f8;
}

.filter-tabs:not(:has(a:hover)) a.active {
  transition-delay: 1s;
}

.case-metrics {
  display: flex;
  gap: 30px;
  margin-top: 18px;
}

.case-metrics strong {
  color: #0042f8;
  font-size: 22px;
}

.case-metrics span {
  display: block;
  color: #7b8494;
  font-size: 12px;
}

.case-metrics-text {
  flex-wrap: wrap;
  gap: 10px 18px;
}

.case-metrics-text div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.case-metrics-text strong {
  display: inline-block;
}

.case-metrics-text span {
  display: inline-block;
  margin-top: 0;
}

.dark-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 28px 18px;
  color: #fff;
  background: #071325;
}

.dark-stats article {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dark-stats img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dark-stats strong {
  font-size: 22px;
}

.dark-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

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

.partner-boxes article {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: #fff;
}

.partner-boxes article:last-child {
  grid-column: span 2;
}

.news-page-list .news-row {
  display: block;
}

.news-page-list .news-row[hidden] {
  display: none !important;
}

.news-row > img,
.news-row-cover img {
  width: 100%;
  height: 228px;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.01);
}

.news-row > div {
  padding: 18px 18px 22px;
}

.news-row-cover {
  display: block;
  height: auto;
}

.news-row .news-arrow {
  display: none;
}

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

.pagination a,
.pagination span,
.pagination button {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd6e3;
  border-radius: 7px;
  color: #647084;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.pagination a.active,
.pagination span.active,
.pagination button.active {
  color: #0042f8;
  border-color: #0042f8;
}

.pagination a:hover,
.pagination span:hover,
.pagination button:not(:disabled):hover {
  color: #0042f8;
  border-color: #0042f8;
}

.pagination span.disabled,
.pagination button.disabled,
.pagination button:disabled {
  color: #9aa4b5;
  cursor: default;
}

.news-page-section .news-page-list {
  margin-top: 0;
}

.news-detail-main {
  background: #fff;
}

.news-detail-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 300px;
  align-items: center;
  padding-top: 64px;
  color: #fff;
  background: #000;
}

.news-detail-hero::before,
.news-detail-hero::after {
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  width: 320px;
  content: "";
  pointer-events: none;
}

.news-detail-hero::before {
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(104, 132, 190, 0.16) 32px 33px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(104, 132, 190, 0.13) 35px 36px);
  opacity: 0.4;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}

.news-detail-hero::after {
  background:
    radial-gradient(circle at 32% 28%, rgba(0, 66, 248, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 58%, rgba(0, 66, 248, 0.32) 0 2px, transparent 3px),
    linear-gradient(135deg, transparent 0 35%, rgba(0, 66, 248, 0.2) 35.4% 36%, transparent 36.4%),
    linear-gradient(28deg, transparent 0 58%, rgba(104, 132, 190, 0.18) 58.4% 59%, transparent 59.4%);
  opacity: 0.58;
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000);
}

.news-detail-hero .page-pad {
  position: relative;
  z-index: 1;
}

.news-detail-hero h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
}

.news-detail-time {
  display: block;
  margin-top: 14px;
  color: #aeb7c7;
  font-size: 13px;
}

.news-detail-section {
  padding: 36px 0 60px;
  background: #fff;
}

.news-detail-body {
  color: #283247;
  font-size: 15px;
  line-height: 28px;
}

.news-detail-body p {
  margin: 0 0 16px;
}

.news-detail-body ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.news-detail-body li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}

.news-detail-body li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0042f8;
  content: "";
}

.news-detail-body h2 {
  margin: 34px 0 16px;
  color: #0b1324;
  font-size: 22px;
  font-weight: 800;
  line-height: 32px;
}

.news-detail-body h3 {
  margin: 26px 0 10px;
  color: #0b1324;
  font-size: 17px;
  font-weight: 800;
  line-height: 26px;
}

.news-detail-body strong {
  color: #111827;
  font-weight: 800;
}

.about-intro {
  display: grid;
  gap: 18px;
}

.about-intro p {
  margin: 14px 0 0;
  color: #1d2638;
  font-size: 15px;
  line-height: 25px;
}

.about-detail-btn {
  margin-top: 18px;
}

.about-intro img {
  width: 100%;
  border-radius: 16px;
}

.service-card {
  padding: 22px 18px;
}

.service-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.service-head img {
  width: 54px;
  height: 54px;
}

.service-head h3 {
  margin: 0;
  font-size: 20px;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mini-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-list article > div {
  min-width: 0;
}

.mini-list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.mini-list h4 {
  margin: 0;
  font-size: 15px;
}

.mini-list p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 12px;
  line-height: 19px;
  white-space: normal;
  overflow-wrap: anywhere;
}

.choose-card {
  min-height: 150px;
  padding: 20px 10px;
  text-align: center;
}

.choose-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  object-fit: contain;
}

.env-card {
  --env-radius: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--env-radius);
  transform: translateZ(0);
}

.env-card img {
  width: 100%;
  height: 180px;
  border-radius: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.env-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42px;
  border-radius: 0 0 var(--env-radius) var(--env-radius);
  background: rgba(15, 23, 42, 0.38);
  content: "";
}

.env-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

.culture-card {
  padding: 28px 18px;
  background: #eef3fb;
  text-align: center;
}

.culture-card .en {
  display: block;
  color: rgba(17, 24, 39, 0.05);
  font-size: 42px;
  font-weight: 800;
}

.culture-card span:not(.en) {
  display: block;
  margin-top: -24px;
  color: #0042f8;
  font-size: 14px;
  font-weight: 800;
}

.culture-card h3 {
  margin: 25px 0 0;
  font-size: 22px;
  line-height: 30px;
}

.culture-card p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 21px;
}

.contact-card {
  min-height: 250px;
  padding: 28px 20px;
  border-radius: 16px;
  background-position: 62% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-home,
.contact-products { background-image: linear-gradient(90deg, rgba(241,246,255,0.98), rgba(241,246,255,0.38)), url("../../assets/psd-export/home/064-cta-section-rect-12-copy-10.png"); }
.contact-cases { background-image: linear-gradient(90deg, rgba(241,246,255,0.98), rgba(241,246,255,0.38)), url("../../assets/psd-export/cases/021-cta-section-rect-12-copy-10.png"); }
.contact-about { background-image: linear-gradient(90deg, rgba(241,246,255,0.98), rgba(241,246,255,0.38)), url("../../assets/psd-export/about/065-cta-section-rect-12-copy-10.png"); }

.contact-card h2 {
  margin: 0;
  max-width: 270px;
  font-size: 26px;
  font-weight: 800;
  line-height: 36px;
}

.contact-card p {
  margin: 12px 0 0;
  max-width: 250px;
  color: #586276;
  font-size: 15px;
  line-height: 24px;
}

.contact-card .btn {
  margin-top: 22px;
}

.contact-card .btn:hover {
  color: #fff;
  background: #0042f8;
}

.site-footer {
  padding: 46px 28px 34px;
  color: rgba(255, 255, 255, 0.76);
  background: #071325;
  text-align: left;
}

.footer-logo {
  width: 136px;
  margin: 0;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 48px;
  justify-content: start;
  max-width: 300px;
  margin-top: 34px;
  font-size: 13px;
  line-height: 22px;
}

.site-footer nav a {
  transition: color 0.18s ease;
}

.site-footer nav a:hover {
  color: #0042f8;
}

.site-footer p {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.site-footer nav::before,
.site-footer p.footer-phone::before {
  flex: 0 0 auto;
}

.site-footer nav::before {
  grid-column: 1 / -1;
  display: block;
  width: 70px;
  height: auto;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 24px;
  content: "网站导航";
}

.site-footer nav::after {
  grid-column: 1 / -1;
  display: block;
  width: 34px;
  height: 3px;
  margin-top: -6px;
  border-radius: 3px;
  background: #0042f8;
  content: "";
}

.footer-address,
.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.footer-address {
  margin-top: 42px !important;
}

.footer-address::after {
  position: absolute;
}

.footer-address::before,
.footer-phone::before {
  content: "";
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-address::before {
  width: 15px;
  height: 18px;
  background-image: url("../../assets/psd-export/home/footer-contact-address.png");
}

.footer-phone::before {
  width: 15px;
  height: 15px;
  background-image: url("../../assets/psd-export/home/footer-contact-phone.png");
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 24px;
}

.social-item {
  border: 0;
  padding: 0;
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}

.social-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  transition: opacity 0.18s ease;
}

.social-item .social-hover {
  opacity: 0;
}

.social-item:hover > .social-default,
.social-item.is-open > .social-default {
  opacity: 0;
}

.social-item:hover > .social-hover,
.social-item.is-open > .social-hover {
  opacity: 1;
}

.footer-social-qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 6;
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 17, 34, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-social-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-item.is-open .footer-social-qr,
.social-item:focus-visible .footer-social-qr {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-footer small {
  display: block;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  line-height: 20px;
}

@media (max-width: 360px) {
  .mobile-header {
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    width: 112px;
    height: 30px;
  }

  .header-quick-cta {
    min-width: 108px;
    height: 38px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 30px;
  }

  .menu-toggle span {
    width: 26px;
  }

  .hero-actions,
  .case-metrics {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-grid,
  .stats-grid,
  .process-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.floating-tools {
  position: fixed;
  right: 12px;
  bottom: 92px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.floating-tool-item {
  position: relative;
  pointer-events: auto;
}

.floating-tool-btn {
  display: flex;
  width: 48px;
  min-height: 48px;
  padding: 6px 0 5px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 19, 36, 0.16);
  color: #5f6673;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  line-height: 1;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-tool-btn:hover,
.floating-tool-btn:focus-visible,
.floating-tool-item.is-open .floating-tool-btn {
  background: #0042f8;
  box-shadow: 0 12px 28px rgba(0, 66, 248, 0.26);
  color: #ffffff;
  transform: translateY(-2px);
}

.floating-tool-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.floating-tool-text {
  margin-top: 5px;
  white-space: nowrap;
}

.floating-tool-contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 10px;
  height: 100%;
}

.floating-tool-phone::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 10px;
  height: 100%;
}

.floating-qr-popup {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  width: 150px;
  padding: 8px;
  border: 1px solid rgba(11, 19, 36, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 19, 36, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-qr-popup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-top: 1px solid rgba(11, 19, 36, 0.08);
  border-right: 1px solid rgba(11, 19, 36, 0.08);
  transform: translateY(-50%) rotate(45deg);
}

.floating-qr-popup img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.floating-phone-popup {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  min-width: 132px;
  padding: 11px 13px;
  border: 1px solid #0b1324;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 19, 36, 0.2);
  color: #0b1324;
  font-size: 15px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.floating-phone-popup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-top: 1px solid #0b1324;
  border-right: 1px solid #0b1324;
  transform: translateY(-50%) rotate(45deg);
}

.floating-tool-contact:hover .floating-qr-popup,
.floating-tool-contact:focus-within .floating-qr-popup,
.floating-tool-contact.is-open .floating-qr-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.floating-tool-phone:hover .floating-phone-popup,
.floating-tool-phone:focus-within .floating-phone-popup,
.floating-tool-phone.is-open .floating-phone-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}
