/**
* 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,")}.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,");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}}