/* ==========================================================================
   funa-home.css — 首页专属样式
   包含：Hero 轮播 / 行业解决方案 / 为什么选择 / 战略客户 / 核心技术 /
         产品推荐 / 文章推荐 / 生态合作伙伴 等首页版块
   公共样式（Header/Footer/表单/返回顶部/公共按钮）见 common.css
   ========================================================================== */

.home-hero {
  height: 680px;
  color: #fff;
  overflow: hidden;
  background: #075475;
}

.home-hero__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.home-hero__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.home-hero__inner .swiper-slide-active .home-hero__bg img {
  animation: funa-hero-zoom 8s ease-out forwards;
}

@keyframes funa-hero-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__inner .swiper-slide-active .home-hero__bg img {
    animation: none;
  }
}

.home-hero__container {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
}

.home-hero__content {
  width: 900px;
  padding-top: 187px;
}

.home-hero__title {
  margin: 0;
  max-width: 900px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 45, 72, .12);
}

.home-hero__desc {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.home-hero__keywords {
  margin-top: 44px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
}

.home-hero__keyword {
  min-width: 95px;
}

.home-hero__keyword strong {
  display: block;
  font-family: "Poppins", "PingFang SC", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
}

.home-hero__keyword span {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.home-hero__keywords i {
  width: 27px;
  height: 1px;
  margin-top: 16px;
  background: rgba(255, 255, 255, .55);
  flex: 0 0 30px;
}

.home-hero__buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.home-hero__btn {
  width: 220px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px 0 31px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(18, 61, 94, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-hero__btn span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
}

.home-hero__btn--primary {
  color: #fff;
  background: #76cfd0;
}

.home-hero__btn--primary span {
  color: #75cfd0;
  background: #fff;
}

.home-hero__btn--light {
  color: #3f3184;
  background: #fff;
}

.home-hero__btn--light span {
  color: #fff;
  background: #403586;
}

.home-hero__btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 16px 30px rgba(18, 61, 94, .22);
}

.home-hero__btn:hover span {
  color: #fff;
}

.home-hero__btn--light:hover,
.home-hero__btn:hover span {
  color: #403586;
}

.home-hero__pagination.swiper-pagination {
  position: absolute;
  z-index: 3;
  left: auto;
  right: max(32px, calc((100% - 1600px) / 2 + 32px));
  bottom: 40px;
  width: auto;
  display: flex;
  gap: 14px;
}

.home-hero__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  opacity: 1;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, width .3s ease;
}

.home-hero__pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  border-color: rgba(255, 255, 255, .9);
}

.home-solutions {
  min-height: 1136px;
  padding: 80px 0 100px;
  z-index: 20;
  position: relative;
}

.home-solutions__inner {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
}

.home-solutions__head {
  text-align: center;
}

.home-solutions__title {
  margin: 0;
  color: #73CBC7;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.home-solutions__subtitle {
  margin: 0;
  color: #494C53;
  font-size: 18px;
  line-height: 1.5;
}

.home-solutions__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.home-solutions__card {
  position: relative;
  min-height: 372px;
  overflow: hidden;
  border-radius: 6px;
  background: #f8f8f9;
  box-shadow: none;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s ease;
}

.home-solutions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(46, 56, 72, .14);
}

.home-solutions__card:hover .home-solutions__icon {
  transform: scale(1.08) rotate(-0deg);
}

.home-solutions__image {
  height: 240px;
  overflow: hidden;
  background: #dde8ed;
}

.home-solutions__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.home-solutions__card:hover .home-solutions__image img {
  transform: scale(1.06);
}

.home-solutions__icon {
  position: absolute;
  top: 200px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #403586;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
}

.home-solutions__icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-solutions__body {
  padding: 30px 30px 30px;
}

.home-solutions__body h3 {
  margin: 0;
  color: #403580;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.home-solutions__body p {
  margin: 14px 0 0;
  color: #494C53;
  font-size: 16px;
  line-height: 1.4;
}

.home-solutions__body ul {
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.home-solutions__body li {
  position: relative;
  margin-top: 5px;
  padding-left: 15px;
  color: #494C53;
  font-size: 14px;
  line-height: 1.4;
}

.home-solutions__body li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #66cfd0;
}

.home-why {
  padding: 0px 0 0;
  position: relative;
}

.home-why:before {
  display: block;
  position: absolute;
  width: 60vw;
  height: 50vh;
  opacity: 0.2;
  top: -25vh;
  content: '';
  left: -30vw;
  background: radial-gradient(50.00% 50.00% at 50% 50%, rgba(115, 203, 199, 1) 0%, rgba(115, 203, 199, 0) 100%);
  z-index: 1;
}

.home-why__inner {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 50;
}

.home-why__head {
  position: relative;
  text-align: center;
  z-index: 30;
}

.home-why__title {
  margin: 0;
  color: #6dcfd0;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
}

.home-why__subtitle {
  margin: 13px 0 0;
  color: #373a42;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.home-why__cards {
  position: relative;
  height: 290px;
  margin-top: 30px;
  z-index: 40;
}

.home-why__card {
  position: absolute;
  border: 1px solid #d9dde2;
  overflow: hidden;
  background: rgba(244, 247, 247, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-sizing: border-box;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s ease, border-color .4s ease, background .4s ease;
}

.home-why__card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: rgba(115, 203, 199, .5);
  box-shadow: 0 18px 34px rgba(46, 56, 72, .12);
}

.home-why__card:hover .home-why__line-icon {
  transform: scale(1.08);
}

.home-why__card>div {
  position: absolute;
  left: 39px;
  top: 30px;
}

.home-why__card strong {
  display: block;
  color: #70cfd0;
  font-family: "Poppins", "PingFang SC", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
}

.home-why__card p {
  margin: 7px 0 0;
  color: #2e333a;
  font-size: 17px;
  line-height: 1.55;
}

.home-why__line-icon {
  position: absolute;
  color: #403586;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
}

.home-why__line-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-why__card--users {
  left: 0;
  top: 0;
  width: 360px;
  height: 290px;
}

.home-why__card--users .home-why__line-icon {
  right: 28px;
  bottom: 31px;
}

.home-why__card--experience {
  left: 370px;
  top: 0;
  width: 360px;
  height: 140px;
}

.home-why__card--experience>div {
  left: 40px;
  top: 28px;
}

.home-why__card--experience .home-why__line-icon {
  right: 30px;
  bottom: 30px;
}

.home-why__card--grade {
  left: 740px;
  top: 0;
  width: 490px;
  height: 140px;
}

.home-why__card--grade>div {
  left: 40px;
  top: 30px;
}

.home-why__card--grade .home-why__line-icon {
  right: 30px;
  bottom: 30px;
}

.home-why__card--solution {
  left: 370px;
  top: 150px;
  width: 490px;
  height: 140px;
}

.home-why__card--solution>div {
  left: 40px;
  top: 30px;
}

.home-why__card--solution .home-why__line-icon {
  right: 30px;
  bottom: 30px;
}

.home-why__card--iso {
  left: 870px;
  top: 150px;
  width: 360px;
  height: 140px;
}

.home-why__card--iso>div {
  left: 40px;
  top: 30px;
}

.home-why__card--iso .home-why__line-icon {
  right: 30px;
  bottom: 30px;
}

.home-why__card--vda {
  right: 0;
  top: 0;
  width: 360px;
  height: 290px;
}

.home-why__card--vda>div {
  left: 40px;
  top: 30px;
}

.home-why__card--vda .home-why__line-icon {
  right: 30px;
  bottom: 30px;
}

.home-clients {
  overflow: hidden;
  background: #fff;
  color: #343943;
  margin-bottom: 100px;
}

.home-clients__head {
  padding-top: 80px;
  padding-bottom: 30px;
  text-align: center;
}

.home-clients__title {
  margin: 0;
  color: #73CBC7;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.home-clients__subtitle {
  margin: 12px 0 0;
  color: #494C53;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.home-clients__viewport {
  height: 360px;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.home-clients__viewport:active {
  cursor: grabbing;
}

.home-clients__track {
  height: 360px;
}

.home-clients__card {
  position: relative;
  width: 1200px;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: url(../img/clients_cardbg.svg) center center no-repeat;
  background-size: cover;
  opacity: 1;
  transition: opacity .5s ease;
}

.home-clients__card.swiper-slide-active {
  opacity: 1;
}

.home-clients__logo-box {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  width: 480px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.home-clients__logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.home-clients__card.swiper-slide-active:hover .home-clients__logo-box img {
  transform: scale(1.05);
}

.home-clients__logo-box--muted {
  opacity: .2;
}

.home-clients__logo-box--huawei {
  width: 480px;
}

.home-clients__logo-box--huawei img {
  width: 100%;
  object-fit: cover;
  object-position: left center;
}

.home-clients__content {
  position: absolute;
  z-index: 2;
  left: 540px;
  top: 67px;
  width: 620px;
}

.home-clients__content h3 {
  margin: 0;
  color: #484d56;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.home-clients__content h3 span {
  padding: 0 12px;
  color: #4e535c;
  font-weight: 500;
}

.home-clients__line {
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: rgba(152, 158, 166, .35);
}

.home-clients__intro {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.home-clients__intro span {
  width: 110px;
  height: 50px;
  flex: 0 0 110px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #403586;
  font-size: 15px;
  font-weight: 500;
}

.home-clients__intro p,
.home-clients__side-text {
  margin: 2px 0 0;
  color: #4a4f58;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.home-clients__meta {
  margin-top: 92px;
  display: flex;
  gap: 43px;
  color: #3f444c;
  font-size: 14px;
  line-height: 1.5;
}

.home-clients__card--side .home-clients__content {
  left: 540px;
}

.home-clients__card--side .home-clients__line {
  margin-top: 25px;
}

.home-clients__card--side .home-clients__side-text {
  margin-top: 26px;
}

.home-clients__dots {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  background: #fff;
}

.home-clients__dots button {
  width: 20px;
  height: 7px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #c4c5c8;
  transition: all 0.3s ease;
}

.home-clients__dots button.is-active {
  width: 60px;
  background: #73cfd0;
}

.home-tech {
  overflow: hidden;
  background: url(../img/home-techbg.svg) center center no-repeat;
  background-size: cover;
}

.home-tech__inner {
  width: min(1920px, 100%);
  height: 100%;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-tech__title {
  margin: 0;
  color: #73CBC7;
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.home-tech__grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-tech__item {
  position: relative;
  height: 360px;
  text-align: center;
}

.home-tech__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0px;
  width: 1px;
  height: 360px;
  background: rgba(0, 0, 0, .1);
}

.home-tech__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #403586;
  background: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.home-tech__icon svg {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-tech__icon path:nth-child(odd),
.home-tech__icon circle:nth-child(odd) {
  stroke: #70cfd0;
}

.home-tech__item h3 {
  margin: 35px 0 0;
  color: #494C53;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.home-tech__item p {
  margin: 25px auto 0;
  color: #494C53;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.home-products {
  overflow: hidden;
  background: url(../img/home-products-bg.svg) center center no-repeat;
  background-size: cover;
}

.home-products__inner {
  width: min(1600px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-products__head {
  text-align: center;
}

.home-products__title {
  margin: 0;
  color: #73CBC7;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
}

.home-products__subtitle {
  margin: 10px 0 0;
  color: #494C53;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.home-products__subtitle span {
  color: #403580;
}

.home-products__grid {
  margin-top: 60px;
  overflow: initial;
}

.home-products__grid:not(.swiper-initialized) .home-products__grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

/* 产品底部控制器：箭头 + 锚点，与文章版块一致 */
.home-products__controls {
  display: none;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.home-products__grid.swiper-initialized .home-products__controls {
  display: flex;
}

/* 幻灯片不足一屏时 Swiper 给控件加 -lock 类，此时整个控制区隐藏 */
.home-products__grid.swiper-initialized .home-products__controls:has(.swiper-pagination-lock),
.home-products__grid.swiper-initialized .home-products__controls:has(.swiper-button-lock) {
  display: none;
}

.home-products__arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d5e3e3;
  border-radius: 50%;
  color: #403580;
  background: #fff;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-products__arrow:hover {
  color: #fff;
  background: #73cacc;
  border-color: #73cacc;
  box-shadow: 0 8px 18px rgba(115, 202, 204, .32);
}

.home-products__arrow.swiper-button-disabled {
  opacity: .45;
  cursor: default;
  color: #403580;
  background: #fff;
  border-color: #d5e3e3;
  box-shadow: none;
}

.home-products__pagination.swiper-pagination {
  position: static;
  display: none;
  width: auto;
  margin: 0;
}

.home-products__grid.swiper-initialized .home-products__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.home-products__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  opacity: 1;
  background: #c4d6d6;
  transition: width .3s ease, background .3s ease;
}

.home-products__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #73cacc;
}

/* 产品卡片：与解决方案详情页「核心产品」solutiondetail-products__card 保持一致的布局样式
   注意：宽度由 Swiper(slidesPerView) 控制，此处不设 width，否则会与 Swiper 计算值冲突 */
.home-products__card {
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: url(../img/home-products_cardbg.jpg) top center / cover no-repeat, #fff;
  text-align: center;
  transition: transform .35s cubic-bezier(.22, .61, .36, 1), box-shadow .35s ease;
}

.home-products__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(28, 36, 48, .11);
}

.home-products__card:hover .home-products__image img {
  transform: scale(1.05);
}

.home-products__link {
  height: 100%;
  padding: 0 24px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}

.home-products__image {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0 0;
}

.home-products__image img {
  width: auto;
  height: 200px;
  object-fit: contain;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}

.home-products__type {
  min-height: 24px;
  margin: 22px 0 0;
  color: #777D86;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.home-products__card h3 {
  margin: 18px 0 0;
  color: #171B22;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.35;
}

.home-products__desc {
  margin: 12px 0 0;
  color: #777D86;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
}

.home-products__detail {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #73CBC7;
  font-size: 15px;
  font-weight: 700;
}

.home-products__detail i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #73CBC7;
  font-style: normal;
  line-height: 1;
}

.home-articles {
  padding: 100px 0 0;
  overflow: hidden;
  background: #fff;
}

.home-articles__inner {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.home-articles__title {
  margin: 0;
  color: #73CBC7;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.home-articles__grid {
  margin-top: 30px;
  text-align: left;
  overflow: hidden;
}

/* 卡片 hover 上浮不被裁剪：给幻灯片轨道留出上下透气空间 */
.home-articles__grid.swiper-initialized .home-articles__grid-wrap {
  padding: 10px 0 20px;
}

.home-articles__grid:not(.swiper-initialized) .home-articles__grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

/* 轮播控制区：左右箭头 + 中间锚点，仅初始化且可轮播时显示 */
.home-articles__controls {
  display: none;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.home-articles__grid.swiper-initialized .home-articles__controls {
  display: flex;
}

/* 幻灯片不足一屏时 Swiper 会给控件加 -lock 类，此时整个控制区隐藏 */
.home-articles__grid.swiper-initialized .home-articles__controls:has(.swiper-pagination-lock),
.home-articles__grid.swiper-initialized .home-articles__controls:has(.swiper-button-lock) {
  display: none;
}

.home-articles__arrow {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d5e3e3;
  border-radius: 50%;
  color: #403580;
  background: #fff;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-articles__arrow:hover {
  color: #fff;
  background: #73cacc;
  border-color: #73cacc;
  box-shadow: 0 8px 18px rgba(115, 202, 204, .32);
}

.home-articles__arrow.swiper-button-disabled {
  opacity: .45;
  cursor: default;
  color: #403580;
  background: #fff;
  border-color: #d5e3e3;
  box-shadow: none;
}

.home-articles__pagination.swiper-pagination {
  position: static;
  display: none;
  width: auto;
}

.home-articles__grid.swiper-initialized .home-articles__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.home-articles__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  opacity: 1;
  background: #c4d6d6;
  transition: width .3s ease, background .3s ease;
}

.home-articles__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #73cacc;
}

.home-articles__card {
  height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #F8F8F8;
  box-shadow: none;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1), box-shadow .4s ease;
}

.home-articles__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(46, 56, 72, .14);
}

.home-articles__card:hover .home-articles__image img {
  transform: scale(1.06);
}

.home-articles__card:hover .home-articles__body h3 {
  color: #403580;
}

.home-articles__image {
  height: 220px;
  overflow: hidden;
  background: #E2E2E2;
}

.home-articles__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.home-articles__body {
  height: 200px;
  padding: 16px 30px 30px;
  display: flex;
  flex-direction: column;
}

.home-articles__body time {
  display: block;
  color: #403580;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.home-articles__body h3 {
  margin: 10px 0 0;
  min-height: 60px;
  color: #333333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  transition: color .3s ease;
}

.home-articles__tags {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-articles__tags span {
  min-width: 68px;
  height: 34px;
  padding: 0 20px;
  border: 1px solid #403580;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #403580;
  font-size: 14px;
  line-height: 1;
  background: transparent;
}

.home-partners {
  position: relative;
  padding: 100px 0 100px;
}

.home-partners::before {
  content: "";
  position: absolute;
  left: 25vw;
  top: 0px;
  width: 50vw;
  height: 50vh;
  opacity: .15;
  background: radial-gradient(50.00% 50.00% at 50% 50%, rgba(64, 53, 128, 1) 0%, rgba(64, 53, 128, 0) 100%);
  z-index: 1;
}

.home-partners__inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.home-partners__title {
  margin: 0;
  color: #6dcfd0;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.home-partners__subtitle {
  margin: 10px 0 0;
  color: #494C53;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.home-partners__marquee {
  margin-top: 41px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.home-partners__track {
  display: flex;
  width: max-content;
  animation: funa-partners-scroll 28s linear infinite;
}

@keyframes funa-partners-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translateX(-50%);
  }
}

.home-partners__marquee:hover .home-partners__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .home-partners__track {
    animation: none;
  }
}

/* Logo 数量由后台区块管理决定，不能写死列数：
   grid-auto-flow:column 让所有条目始终排成一行，
   否则超过固定列数会换行、跑马灯 -50% 位移随之错乱。 */
.home-partners__grid {
  flex: 0 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 8px;
  padding-right: 8px;
}

.home-partners__card {
  height: 100px;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(0, 0, 0, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-partners__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-partners__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46, 56, 72, .10);
}


@media (max-width: 1480px) {

  .home-products__title,
  .home-solutions__title,
  .home-articles__title,
  .home-tech__title,
  .home-clients__title,
  .home-why__title,
  .home-partners__title {
    font-size: clamp(28px, 2.2vw, 36px);
  }

  .home-solutions__subtitle,
  .home-products__subtitle,
  .home-partners__subtitle,
  .home-clients__subtitle,
  .home-why__subtitle {
    font-size: clamp(14px, 1vw, 17px);
  }


  .home-products__more,
  .home-articles__more,
  .home-partners__more,
  .home-contact__submit {
    width: 160px;
    height: 42px;
    font-size: 14px;
  }

  .home-products__more span,
  .home-articles__more span,
  .home-partners__more span,
  .home-contact__submit span {
    width: 32px;
    height: 32px;
  }


  .home-why__cards {
    height: 260px;
  }

  .home-why__card>div {
    left: 30px;
    top: 20px;
  }

  .home-why__card strong {
    font-size: 21px;
  }

  .home-why__card p {
    margin: 6px 0 0;
    font-size: 15px;
    line-height: 1.45;
  }

  .home-why__card--users {
    width: 320px;
    height: 260px;
  }

  .home-why__card--experience {
    left: 330px;
    width: 320px;
    height: 125px;
  }

  .home-why__card--solution {
    left: 330px;
    top: 135px;
    width: 400px;
    height: 125px;
  }

  .home-why__card--grade {
    left: 660px;
    width: 380px;
    height: 125px;
  }

  .home-why__card--iso {
    left: 740px;
    top: 135px;
    width: 300px;
    height: 125px;
  }

  .home-why__card--vda {
    width: 324px;
    height: 260px;
  }


  .home-why__card--experience>div,
  .home-why__card--grade>div {
    left: 24px;
    top: 20px;
  }


  .home-why__c .home-hero__title {
    font-size: 36px;
  }


  .home-hero__desc {
    font-size: 21px;
  }

  .home-hero__keyword strong {
    font-size: 15px;
  }

  .home-hero__keyword span {
    font-size: 16px;
  }

  .home-hero__btn {
    width: 180px;
    height: 48px;
    padding: 0 10px 0 20px;
    font-size: 14px;
  }

  .home-hero__btn span {
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
  }


  .home-tech__item {
    height: 300px;
  }

  .home-tech__item:not(:last-child)::after {
    height: 300px;
  }

  .home-tech__item h3 {
    margin: 30px 0 0;
    font-size: 21px;
  }

  .home-tech__item p {
    margin: 20px auto 0;
    font-size: 15px;
  }

  .home-tech__icon {
    width: 110px;
    height: 110px;
    margin-top: 40px;
  }

  .home-products__card {
    height: 480px;
  }

  .home-products__image {
    height: 220px;
  }

  .home-products__image img {
    height: 170px;
  }

  .home-articles__card {
    height: 340px;
  }

  .home-articles__image {
    height: 180px;
  }

  .home-articles__body {
    height: 160px;
  }

  .home-solutions__body h3 {
    font-size: 21px;
  }

  .home-solutions__body p {
    font-size: 14px;
  }

  .home-solutions__body li {
    position: relative;
    font-size: 13px;
    line-height: 1.3;
  }

  .home-solutions__image {
    height: 210px;
  }

  .home-solutions__icon {
    top: 180px;
    right: 36px;
    width: 72px;
    height: 72px;
  }


  .home-clients__content {
    top: 30px;
    left: 420px;
    width: 450px;
  }

  .home-clients__content h3 {
    font-size: 21px;
  }

  .home-clients__card {
    width: 960px;
    height: 300px;
  }

  .home-clients__intro span {
    width: 90px;
    height: 42px;
    flex: 0 0 90px;
    font-size: 14px;
  }

  .home-clients__intro p,
  .home-clients__side-text {
    font-size: 15px;
  }


  .home-clients__logo-box {
    width: 360px;
    height: 260px;
  }

  .home-clients__meta {
    margin-top: 60px;
    gap: 30px;
  }

}

@media (max-width: 1440px) {

  .home-why__card--vda {
    width: 324px;
  }

}


@media (max-width: 1366px) {

  .home-hero__inner {
    width: 100%;
  }

  .home-why__inner {
    width: min(1180px, calc(100% - 48px));
  }

  .home-why__cards {
    transform-origin: top left;
    width: 100%;
  }

  .home-articles__inner,
  .home-partners__inner {
    width: min(1180px, calc(100% - 48px));
  }

  .home-articles__grid:not(.swiper-initialized) .home-articles__grid-wrap {
    gap: 28px;
  }

  .home-articles__body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-partners__grid {
    gap: 7px;
  }

  .home-clients__card {
    width: 1080px;
  }

  .home-clients__content {
    left: 520px;
    width: 520px;
  }

  .home-products__inner {
    width: min(1180px, calc(100% - 48px));
  }

  .home-products__grid:not(.swiper-initialized) .home-products__grid-wrap {
    gap: 24px;
  }

  .home-why__card--users {
    width: 280px;
  }

  .home-why__card--experience {
    left: 290px;
    width: 260px;
  }

  .home-why__card--solution {
    left: 290px;
    width: 300px;
  }

  .home-why__card--grade {
    left: 560px;
    width: 320px;
  }

  .home-why__card--iso {
    left: 600px;
    width: 280px;
  }

  .home-why__card--vda {
    width: 290px;
  }
}

@media (max-width: 1024px) {
  .home-tech {
    height: auto;
    padding-bottom: 70px;
  }

  .home-tech__inner {
    padding-top: 62px;
  }

  .home-tech__grid {
    margin-top: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 40px;
  }

  .home-tech__item {
    height: auto;
    padding: 0 20px 20px;
  }

  .home-tech__item:not(:last-child)::after {
    display: none;
  }

  .home-tech__item h3 {
    margin: 30px 0 0;
    font-size: 21px;
  }

  .home-tech__item p {
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.3;
  }

  .home-products {
    height: auto;
    padding-bottom: 0px;
  }

  .home-products__inner {
    width: calc(100% - 48px);
    padding-top: 62px;
  }

  .home-products__grid:not(.swiper-initialized) .home-products__grid-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-articles {
    height: auto;
    padding: 70px 0;
  }

  .home-articles__grid {
    overflow: hidden;
  }

  /* 移动端触摸滑动，隐藏左右箭头，仅保留锚点 */
  .home-articles__arrow {
    display: none;
  }

  .home-articles__card {
    height: auto;
    min-height: 420px;
  }

  .home-partners {
    height: auto;
    padding: 62px 0 70px;
  }

  .home-partners__grid {
    grid-auto-columns: 180px;
    gap: 12px;
  }

  .home-clients {
    height: auto;
    padding-bottom: 56px;
  }

  .home-clients__head {
    height: auto;
    padding: 58px 24px 32px;
  }

  .home-clients__viewport {
    height: auto;
    overflow: hidden;
    padding: 0 24px;
  }

  .home-clients__track {
    height: auto;
  }

  .home-clients__card {
    width: 100%;
    height: auto;
    min-height: 360px;
    padding: 20px 20px 32px;
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 32px;
    opacity: 1;
  }

  .home-clients__logo-box,
  .home-clients__content {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .home-clients__logo-box {
    height: 320px;
  }

  .home-clients__meta {
    margin-top: 52px;
  }

  .home-clients__dots {
    height: auto;
    padding-top: 28px;
  }

  .home-hero {
    height: auto;
    min-height: 620px;
  }

  .home-hero__bg img {
    object-position: 58% center;
  }

  .home-hero__container {
    width: calc(100% - 48px);
    padding: 110px 0 95px;
  }

  .home-hero__content {
    width: min(780px, 100%);
    padding-top: 0;
  }

  .home-hero__title {
    font-size: clamp(32px, 6vw, 48px);
  }

  .home-hero__desc {
    font-size: clamp(21px, 4vw, 32px);
  }

  .home-hero__keyword strong {
    font-size: 18px;
  }

  .home-solutions {
    min-height: auto;
    padding: 62px 0 72px;
  }

  .home-solutions__inner {
    width: calc(100% - 48px);
  }

  .home-why {
    height: auto;
    padding-bottom: 72px;
  }

  .home-why__inner {
    width: calc(100% - 48px);
  }

  .home-why__cards {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    transform: none;
    width: auto;
  }

  .home-why__card {
    position: relative;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: 160px !important;
  }

  .home-clients__intro span {
    width: 110px;
    height: 40px;
    flex: inherit;
    padding: 0 4px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {

  .home-hero {
    min-height: 620px;
    background: #fff;
  }

  .home-hero__bg img {
    object-position: 63% center;
  }

  .home-hero__container {
    width: calc(100% - 32px);
    padding: 88px 0 70px;
  }

  .home-hero__inner {
    width: calc(100% - 0px);
  }

  .home-hero__keywords {
    flex-wrap: wrap;
    row-gap: 18px;
    margin-top: 38px;
  }

  .home-hero__keywords i {
    display: none;
  }

  .home-hero__keyword {
    width: calc(50% - 8px);
  }

  .home-hero__buttons {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }


  .home-solutions__grid {
    grid-template-columns: 1fr;
  }

  .home-solutions__inner,
  .home-why__inner {
    width: calc(100% - 32px);
  }

  .home-solutions__title,
  .home-why__title {
    font-size: 30px;
  }

  .home-solutions__card {
    min-height: auto;
  }

  .home-solutions__image {
    height: 180px;
  }

  .home-solutions__icon {
    top: 146px;
    right: 24px;
    width: 64px;
    height: 64px;
  }

  .home-solutions__body {
    padding: 27px 22px 28px;
  }

  .home-why__cards {
    grid-template-columns: 1fr;
  }

  .home-why__card {
    height: 150px !important;
  }

  .home-why__card>div {
    left: 28px !important;
  }

  .home-clients__dots {
    gap: 12px;
  }

  .home-clients__dots button.is-active {
    width: 28px;
  }

  .home-clients__dots button {
    width: 16px;
  }

  .home-clients__title,
  .home-tech__title,
  .home-products__title {
    font-size: 30px;
  }

  .home-clients__subtitle,
  .home-products__subtitle {
    font-size: 15px;
    margin-top: 16px;
  }

  .home-clients__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-clients__logo-box {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .home-clients__content h3 {
    font-size: 21px;
  }

  .home-clients__content h3 span {
    padding: 0 6px;
  }

  .home-clients__intro {
    flex-direction: column;
  }

  .home-clients__meta {
    margin-top: 36px;
    flex-direction: column;
    gap: 10px;
  }

  .home-tech__grid {
    grid-template-columns: 1fr;
  }

  .home-products__grid {
    overflow: initial;
    padding-left: 40px;
  }

  .home-tech__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-tech__item h3 {
    font-size: 18px;
    margin: 20px 0 0;
  }

  .home-tech__item p {
    margin: 16px auto 0;
    color: #494C53;
    font-size: 15px;
    line-height: 1.3;
  }

  .home-tech__icon {
    width: 120px;
    height: 120px;
    margin-top: 0px;
  }

  .home-products__inner {
    width: calc(100% - 0px);
  }

  .home-products__image {
    height: 220px;
    padding-top: 40px;
  }

  .home-products__card {
    height: auto;
    min-height: 430px;
  }

  .home-articles,
  .home-partners {
    padding-left: 0;
    padding-right: 0;
  }

  .home-articles__inner,
  .home-partners__inner {
    width: calc(100% - 32px);
  }

  .home-articles__inner {
    width: calc(100% - 0px);
  }

  .home-articles__title,
  .home-partners__title {
    font-size: 30px;
  }

  .home-partners__subtitle {
    font-size: 14px;
  }

  .home-articles__grid {
    margin-top: 28px;
    padding-left: 20px;
  }

  .home-articles__card {
    min-height: 0;
  }

  .home-articles__image {
    height: 190px;
  }

  .home-articles__body {
    height: auto;
    min-height: 190px;
  }

  .home-partners__grid {
    grid-auto-columns: 140px;
  }

  .home-partners__card {
    height: 76px;
  }
}

.home-hero__btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
}

.home-hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: -1;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .6s cubic-bezier(.22, .61, .36, 1);
}

.home-hero__btn:hover::before {
  left: 130%;
}

.home-hero__btn span {
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .3s ease;
}

.home-hero__btn:hover span {
  transform: translateX(6px) scale(1.08);
}

.home-hero__btn span svg {
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.home-hero__btn:hover span svg {
  transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__btn::before {
    display: none;
  }
}