/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.m-ontology-intro[data-v-cbtpqxse]{--m-u-font-family-common: system-ui, -apple-system, "微软雅黑";--m-u-vi-color: 0, 179, 90;--m-u-vh: 1vh;--m-safe-screen-h: 1vh;font-family:"Plus Jakarta Sans",var(--m-u-font-family-common);font-size:14px;font-weight:400;line-height:1.4;position:relative;z-index:10;-webkit-user-select:none;-moz-user-select:none;user-select:none;--m-size-container-width--small: 1200px;--m-size-container-width--regular: 1440px;--m-size-container-width--extra: 1840px;--m-size-container-space: 6%;--m-size-container-width: var(--m-size-container-width--regular);overflow:hidden;color:#fff}@supports(height: 1dvh){.m-ontology-intro[data-v-cbtpqxse]{--m-u-safe-screen-h: 1dvh;--m-u-safe-area-inset-top: env(safe-area-inset-top);--m-u-safe-area-inset-right: env(safe-area-inset-right);--m-u-safe-area-inset-bottom: env(safe-area-inset-bottom);--m-u-safe-area-inset-left: env(safe-area-inset-left)}}.m-ontology-intro[data-v-cbtpqxse] img{width:initial;content:normal !important;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:top}.m-ontology-intro[data-v-cbtpqxse] a{text-decoration:none;color:inherit}.m-ontology-intro[data-v-cbtpqxse] a span{text-decoration:none}.m-ontology-intro[data-v-cbtpqxse] button{padding:0;border-width:0;outline:none}.m-ontology-intro[data-v-cbtpqxse] span{line-height:inherit}.m-ontology-intro[data-v-cbtpqxse] video{display:block}.m-ontology-intro[data-v-cbtpqxse] pre{font-family:inherit;overflow:hidden}.m-ontology-intro[data-v-cbtpqxse] .m-hide{position:absolute !important;display:inline-block;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0;-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%)}.m-ontology-intro[data-v-cbtpqxse] .u-m-icon-box{display:flex;align-items:center;justify-content:center}.m-ontology-intro[data-v-cbtpqxse] .u-m-wrapper--limit-width--small{--m-size-container-width: var(--m-size-container-width--small)}.m-ontology-intro[data-v-cbtpqxse] .u-m-wrapper--limit-width--extra{--m-size-container-width: var(--m-size-container-width--extra)}.m-ontology-intro[data-v-cbtpqxse] .u-m-wrapper--limit-width{width:calc(var(--m-size-container-width) + 2*var(--m-size-container-space));max-width:100%;margin:0 auto;padding:0 var(--m-size-container-space)}.m-ontology-intro[data-v-cbtpqxse] .u-m-wrapper--limit-width .m-wrapper--limit-width{--m-size-container-space: 0px}.m-ontology-intro[data-v-cbtpqxse] .swiper-pagination-bullet{margin:0}.m-ontology-intro[data-v-cbtpqxse] .swiper-pagination-bullet,.m-ontology-intro[data-v-cbtpqxse] .swiper-pagination-bullet-active{background-color:rgba(0,0,0,0)}.m-ontology-intro[data-v-cbtpqxse] .swiper-pagination{position:initial;z-index:initial;transition:initial;transform:initial;text-align:initial}.m-ontology-intro[data-v-cbtpqxse] .m-container--inner{display:flex;padding:120px 0;align-items:center;justify-content:space-between}.m-ontology-intro[data-v-cbtpqxse] .tab-bar{--u-border-width: 1px;--u-lighter-bg: conic-gradient( from -590deg at 50% 50%, #fff, rgb(255 255 255 / 0.16) 31%, rgb(255 255 255 / 0.16) 88%, #fff );font-size:14px;font-weight:500;line-height:1.4285714286em;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin-bottom:51px;padding:4px;text-align:center;border-radius:9999px;background:rgba(0,0,0,.1);-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px);gap:4px}@supports((-webkit-mask-composite: xor) or (mask-composite: xor)) or ((-webkit-mask-composite: xor) or (mask-composite: exclude)){.m-ontology-intro[data-v-cbtpqxse] .tab-bar{--u-lighter-border-deg: 100deg;position:relative}.m-ontology-intro[data-v-cbtpqxse] .tab-bar::after{position:absolute;z-index:100;padding:var(--u-border-width);content:"";transition:.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);pointer-events:none;border-radius:inherit;background:var(--u-lighter-bg, linear-gradient(var(--u-lighter-border-deg), #fff, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)));background-repeat:no-repeat;inset:calc(var(--u-border-width)*-1);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:xor;-webkit-mask-composite:xor;mask-composite:exclude}}@supports(not ((-webkit-mask-composite: xor) or (mask-composite: xor))) and (not ((-webkit-mask-composite: xor) or (mask-composite: exclude))){.m-ontology-intro[data-v-cbtpqxse] .tab-bar{border:var(--u-border-width) solid #fff}}.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-bar--inner{position:relative;display:flex}.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-item{position:relative;z-index:10;display:flex;padding:8px 23px;align-items:center;gap:4px;justify-content:center}.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-shadow{--u-border-width: 1px;--u-lighter-bg: conic-gradient( from -790deg at 50% 50%, #fff, rgb(255 255 255 / 0.16) 38%, rgb(255 255 255 / 0.16) 89%, #fff );position:absolute !important;top:0;bottom:0;left:0;width:100px;border-radius:60px;background:linear-gradient(139deg, rgba(5, 75, 255, 0.2), rgba(5, 75, 255, 0.5) 7.88%, rgba(5, 75, 255, 0.5) 89%, rgba(5, 75, 255, 0.3));box-shadow:0 0 32px 0 rgba(5,75,255,.9);-webkit-backdrop-filter:blur(15px);backdrop-filter:blur(15px)}@supports((-webkit-mask-composite: xor) or (mask-composite: xor)) or ((-webkit-mask-composite: xor) or (mask-composite: exclude)){.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-shadow{--u-lighter-border-deg: 100deg;position:relative}.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-shadow::after{position:absolute;z-index:100;padding:var(--u-border-width);content:"";transition:.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);pointer-events:none;border-radius:inherit;background:var(--u-lighter-bg, linear-gradient(var(--u-lighter-border-deg), #fff, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)));background-repeat:no-repeat;inset:calc(var(--u-border-width)*-1);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:xor;-webkit-mask-composite:xor;mask-composite:exclude}}@supports(not ((-webkit-mask-composite: xor) or (mask-composite: xor))) and (not ((-webkit-mask-composite: xor) or (mask-composite: exclude))){.m-ontology-intro[data-v-cbtpqxse] .tab-bar .tab-shadow{border:var(--u-border-width) solid #fff}}.m-ontology-intro[data-v-cbtpqxse] .tab-body{width:500px;min-width:0}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-title{font-size:34px;font-weight:600;line-height:150%;width:406px}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-desc{font-size:16px;font-weight:400;line-height:200%;margin-top:20px}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn{--u-border-width: 1px;--u-lighter-bg: linear-gradient( 90deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 100% );font-size:14px;font-weight:500;line-height:1.1428571429em;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;margin-top:80px;padding:.8571428571em 1.1428571429em .8571428571em 1.4285714286em;border-radius:8px;background-color:#2f3fa5;box-shadow:inset 0 0 8px 0 rgba(255,255,255,.2);align-items:center;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);gap:6px;justify-content:center}@supports((-webkit-mask-composite: xor) or (mask-composite: xor)) or ((-webkit-mask-composite: xor) or (mask-composite: exclude)){.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn{--u-lighter-border-deg: 100deg;position:relative}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn::after{position:absolute;z-index:100;padding:var(--u-border-width);content:"";transition:.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);pointer-events:none;border-radius:inherit;background:var(--u-lighter-bg, linear-gradient(var(--u-lighter-border-deg), #fff, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)));background-repeat:no-repeat;inset:calc(var(--u-border-width)*-1);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:xor;-webkit-mask-composite:xor;mask-composite:exclude}}@supports(not ((-webkit-mask-composite: xor) or (mask-composite: xor))) and (not ((-webkit-mask-composite: xor) or (mask-composite: exclude))){.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn{border:var(--u-border-width) solid #fff}}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn::after{inset:0}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn .icon-box{font-size:18px}.m-ontology-intro[data-v-cbtpqxse] .stage-area{font-size:780px;position:relative;width:1em;aspect-ratio:780/539}.m-ontology-intro[data-v-cbtpqxse] .stage-area .stage-1,.m-ontology-intro[data-v-cbtpqxse] .stage-area .stage-2{position:absolute;inset:0;pointer-events:none}.m-ontology-intro[data-v-cbtpqxse] .stage-area .stage--inner{position:absolute;inset:0}.m-ontology-intro[data-v-cbtpqxse] .stage-area .stage--inner img{position:absolute;inset:0;--y: 0px;--x: 0px;transform:translate3D(var(--x, 0), var(--y, 0), 0);object-fit:cover}.m-ontology-intro[data-v-cbtpqxse] .stage-area .info-box{position:absolute;inset:0;pointer-events:none}.m-ontology-intro[data-v-cbtpqxse] .stage-area .info-box .r-1-box{--x: -238;--y: 164;position:absolute;top:calc(50% - var(--y)/780*1em);left:calc(50% - var(--x)/780*1em);width:.1256410256em;aspect-ratio:7/20}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group{position:absolute;inset:0;pointer-events:none}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .card-box{position:absolute;top:calc(50% - var(--y)/780*1em);left:calc(50% - var(--x)/780*1em);display:flex;width:.1666666667em;cursor:pointer;pointer-events:all;align-items:center;aspect-ratio:130/80}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .card-box:hover .info-card{--move-y: 0px;visibility:visible;opacity:1}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card{--u-border-width: 1px;--u-lighter-bg: linear-gradient(155deg, #75daff, rgba(117, 218, 255, 0.1), rgba(117, 218, 255, 0.5));--move-y: 10px;font-size:.0166666667em;font-weight:400;line-height:180%;position:absolute !important;top:50%;left:calc(100% + 5.3846153846em);visibility:hidden;flex:0 0 auto;width:24.4615384615em;padding:1.5384615385em;transition:.5s ease;transform:translateY(calc(-50% + var(--move-y)));pointer-events:none;opacity:0;color:#fff;border-radius:.7692307692em;background:rgba(0,0,0,.6);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}@supports((-webkit-mask-composite: xor) or (mask-composite: xor)) or ((-webkit-mask-composite: xor) or (mask-composite: exclude)){.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card{--u-lighter-border-deg: 100deg;position:relative}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card::after{position:absolute;z-index:100;padding:var(--u-border-width);content:"";transition:.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);pointer-events:none;border-radius:inherit;background:var(--u-lighter-bg, linear-gradient(var(--u-lighter-border-deg), #fff, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)));background-repeat:no-repeat;inset:calc(var(--u-border-width)*-1);-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:xor;-webkit-mask-composite:xor;mask-composite:exclude}}@supports(not ((-webkit-mask-composite: xor) or (mask-composite: xor))) and (not ((-webkit-mask-composite: xor) or (mask-composite: exclude))){.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card{border:var(--u-border-width) solid #fff}}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card::after{inset:0}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card .info-card-head{font-size:1.0769230769em;font-weight:400;line-height:1.4285714286em;padding:4px 0;color:#0988ff}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .info-card .row{padding:.6153846154em 0;border-bottom:1px dotted rgba(255,255,255,.2)}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .card-box-1{--x: 285;--y: 192}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .card-box-2{--x: 285;--y: 60}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .card-box-3{--x: 285;--y: -70}.m-ontology-intro[data-v-cbtpqxse] .stage-area .card-box-group .line{position:absolute;top:calc(50% - 4px);left:calc(100% + 10px);width:51px;height:8px;background-image:url("data:image/svg+xml,<svg width=\"51\" height=\"8\" viewBox=\"0 0 51 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M49.9951 3.08573C50.3521 3.08573 50.6415 3.37514 50.6415 3.73215C50.6415 4.08916 50.3521 4.37858 49.9951 4.37858L49.9951 3.73215L49.9951 3.08573ZM0 3.73215L6.46426 6.4373e-06L6.46426 7.46429L0 3.73215ZM49.5785 4.37858C49.2215 4.37858 48.9321 4.08916 48.9321 3.73215C48.9321 3.37514 49.2215 3.08573 49.5785 3.08573L49.5785 3.73215L49.5785 4.37858ZM46.2455 3.08573C46.6025 3.08573 46.8919 3.37514 46.8919 3.73215C46.8919 4.08916 46.6025 4.37858 46.2455 4.37858V3.73215L46.2455 3.08573ZM45.4122 4.37858C45.0552 4.37858 44.7658 4.08916 44.7658 3.73215C44.7658 3.37514 45.0552 3.08573 45.4122 3.08573V3.73215V4.37858ZM42.0792 3.08573C42.4362 3.08573 42.7256 3.37514 42.7256 3.73215C42.7256 4.08916 42.4362 4.37858 42.0792 4.37858V3.73215V3.08573ZM41.246 4.37858C40.889 4.37858 40.5995 4.08916 40.5995 3.73215C40.5995 3.37514 40.889 3.08572 41.246 3.08573V3.73215V4.37858ZM37.913 3.08572C38.27 3.08572 38.5594 3.37514 38.5594 3.73215C38.5594 4.08916 38.27 4.37858 37.913 4.37858V3.73215V3.08572ZM37.0797 4.37858C36.7227 4.37858 36.4333 4.08916 36.4333 3.73215C36.4333 3.37514 36.7227 3.08572 37.0797 3.08572V3.73215V4.37858ZM33.7467 3.08572C34.1037 3.08572 34.3931 3.37514 34.3931 3.73215C34.3931 4.08916 34.1037 4.37858 33.7467 4.37858V3.73215V3.08572ZM32.9135 4.37858C32.5564 4.37858 32.267 4.08916 32.267 3.73215C32.267 3.37514 32.5564 3.08572 32.9135 3.08572V3.73215V4.37858ZM29.5804 3.08572C29.9375 3.08572 30.2269 3.37514 30.2269 3.73215C30.2269 4.08916 29.9375 4.37858 29.5804 4.37858V3.73215V3.08572ZM28.7472 4.37858C28.3902 4.37858 28.1008 4.08916 28.1008 3.73215C28.1008 3.37514 28.3902 3.08572 28.7472 3.08572V3.73215V4.37858ZM25.4142 3.08572C25.7712 3.08572 26.0606 3.37514 26.0606 3.73215C26.0606 4.08916 25.7712 4.37858 25.4142 4.37858V3.73215V3.08572ZM24.5809 4.37858C24.2239 4.37858 23.9345 4.08916 23.9345 3.73215C23.9345 3.37514 24.2239 3.08572 24.5809 3.08572V3.73215V4.37858ZM21.2479 3.08572C21.6049 3.08572 21.8944 3.37514 21.8944 3.73215C21.8944 4.08916 21.6049 4.37857 21.2479 4.37857V3.73215V3.08572ZM20.4147 4.37857C20.0577 4.37857 19.7682 4.08916 19.7682 3.73215C19.7682 3.37514 20.0577 3.08572 20.4147 3.08572V3.73215V4.37857ZM17.0817 3.08572C17.4387 3.08572 17.7281 3.37514 17.7281 3.73215C17.7281 4.08916 17.4387 4.37857 17.0817 4.37857V3.73215V3.08572ZM16.2484 4.37857C15.8914 4.37857 15.602 4.08916 15.602 3.73215C15.602 3.37514 15.8914 3.08572 16.2484 3.08572V3.73215V4.37857ZM12.9154 3.08572C13.2724 3.08572 13.5618 3.37514 13.5618 3.73215C13.5618 4.08916 13.2724 4.37857 12.9154 4.37857V3.73215V3.08572ZM12.0822 4.37857C11.7251 4.37857 11.4357 4.08916 11.4357 3.73215C11.4357 3.37514 11.7251 3.08572 12.0822 3.08572V3.73215V4.37857ZM8.74915 3.08572C9.10616 3.08572 9.39557 3.37514 9.39557 3.73215C9.39557 4.08916 9.10616 4.37857 8.74915 4.37857V3.73215V3.08572ZM7.91589 4.37857C7.55888 4.37857 7.26947 4.08916 7.26947 3.73215C7.26947 3.37514 7.55888 3.08572 7.91589 3.08572V3.73215V4.37857ZM4.58289 3.08572C4.9399 3.08572 5.22931 3.37514 5.22931 3.73215C5.22931 4.08916 4.9399 4.37857 4.58289 4.37857V3.73215V3.08572ZM3.74963 4.37857C3.39262 4.37857 3.10321 4.08916 3.10321 3.73215C3.10321 3.37514 3.39262 3.08572 3.74963 3.08572V3.73215V4.37857ZM0.416626 3.08572C0.773636 3.08572 1.06305 3.37514 1.06305 3.73215C1.06305 4.08916 0.773636 4.37857 0.416626 4.37857V3.73215V3.08572ZM49.9951 3.73215L49.9951 4.37858H49.5785L49.5785 3.73215L49.5785 3.08573H49.9951L49.9951 3.73215ZM46.2455 3.73215V4.37858L45.4122 4.37858V3.73215V3.08573L46.2455 3.08573L46.2455 3.73215ZM42.0792 3.73215V4.37858L41.246 4.37858V3.73215V3.08573L42.0792 3.08573V3.73215ZM37.913 3.73215V4.37858L37.0797 4.37858V3.73215V3.08572L37.913 3.08572V3.73215ZM33.7467 3.73215V4.37858L32.9135 4.37858V3.73215V3.08572L33.7467 3.08572V3.73215ZM29.5804 3.73215V4.37858L28.7472 4.37858V3.73215V3.08572L29.5804 3.08572V3.73215ZM25.4142 3.73215V4.37858L24.5809 4.37858V3.73215V3.08572L25.4142 3.08572V3.73215ZM21.2479 3.73215V4.37857L20.4147 4.37857V3.73215V3.08572L21.2479 3.08572V3.73215ZM17.0817 3.73215V4.37857L16.2484 4.37857V3.73215V3.08572L17.0817 3.08572V3.73215ZM12.9154 3.73215V4.37857L12.0822 4.37857V3.73215V3.08572L12.9154 3.08572V3.73215ZM8.74915 3.73215V4.37857L7.91589 4.37857V3.73215V3.08572L8.74915 3.08572V3.73215ZM4.58289 3.73215V4.37857L3.74963 4.37857V3.73215V3.08572L4.58289 3.08572V3.73215Z\" fill=\"url%28%23paint0_linear_21116_7337%29\"/><defs><linearGradient id=\"paint0_linear_21116_7337\" x1=\"3.63206\" y1=\"3.27968\" x2=\"53.9996\" y2=\"3.77123\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"%2354E0FF\"/><stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.2\"/></linearGradient></defs></svg>")}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group{position:absolute;inset:0;pointer-events:none}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box{position:absolute;top:calc(50% - var(--y)/780*1em);left:calc(50% - var(--x)/780*1em);height:.0435897436em}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box[data-size=big]{height:.058974359em}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box img{max-width:auto;height:100%}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(1){--x: 315;--y: 112}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(2){--x: 165;--y: -74}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(3){--x: 42;--y: -171}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(4){--x: -225;--y: 127}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(5){--x: -225;--y: 38}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(6){--x: -225;--y: -50}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box:nth-child(7){--x: -225;--y: -143}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .tag-box[data-dir=reverse] .line{right:calc(100% + 10px);left:auto;transform:scaleX(-1)}.m-ontology-intro[data-v-cbtpqxse] .stage-area .tag-group .line{position:absolute;top:calc(50% - 4px);left:calc(100% + 10px);width:.0448717949em;height:.0102564103em;background-image:url("data:image/svg+xml,<svg width=\"35\" height=\"8\" viewBox=\"0 0 35 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.019 3.89438C34.3759 3.90488 34.6566 4.20267 34.6461 4.55953C34.6357 4.91639 34.3379 5.19717 33.981 5.18667L34 4.54053L34.019 3.89438ZM0 3.54053L6.57119 4.22001e-05L6.35174 7.4611L0 3.54053ZM33.556 5.17417C33.1991 5.16368 32.9184 4.86588 32.9289 4.50902C32.9393 4.15217 33.2371 3.87139 33.594 3.88188L33.575 4.52803L33.556 5.17417ZM30.194 3.78188C30.5509 3.79238 30.8316 4.09017 30.8211 4.44703C30.8107 4.80389 30.5129 5.08467 30.156 5.07417L30.175 4.42803L30.194 3.78188ZM29.306 5.04917C28.9491 5.03868 28.6684 4.74088 28.6789 4.38402C28.6893 4.02717 28.9871 3.74639 29.344 3.75688L29.325 4.40303L29.306 5.04917ZM25.944 3.65688C26.3009 3.66738 26.5816 3.96517 26.5711 4.32203C26.5607 4.67889 26.2629 4.95967 25.906 4.94917L25.925 4.30303L25.944 3.65688ZM25.056 4.92417C24.6991 4.91368 24.4184 4.61588 24.4289 4.25902C24.4394 3.90217 24.7371 3.62139 25.094 3.63188L25.075 4.27803L25.056 4.92417ZM21.694 3.53188C22.0509 3.54238 22.3316 3.84017 22.3211 4.19703C22.3107 4.55389 22.0129 4.83467 21.656 4.82417L21.675 4.17803L21.694 3.53188ZM20.806 4.79917C20.4491 4.78868 20.1684 4.49088 20.1789 4.13402C20.1894 3.77717 20.4871 3.49639 20.844 3.50688L20.825 4.15303L20.806 4.79917ZM17.444 3.40688C17.8009 3.41738 18.0816 3.71517 18.0711 4.07203C18.0607 4.42889 17.7629 4.70967 17.406 4.69917L17.425 4.05303L17.444 3.40688ZM16.556 4.67417C16.1991 4.66368 15.9184 4.36588 15.9289 4.00902C15.9394 3.65217 16.2372 3.37139 16.594 3.38188L16.575 4.02803L16.556 4.67417ZM13.194 3.28188C13.5509 3.29238 13.8316 3.59017 13.8211 3.94703C13.8107 4.30389 13.5129 4.58467 13.156 4.57417L13.175 3.92803L13.194 3.28188ZM12.306 4.54917C11.9491 4.53868 11.6684 4.24088 11.6789 3.88402C11.6894 3.52717 11.9871 3.24639 12.344 3.25688L12.325 3.90303L12.306 4.54917ZM8.944 3.15688C9.30086 3.16738 9.58164 3.46517 9.57115 3.82203C9.56065 4.17889 9.26285 4.45967 8.906 4.44917L8.925 3.80303L8.944 3.15688ZM8.056 4.42417C7.69914 4.41368 7.41836 4.11588 7.42885 3.75902C7.43935 3.40217 7.73715 3.12139 8.09401 3.13188L8.075 3.77803L8.056 4.42417ZM4.694 3.03188C5.05086 3.04238 5.33164 3.34017 5.32115 3.69703C5.31065 4.05389 5.01285 4.33467 4.656 4.32417L4.675 3.67803L4.694 3.03188ZM3.80599 4.29917C3.44914 4.28868 3.16836 3.99088 3.17885 3.63402C3.18935 3.27717 3.48715 2.99639 3.844 3.00688L3.825 3.65303L3.80599 4.29917ZM0.444004 2.90688C0.800858 2.91738 1.08164 3.21517 1.07114 3.57203C1.06065 3.92889 0.762852 4.20967 0.405994 4.19917L0.424999 3.55303L0.444004 2.90688ZM34 4.54053L33.981 5.18667L33.556 5.17417L33.575 4.52803L33.594 3.88188L34.019 3.89438L34 4.54053ZM30.175 4.42803L30.156 5.07417L29.306 5.04917L29.325 4.40303L29.344 3.75688L30.194 3.78188L30.175 4.42803ZM25.925 4.30303L25.906 4.94917L25.056 4.92417L25.075 4.27803L25.094 3.63188L25.944 3.65688L25.925 4.30303ZM21.675 4.17803L21.656 4.82417L20.806 4.79917L20.825 4.15303L20.844 3.50688L21.694 3.53188L21.675 4.17803ZM17.425 4.05303L17.406 4.69917L16.556 4.67417L16.575 4.02803L16.594 3.38188L17.444 3.40688L17.425 4.05303ZM13.175 3.92803L13.156 4.57417L12.306 4.54917L12.325 3.90303L12.344 3.25688L13.194 3.28188L13.175 3.92803ZM8.925 3.80303L8.906 4.44917L8.056 4.42417L8.075 3.77803L8.09401 3.13188L8.944 3.15688L8.925 3.80303ZM4.675 3.67803L4.656 4.32417L3.80599 4.29917L3.825 3.65303L3.844 3.00688L4.694 3.03188L4.675 3.67803Z\" fill=\"url%28%23paint0_linear_21094_13219%29\"/><defs><linearGradient id=\"paint0_linear_21094_13219\" x1=\"2.47004\" y1=\"-103508\" x2=\"36.7266\" y2=\"-103508\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"%2354E0FF\"/><stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.2\"/></linearGradient></defs></svg>");background-size:cover}.m-ontology-intro[data-v-cbtpqxse][data-lang=en] .stage-area .tag-group .tag-box:nth-child(2){--x: 305}.m-ontology-intro[data-v-cbtpqxse][data-lang=en] .stage-area .tag-group .tag-box:nth-child(3){--x: 105}.m-ontology-intro[data-v-cbtpqxse][data-lang=en] .stage-area .tag-group .tag-box[data-size=md]{height:.0692307692em}@media(max-width: 1439.98px){.m-ontology-intro[data-v-cbtpqxse] .stage-area{font-size:650px}.m-ontology-intro[data-v-cbtpqxse] .tab-body{width:400px}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-title{font-size:28px}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-desc{font-size:15px}.m-ontology-intro[data-v-cbtpqxse] .m-container--inner{padding:100px 0}}@media(max-width: 991.98px){.m-ontology-intro[data-v-cbtpqxse] .m-container--inner{display:block;padding:30px 0}.m-ontology-intro[data-v-cbtpqxse] .m-container--inner>.state--pos-right{display:flex;justify-content:center}.m-ontology-intro[data-v-cbtpqxse] .tab-body{width:100%}.m-ontology-intro[data-v-cbtpqxse] .stage-area{font-size:400px;flex:0 0 auto;margin-top:50px}.m-ontology-intro[data-v-cbtpqxse] .stage-1{transform:translateX(-20px)}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-title{font-size:24px;width:100%}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-desc{font-size:13px}.m-ontology-intro[data-v-cbtpqxse] .tab-body .item-btn{font-size:13px;margin-top:50px}.m-ontology-intro[data-v-cbtpqxse] .tab-bar{font-size:12px}}
