*,:after,:before{
    vertical-align: baseline;
    font-size: 100%;
    border: 0 none;
    outline: 0 none;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
}
html,body{
	width: 100%;
	height: 100%;
	font-size: 16px;
	line-height: 1.6;
	color:#282828;
	font-family:pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif;
}
html{
	scroll-behavior: smooth;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main {
	display:block
}
ul,li {
	list-style:none
}
em,i{
    font-style:normal;
}
table {
	border-collapse:collapse;
	border-spacing:0
}
audio,
canvas,
iframe,
img,
svg,
video,
input,
select{
 	vertical-align: middle;
}
img {
	max-width:100%;
}
a{
	color:#383838;
	-webkit-transition:color .3s;
	transition:color .3s;
	text-decoration:none
}
svg:not(html) {
    overflow: hidden;
}

/* scrollbar */
body ::-webkit-scrollbar {
  width: 8px;
}
body ::-webkit-scrollbar-thumb {
  background-color: #e1e3e4;
  background-clip: content-box;
  border-radius: 0;
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  border-right: 4px solid rgba(255, 255, 255, 0);
}
body ::-webkit-scrollbar-track {
  background-color: #fbfbfb;
}

:root {
	--water-blue: #006EFF;
	--water-blue-hover: #0056cc;
	--primary-gradient: linear-gradient(135deg, #006EFF 0%, #00a2ff 100%);
	--water-orange: #FF6700;
	--water-purple: #8B5CF6;
	--water-green: #10B981;
	--water-text: #333333;
	--water-active: #181818;
	--water-text-light: #666666;
	--water-bg-gray: #F5F7FA;
	--water-border: #EAEAEA;
	--water-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	--water-shadow-pro: 0 12px 32px rgba(0, 0, 0, 0.08);
	--banner-bg-img: linear-gradient(120deg, #E1FCFF, #BFD4FF 37.79%, #D1D9FE 75.81%, #D2D6FF);
	
}

.container-wide {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 100px;
}
.content-wrapper{
    position: relative;
    z-index: 10;
}
.content-inner{
	width: 100%;
	margin: 0 auto;
}
.section-title {
	text-align: center;
	margin-bottom: 48px;
	position: relative;
}
.section-title h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
}
.section-title p {
	font-size: 15px;
    color: #5c6370;
    line-height: 1.65;
    margin: 0 auto 20px;
    max-width: 480px;
}

/* navbar */
.navbar {
	height: 60px;
	background: rgba(255, 255, 255, .5);
	backdrop-filter: blur(4px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	transition: all 0.3s;
}
.navbar:hover{
	background: rgba(255, 255, 255, 1);
}
.nav-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding-left: 30px;
	height: 100%;
}
.nav-toggle {
	display: none;
	margin-left: auto;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.nav-toggle-icon {
	position: relative;
	display: block;
	width: 18px;
	height: 2px;
	background: #0f172a;
	border-radius: 2px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: #0f172a;
	border-radius: 2px;
}
.nav-toggle-icon::before {
	top: -6px;
}
.nav-toggle-icon::after {
	top: 6px;
}
.nav-collapse {
	display: flex;
	align-items: center;
	flex: 1;
	height: 100%;
	min-width: 0;
}
.nav-mobile-contact {
	display: none;
}
.nav-mobile-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #0f172a;
}
.nav-mobile-phone i {
	font-size: 18px;
	color: var(--water-blue);
}
.nav-overlay {
	display: none;
}
.navbar .logo {
	width: 140px;
	height: 60px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.navbar .logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.navbar .logo::after{
	content: "";
	position: absolute;
	top: -60%;
	left: -120%;
	width: 60%;
	height: 220%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255,255,255,0.06) 18%,
		rgba(255,255,255,0.9) 50%,
		rgba(255,255,255,0.18) 82%,
		transparent 100%
	);
	transform: rotate(45deg);
	opacity: 0;
	pointer-events: none;
	animation: logo-sweep 4s ease-out infinite;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
	height: 100%;
	margin-left: 30px;
}
.nav-item {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: color 0.2s ease;
	display: flex;
	align-items: center;
	padding: 0 4px;
	height: 100%;
}
.nav-item::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--primary-gradient);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.22s ease-out;
}
.nav-item:hover {
	color: var(--water-blue);
}
.nav-item--dropdown {
	position: relative;
	display: flex;
	align-items: center;
	gap: 4px;
}
.nav-item--dropdown::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #9ca3af;
	transition: transform 0.15s ease, border-top-color 0.15s ease;
	margin-top: 2px;
}
.nav-item--dropdown:hover::after {
	transform: rotate(180deg);
	border-top-color: var(--water-blue);
}
.nav-item i {
	font-size: 26px;
	opacity: .7;
}
.nav-item .item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-item .item-icon.blue {
	background: #E6F0FF;
	color: #006EFF;
}
.nav-item .item-icon.orange {
	background: #FFF2E6;
	color: #FF6700;
}
.nav-item .item-icon.green {
	background: #E6F7F0;
	color: #10B981;
}
.nav-item .dropdown-item:hover .item-icon,
.nav-item .dropdown-item.is-active .item-icon {
	background: #fff;
}
.nav-item:hover::after {
	transform: scaleX(1);
}
.nav-item.is-active {
	color: var(--water-blue);
}
.nav-item.is-active::after {
	transform: scaleX(1);
}
.nav-item--dropdown > .nav-dropdown {
	left: 0;
	right: auto;
	transform: translateY(10px);
	width: auto;
	min-width: 220px;
	padding: 10px 8px;
	background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.1), rgba(255, 255, 255, 0.98));
}
.nav-item--dropdown > .nav-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.nav-item--dropdown .nav-dropdown-item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 2px 6px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	color: #4b5563;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.nav-item--dropdown .nav-dropdown-item::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: radial-gradient(circle, #60a5fa, #2563eb);
	opacity: 0.9;
	flex-shrink: 0;
}
.nav-item--dropdown .nav-dropdown-item:hover {
	background: linear-gradient(135deg, rgba(0, 110, 255, 0.08), rgba(0, 110, 255, 0.15));
	color: var(--water-blue);
	transform: translateY(-1px);
}
.nav-item .nav-dropdown {
	background: transparent;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
	pointer-events: none;
	z-index: 900;
}
.nav-item.has-dropdown > .nav-dropdown {
	position: fixed;
	top: 60px;
	left: 0;
	right: 0;
	transform: translateY(8px);
	width: 100%;
	max-width: 100%;
}
.nav-item.has-dropdown > .nav-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
	box-shadow: 0 20px 10px rgba(100, 100, 100, 0.03);
	border-top: 1px solid #f4f4f4;
}
.nav-item .nav-dropdown-inner {
	background: #fff;
	padding: 20px;
}
.nav-item .dropdown-grid {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.nav-item .dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 14px;
	text-decoration: none;
	color: #121317;
	transition: background 0.2s;
	margin-bottom: 4px;
	min-width: 240px;
}
.nav-item .dropdown-item:hover {
	background: #F4F7F9;
}
.nav-item .dropdown-item.dropdown-item--blue:hover,
.nav-item .dropdown-item.dropdown-item--blue.is-active {
	background: rgba(0, 110, 255, 0.08);
}
.nav-item .dropdown-item.dropdown-item--orange:hover,
.nav-item .dropdown-item.dropdown-item--orange.is-active {
	background: rgba(255, 103, 0, 0.10);
}
.nav-item .dropdown-item.dropdown-item--green:hover,
.nav-item .dropdown-item.dropdown-item--green.is-active {
	background: rgba(16, 185, 129, 0.10);
}

.nav-item .item-info h6 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}
.nav-item .item-info p {
	font-size: 12px;
	color: #666;
	margin: 0;
	white-space: normal;
	line-height: 1.6;
	word-break: break-word;
}
.nav-actions {
	display: flex;
	align-items: center;
	height: 100%;
	gap:15px;
	z-index: 1001;
	flex-shrink: 0;
	margin-left: auto;
}
.nav-actions .btn-login {
	font-size: 13px;
	padding:10px;
}
.nav-actions .btn-login:hover {
	color: var(--water-blue);
}
.nav-actions .btn-register {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	transition: all 0.25s;
	padding: 0 30px;
	color: #fff;
	background-color: var(--water-blue);
}
.nav-actions .btn-text{
	font-size: 13px;
	font-weight: 600;
	position: relative;
	display: inline-block;
}
.nav-actions .btn-register:hover{
	background-color: var(--water-blue-hover);
	color:#fff;
}
/* hero */
.home-hero{
	position: relative;
	padding:60px 0 0;
}
.home-hero .gradient-background{
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.home-hero .gradient-sphere{
    border-radius: 50%;
    filter: blur(78.6px);
    opacity: .08;
    position: absolute;
}
.home-hero .sphere-1{
    animation: breathe 8s ease-in-out infinite alternate;
    background: #39affd;
    border-radius: 670px;
    height: 492px;
    left: -30%;
    top: -30%;
    width: 670px;
}
.home-hero .sphere-2{
    animation: breathe-center 10s ease-in-out infinite alternate;
    background: #8e64ee;
    border-radius: 384px;
    height: 287px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 384px;
}
.home-hero .sphere-3{
	animation: breathe 12s ease-in-out infinite alternate;
    background: #ff9540;
    border-radius: 400px;
    height: 400px;
    right: 0%;
    top: -30%;
    width: 400px;
}
.home-hero .grid-overlay{
    background-image: linear-gradient(90deg,rgba(188,175,222,.08) 1px,transparent 0),linear-gradient(180deg,rgba(188,175,222,.08) 1px,transparent 0);
    background-size: 120px 120px;
    z-index: 6;
}
.home-hero .grid-overlay,
.home-hero .noise-overlay{
	position: absolute;
	width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.home-hero .main-content{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	padding: 100px 5vw;
}
.home-hero .main-content-left{
	flex: 0 0 43%;
}
.home-hero .main-content-left h1{
	font-size: 36px;
	font-weight: 600;
	color: #1a1a1a;
}
.home-hero .main-content-title-highlight{
	background: linear-gradient(90deg, #5C99FF 20%, #1366EC 52%, #856EFA 82%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.home-hero .main-content-left p{
	font-size: 16px;
	color: #383838;
	line-height: 1.65;
	margin-top: 20px;
	max-width: 720px;
}
.home-hero .main-content-right{
	flex: 0 0 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home-hero .hero-visual {
	position: relative;
	width: 188px;
	height: 383px;
}
.home-hero .hero-dot-1{
	position: absolute;
	left: 35%;
	top: -10%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #6ee7b7 0%, #22c55e 18%, rgba(34,197,94,0.35) 55%, transparent 75%);
	z-index: 3;
	opacity: .5;
}
.home-hero .hero-dot-2{
	position: absolute;
	left: 20%;
	top: 30%;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: radial-gradient(circle at 70% 70%, #ff9aa3 0%, #fd4c5c 22%, rgba(253,76,92,0.35) 58%, transparent 78%);
	z-index: 3;
	opacity: .5;
}
.home-hero .hero-dot-3{
	position: absolute;
	left: 18%;
	bottom: 5%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 70% 70%,
		#9fd7ff 0%,
		#1293ec 24%,
		rgba(18,147,236,0.38) 60%,
		transparent 80%
	);
	z-index: 3;
}
.home-hero .hero-dot-4{
	position: absolute;
	right:15%;
	top: 20%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 70% 70%,
		#ffe1b3 0%,
		#ff9800 28%,
		rgba(255,152,0,0.42) 62%,
		transparent 82%
	);
	z-index: 3;
}
.home-hero .hero-device-frame-1{
	position: absolute;
	bottom: 30px;
	left: 50%;
  	transform: translateX(-300px); 
	width: 560px;
	height: 380px;
	background-image: url("assets/img/device-inframe-1.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	opacity: .4;
	overflow: hidden;
}
.home-hero .hero-device-frame-1::after{
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 10%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.15) 32%, transparent 70%);
	pointer-events: none;
}
.home-hero .hero-device-frame-2{
	position: absolute;
	bottom: 20px;
	right: 50%;
  	transform: translateX(140px); 
	width: 142px;
	height: 307px;
	background-image: url("assets/img/device-inframe-2.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: .7;
	z-index: 0;
}
.home-hero .hero-device-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("assets/img/hero-inframe.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
} 
.home-hero .hero-slider {
	position: absolute;
	overflow: hidden;
	width: 151px;
	height: 314px;
	z-index: 2;
}
.home-hero .hero-slider-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.home-hero .hero-slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-hero .hero-elem-1{
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 130px;
	height: 130px;
	transform: translateX(-230px);
	background-image: url("assets/img/hero-elem-1.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 3;
}
.home-hero .hero-elem-2{
	position: absolute;
	bottom: 30px;
	right: 50%;
	width: 178px;
	height: 196px;
	transform: translateX(320px);
	background-image: url("assets/img/hero-elem-2.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 3;
}

/* scenarios Pro */
.scenarios-pro {
	position: relative;
	padding: 100px 5vw;
	box-shadow: 0px 10px 40px -6px rgba(0, 0, 0, .1), 0px 24px 80px -16px rgba(83, 142, 236, 0.2);
    border-radius: 30px 30px 0 0;
	z-index: 12;
}
.scenarios-pro-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}
.scenarios-pro-title {
	position: relative;
	display: inline-block;
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px;
}
.scenarios-pro-desc {
	font-size: 15px;
	color: #5c6370;
	line-height: 1.65;
	margin: 0 auto 20px;
	max-width: 480px;
}
.scenarios-pro-line {
	width: 48px;
	height: 3px;
	margin: 0 auto;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--water-blue), rgba(0, 110, 255, 0.4));
}
.scenario-grid-pro {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	z-index: 1;
}
.s-pro-card {
	position: relative;
	padding: 0 10px;
}
.s-pro-card .item{
	padding: 30px;
	position: relative;
}
.s-pro-card .item::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
	background-color: #fff;
    border-radius: 0 40px 0 40px;
    -webkit-box-shadow: 2.5px 4.33px 20px 0px rgb(0 0 0 / 8%);
    box-shadow: 2.5px 4.33px 20px 0px rgb(0 0 0 / 8%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 800ms ease, height 800ms ease, border-radius 800ms ease;
    transition: width 800ms ease, height 800ms ease, border-radius 800ms ease;
}
.s-pro-card .item:hover::before{
	width:calc(100% - 20px);
	height:calc(100% - 20px);
	border-radius:40px 40px 40px 40px;
}
.s-pro-card .item .ico {
	width: 60px;
	height: 60px;
	display: block;
	margin-bottom: 15px;
	position: relative;
}
.s-pro-card .item .icon-company{
	background: url('assets/img/icon-company.png') no-repeat center center;
}
.s-pro-card .item .icon-dealer{
	background: url('assets/img/icon-dealer.png') no-repeat center center;
}
.s-pro-card .item .icon-flash{
	background: url('assets/img/icon-flash.png') no-repeat center center;
}
.s-pro-card .item .icon-store{
	background: url('assets/img/icon-store.png') no-repeat center center;
}
.s-pro-card  .item-content h3,
.s-pro-card  .item-content p {
	position: relative;
	z-index: 1;
}
.s-pro-card-title {
	font-size: 17px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.s-pro-card-label {
	position: relative;
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: #888;
	margin-bottom: 8px;
	text-transform: uppercase;
}
.s-pro-card-desc {
	font-size: 13px;
	color: #5c6370;
	line-height: 1.65;
	min-height: 3.3em;
}

/* matrix */
.matrix-switcher {
	position: relative;
	padding: 100px 0;
	background: radial-gradient(900px 420px at 50% -10%, rgba(92, 182, 255, 0.22) 0%, rgba(92, 182, 255, 0) 60%),
		linear-gradient(180deg, #F6FAFF 0%, #F4F7FB 45%, #F7FAFF 100%);
	z-index: 13;
}
.matrix-switcher .matrix-switcher-wrapper.symmetric {
	display: grid;
	grid-template-columns: 260px 1fr 260px;
	gap: 20px;
	margin-top: 60px;
	height: 420px;
	align-items: stretch;
}
.matrix-switcher .matrix-switcher-nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.matrix-switcher .switcher-nav-item {
	flex-grow: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 15px;
	background: #fff;
	cursor: pointer;
	transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.matrix-switcher .nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10; 
}
.matrix-switcher .nav-progress-bar-inner {
    width: 0%;
    height: 100%;
    background-color: var(--water-blue);
    transition: none;
}
.matrix-switcher .switcher-nav-item.active .nav-progress-bar-inner {
    background-color: rgba(255, 255, 255, 0.9);
}
.matrix-switcher .switcher-nav-item.active {
	background: var(--water-blue);
	border-color: var(--water-blue);
	box-shadow: 0 8px 20px rgba(0, 110, 255, 0.15);
    z-index: 2;
}
.nav-icon {
	width: 32px;
	height: 32px;
	line-height: 22px;
	background: rgba(0, 110, 255, 0.05);
	color: var(--water-blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.nav-icon i {
	font-size: 22px;
}
.matrix-switcher .switcher-nav-item.active .nav-icon {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.nav-text h4 {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 2px;
	white-space: nowrap;
}
.nav-text p {
	font-size: 11px;
	color: #6b7280;
	margin: 0;
	white-space: nowrap;
}
.matrix-switcher .switcher-nav-item.active .nav-text h4,
.matrix-switcher .switcher-nav-item.active .nav-text p {
	color: #fff;
}
.matrix-switcher .matrix-switcher-content {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 60px rgba(0, 110, 255, 0.06);
	position: relative;
	overflow: hidden;
}
.matrix-switcher .matrix-content-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.matrix-switcher .matrix-bg-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    background: radial-gradient(circle, var(--water-blue) 0%, transparent 70%);
}
.matrix-switcher .matrix-bg-blob-1 { top: -100px; left: -100px; }
.matrix-switcher .matrix-bg-blob-2 { bottom: -100px; right: -100px; }
.matrix-switcher .matrix-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 110, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}
.matrix-switcher .switcher-pane {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
    z-index: 1;
}
.matrix-switcher .switcher-pane.active {
	opacity: 1;
	visibility: visible;
}
.matrix-switcher .pane-info .pane-tag,
.matrix-switcher .pane-info p,
.matrix-switcher .pane-features .f-item,
.matrix-switcher .pane-action {
    opacity: 0;
    transform: translateX(-15px);
}
.matrix-switcher .pane-info h3 {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 20px;
}
.matrix-switcher .pane-info h3 .char {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}
.matrix-switcher .pane-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	justify-content: center;
	padding: 0 50px;
}
.matrix-switcher .switcher-pane .pane-inner {
	align-items: flex-start;
	text-align: left;
}
.matrix-switcher .pane-info {
	max-width: 520px;
	z-index: 2;
}
.matrix-switcher .pane-tag {
	font-size: 14px;
	font-weight: 700;
	color: var(--water-blue);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
	display: block;
}
.matrix-switcher .pane-info p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 30px;
}
.matrix-switcher .pane-features {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.matrix-switcher .f-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #374151;
	background: #f8fafc;
	padding: 5px 16px;
	border-radius: 25px;
}
.matrix-switcher .f-item i {
	font-size: 20px;
	color: var(--water-blue);
}
.matrix-switcher .pane-visual {
	position: absolute;
	width: 520px;
	height: 400px;
	z-index: 1;
	pointer-events: none;
	right: -60px;
	bottom: -80px;
}
.matrix-switcher .pane-visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	transform-origin: bottom right;
	transform: none;
	will-change: transform, opacity, filter;
}


@keyframes logo-sweep{
	0%{
		transform: translateX(-5%) rotate(45deg);
		opacity: 0;
	}
	15%{
		opacity: 1;
	}
	100%{
		transform: translateX(360%) rotate(45deg);
		opacity: 0;
	}
}
@keyframes breathe-center {
	0% {
		opacity: .05;
    	transform: translateX(-50%) scale(.95);
	}
	100% {
		opacity: .12;
    	transform: translateX(-50%) scale(1.05);
	}
}
@keyframes breathe {
	0% {
		opacity: .05;
		transform: scale(.95);
	}
	100% {
		opacity: .12;
		transform: scale(1.05);
	}
}

/* valueflow */
.value-flow {
	padding: 100px 0;
	background: #fff;
	position: relative;
}
.value-flow-inner {
	position: relative;
	background: #fff;
	border-radius: 12px;
	overflow: visible;
}
.value-flow-inner .section-title {
	position: relative;
	z-index: 1;
}
.value-flow-inner .ali-sub-title {
	color: var(--water-blue);
}
.value-flow .vf-accordion {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: stretch;
	width: 100%;
	gap: 0;
	margin-top: 32px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #E8ECF0;
	background: #FAFBFC;
}
.value-flow .vf-accordion-item {
	background: #fff;
	border: none;
	border-right: 1px solid #E8ECF0;
	position: relative;
	overflow: hidden;
	flex: 1 1 0;
	min-width: 0;
	max-width: none;
	height: 170px;
	display: flex;
	flex-direction: column;
	transition: flex 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.2s ease, box-shadow 0.25s ease;
	cursor: pointer;
}
.value-flow .vf-accordion-item:last-child {
	border-right: 1px solid transparent;
}
.value-flow .vf-accordion-item:hover {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.value-flow .vf-accordion-item.is-open {
	flex: 1.4 1 0;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	z-index: 1;
	border-right: 1px solid #E8ECF0;
}
.value-flow .vf-accordion-item:last-child.is-open {
	border-right: 1px solid transparent;
}
.value-flow .vf-accordion-item[data-index="0"] .gooey-bg .gooey__obj {
	color: #e8f0fe;
}
.value-flow .vf-accordion-item[data-index="0"]:hover .gooey-bg .gooey__obj {
	color: #c7d8f7;
}
.value-flow .vf-accordion-item[data-index="1"] .gooey-bg .gooey__obj {
	color: #fce8e6;
}
.value-flow .vf-accordion-item[data-index="2"] .gooey-bg .gooey__obj {
	color: #e6f4ea;
}
.value-flow .vf-accordion-item[data-index="3"] .gooey-bg .gooey__obj {
	color: #fef7e0;
}
.value-flow .vf-accordion-item[data-index="4"] .gooey-bg .gooey__obj {
	color: #c8edf3;
}
.value-flow .svgEffects {
	overflow: hidden;
	display: block;
	width: 0;
	height: 0;
}
.value-flow .gooey {
	position: relative;
    text-decoration: none;
    z-index: 1;
}

.value-flow .gooey__obj {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin-bottom: 3px;
	z-index: 2;
}
.value-flow .gooey__obj-inner {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 50%;
	margin: auto;
	animation: rotateanm var(--duration) cubic-bezier(.86,0,.07,1) infinite;
}
.value-flow .gooey__obj-inner::before {
	position: absolute;
	content: "";
	background-color: currentColor;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transition: 2s cubic-bezier(.45,.05,.55,.95);
	transition-property: width, height, background, left, top, right, bottom, transform;
}
/* hover 时过渡缩短，光斑位移更跟手 */
.value-flow .vf-accordion-item:hover .gooey-bg .gooey__obj-inner::before,
.value-flow .s-pro-card .item:hover .gooey-bg .gooey__obj-inner::before {
	transition-duration: 0.45s;
}
.value-flow .s-pro-card .item:hover .gooey-bg .gooey__obj:nth-child(1) .gooey__obj-inner::before {
	width: 120%;
	height: 120%;
	transform: translate(-25%, -25%);
}
.value-flow .gooey-bg {
	position: relative;
	width: 100%;
	height: 100%;
	filter: url('#gooey-effect');
	z-index: 1;
	mix-blend-mode: multiply;
	pointer-events: none;
}
.value-flow .vf-accordion-item .gooey-bg {
	position: absolute;
	inset: 0 auto 0 calc(-20px / 2 * -1);
	margin: auto;
	width: calc(80px + -20px);
	height: calc(80px + -20px / 0.9);
}
.value-flow .gooey__obj:nth-child(1) .gooey__obj-inner {
	animation-timing-function: linear;
}
.value-flow .gooey__obj:nth-child(1) .gooey__obj-inner::before {
	width: 100%;
	height: 100%;
	transition-duration: 0.5s;
}
.value-flow .gooey__obj:nth-child(2) .gooey__obj-inner::before {
	left: var(--l);
	top: var(--t);
	width: calc(var(--size) * 1);
	height: calc(var(--size) * 1);
}
.value-flow .gooey__obj:nth-child(3) .gooey__obj-inner::before {
	left: var(--l);
	top: var(--t);
	width: calc(var(--size) * 3);
	height: calc(var(--size) * 3);
}
.value-flow .vf-node-shine {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(90% 140% at var(--shine-x, 50%) var(--shine-y, 30%),
			rgba(0, 110, 255, 0.06),
			transparent 55%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.value-flow .vf-accordion-item.is-open .vf-node-shine {
	opacity: 1;
}
.value-flow .vf-accordion-head {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 20px 18px 20px 18px;
	background: none;
	border: none;
	color: #333;
	font: inherit;
	text-align: left;
	cursor: pointer;
	position: relative;
	z-index: 2;
	min-height: 60px;
}
.value-flow .vf-accordion-head .ico {
	font-size: 32px;
	flex-shrink: 0;
	margin-bottom: 0;
	transition: transform 0.25s ease, background 0.2s ease;
}
.value-flow .vf-accordion-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0;
	transition: color 0.2s ease;
}
.value-flow .vf-accordion-item.is-open .vf-accordion-title {
	color: var(--water-blue);
	white-space: normal;
}
.value-flow .icon-arrow-right {
	color: #999;
	flex-shrink: 0;
	transition: transform 0.35s ease, color 0.2s ease;
}
.value-flow .vf-accordion-item.is-open .icon-arrow-right {
	transform: rotate(90deg);
	color: var(--water-blue);
}
.value-flow .vf-accordion-body p {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 12px;
}
.value-flow .vf-accordion-body ul {
	list-style: none;
	font-size: 12px;
	color: #666;
	margin: 0;
	padding: 0;
}
.value-flow .vf-accordion-body ul li {
	white-space: nowrap;
}
.value-flow .vf-accordion-body ul li + li {
	margin-top: 6px;
}
.value-flow .vf-accordion-body {
	margin: 6px 24px 18px 24px;
	text-align: center;
}
.value-flow .vf-accordion-summary {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
	margin: 0 18px 6px 72px;
	flex-shrink: 0;
}
.value-flow .vf-accordion-summary,
.value-flow .vf-accordion-item.is-open .vf-accordion-body {
	display: none;
}
.value-flow .vf-accordion-item .vf-accordion-body,
.value-flow .vf-accordion-item.is-open .vf-accordion-summary {
	display: block;
}
.value-flow .vf-detail {
	margin-top: 20px;
	padding: 18px 20px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #E8ECF0;
	font-size: 13px;
	color: #555;
	line-height: 1.7;
}
.value-flow .vf-detail ul {
	margin-top: 8px;
	padding-left: 0;
}
.value-flow .vf-detail ul li + li {
	margin-top: 4px;
}
.value-flow .vf-icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.value-flow .vf-icon svg {
	width: 36px;
	height: 36px;
	color: var(--water-text-light);
	stroke-width: 1.25;
}
.value-flow .vf-icon svg path,
.value-flow .vf-icon svg line,
.value-flow .vf-icon svg circle {
	stroke-width: 1.25;
}

/* workflow-pulse */
.workflow-pulse {
	position: relative;
	background-image: url("assets/img/workflow-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0 130px;
	overflow: hidden;
	color: #0f172a;
}
.workflow-pulse .wf-bg-glow {
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(0, 110, 255, 0.10) 0%, rgba(92, 182, 255, 0.06) 35%, transparent 72%);
	pointer-events: none;
}
.workflow-pulse .wf-header {
	text-align: center;
	margin-bottom: 50px;
}
.workflow-pulse .wf-kicker {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #2563eb;
	margin-bottom: 20px;
}
.workflow-pulse .wf-header h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}
.workflow-pulse .wf-highlight {
	background: linear-gradient(90deg, #5CB6FF, #006EFF);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.workflow-pulse .wf-header p {
	font-size: 15px;
	color: rgba(15, 23, 42, 0.62);
}
.workflow-pulse .workflow-card{
	padding: 0 24px;
	background-color: #fff;
    display: grid;
	--base: calc((100% + 48px) / 5);
    grid-template-columns: var(--base) var(--base) var(--base) var(--base) calc(var(--base) - 48px);
}
.workflow-pulse .workflow-card-item{
	position: relative;
	display: flex;
    background-color: #fff;
}
.workflow-pulse .workflow-card-item-content{
    flex: 1;
    padding: 30px 0;
    color: #383838;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.workflow-pulse .workflow-card-item-content h3{
	width: 100%;
	font-size: 18px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	text-align: left;
}
.workflow-pulse .workflow-card-item-content .tit{
	padding-left: 30px;
}
.workflow-pulse .workflow-card-item-content span{
	font-size: 26px;
	color: #ff6a00;
	font-family: "dincyr";
	padding-right: 8px;
}
.workflow-pulse .workflow-card-item-content p{
	font-size: 13px;
	color:#7c7c7c;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.workflow-pulse .workflow-card-item-before{
	width: 48px;
    height: 173px;
    background-image: url("assets/img/workflow-before.png");
    opacity: 1;
    background-size: cover;
}

/* news section */
.news-section {
	padding: 100px 0 100px;
	background: #fff;
}
.news-section .container-wide {
	max-width: 100%;
}
.news-section .news-inner {
	background: transparent;
	border-radius: 0;
	padding: 0;
	border: none;
	box-shadow: none;
}
.news-section .news-inner--split {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 100px;
	align-items: flex-start;
}
.news-section .news-sidebar {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 220px;
}
.news-section .news-sidebar-label {
	font-size: 28px;
	font-weight: 700;
	text-align: right;
	margin-bottom: 40px;
}
.news-section .news-sidebar-subtitle-en {
	font-size: 11px;
	font-weight: 500;
	color: #b0b0b0;
	letter-spacing: 0.18em;
}
.news-section .news-main {
	margin-bottom: 0;
}
.news-section .news-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.news-section .news-tabs-vertical {
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.news-section .news-tab {
	position: relative;
	display: flex;
	justify-content: flex-end;
	border: none;
	background: transparent;
	color: #7c7c7c;
	font-size: 15px;
	padding: 8px 0;
	cursor: pointer;
	transition: color 0.2s ease;
	white-space: nowrap;
	align-self: flex-end;
	width: 100%;
	z-index: 0;
}
.news-section .news-tab.is-active {
	font-weight: 600;
}
.news-section .news-tab__label {
	position: relative;
	display: inline-block;
}
.news-section .news-tab__label::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	height: 6px;
	width: 0;
	background: linear-gradient(90deg, #ff7e00, #ff9f3a);
	transition: width 0.22s ease-out;
	z-index: -1;
}
.news-section .news-tab.is-active .news-tab__label::after {
	width: 100%;
}
.news-section .news-tab.is-active .news-tab__label{
	color: var(--water-active);
}
.news-section .news-main {
	display: flex;
	align-items: stretch;
}
.news-section .news-list {
	width: 100%;
}
.news-section .news-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 56px;
	row-gap: 40px;
}
.news-section .news-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 40px 28px 0;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #eee;
	background: transparent;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
	min-height: 120px;
}
.news-section .news-card:hover {
	color: var(--water-blue-hover);
}
.news-section .news-date {
	font-size: 12px;
	color: #999;
	font-family: "dincyr";
	margin-bottom: 10px;
}
.news-section .news-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 8px;
	transition: color 0.2s ease;
}
.news-section .news-title:hover {
	color: var(--water-blue);
}
.news-section .news-title .news-tag {
	display: inline-block;
	margin-left: 8px;
}
.news-section .news-desc {
	font-size: 12px;
	color: #777;
	line-height: 1.7;
	margin-bottom: 18px;
}
.news-section .news-card-footer {
	margin-top: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.news-section .news-cat {
	font-size: 11px;
	background: #E6F7FF;
	color: var(--water-blue);
	padding: 2px 8px;
	border-radius: 3px;
}
.news-section .news-tag {
	background: #F5222D;
	color: #fff;
	font-size: 10px;
	padding: 0 4px;
	border-radius: 2px;
	margin-left: 6px;
}
.news-section .news-more-btn span {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    transition: border-color .5s,transform .5s;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    vertical-align: middle;
}
.news-section .news-more-btn span:after, 
.news-section .news-more-btn span:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background-color: #e6e6e6;
    transition: background .5s;
}
.news-section .news-more-btn span:before {
    transform: translate(-50%,-50%);
}
.news-section .news-more-btn span:after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.news-section .news-card:hover .news-more-btn span{
    transform: rotate(90deg);
}

/* stats */
.stats-section {
	position: relative;
	padding: 96px 0 88px;
	background-image: url("assets/img/stats-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.stats-section .stats-parallax {
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
	opacity: 0.6;
}
.stats-section .stats-parallax--back {
	width: 260px;
	height: 260px;
	top: -80px;
	left: -40px;
	background: radial-gradient(circle at 30% 30%, rgba(0, 110, 255, 0.22), transparent 60%);
	will-change: transform;
	animation: statsFloatBack 12s ease-in-out infinite alternate;
}
.stats-section .stats-parallax--front {
	width: 200px;
	height: 200px;
	bottom: -60px;
	right: 20px;
	background: radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.28), transparent 60%);
	will-change: transform;
	animation: statsFloatFront 14s ease-in-out infinite alternate;
}
.stats-section .stats-orbit {
	position: absolute;
	border-radius: 999px;
	background: radial-gradient(circle at 50% 40%,
			rgba(255, 255, 255, 0.6) 0,
			rgba(92, 182, 255, 0.55) 22%,
			rgba(0, 174, 255, 0.25) 45%,
			rgba(0, 110, 255, 0.0) 72%);
	opacity: 0.8;
	filter: blur(8px);
	box-shadow: 0 0 40px rgba(0, 174, 255, 0.45);
	will-change: transform, opacity;
	z-index: 0;
}
.stats-section .stats-orbit--tiny-2 {
	width: 20px;
	height: 20px;
	bottom: 8%;
	left: 14%;
	animation: statsOrbitTiny2 13.1s linear infinite;
}
.stats-section .stats-inner {
	border-radius: 18px;
	padding: 32px 34px 34px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 18px 45px rgba(15, 57, 117, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.stats-section .stats-grid {
	display: block;
}
.stats-section .stats-head {
	text-align: center;
	margin-bottom: 40px;
}
.stats-section .stats-head h2 {
	font-size: 32px;
	margin-bottom: 20px;
}
.stats-section .stats-head p {
	font-size: 14px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 10px;
}
.stats-section .stats-meta {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	font-size: 12px;
	color: #555;
}
.stats-section .stats-meta span {
	background: #fff;
	border-radius: 999px;
	padding: 4px 15px;
}
.stats-section .stats-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
}
.stats-section .stats-card {
	background: transparent;
	border-radius: 0;
	padding: 6px 0;
	box-shadow: none;
	border: none;
	position: relative;
	overflow: visible;
	flex: 1 1 160px;
	text-align: center;
}
.stats-section .stats-number {
	font-size: 26px;
	font-weight: 700;
	color: #006EFF;
	font-family: "dincyr";
	margin-bottom: 6px;
	letter-spacing: 0.04em;
	font-variant-numeric: tabular-nums lining-nums;
	text-shadow: 0 0 12px rgba(0, 110, 255, 0.28);
}
.stats-section .stats-label {
	font-size: 12px;
	color: #666;
}
.stats-section .stats-card::before,
.stats-section .stats-card--primary::before,
.stats-section .stats-card:hover::before {
	display: none;
}
.stats-section .stats-card--primary {
	flex: 1 1 200px;
}
.stats-section .stats-card--primary .stats-label {
	font-size: 13px;
}

/* Trust Section */
.trust-section {
	padding: 60px 0;
}
.trust-section .logo-line-wrapper {
	position: relative;
	overflow: hidden;
	padding: 12px 0;
}
.trust-section .logo-marquee {
	overflow: hidden;
	margin-bottom: 30px;
	width: 100%;
}
.trust-section .logo-marquee--bottom {
	margin-bottom: 0;
}
.trust-section .logo-marquee .js-marquee {
	display: flex !important;
	flex-wrap: nowrap !important;
	flex-direction: row !important;
	align-items: center;
	gap: 48px;
	width: max-content !important;
	box-sizing: border-box;
}
.trust-section .logo-marquee .marquee {
	display: block;
}
.trust-section .logo-marquee .marquee .logo-line-item,
.trust-section .logo-marquee .js-marquee .logo-line-item {
	flex-shrink: 0;
}
.trust-section .logo-line-item {
	width: 100px;
	flex-shrink: 0;
}
.trust-section .logo-line-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 96px;
	pointer-events: none;
	z-index: 1;
}
.trust-section .logo-line-fade--left {
	left: 0;
	background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.trust-section .logo-line-fade--right {
	right: 0;
	background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

/* assurance */
.assurance-bar {
	position: relative;
	padding: 30px 0;
	overflow: hidden;
	background-color: #f5f5f6;
	box-shadow: 0 2px 8px #0000000a;
}
.assurance-bar .assurance-bar-bg{
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.assurance-bar .assurance-bar-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(116, 116, 116, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(116, 116, 116, 0.06) 1px, transparent 1px);
	background-size: 47px 47px;
	pointer-events: none;
	opacity: .7;
}
.assurance-bar .assurance-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.assurance-bar .a-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 16px 24px;
	backdrop-filter: blur(8px);
	text-align: center;
}
.assurance-bar .a-item .ico{
	width: 48px;
    height: 48px;
}
.assurance-bar .a-item .ico-1{
	background-image: url("assets/img/assurance-1.png");
	background-size: cover;
}
.assurance-bar .a-item .ico-2{
	background-image: url("assets/img/assurance-2.png");
	background-size: cover;
}
.assurance-bar .a-item .ico-3{
	background-image: url("assets/img/assurance-3.png");
	background-size: cover;
}
.assurance-bar .a-item .ico-4{
	background-image: url("assets/img/assurance-4.png");
	background-size: cover;
}
.assurance-bar .a-item-content {
	display: flex;
	flex-direction: column;
	text-align: left;
}
.assurance-bar .a-item-title {
	font-size: 15px;
	color: #383838;
}
.assurance-bar .a-item-desc {
	font-size: 12px;
	color: rgba(56, 56, 56, 0.6);
}

/* Footer */
.footer {
	padding: 60px 0 40px;
	background: #ececec;
}
.footer .f-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer .f-col,
.footer .f-col.f-demo-col {
	flex: 0 0 auto;
	min-width: 180px;
}
.footer .f-contact {
	margin-left: auto;
}
.footer .f-col h4{
	font-size: 15px;
	margin-bottom: 20px;
}
.footer .f-col .f-link{
	max-width: max-content;
	display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
	color:#585858;
	transition: border-color .5s,transform .5s;
}
.footer .f-col .f-link:hover{
	color: var(--water-blue-hover);
}
.footer .f-col .f-link:hover svg {
	-webkit-animation:arrow_cycle .5s cubic-bezier(.37,0,.63,1) .1s;
	animation: arrow_cycle .5s cubic-bezier(.37,0,.63,1) .1s
}
.footer .f-col .f-link-text{
	font-size: 14px;
}
.footer .f-col .f-link-icon{
	height: 36px;
	width: 36px;
	display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    aspect-ratio: 1 / 1;
    color: currentColor;
    justify-content: center;
}
.footer .f-col .f-link-icon svg {
    height: .8rem;
    width: .8rem;
}
.footer .f-demo {
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer .f-demo h4 {
	font-size: 13px;
	margin: 0 0 4px;
	color: #333;
}
.footer .f-demo-item{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
	padding: 4px;
	background-color: rgba(255, 255, 255, 0.5);
}
.footer .f-demo-item-img{
	width: 100px;
	height: 100px;
}
.footer .f-demo-item-text{
	margin-top: 5px;
	font-size: 12px;
	color: #999;
}
.footer .f-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	gap: 10px;
}
.footer .f-contact h4{
	font-size: 15px;
}
.footer .f-phone{
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	font-family: "mono";
	color: var(--water-blue);
	margin: 10px 0;
	border-radius: 25px;
	padding: 0 15px;
	background-color: rgba(0, 86, 204, 0.02);
	border:1px solid rgba(0, 86, 204, 0.3);
	text-decoration: none;
}
.footer .f-phone .ico{
	font-size: 26px;
	font-weight: normal;
	margin-right: 10px;
}
.footer .f-qr-code{
	display: flex;
	flex-direction: row;
	gap: 15px;
}
.footer .f-qr-code-item{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.footer .f-qr-code-item img{
	display: inline-block;
	width: 84px;
	height: 84px;
	padding:2px;
	background-image: linear-gradient(0deg, #fff 0%, #f3f5f8 100%);
    border: 2px solid #fff;
    border-radius: 4px;
	margin-bottom: 10px;
}
.footer .f-qr-code-text{
	font-size: 12px;
	color: #999;
}
.footer .f-bottom{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #e6e6e6;
	margin-top: 20px;
	padding-top: 20px;
	font-size: 13px;
	color: #9c9c9c;
}
.footer  .f-beian a{
	color: #9c9c9c;
	display: inline-block;
	margin-right: 20px;
}
.footer  .f-beian a:hover{
	color: var(--water-blue-hover);
}
.footer  .f-beian img{
	margin-right: 5px;
}
.footer  .f-copy{
	font-family: "mono";
}

/* floating */
.floating-menu {
	position: fixed;
	right: 0;
	bottom: 30%;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	box-shadow: 0 12px 48px rgba(15, 23, 42, 0.15);
	z-index: 1200;
	overflow: visible;
	border: 1px solid rgba(0, 0, 0, 0.04);
}
.floating-item {
	width: 55px;
	height: 55px;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	z-index: 10;
}
.floating-item i {
	font-size: 23px;
	color: #4b5563;
	transition: all 0.3s;
}
.push-pull-text,
.push-pull-panel {
	position: absolute;
	right: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 600;
	color: #1f2937;
	white-space: nowrap;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateX(10px);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 5;
	pointer-events: none;
	border: 1px solid rgba(0, 0, 0, 0.05);
}
.push-pull-panel {
	height: auto;
	min-height: 48px;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
}
.floating-menu .floating-item--primary {
	background: linear-gradient(180deg, #ff6a00, #ff2d55);
	box-shadow: 0 14px 40px rgba(248, 113, 113, 0.55);
}
.floating-menu .floating-item--primary i {
	color: #ffffff;
}
.floating-back-top-wrapper {
	position: fixed;
	right: 0;
	bottom: 20%;
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	z-index: 1200;
}
.floating-back-top-wrapper.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.floating-back-top-wrapper .floating-item i {
	color: #9ca3af;
}
.floating-back-top-wrapper:hover .floating-item {
	background: rgba(0, 110, 255, 0.04);
}
.floating-back-top-wrapper:hover .floating-item i {
	color: #006EFF;
}
.floating-push-pull {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
.floating-push-pull:hover .push-pull-text,
.floating-push-pull:hover .push-pull-panel {
	opacity: 1;
	visibility: visible;
	transform: translateX(-5px);
	pointer-events: auto;
}
.floating-push-pull:hover .floating-item:not(.floating-item--primary) {
	background: rgba(0, 110, 255, 0.04);
}
.floating-push-pull:hover .floating-item:not(.floating-item--primary) i {
	color: #006EFF;
}
.popover-qr {
	text-align: center;
	width: 110px;
}
.popover-qr img {
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.popover-qr p {
	font-size: 12px;
	color: #1f2937;
	margin: 0;
	font-weight: 600;
}
.popover-phone .phone-number {
	font-size: 16px;
	color: #006EFF;
	font-family: "mono";
	letter-spacing: -0.5px;
}
.popover-phone p {
	font-size: 12px;
	color: #6b7280;
	margin: 0;
}

/* solutions-hero */
.solutions-hero {
	width: 100%;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}
.solutions-hero--product {
	background: linear-gradient(120deg, #e3f8ff, #d7f5ff 35%, #c2e2f7 80%);
}
.solutions-hero--pro {
	background: linear-gradient(135deg, #dbe2ff 0%, #edf0ff 40%, #c3d4ff 100%);
}
.solutions-hero--retail {
	background: linear-gradient(135deg, #fff4e5 0%, #ffe6cc 40%, #ffd1a3 100%);
}
.solutions-hero--community {
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 45%, #a7f3d0 100%);
}
.solutions-hero--price {
	background: linear-gradient(135deg, #FFE3E9 0%, #ffd8e0 45%, #ffb8c6 100%);
}
.solutions-hero--apply {
	background: linear-gradient(135deg, #e5fbff 0%, #c5f3ff 40%, #b0e5ff 70%, #7fd7ff 100%);
}
.solutions-hero--news {
	background: linear-gradient(135deg, #f5f3f0 0%, #ebe8e4 40%, #e0dcd7 100%);
}
.solutions-hero--doc {
	background: linear-gradient(135deg, #f0f9f9 0%, #e0f2f1 40%, #ccf0ed 100%);
}
.solutions-hero-animation{
	background-size: 400% 400%;
    animation: bg-animation 10s ease infinite;
    animation-play-state: running;
}
.solutions-hero-inner {
	padding:100px 0;
	background: radial-gradient(100% 140% at 60% -10%, #fff0, #fff 75%);
}
.solutions-hero-text {
	margin: 0 auto;
	max-width: 720px;
	position: relative;
	text-align: center;
	z-index: 1;
}
.solutions-hero-text h1{
	font-size: 32px;
    line-height: 1.2;
    margin: 20px auto;
    color: #282828;
}
.solutions-hero-text p{
	font-size: 15px;
	color: rgba(25, 25, 25, 0.8);
}
.solutions-hero-text .solutions-highlight{
	background: linear-gradient(76deg, #5199f9, #004fcf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solutions-hero--product .solutions-highlight{
	background: linear-gradient(76deg, #5199f9, #004fcf 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solutions-hero--community .solutions-highlight{
	background: linear-gradient(76deg, #34d399, #10b981 55%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solutions-hero--retail .solutions-highlight{
	background: linear-gradient(76deg, #ff8e50, #ff6c06 60%, #ff3d00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solutions-hero--price .solutions-highlight{
	background: linear-gradient(76deg, #ef4444, #dc2626 55%, #b91c1c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.solutions-hero--apply .solutions-highlight{
	background: linear-gradient(76deg, #12c2e9, #4facfe 60%, #2f80ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solutions-hero--news .solutions-highlight{
	background: linear-gradient(76deg, #6b6256, #5a5146 50%, #4d453c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	background-clip: text;
}
.solutions-hero--doc .solutions-highlight{
	background: linear-gradient(76deg, #0d9488, #0f766e 50%, #115e59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.b-badge {
	display: inline-block;
	padding: 5px 15px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 25px;
	backdrop-filter: blur(10px);
	border: 1px solid transparent;
}
.b-badge--blue {
	background: rgba(0, 110, 255, 0.08);
	color: #006EFF;
	border-color: rgba(0, 110, 255, 0.12);
	box-shadow: inset 1px 1px 2px rgba(0, 110, 255, 0.1);
}
.b-badge--orange {
	background: rgba(255, 103, 0, 0.08);
	color: #FF6700;
	border-color: rgba(255, 103, 0, 0.12);
	box-shadow: inset 0 1px 2px rgba(255, 103, 0, 0.1);
}
.b-badge--green {
	background: rgba(16, 185, 129, 0.08);
	color: #10B981;
	border-color: rgba(16, 185, 129, 0.12);
	box-shadow: inset 0 1px 2px rgba(16, 185, 129, 0.1);
}
.solutions-hero-image{
	position: absolute;
	top: 0;
    left: 50%;
	transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    max-width:1280px;
}
.solutions-hero-image img{
	position: absolute;
}
.green-bigest-ball{
	top: -60px;
    left: 10%;
}
.green-big-ball{
	top: 0;
    left: 90%;
}
.green-small-ball{
	top: 90px;
    left: 15%;
	opacity: .7;
}
.purple-small-ball{
	top: 120px;
    left: 80%;
	opacity: .3;
    filter: drop-shadow(0 0 2px rgba(55, 73, 87, .1)) drop-shadow(0 2px 5px rgba(55, 73, 87, .1));
}
.price-small-bubble{
	top: 100px;
    left: 20%;
	opacity: .7;
}
.price-small-triagle{
	top: 130px;
    left: 80%;
	opacity: 1;
}
.apply-small-bubble{
	top: 100px;
    left: 20%;
    opacity: .7;
}
.apply-small-group{
	top: 130px;
    left: 75%;
	opacity: .8;
}
.news-small-bubble{
	top: 90px;
    left: 20%;
	opacity: .5;
}
.news-small-group{
	top: 130px;
    left: 75%;
	opacity: .8;
}
.doc-small-pie{
	top: 100px;
    left: 20%;
    opacity: .2;
}
.doc-small-group{
	top: 130px;
    left: 75%;
	opacity:1;
}
.solutions-hero-image .img{
	left:50%;
	margin-top: 64px;
	margin-left: -280px;
	background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
}
.solutions-hero-image_bg{
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
}
.solutions-hero-btn{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 50px 0;
	position: relative;
	z-index: 1;
}
.solutions-hero-btn .btn-item{
	margin: 0 10px;
	padding: 8px 25px;
	font-size: 14px;
	font-weight: 600;
	background: #fff;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.solutions-hero-btn .consult{
	background: var(--water-blue);
	color:#fff;
	border:1px solid var(--water-blue);
	padding:9.2px 25px;
}
.solutions-hero-btn .consult:hover{
	background-color: #004fcf;
	border-color: #004fcf;
}
.solutions-hero-btn .flash-consult{
	color:#fff;
	background: #ec6402;
	border:1px solid #ec6402;
}
.solutions-hero-btn .flash-consult:hover{
	background-color: #e85b00;
	border-color: #e85b00;
}
.solutions-hero--community .solutions-hero-btn .flash-consult{
	background: #10b981;
	border-color: #10b981;
}
.solutions-hero--community .solutions-hero-btn .flash-consult:hover{
	background-color: #059669;
	border-color: #059669;
}
.solutions-hero-btn .buy{
	background: #dc2626;
	color:#fff;
	border:1px solid #dc2626;
}
.solutions-hero-btn .buy:hover{
	background-color: #b91c1c;
	border-color: #b91c1c;
}
.solutions-hero-btn .free{
	background:transparent;
	border:1px solid #a6a6a6;
	color:#282828;
}
.solutions-hero-btn .free:hover{
	background-color: #ff6a00;
	color: #fff;
	border-color: #ff6a00;
}
.solutions-hero-list{
	width: 100%;
	margin: 0 auto;
	padding:0 6vw;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
.solutions-hero-list .solution-value-item{
	flex: 0 0 25%;
	max-width: 25%;
	padding: 20px;
}
.solutions-hero-list .solution-value-item .solution-value-body{
	padding: 30px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.solutions-hero-list .solution-value-item h4{
	font-size:16px;
	margin-bottom: 15px;
}
.solutions-hero-list .solution-value-item p{
	font-size: 13px;
	color:#6b7280;
}
.solutions-section .container-wide {
	max-width: 1440px;
	margin: 0 auto;
}
.solutions-header {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.solutions-title {
	font-size: 30px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 8px;
}
.solutions-desc {
	font-size: 15px;
	color: #6b7280;
	max-width: 640px;
}


.solutions-section{
	padding:100px 0;
}
.sections-indent{
	margin-top: -100px;
	
}
.sections-indent.nopd{
	padding-bottom: 0;
}
.solution-section-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
}
.solution-section-title .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #1a73e8 75%, #1a73e8 90%, transparent 90%, transparent 100%);
}
.solutions-section .retail .solution-section-title .tit,
.solutions-section .solution-section-title.retail .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #ff8e50 75%, #ff6c06 90%, transparent 90%, transparent 100%);
}
.solutions-section .community .solution-section-title .tit,
.solutions-section .solution-section-title.community .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #34d399 75%, #10b981 90%, transparent 90%, transparent 100%);
}
.solution-section-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 50px;
	margin-top: 60px;
}
.solution-section-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 30px;
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.04) 0px 5px 22px, rgba(0, 0, 0, 0.03) 0px 0px 0px 0.5px;
}
.solution-section-item .solution-item-icon{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2563eb;
}
.solution-section-item .ico{
	width: 60px;
	height: 60px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
}
.solution-section-item .icon-water-1{
	background-image: url('assets/img/icon-water-1.png');
}
.solution-section-item .icon-water-2{
	background-image: url('assets/img/icon-water-2.png');
}
.solution-section-item .icon-water-3{
	background-image: url('assets/img/icon-water-3.png');
}
.solution-section-item .icon-water-4{
	background-image: url('assets/img/icon-water-4.png');
}
.solution-section-item .icon-water-5{
	background-image: url('assets/img/icon-water-5.png');
}
.solution-section-item .icon-water-6{
	background-image: url('assets/img/icon-water-6.png');
}
.solution-section-item .icon-retail-1{
	background-image: url('assets/img/icon-retail-1.png');
}
.solution-section-item .icon-retail-2{
	background-image: url('assets/img/icon-retail-2.png');
}
.solution-section-item .icon-retail-3{
	background-image: url('assets/img/icon-retail-3.png');
}
.solution-section-item .icon-retail-4{
	background-image: url('assets/img/icon-retail-4.png');
}
.solution-section-item .icon-retail-5{
	background-image: url('assets/img/icon-retail-5.png');
}
.solution-section-item .icon-retail-6{
	background-image: url('assets/img/icon-retail-6.png');
}
.solution-section-item .icon-community-1{
	background-image: url('assets/img/icon-community-1.png');
}
.solution-section-item .icon-community-2{
	background-image: url('assets/img/icon-community-2.png');
}
.solution-section-item .icon-community-3{
	background-image: url('assets/img/icon-community-3.png');
}
.solution-section-item .icon-community-4{
	background-image: url('assets/img/icon-community-4.png');
}
.solution-section-item .icon-community-5{
	background-image: url('assets/img/icon-community-5.png');
}
.solution-section-item .icon-community-6{
	background-image: url('assets/img/icon-community-6.png');
}
.solution-section-item .solution-item-body {
	min-width: 0;
}
.solution-section-item .solution-item-body h4,
.solution-section-item .solution-item-body p {
	text-align: center;
}
.solution-section-item .solution-item-body p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.7;
    padding: 10px 0;
}

/* Solution Advantage */
.section-advantage {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.solutions-section--advantage{
	padding: 100px 0 0;
	background-color: #f7f9fc;
}
.solutions-section--retail{
	padding: 100px 0 0;
	background-color: #fffcf8;
}
.solutions-section--community{
	padding: 100px 0 0;
	background-color: #f6fefa;
}
.solution-advantage-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
.solution-advantage-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
	width: 100%;
}
.solutions-section--advantage .solution-advantage-item,
.solutions-section--retail .solution-advantage-item,
.solutions-section--community .solution-advantage-item {
	max-width: 980px;
}
.solution-advantage-item:nth-child(odd) {
	background-color: #f9fcfe;
}
.solution-advantage-item:nth-child(odd)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: none;
	width: auto;
	background-color: #f9fcfe;
	box-shadow: 0 0 0 100vmax #f9fcfe;
	clip-path: inset(0 -100vmax);
	z-index: -1;
}
.solutions-section--retail .solution-advantage-item:nth-child(odd) {
	background-color: #fffcf8;
}
.solutions-section--retail .solution-advantage-item:nth-child(odd)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: none;
	width: auto;
	background-color: #fffcf8;
	box-shadow: 0 0 0 100vmax #fffcf8;
	clip-path: inset(0 -100vmax);
	z-index: -1;
}
.solutions-section--community .solution-advantage-item:nth-child(odd) {
	background-color: #f6fefa;
}
.solutions-section--community .solution-advantage-item:nth-child(odd)::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: none;
	width: auto;
	background-color: #f6fefa;
	box-shadow: 0 0 0 100vmax #f6fefa;
	clip-path: inset(0 -100vmax);
	z-index: -1;
}

.solutions-section--advantage .solution-advantage-item:nth-child(odd),
.solutions-section--advantage .solution-advantage-item:nth-child(odd)::before{
	background-color: transparent;
}
.solution-advantage-item:nth-child(2n) {
	flex-direction: row-reverse;
}
.solution-advantage-text {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex: 0 0 48%;
	min-width: 0;
}
.solution-advantage-body h4{
    font-size: 23px;
    font-weight: 600;
	margin-bottom: 10px;
}
.solution-advantage-body p{
	font-size: 15px;
	color: #4b5563;
    line-height: 1.8;
    padding: 10px 0;
}
.solution-advantage-media {
	flex: 0 0 48%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.solution-advantage-image img {
	height: auto;
	display: block;
}
.solutions-architecture-grid{
	display: grid;
	margin-top: 60px;
}

/* solutions common */
.solutions-common {
	margin-top: -100px;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.solutions-common-inner {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 100px;
}
.solutions-common-header h3 {
	font-size: 28px;
	font-weight: 600;
	color: #111827;
	text-align: center;
}
.solutions-common-header .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #1a73e8 75%, #1a73e8 90%, transparent 90%, transparent 100%);
}
.solutions-common-header.retail .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #ff8e50 75%, #ff6c06 90%, transparent 90%, transparent 100%);
}
.solutions-common-header.community .tit{
	position: relative;
	background: linear-gradient(transparent 75%, #34d399 75%, #10b981 90%, transparent 90%, transparent 100%);
}
.solutions-common-header p {
	font-size: 14px;
	color: #6b7280;
}
.solutions-common-grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding: 60px 100px 0;
	gap: 50px;
}
.solutions-common-header,
.solutions-common-grid {
	position: relative;
	z-index: 1;
}
.solutions-common-item {
	flex: 1 1 0;
	min-width: 0;
	position: relative;
}
.solutions-common-item h4 {
	font-size: 15px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}
.solutions-common-item p {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.7;
}
.solutions-common-item-number {
	position: absolute;
	bottom: -15px;
	right: 0;
	color: #fff;
	width: 56px;
	height: 56px;
	font-size: 32px;
	line-height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
    text-shadow: 1px 0 3px rgba(25, 25, 25, .1);
	border-radius: 50%;
	background-color: #f5f7f9;
	z-index: -1;
}

/* price */
.price-section {
	margin-top: -100px;
	padding: 100px 0;
}
.price-section .container-wide {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}
.price-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 32px;
}
.price-header-main{
	width: 100%;
	text-align: center;
}
.price-header-main h2 {
	font-size: 28px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
}
.price-header-main p {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.7;
}
.price-table-wrapper {
	position: relative;
	overflow-x: auto;
	overflow-y: visible;
}
.price-sticky-head {
	position: fixed;
	z-index: 2000;
	display: none;
	pointer-events: none;
}
.price-sticky-head-inner {
	overflow: hidden;
	background: #f9fafb;
	border-bottom: 1px solid #f4f4f4;
}
.price-table--sticky {
	margin: 0;
	border-collapse: collapse;
	table-layout: fixed;
}
.price-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.price-row-title {
	font-size: 13px;
}
.price-optional-text-group{
	display: flex;
	align-items: center;
	justify-content: center;
}
.price-optional-text{
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.price-section .iconfont{
	font-size: 20px;
	margin-right: 4px;
}
.price-section .icon-yes::before{
	color:#16a34a;
	content: '\e609';
}
.price-section .icon-no::before{
	color:#d8d8d8;
	content: '\e6c9';
}
.price-section .icon-optional::before{
	color:#336aea;
	content: '\e60b';
}
.price-head-corner {
	padding: 16px 18px;
	border-right: 1px solid #f4f4f4;
}
.price-table thead th,
.price-table tbody th,
.price-table tbody td {
	padding: 8px 20px;
	border-bottom: 1px solid #f4f4f4;
	font-size: 13px;
	font-weight: 400;
	color: #4b5563;
	background-color: transparent;
}
.price-table thead th:not(:first-child),
.price-table tbody th,
.price-table tbody td:not(:last-child) {
	border-right: 1px solid #f4f4f4;
}
.price-table thead th {
	border-top: 1px solid #f4f4f4;
	background: #f9fafb;
	font-size: 12px;
	color: #6b7280;
	text-align: left;
}
.price-head-corner {
	background: #f9fafb;
	width: 220px;
}
.price-row-title {
	font-size: 13px;
	color: #111827;
	background: transparent;
	text-align: left;
	font-weight: 400;
	white-space: nowrap;
}
.price-group-row td {
	background: #eef2ff;
	font-size: 13px;
	color: #1d4ed8;
}
.price-group-row .price-group-title{
	font-size: 16px;
	font-weight: 600;
}
.price-group-side{
	text-align: center;
	vertical-align: middle;
	font-size: 15px !important;
	font-weight: 600 !important;
	white-space: nowrap;
}
.price-group-side-stack{
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.price-group-side-text{
	line-height: 1.2;
}
.price-soon-badge{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 6px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	vertical-align: middle;
	color: #b45309;
	background: rgba(245, 158, 11, 0.14);
	border: 1px solid rgba(245, 158, 11, 0.25);
}
.price-grouped-item-row .price-row-title{
	text-align: left;
}
.price-more-toggle-row td {
	padding: 16px 0;
	text-align: center;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}
.price-more-toggle-btn {
	padding: 10px 30px;
	font-size: 14px;
	border-radius: 4px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	z-index: 1;
}
.price-more-toggle-btn:hover {
	border-color: #0b4fd9;
	color: #0b4fd9;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}
.price-more-toggle-btn-mobile {
	display: none;
	margin: 24px auto 0;
}
.price-section .container-wide {
	position: relative;
}
.price-section .container-wide::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 160px;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0%,
		#ffffff 65%,
		#ffffff 100%
	);
	transition: opacity 0.2s ease;
}
.price-section.is-expanded .container-wide::after {
	opacity: 0;
}
.price-section.is-expanded .price-more-toggle-row {
	display: none;
}
.price-extra-row {
	display: none;
}
.price-section.is-expanded .price-extra-row {
	display: table-row;
}
.price-footnote {
	display: none;
}
.price-section.is-expanded .price-footnote {
	display: block;
}
.price-table thead tr th:nth-child(4) {
	background: radial-gradient(circle at top center, rgba(220, 38, 38, 0.16), #f9fafb);
}
.price-table tbody tr:not(.price-group-row) {
	transition: background-color 0.25s;
}
.price-table tbody tr:not(.price-group-row):hover {
	background-color: #f4f4f4;
}
.price-plan-name {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 2px;
}
.price-plan-desc {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 10px;
}
.price-plan-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 12px;
	font-weight: 500;
}
.price-amount {
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.price-amount .unit{
	font-size: 14px;
}
.price-amount .amount{
	font-size: 23px;
	color:#282828;
	font-weight: 600;
}
.price-plan-price .price-amount-consult{
	display: inline-block;
	padding: 5px 20px;
	font-size: 14px;
	border-radius: 25px;
	border: 1px solid #cdcdcd;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s ease;
}
.price-plan-price .price-amount-consult:hover{
	background: #fff;
	color: var(--water-blue);
	border-color: var(--water-blue);
}
.price-meta {
	font-size: 13px;
	color: #6b7280;
}
.price-table .number{
	font-size: 16px;
	font-weight: 600;
	color:#ff6a00;
	margin: 0 3px;
}
.price-plan-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #4b5563;
	background: rgba(148, 163, 184, 0.16);
	margin-bottom: 6px;
}
.price-plan-badge--primary {
	background: rgba(220, 38, 38, 0.12);
	color: #b91c1c;
}
.price-footnote {
	font-size: 12px;
	color: #7c7c7c;
	margin: 20px auto;
	max-width: 720px;
	text-align: center;
}

/* ask */
.ask-section {
	padding: 100px 0;
	background: #f9fafb;
}
.ask-inner {
	max-width: 960px;
	margin: 0 auto;
}
.ask-header {
	text-align: center;
	margin-bottom: 32px;
}
.ask-header h2 {
	font-size: 28px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 20px;
}
.ask-header p {
	font-size: 14px;
	color: #6b7280;
}
.ask-faq {
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 0 20px rgba(150,150,150,.05);
}
.faq-item + .faq-item {
	border-top: 1px solid #f4f4f4;
}
.faq-question {
	width: 100%;
	padding:20px;
	border: none;
	background: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 15px;
}
.faq-question span{
	text-align: left;
}
.faq-question .faq-toggle{
	position: relative;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.faq-question .faq-toggle::before,
.faq-question .faq-toggle::after{
	content: "";
	position: absolute;
	overflow: hidden;
	background: #dce1e3;
	border-radius: 999px;
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.faq-question .faq-toggle::before{
	width: 20px;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.faq-question .faq-toggle::after{
	width: 2px;
	height: 20px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.faq-question:hover .faq-toggle::before,
.faq-question:hover .faq-toggle::after,
.faq-item.is-open .faq-question .faq-toggle::before,
.faq-item.is-open .faq-question .faq-toggle::after{
	background: var(--water-blue);
}
.faq-item.is-open .faq-question .faq-toggle::after{
	transform: translateX(-50%) rotate(90deg);
}
.faq-item.is-open .faq-question{
	color: var(--water-blue);
}
.faq-answer{
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 20px;
	font-size: 13px;
	color: #4b5563;
	line-height: 1.7;
	transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}
.faq-answer p{
	font-size: 13px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 5px 0;
	position: relative;
}
.faq-answer p:last-child{
	padding-bottom: 20px;
}
.faq-answer p::before{
	content:"";
	display: block;
	flex: 0 0 auto;
	margin-top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #cdcdcd;
    transition: color 0.2s;
}
.faq-item.is-open .faq-answer {
	opacity: 1;
}

/* apply */
.solutions-hero-tabs {
	max-width: 280px;
	margin: 40px auto;
	position: relative;
	z-index: 3;
}
.solutions-hero-tabs-inner{
	position: relative;
	display:flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
	overflow: hidden;
}
.solutions-hero-tabs-inner::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 4px;
	width: calc(50% - 4px);
	background: #2baeeb;
	transition: transform 0.25s ease;
}
.solutions-hero-tabs-inner.is-rider::before {
	transform: translateX(100%);
}
.apply-tab {
	flex:1;
	padding: 8px 20px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	background: transparent;
	color: #2baeeb;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	position: relative;
	z-index: 1;
}
.apply-tab.is-active {
	color: #ffffff;
}
.apply-content-section {
	margin-top: -100px;
	position: relative;
}
.apply-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 100px;
}
.apply-grid {
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.apply-card {
	padding: 35px;
	display: flex;
	flex-direction: column;
}
.apply-card--cloud,
.apply-card--rider {
	display: none;
}
.apply-card--cloud.is-active,
.apply-card--rider.is-active {
	display: flex;
}
.apply-card-header{
	width: 800px;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #f4f4f4;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.apply-card-header h2 {
	text-align: center;
	font-size: 23px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 10px;
}
.apply-card-header p {
	font-size: 14px;
	color: #9c9c9c;
}
.apply-main-row {
	width: 680px;
	display: flex;
	align-items: flex-start;
	gap: 50px;
	margin: 0 auto;
}
.apply-card-qrcode {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: "dincyr";
	border-radius: 8px;
	background: #f9fafb;
}
.apply-card-qrcode img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin-bottom: 8px;
}
.apply-card-qrcode-text p {
	text-align: center;
	font-size: 12px;
	color: #4b5563;
	line-height: 1.8;
}
.apply-changelog {
	flex:1;
	max-height: 210px;
	overflow: auto;
}
.apply-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
}
.apply-timeline-item {
	position: relative;
	padding-left: 18px;
	margin-bottom: 16px;
}
.apply-timeline-item::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 10px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(15, 118, 173, 0.35);
	z-index: 1;
}
.apply-timeline-item::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 14px;
	bottom: -8px;
	width: 1px;
	background: #e5e7eb;
}
.apply-timeline-item:last-child::after {
	display: none;
}
.apply-timeline-date {
	position: relative;
	display: inline-block;
	font-size: 12px;
	font-family: "dincyr";
	color: #9ca3af;
	margin-bottom: 2px;
}
.apply-timeline .apply-timeline-item:first-child .apply-timeline-date .timeline-badge-latest {
	display: inline-block;
	margin-left: 6px;
	padding: 1px 6px;
	font-size: 11px;
	color: #0b4fd9;
	background: rgba(11, 79, 217, 0.08);
	border-radius: 999px;
}
.apply-timeline-body h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
	color: #111827;
}
.apply-timeline-body p {
	font-size: 13px;
	color: #4b5563;
}
.apply-app-detail {
	display: flex;
	align-items: center;
	gap: 80px;
	margin: 100px 0;
}
.apply-app-thumb{
	flex: 0 0 45%;
}
.apply-app-thumb img {
	width: 100%;
}
.apply-app-text h3 {
	font-size: 23px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #111827;
}
.apply-app-text p {
	font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding: 10px 0;
}

/* news */
.news-content-section {
	padding: 60px 0;
	background: #fff;
}
.news-container {
	max-width: 1180px;
	margin: 0 auto;
}
.news-category-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}
.news-cat-tab .news-tab__label {
	position: relative;
	display: inline-block;
}
.news-cat-tab .news-tab__label::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	height: 6px;
	width: 0;
	background: linear-gradient(90deg, #ff7e00, #ff9f3a);
	transition: width 0.22s ease-out;
	z-index: -1;
}
.news-cat-tab.is-active .news-tab__label::after {
	width: 100%;
}
.news-cat-tab {
	border: none;
	background: none;
	padding: 20px;
	font-size: 18px;
	color: #6b7280;
	cursor: pointer;
	transition: color 0.2s;
	position: relative;
	z-index: 1;
}
.news-cat-tab:hover {
	color: #111827;
}
.news-cat-tab.is-active {
	color: #282828;
	font-weight: 600;
}
.news-tab-panels {
	position: relative;
}
.news-tab-panel {
	display: none;
}
.news-tab-panel.is-active {
	display: block;
}
.news-list-row {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	background: #fff;
}
.news-list-row__item {
	border-bottom: 1px solid #efefef;
}
.news-list-row__item a {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 15px 25px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s;
}
.news-list-row__item a:hover {
	background: rgba(0,0,0,0.02);
}
.news-list-row__item:hover .news-list-row__title{
	color: var(--water-blue-hover);
}
.news-list-row__date {
	flex-shrink: 0;
	font-size: 14px;
	color: var(--water-blue-hover);
	font-family: "dincyr";
	min-width: 100px;
}
.news-list-row__title {
	flex: 1;
	font-size: 15px;
	color: #374151;
}
.news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.news-pagination__prev,
.news-pagination__next {
	padding: 8px 16px;
	font-size: 13px;
	color: #374151;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.news-pagination__prev:hover:not(:disabled),
.news-pagination__next:hover:not(:disabled) {
	background: #f3f4f6;
	color: #111827;
}
.news-pagination__prev:disabled,
.news-pagination__next:disabled {
	color: #9ca3af;
	cursor: not-allowed;
}
.news-pagination__pages {
	display: flex;
	gap: 4px;
}
.news-pagination__num {
	width: 36px;
	height: 36px;
	padding: 0;
	font-size: 14px;
	color: #374151;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.news-pagination__num:hover {
	background: #f3f4f6;
}
.news-pagination__num.is-active {
	background: #0b4fd9;
	color: #fff;
	border-color: #0b4fd9;
}
.news-crumb{
	font-size: 13px;
	margin: 0 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #efefef;
}
.news-crumb ul li {
    display: inline-block;
    padding: 10px 20px 10px 0;
    position: relative;
}
.news-crumb ul li:last-child::before{
	display: none;
}
.news-crumb ul li:before {
    position: absolute;
    content: '\e8f1';
    font-family: "iconfont";
	vertical-align: .5rem;
    font-size: 16px;
	top:9px;
    right: 0;
    text-align: center;
}
.news-crumb ul li a:hover{
	color:var(--water-blue);
}
.article-body {
	padding: 40px 60px;
	background-image: linear-gradient(90deg, rgba(50, 0, 0, .025) 3%, transparent 0), linear-gradient(1turn, rgba(50, 0, 0, .025) 3%, transparent 0);
    background-size: 40px 40px;
    background-position: 50%;
}
.article-header {
	margin-bottom: 30px;
}
.article-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 15px;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 13px;
	color: #9ca3af;
}
.article-meta .article-date {
	color: #0b4fd9;
	font-family: "dincyr";
}
.article-meta .article-cat {
	color: #6b7280;
}
.article-content {
	font-size: 15px;
	line-height: 1.8;
	color: #282828;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #efefef;
}
.article-content p {
	padding: 10px 0;
	text-indent: 2rem;
}
.article-content h2 {
	font-size: 15px;
	font-weight: 600;
}
.article-content h2:first-child {
	margin-top: 0;
}
.article-adjacent {
	display: flex;
	align-items: stretch;
	gap: 24px;
	margin-top: 32px;
}
.article-adjacent-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 22px;
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.article-adjacent-card.is-disabled {
	opacity: 0.55;
	pointer-events: none;
	box-shadow: none;
	transform: none;
}
.article-adjacent-label {
	font-size: 12px;
	color: #6b7280;
}
.article-adjacent-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* doc */
.doc-hero-search {
	max-width: 460px;
	margin: 40px auto 0;
	position: relative;
	z-index: 3;
}
.doc-hero-search__form {
	display: flex;
	align-items: stretch;
	background: #fff;
	box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
	overflow: hidden;
}
.doc-hero-search__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 20px 0 24px;
	font-size: 15px;
	color: #111827;
	border: none;
	background: transparent;
	outline: none;
}
.doc-hero-search__input::placeholder {
	color: #9ca3af;
}
.doc-hero-search__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 48px;
	padding: 0;
	border: none;
	background: linear-gradient(135deg, #0d9488, #0f766e);
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: opacity 0.2s;
}
.doc-hero-search__btn:hover {
	opacity: 0.9;
}
.doc-hero-search__icon {
	pointer-events: none;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.doc-content-section {
	position: relative;
	margin-top: -100px;
	padding: 100px 0;
}
.doc-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
.doc-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.doc-category-card {
	position: relative;
	background-image: url("assets/img/doc-card-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
	border: 1px solid #efefef;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 320px;
	max-height: 320px;
	box-shadow: 0px 3px 20px 0px rgb(0 0 0 / 3%);
}
.doc-category-card__title {
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	padding: 20px 16px 12px;
	border-bottom: 1px solid #efefef;
	flex-shrink: 0;
}
.doc-category-card__list {
	list-style: none;
	margin: 0;
	padding: 12px 16px 40px 16px;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
}
.doc-category-card::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.98), transparent);
	pointer-events: none;
	border-radius: 0 0 8px 8px;
}
.doc-category-card__list li {
	position: relative;
	padding-left: 15px;
	margin-bottom: 8px;
}
.doc-category-card__list li::before {
	position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    margin-top: -2px;
    border-radius: 50%;
    border: 1px solid #cdcdcd;
	transition: color 0.2s;
}
.doc-category-card__list li:hover::before {
	border-color: #0d9488;
}
.doc-category-card__list li:last-child {
	margin-bottom: 0;
}
.doc-category-card__list a {
	font-size: 14px;
	color: #374151;
	transition: color 0.2s;
	position: relative;
}
.doc-category-card__list a:hover {
	color: #0d9488;
}
.doc-category-card__more {
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	padding: 12px;
	text-align: center;
	flex-shrink: 0;
}
.doc-category-card__more a {
	font-size: 14px;
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s;
}
.doc-category-card__more a:hover {
	color: #0d9488;
}
.doc-article-section {
	position: relative;
	min-height: 100vh;
    background-color: #f5f5f6;
}
.doc-article-section::before{
	position: absolute;
	content: "";
	top: 60px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #efefef;
	pointer-events: none;
	z-index: 12;
}
.doc-article-layout {
	position: relative;
	display: flex;
    align-items: flex-start;
	padding: 0 5%;
}
.doc-sidebar {
	position: fixed;
    top: 60px;
	left: 0;
	width: 220px;
	height: calc(100vh - 60px);
	background-color: #fff;
    z-index: 10;
}
.doc-sidebar::before{
	position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    left: calc(100% - 1px);
    z-index: 30;
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.15);
}
.doc-sidebar-inner{
	height: 100%;
	overflow: auto;
	padding-bottom: 60px;
}
.doc-sidebar-fab {
	display: none;
	position: fixed;
	left: 14px;
	bottom: 14px;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	color: #0f172a;
	font-size: 14px;
	font-weight: 600;
	z-index: 1170;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
.doc-sidebar-overlay {
	display: none;
}
.doc-sidebar-search {
	padding: 0 10px 14px 10px;
	border-bottom: 1px solid #f1f5f9;
	margin:20px 15px 15px;
}
.doc-search-form {
	position: relative;
	display: flex;
	align-items: center;
}
.doc-search-form .icon-search {
	position: absolute;
	left: 10px;
	color: #94a3b8;
	font-size: 16px;
	pointer-events: none;
}
.doc-search-clear {
	position: absolute;
	right: 10px;
	color: #94a3b8;
	font-size: 14px;
	cursor: pointer;
}
.doc-search-clear:hover {
	color: #ef4444;
}
.doc-search-field {
	width: 100%;
	padding: 8px 10px 8px 30px;
	border: 1px solid #e2e8f0;
	border-radius: 25px;
	background-color: #f8fafc;
	font-size: 13px;
	color: #334155;
	transition: all 0.2s;
}
.doc-search-field:focus {
	outline: none;
	border-color: var(--water-blue-hover, #006EFF);
	background-color: #fff;
	box-shadow: 0 0 0 2px rgba(0, 110, 255, 0.1);
}
.doc-search-field::placeholder {
	color: #94a3b8;
}
.doc-sidebar-tree {
	flex: 1;
	min-height: 0;
	overflow: auto;
}
.doc-nav-section {
	margin-bottom: 8px;
}
.doc-nav-section:last-child {
	margin-bottom: 0;
}
.doc-nav-section-header {
	display: flex;
	align-items: center;
	border-radius: 6px;
	padding: 6px 10px;
	transition: background-color 0.2s;
	cursor: pointer;
}
.doc-nav-section-header:hover {
	background-color: #f8fafc;
}
.doc-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	color: #64748b;
	transition: transform 0.2s;
}
.doc-nav-toggle i {
	font-size: 12px;
}
.doc-nav-section.is-expanded .doc-nav-toggle {
	transform: rotate(90deg);
}
.doc-nav-toggle-placeholder {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 6px;
}
.doc-nav-section-title {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #334155;
	flex: 1;
}
.doc-nav-section-title:hover {
	color: #0f172a;
}
.doc-nav-section-title.current-page {
	font-weight: 700;
	color: #0f172a;
}
.doc-nav-list {
	list-style: none;
	margin: 2px 0 0 0;
	padding: 0 15px 0 32px;
	display: none;
}
.doc-nav-section.is-expanded .doc-nav-list {
	display: block;
}
.doc-nav-item a {
	display: block;
	padding: 6px 10px;
	font-size: 13px;
	color: #475569;
	border-radius: 4px;
	transition: all 0.2s;
}
.doc-nav-item.is-active a {
	background: #f2f2f2;
	color: #0f172a;
	font-weight: 700;
}
.doc-nav-item a:hover {
	background: #f8fafc;
	color: #0f172a;
}
/* Document Search Results Container */
body.is-searching .doc-article,
body.is-searching .doc-toc {
	display: none !important;
}
.doc-search-content {
	display: none;
	flex: 1;
	padding-top: 80px;
	padding-left: 180px;
	padding-right: 40px;
	margin-bottom: 60px;
}
.doc-search-header {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #efefef;
}
.doc-search-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.doc-search-item {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #fff;
}
.doc-search-link {
	display: block;
	text-decoration: none;
}
.doc-search-title {
	font-size: 15px;
	color: #0f172a;
	margin: 0 0 8px 0;
	transition: color 0.2s;
}
.doc-search-link:hover .doc-search-title {
	color: var(--water-blue-hover, #006EFF);
}
.doc-search-title mark {
	background: transparent;
	color: var(--water-blue-hover, #006EFF);
	font-weight: bold;
}
.doc-search-excerpt {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}
.doc-search-excerpt mark {
	background: transparent;
	color: var(--water-blue-hover, #006EFF);
	font-weight: bold;
}
.doc-search-loading,
.doc-search-empty,
.doc-search-error {
	font-size: 15px;
	color: #64748b;
	padding: 40px 0;
	text-align: center;
}
.doc-search-empty span {
	color: var(--water-blue-hover, #006EFF);
	font-weight: bold;
}
.doc-article {
	position: relative;
	width: 86%;
	padding-top: 80px;
	padding-left: 180px;
	margin-bottom: 60px;
}
.doc-article::before,
.doc-article::after {
    content: " ";
    display: table;
}
.doc-article-breadcrumb {
	font-size: 12px;
	color: #64748b;
	margin-bottom: 20px;
}
.doc-article-breadcrumb a {
	color: #0f172a;
}
.doc-article-crumb-sep {
	margin: 0 8px;
	color: #cbd5e1;
}
.doc-article-body {
	border: 1px solid #eef2f7;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 3px 20px rgba(15, 23, 12, 0.01);
	padding: 25px 35px;
}
.doc-article-title {
	font-size: 26px;
	line-height: 1.25;
	margin: 0 0 10px 0;
	color: #0f172a;
}
.doc-article-content h2,
.doc-article-content h3{
	scroll-margin-top: 70px;
}
.doc-article-meta {
	font-size: 12px;
	color: #64748b;
	padding-bottom: 18px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 22px;
}
.doc-article-updated-time{
	font-family: 'dincyr', sans-serif;
}
.doc-article-content p,
.doc-article-content ul,
.doc-article-content ol,
.doc-article-content li{
	font-size: 14px;
	line-height: 28px;
    margin-bottom: 8px;
    word-wrap: break-word;
}
.doc-article-content p:last-child{
	margin-bottom: 0;
}
.doc-article-content h2,
.doc-article-content h3{
	font-size: 16px;
    line-height: 30px;
    margin:15px 0;
    cursor: default;
    font-weight: 600;
	padding-left: 10px;
    border-left: 5px solid #0072ff;
}
.doc-article-content del{
	color:#9c9c9c;
}
.doc-article-content img{
	border: 1px solid #efefef;
    height: auto;
}
.doc-article-content ul{
	padding-left: 28px;
    list-style-type: circle;
}
.doc-article-content ul > li {
    position: relative;
    list-style: inherit;
}
.doc-article-content a{
	cursor: pointer;
	color:var(--water-blue-hover);
	background: linear-gradient(rgba(49, 120, 198, 0.1), rgba(49, 120, 198, 0.1)) left bottom no-repeat;
    background-size: 0% 10px;
    transition: background-size 0.4s;
}
.doc-article-content a:hover {
    background-size: 100% 10px;
    background-position: left bottom;
}
.doc-article-content span.iwater-wave-required,
span.iwater-wave-required {
	background-image: linear-gradient(to right, #eb8585, #e50b0b);
	background-position: bottom;
	background-size: 100% 6px;
	background-repeat: no-repeat;
	text-decoration: none;
}
.doc-article-content span.iwater-wave-pending,
span.iwater-wave-pending {
	background-image: linear-gradient(to right, #ff8e50, #ff6c06);
	background-position: bottom;
	background-size: 100% 6px;
	background-repeat: no-repeat;
	text-decoration: none;
}
.doc-article-content blockquote {
    background: rgba(255, 136, 0, 0.1);
    padding: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
}
.doc-article-content span.iwater-qa-badge,
span.iwater-qa-badge{
    display: block;
    padding: 8px 20px 8px 15px;
	font-weight: 600;
    border-left: .5rem solid;
    border-color: #42b983;
    background-color: #f8f8f8;
}
.doc-article-content blockquote.iwater-callout,
blockquote.iwater-callout {
	background: rgba(20, 118, 255, 0.1);
    padding: 44px 16px 16px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
	position: relative;
}
.doc-article-content blockquote.iwater-callout::before,
blockquote.iwater-callout::before {
	content: "\e71d";
	font-family: "iconfont";
	font-size: 22px;
	line-height: 1;
	position: absolute;
	top: 14px;
	left: 16px;
	color: rgba(20, 118, 255, 0.95);
}
.doc-article-content blockquote.iwater-callout::after,
blockquote.iwater-callout::after {
	content: "提示：";
	position: absolute;
	top: 12px;
	left: 45px;
	font-weight: 700;
	font-size: 15px;
	color: #0f172a;
}
.doc-article-content blockquote.iwater-warning,
blockquote.iwater-warning {
	background: rgba(255, 136, 0, 0.1);
    padding: 44px 16px 16px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
	position: relative;
}
.doc-article-content blockquote.iwater-warning::before,
blockquote.iwater-warning::before {
	content: "\e6c0";
	font-family: "iconfont";
	font-size: 22px;
	line-height: 1;
	position: absolute;
	top: 12px;
	left: 16px;
	color: rgba(255, 136, 0, 0.95);
}
.doc-article-content blockquote.iwater-warning::after,
blockquote.iwater-warning::after {
	content: "注意：";
	position: absolute;
	top: 12px;
	left: 45px;
	font-weight: 700;
	font-size: 15px;
	color: #0f172a;
}
.doc-article-footer{
	display: flex;
	align-items: flex-start;
	margin-top: 30px;
	border: 1px solid #eef2f7;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0 3px 20px rgba(15, 23, 12, 0.01);
	position: relative;
}
.doc-article-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	gap: 20px;
}
.doc-article-nav a,
.doc-article-nav .doc-nav-disabled {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 10px;
	font-size: 13px;
	transition: all 0.3s ease;
	text-decoration: none;
}
.doc-article-nav .doc-nav-prev {
	text-align: left;
}
.doc-article-nav .doc-nav-next {
	text-align: right;
	justify-content: flex-end;
}
.doc-article-nav .empty {
	flex: 1;
}
.doc-article-nav .doc-nav-disabled {
	cursor: not-allowed;
}
.doc-article-nav .doc-nav-disabled .doc-nav-label,
.doc-article-nav .doc-nav-disabled .doc-nav-title {
	color: #cbd5e1;
}
.doc-article-nav .doc-nav-label {
	color: #64748b;
}
.doc-article-nav .doc-nav-title {
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.doc-article-nav a:hover .doc-nav-title {
	color: var(--water-blue-hover, #006EFF);
}
.doc-article-footer::before{
	position: absolute;
	content: "";
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: #efefef;
	transform:scaleY(0.5);
}
.doc-article-feedback,
.doc-article-related{
	flex:1;
	padding: 20px;
}
.doc-article-related{
	padding-left: 80px;
}
.doc-article-related h3{
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 15px;
}
.doc-related-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.doc-related-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 14px;
}
.doc-related-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: #94a3b8;
}
.doc-related-list a {
	color: #334155;
	font-size: 14px;
	line-height: 24px;
	transition: color 0.2s;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.doc-related-list a:hover {
	color: var(--water-blue-hover, #006EFF);
}
.doc-related-empty {
	font-size: 13px;
	color: #94a3b8;
	margin-top: 10px;
}
.doc-article-help{
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.doc-article-help-title{
	font-size: 14px;
	line-height: 24px;
	color: #0f172a;
	margin: 0 20px 0 0;
}
.doc-article-help-radio{
	display: flex;
	align-items: center;
	padding: 0 5px;
    background: rgba(138, 142, 153, 0.1);
    border-radius: 16px;
}
.doc-article-help-radio > div.iconfont{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 36px;
	height: 36px;
	padding: 0 8px;
	cursor: pointer;
	position: relative;
	color: #64748b;
}
.doc-article-help-sep {
	width: 1px;
	height: 14px;
	background: #cbd5e1;
	margin: 0 4px;
}
.doc-article-help-radio .icon-yes:hover::before{
	content:"\e9b6" !important;
}
.doc-article-help-radio .icon-yes:hover{
	color:#383838;
}
.doc-article-help-radio .icon-no:hover::before{
	content:"\e9b7" !important;
}
.doc-article-help-radio .icon-no:hover{
	color:#383838;
}
.doc-article-help-radio > div.iconfont::after {
	content: attr(data-title);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	background: #fff;
	color: #0f172a;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 4px;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	pointer-events: none;
	font-family: system-ui, -apple-system, sans-serif;
	line-height: 1.5;
}
.doc-article-help-radio > div.iconfont:hover::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(-4px);
}
.doc-toast-message {
	position: fixed;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: rgba(15, 23, 42, 0.85);
	color: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	pointer-events: none;
}
.doc-toast-message.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.doc-article-contact{
	margin-top: 15px;
	font-size: 13px;
	line-height: 24px;
}
.doc-toc{
	flex:1;
	padding: 0 0 0 30px;
	position: sticky;
	top: 120px;
	align-self: flex-start;
}
.doc-toc-inner {
	position: static;
	padding: 18px 14px;
}
.doc-toc-title {
	font-size: 13px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}
.doc-toc-list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 18px;
	position: relative;
}
.doc-toc-list::before{
	content: "";
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: #e5e7eb;
}
.doc-toc-item a {
	display: block;
	font-size: 13px;
	color: #475569;
	padding: 7px 10px;
}
.doc-toc-item{
	position: relative;
	margin: 6px 0;
}
.doc-toc-item::before{
	content: "";
	position: absolute;
	left: -10px;
	top: 1.1em;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #cbd5e1;
	background: #fff;
}
.doc-toc-item.is-h3 a {
	color: #64748b;
}
.doc-toc-item.is-h3::before{
	left: -14px;
}
.doc-toc-item a:hover {
	background: rgba(0, 0, 0, 0.03);
	color: #0f172a;
}
.doc-toc-item.is-current > a{
	color: var(--water-blue-hover, #006EFF);
	font-weight: 800;
}
.doc-toc-item a.is-current{
	color: var(--water-blue-hover, #006EFF);
	font-weight: 800;
}
.doc-toc .doc-toc-item.is-current > a,
.doc-toc .doc-toc-item a.is-current{
	color: var(--water-blue-hover, #006EFF);
	font-weight: 800;
}
.doc-toc-item.is-current::before{
	border-color: var(--water-blue-hover, #006EFF);
}
.doc-toc-empty {
	font-size: 13px;
	color: #94a3b8;
}
.tablepress>:where(thead,tfoot)>tr>*{
	font-size: 14px;
	background-color:#f2f3f5 !important;
}
.tablepress .row-striping{
	font-size: 13px;
}

@keyframes rotateanm {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}

@keyframes statsOrbitTiny2 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.7;
	}
	21% {
		transform: translate3d(26px, -18px, 0) scale(1.04);
		opacity: 0.9;
	}
	57% {
		transform: translate3d(-32px, -32px, 0) scale(0.92);
		opacity: 0.55;
	}
	100% {
		transform: translate3d(12px, 28px, 0) scale(1.01);
		opacity: 0.78;
	}
}

@keyframes statsFloatBack {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	35% {
		transform: translate3d(80px, 110px, 0) scale(1.06);
	}
	70% {
		transform: translate3d(-80px, 130px, 0) scale(0.96);
	}
	100% {
		transform: translate3d(40px, -50px, 0) scale(1.02);
	}
}

@keyframes statsFloatFront {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	40% {
		transform: translate3d(-70px, 90px, 0) scale(1.07);
	}
	80% {
		transform: translate3d(80px, -100px, 0) scale(0.95);
	}
	100% {
		transform: translate3d(-40px, 40px, 0) scale(1.02);
	}
}

@keyframes arrow_cycle {
    0% {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1)
    }

    40% {
        -webkit-transform: translate(60%,-60%) scale(0);
        transform: translate(60%,-60%) scale(0)
    }

    60% {
        -webkit-transform: translate(-60%,60%) scale(0);
        transform: translate(-60%,60%) scale(0)
    }

    to {
        -webkit-transform: translate(0) scale(1);
        transform: translate(0) scale(1)
    }
}
@keyframes bg-animation {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (max-width: 1200px) {
	.doc-article-layout {
		grid-template-columns: 280px minmax(0, 1fr);
	}
	.doc-toc {
		display: none;
	}
	.matrix-switcher-wrapper.symmetric {
		grid-template-columns: 1fr;
		height: auto;
	}
	.nav-left,
	.nav-right {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.switcher-nav-item {
		flex: 1;
		min-width: 150px;
	}
	.matrix-switcher-content {
		min-height: 500px;
		order: -1;
	}
}

@media (max-width: 1024px) {
	.nav-container {
		padding-left: 16px;
	}
	.nav-links {
		gap: 16px;
		margin-left: 12px;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
	.nav-item {
		padding: 0 2px;
	}
	.nav-actions {
		gap: 10px;
		padding-right: 12px;
	}
	.nav-actions .btn-login {
		padding: 8px;
	}

	.home-hero .main-content {
		flex-direction: column;
		align-items: flex-start;
		padding: 84px 16px 40px;
	}
	.home-hero .main-content-left {
		flex: 1 1 auto;
		width: 100%;
	}
	.home-hero .main-content-left h1 {
		font-size: 28px;
	}
	.home-hero .main-content-left p {
		font-size: 14px;
		margin-top: 14px;
		text-align: center;
	}
	.home-hero .main-content-right {
		flex: 1 1 auto;
		width: 100%;
		margin-top: 24px;
	}
	.home-hero .hero-visual {
		margin:20px auto 0;
	}
	.home-hero .hero-device-frame-1,
	.home-hero .hero-elem-1,
	.home-hero .hero-elem-2 {
		display: none;
	}

	.matrix-switcher {
		padding: 30px 0;
	}
	.matrix-switcher .matrix-switcher-wrapper.symmetric {
		margin-top: 32px;
	}
	.matrix-switcher .pane-inner {
		padding: 24px 18px 18px;
		justify-content: flex-start;
	}
	.matrix-switcher .pane-info h3 {
		font-size: 22px;
		margin-bottom: 14px;
	}
	.matrix-switcher .pane-info p {
		font-size: 14px;
		margin-bottom: 18px;
	}
	.matrix-switcher .pane-visual {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		height: 280px;
		margin-top: 18px;
	}
	.workflow-pulse {
		padding: 10px 0 20px;
	}
	.workflow-pulse .wf-header{
		margin-bottom: 20px;
	}
	.workflow-pulse .wf-header h2 {
		font-size: 22px;
	}
	.workflow-pulse .wf-header p{
		font-size: 13px;
	}
	.workflow-pulse .workflow-card {
		position: relative;
		grid-template-columns: 1fr;
		padding: 0 15px;
	}
	.workflow-pulse .workflow-card-item {
		flex-direction: column;
	}
	.workflow-pulse .workflow-card-item-before {
		display: none;
	}
	.workflow-pulse .workflow-card-item-content {
		padding: 18px 0 0;
		align-items: flex-start;
	}
	.workflow-pulse .workflow-card-item-content:last-child{
		padding-bottom: 18px;
	}
	.workflow-pulse .workflow-card-item-content h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.workflow-pulse .workflow-card-item-content .tit {
		padding-left: 16px;
	}

	.news-section {
		padding: 20px 0;
	}
	.news-section .news-inner--split {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.news-section .news-sidebar {
		min-height: auto;
	}
	.news-section .news-sidebar-label {
		text-align: left;
		margin-bottom: 12px;
		font-size: 22px;
	}
	.news-section .news-tabs-vertical {
		flex-direction: row;
		gap: 10px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 6px;
	}
	.news-section .news-tab {
		justify-content: flex-start;
		align-self: flex-start;
		width: auto;
		font-size: 13px;
		padding: 5px 10px;
		background: #f8fafc;
		border-radius: 999px;
	}
	.news-section .news-tab__label::after {
		display: none;
	}
	.news-section .news-tab.is-active {
		background: rgba(0, 110, 255, 0.08);
	}

	.stats-section {
		padding: 72px 0;
	}
	.stats-section .stats-head h2 {
		font-size: 24px;
	}
	.stats-section .stats-meta {
		gap: 10px;
	}
	.stats-section .stats-meta span {
		padding: 4px 12px;
	}

	.price-header {
		flex-direction: column;
		align-items: flex-start;
	}
	.price-table-wrapper {
		overflow-x: auto;
		margin-top: 16px;
	}
	.price-table {
		min-width: 860px;
	}
	.apply-container {
		padding: 0 24px;
	}
	.apply-main-row,
	.apply-app-detail {
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	html,
	body {
		overflow-x: hidden;
	}
	.container-wide {
		padding-left: 16px;
		padding-right: 16px;
	}
	.navbar {
		height: 60px;
		background: rgba(255, 255, 255, 1);
	}
	.nav-container {
		height: 60px;
		padding: 0 12px;
	}
	.navbar .logo {
		height: 44px;
		width: 120px;
	}
	.nav-toggle {
		display: inline-flex;
	}
	.nav-collapse {
		position: fixed;
		top: 0;
		right: 0;
		width: 86vw;
		max-width: 320px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		gap: 14px;
		z-index: 1200;
		box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
		transform: translateX(110%);
		transition: transform 0.25s ease;
	}
	.nav-overlay {
		position: fixed;
		inset: 0;
		height: 100vh;
		background: rgba(15, 23, 42, 0.42);
		z-index: 1190;
	}
	body.is-nav-open {
		overflow: hidden;
	}
	body.is-nav-open .nav-overlay {
		display: block;
	}
	body.is-nav-open .nav-collapse {
		transform: translateX(0);
	}

	.nav-links {
		width: 100%;
		margin-left: 0;
		height: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		overflow: visible;
	}
	.nav-item {
		height: auto;
		padding: 10px 6px;
		border-bottom: 1px solid #f4f4f4;
	}
	.nav-item:last-child{
		border-bottom: none;
	}
	.nav-item::after {
		display: none;
	}
	.nav-item.has-dropdown {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.nav-item.has-dropdown > span {
		padding: 10px 6px;
		font-size: 14px;
		font-weight: 600;
		color: #0f172a;
	}
	.nav-item.has-dropdown .nav-dropdown {
		position: static;
		display: block;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}
	.nav-dropdown-inner {
		padding: 0 !important;
	}
	.dropdown-grid {
		display: flex;
		flex-direction: column;
		gap: 6px;
	}
	.nav-item .dropdown-item {
		min-width: 0;
		margin-bottom: 0;
		padding: 10px 10px;
		border-radius: 10px;
	}

	.nav-actions {
		display: none;
	}
	.nav-mobile-contact {
		display: flex;
		margin-top: auto;
		padding-top: 14px;
	}
	.nav-mobile-phone {
		width: 100%;
		padding: 10px 12px;
		border-radius: 12px;
		background: #f8fafc;
		font-family: "mono";
		justify-content: center;
	}
	.section-title p{
		font-size: 14px;
	}
	.home-hero {
		padding-top: 40px;
	}
	.home-hero .hero-visual {
		transform: scale(0.92);
		transform-origin: top center;
	}
	.matrix-switcher .section-title{
		margin-bottom: 0;
	}
	.matrix-switcher .matrix-switcher-content {
		min-height: 520px;
	}
	.matrix-switcher .switcher-nav-item {
		min-width: 140px;
	}
	.matrix-switcher .matrix-switcher-wrapper.symmetric {
		grid-template-columns: 1fr;
		grid-template-areas:
			"content"
			"nav-left"
			"nav-right";
	}
	.matrix-switcher .matrix-switcher-content {
		grid-area: content;
	}
	.matrix-switcher .nav-left {
		grid-area: nav-left;
	}
	.matrix-switcher .nav-right {
		grid-area: nav-right;
	}
	.matrix-switcher .matrix-switcher-nav {
		display: none;
	}
	.value-flow{
		padding-bottom: 30px;
	}
	.value-flow-inner .section-title{
		margin-bottom: 20px;
	}
	.value-flow .vf-accordion {
		display: flex;
    	flex-direction: column;
		margin-top: 28px;
	}
	.value-flow .vf-accordion-head{
		padding-bottom: 0;
	}
	.value-flow .vf-accordion-item.is-open,
	.value-flow .vf-accordion-item{
		flex:1;
		border-right: 0;
	}
	.value-flow .vf-accordion-summary{
		font-size: 12px;
		padding-bottom: 15px;
	}
	.floating-menu,
	.floating-back-top-wrapper {
		display: none;
	}

	.doc-article-layout {
		flex-direction: column;
		padding: 0 16px;
	}
	.doc-sidebar {
		position: fixed;
		top: 60px;
		left: 0;
		width: 86vw;
		max-width: 320px;
		height: calc(100vh - 60px);
		margin: 0;
		z-index: 1185;
		transform: translateX(-110%);
		transition: transform 0.25s ease;
		box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
	}
	.doc-sidebar::before{
		display: none;
	}
	.doc-sidebar-inner {
		height: 100%;
		overflow: auto;
		padding-bottom: 40px;
	}
	.doc-sidebar-tree {
		overflow: visible;
	}
	.doc-sidebar-fab {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.doc-sidebar-overlay {
		position: fixed;
		inset: 0;
		background: rgba(15, 23, 42, 0.42);
		z-index: 1180;
	}
	body.is-doc-sidebar-open {
		overflow: hidden;
	}
	body.is-doc-sidebar-open .doc-sidebar {
		transform: translateX(0);
	}
	body.is-doc-sidebar-open .doc-sidebar-overlay {
		display: block;
	}
	body.is-doc-sidebar-open .doc-sidebar-fab {
		display: none;
	}
	.doc-article {
		width: 100%;
		padding-left: 0;
		padding-top: 24px;
		margin-bottom: 24px;
	}
	.doc-search-content {
		padding-left: 0;
		padding-right: 0;
		padding-top: 24px;
		margin-bottom: 24px;
	}
	.scenario-grid-pro {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.solutions-hero-inner{
		padding:80px 0 0;
	}
	.container-wide {
		padding-left: 12px;
		padding-right: 12px;
	}
	.section-title h2{
		font-size: 22px;
	}
	.nav-links {
		gap: 4px;
	}
	.nav-actions .btn-register {
		padding: 10px 14px;
	}
	.home-hero .main-content {
		padding: 40px 8vw 0;
	}
	.home-hero .main-content-left h1 {
		font-size: 22px;
		text-align: center;
	}
	.home-hero .hero-visual {
		transform: scale(0.86);
	}
	.matrix-switcher {
		padding: 30px 0;
	}
	.matrix-switcher .pane-visual {
		height: 220px;
	}
	.matrix-switcher .pane-info h3 {
		font-size: 20px;
	}
	.news-section .news-list-grid {
		grid-template-columns: 1fr;
		row-gap: 24px;
		column-gap: 24px;
	}
	.news-section .news-card {
		padding: 0 0 18px 0;
	}
	.stats-section {
		padding: 20px 0;
	}
	.stats-section .stats-inner{
		padding: 20px 10px;
	}
	.stats-section .stats-head{
		margin-bottom: 10px;
	}
	.stats-section .stats-card--primary{
		width: calc(50% - 30px);
		flex: none;
	}
	.stats-section .stats-card{
		flex:none;
		gap: 0;
	}
	.stats-section .stats-number {
		font-size: 22px;
	}
	.trust-section {
		padding: 40px 0;
	}
	.trust-section .logo-marquee .js-marquee {
		gap: 28px;
	}
	.trust-section .logo-line-item {
		width: 80px;
	}
	.trust-section .logo-line-fade {
		width: 64px;
	}
	.article-adjacent {
		flex-direction: column;
		gap: 14px;
	}
	.doc-article-layout {
		padding: 0 12px;
	}
	.doc-article-body {
		padding: 18px 16px;
	}
	.doc-article-title {
		font-size: 20px;
	}
	.doc-search-header {
		font-size: 16px;
		margin-bottom: 14px;
		padding-bottom: 10px;
	}
	.doc-search-item {
		margin-bottom: 14px;
		padding-bottom: 14px;
	}
	.scenarios-pro {
		padding: 30px 6vw;
	}
	.scenarios-pro-header{
		margin-bottom: 20px;
	}
	.scenarios-pro-title {
		font-size: 22px;
	}
	.scenarios-pro-desc{
		font-size: 14px;
	}
	.scenario-grid-pro {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.s-pro-card {
		padding: 0 ;
	}
	.solutions-hero-text h1{
		font-size: 26px;
	}
	.solutions-hero-btn{
		margin: 30px auto;
	}
	.solutions-hero-list{
		flex-direction: column;
		padding:0;
	}
	.solutions-hero-list .solution-value-item{
		flex:1;
		max-width: 100%;
		padding:10px;
	}
	.sections-indent,
	.apply-content-section{
		margin-top: 0;
	}
	.solution-advantage-body h4{
		font-size: 22px;
	}
	.solution-advantage-item,
	.solution-advantage-item:nth-child(2n){
		flex-direction: column;
		padding:20px 0;
	}
	.solution-advantage-body p{
		font-size: 14px;
	}
	.solution-section-title,
	.solutions-common-header h3,
	.ask-header h2,
	.apply-card-header h2,
	.apply-app-text h3{
		font-size: 22px;
	}
	.solution-section-grid,
	.solutions-common-grid{
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 0;
	}
	.solutions-section--advantage{
		padding:30px 0 0;
	}
	.solution-advantage-item{
		width: 90%;
	}
	.solutions-common{
		padding:100px 0 30px;
	}
	.solutions-section{
		padding:30px 0;
	}
	.solutions-architecture-grid img{
		height: auto !important;
	}
	.solutions-common-inner{
		padding: 0 10px;
	}
	.solutions-common-grid{
		padding:20px 10px 0;
	}
	.solutions-common-item{
		flex:1;
	}
	.price-section{
		margin-top: 0;
		padding: 30px 0;
	}
	.price-section .container-wide{
		padding:0 15px;
	}
	.ask-section{
		padding:30px 0;
	}
	.apply-card-header,
	.apply-main-row{
		width: auto;
	}
	.apply-card{
		padding:0;
	}
	.apply-card-qrcode{
		width: 100%;
	}
	.apply-app-detail{
		margin: 0;
	}
	.doc-content-section{
		margin-top: 0;
		padding:30px 0;
	}
	.doc-container{
		margin: 20px auto;
	}
	.doc-category-grid{
		display:flex;
		flex-wrap: wrap;
		gap: 0;
	}
	.doc-category-card{
		width:calc(50% - 5px);
		margin-right: 10px;
		margin-bottom: 10px;
		min-height: 220px;
    	max-height: 220px;
	}
	.doc-category-card:nth-child(2n){
		margin-right: 0;
	}
	.article-body{
		padding:10px;
	}
	.news-content-section{
		padding-bottom: 0;
	}
	.assurance-bar,
	.f-beian,
	.doc-article-footer{
		display: none;
	}
	.footer{
		padding: 20px 0;
	}
	.footer .f-col{
		flex: 0 0 33.3333333%;
		min-width:0;
	}
	.footer .f-col.f-demo-col{
		flex: 100%;
		min-width:0;
		margin: 20px auto;
	}
	.footer .f-col.f-demo-col h4{
		text-align: center;
	}
	.footer .f-demo{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer .f-demo-item{
		width: calc((100% - 20px) / 3);
		margin-right: 10px;
		max-width: 104px;
	}
	.footer .f-demo-item:nth-child(3n){
		margin-right: 0;
	}
	.footer .f-demo-item:last-child{
		margin-bottom: 0;
	}
	.footer .f-contact{
		width: 100%;
		text-align: center;
		align-items: center;
	}
	.footer .f-copy{
		width: 100%;
		text-align: center;
	}
	.nav-mobile-contact{
		margin-top: auto;
	}
}

@media (max-width: 640px) {
	.price-header-main h2 {
		font-size: 22px;
	}
	.price-more-toggle-btn-mobile {
		display: block;
		width: 100%;
		max-width: 260px;
		padding: 10px 18px;
		font-size: 14px;
	}
	.price-more-toggle-row td {
		display: none;
	}
}
