/* ===== 设计令牌 ===== */
:root {
	/* 品牌色 - 主蓝体系（收敛原三套蓝：#2563EB / rgba(23,112,230) / rgba(29,125,252)） */
	--brand-500: #2563EB;
	--brand-600: #1D4ED8;
	--brand-400: #3B82F6;
	--brand-700: #1E40AF;
	--accent-cyan: #0EA5E9;
	--accent-sky: #38BDF8;
	--accent-teal: #22D3EE;

	/* 中性色 - slate 阶梯 */
	--slate-900: #0F172A;
	--slate-800: #1E293B;
	--slate-700: #334155;
	--slate-600: #475569;
	--slate-500: #64748B;
	--slate-400: #94A3B8;
	--slate-300: #CBD5E1;
	--slate-200: #E2E8F0;
	--slate-100: #F1F5F9;
	--slate-50:  #F8FAFC;

	/* 圆角标度 - 11→4 */
	--radius-sm: 6px;     /* 按钮、标签、小装饰 */
	--radius-md: 10px;    /* 小卡片、tab */
	--radius-lg: 14px;    /* 主卡片 */
	--radius-xl: 16px;    /* 大容器、图片 */

	/* 阴影分层 */
	--shadow-sm: 0 2px 8px rgba(15,23,42,.04);
	--shadow-md: 0 4px 16px rgba(37,99,235,.10);
	--shadow-lg: 0 8px 24px rgba(37,99,235,.20);
	--shadow-hover: 0 12px 40px rgba(37,99,235,.25);
	--shadow-neutral: 0 4px 24px rgba(15,23,42,.06);

	/* 字号阶梯 - 14→7 */
	--text-xs:   12px;
	--text-sm:   13px;
	--text-base: 14px;
	--text-lg:   16px;
	--text-xl:   22px;
	--text-2xl:  28px;
	--text-3xl:  36px;

	/* 间距 - 4pt 栅格 */
	--space-1:  4px;
	--space-2:  8px;
	--space-3:  12px;
	--space-4:  16px;
	--space-5:  20px;
	--space-6:  24px;
	--space-8:  32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;

	/* 缓动 - 统一签名动效 */
	--ease-out-expo: cubic-bezier(.16,1,.3,1);
	--ease-in-out:   cubic-bezier(.4,0,.2,1);

	/* 容器 */
	--container-max: 1440px;
	--container-pad: 2rem;

	/* 品牌渐变 */
	--gradient-brand: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
	--gradient-brand-cyan: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
	--gradient-text: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #38BDF8 100%);
}

html {
	font-size: 85%;
}
body, th, td, input, select, textarea, button {
    color: #333;
    line-height: 1.5;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
a:hover {
    text-decoration: none;
}
input, select, textarea {
    letter-spacing: 0;
}
:focus {
	outline: none;
	box-shadow: none !important;
}
.hidden {
	display: none;
}
select.form-control {
    padding-top: 0;
    padding-bottom: 0;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDIyLjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IldhcnN0d2FfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiCgkgd2lkdGg9IjZweCIgaGVpZ2h0PSI2cHgiIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYgNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOiNCOUJEQzU7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNS41LDFoLTVDMC4yMiwxLDAsMS4yMiwwLDEuNVYyYzAsMC4xMywwLjA1LDAuMjYsMC4xNSwwLjM1bDIuNSwyLjVDMi43NCw0Ljk1LDIuODcsNSwzLDVzMC4yNi0wLjA1LDAuMzUtMC4xNQoJbDIuNS0yLjVDNS45NSwyLjI2LDYsMi4xMyw2LDJWMS41QzYsMS4yMiw1Ljc4LDEsNS41LDF6Ii8+Cjwvc3ZnPgo=');
    background-position-y: 50%;
    background-position-x: calc(100% - 11px);
    background-repeat: no-repeat;
    padding-right: 24px;
    -webkit-appearance: none;
}
.form-control {
	min-height: 38px;
	font-size: 1rem;
    border-radius: 4px;
}
.space {
	padding-top: 50px;
	padding-bottom: 50px;
}
.space2x {
	padding-top: 90px;
	padding-bottom: 90px;
}
.index .header {
	position: absolute;
	z-index: 100;
	width: 100%;
	background-color: transparent;
}
.header {
	background-color: #011537;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar-brand {
	background-image: url("http://host.bohnet.cn/logo.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 32px;
	text-indent: -999em;
	width: 150px;
	height: 32px;
	padding: 0;
}
.header .navbar {
	height: 90px;
}
.header .navbar-nav .dropdown-menu .dropdown-link {
	line-height: 24px;
	display: block;
	text-decoration: none;
	color: #555;
    font-size: 14px;
}
.header .navbar-nav .dropdown-menu .dropdown-item:active .dropdown-link {
	color: #FFF;
}
.header .navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,.9);
    padding: 0 1rem;
    line-height: 59px;
    font-size: 16px;
}
.header .navbar .navbar-nav .nav-link:hover {
	color: rgba(255,255,255, .6);
}
/* Top CSS */
.header-top {

}
.header-top .bg-img-wrap {
    /*
    background-image: url("../img/bg-idcindex-pc.svg");
    background-position: top center;
    background-size: auto 280px;
*/
    background: url(../img/banner/banner2.png);
    background-size: cover;
    }
.header-top.pages .bg-img-wrap {
/*     background-image: url("../img/bg-cloudindex-pc.svg"); */
}
.header-top.pages .slogan h1 {
	font-size: 42px;
    font-weight: 600;
}
.header-top .slogan {
	padding: 80px 0;
}
.header-top .slogan h1 {
    font-size: 36px;
    color: #fff;
    letter-spacing: -2px;
    font-weight: 500;
}
.header-top .slogan h1 small {
	color: rgba(255,255,255,.6);
	font-size: 65%;
	margin-left: 10px;
}
.header-top .slogan p {
	color: rgba(255,255,255,.9);
	margin-bottom: 0;
}
.home-swiper {
	height: 440px;
}
/* 切换瞬间蓝色蒙版：与 fade 0.8s 同步淡入淡出 */
.banner-transition-mask{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:5;
	pointer-events:none;
	opacity:0;
	background:linear-gradient(135deg,rgba(37,99,235,.10) 0%,rgba(34,211,238,.06) 100%);
	-webkit-mix-blend-mode:screen;
	-moz-mix-blend-mode:screen;
	-o-mix-blend-mode:screen;
	mix-blend-mode:screen;
}
@-webkit-keyframes bannerMaskFlash{
	0%{opacity:0}
	45%{opacity:1}
	100%{opacity:0}
}
@-moz-keyframes bannerMaskFlash{
	0%{opacity:0}
	45%{opacity:1}
	100%{opacity:0}
}
@-o-keyframes bannerMaskFlash{
	0%{opacity:0}
	45%{opacity:1}
	100%{opacity:0}
}
@keyframes bannerMaskFlash{
	0%{opacity:0}
	45%{opacity:1}
	100%{opacity:0}
}
.home-swiper .swiper-slide {
	height: 440px;
	padding: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
.home-swiper .swiper-slide > .container{
	position:relative;
	z-index:2;
	/* 紧挨标签右侧：标签 left:24 + 宽 200 + 间距 16 = 240px */
	margin-left:240px;
	margin-right:48px;
	padding-top:0;
	padding-left:0;
	padding-right:0;
	max-width:none;
	height:100%;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	-moz-box-orient:vertical;
	-moz-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-moz-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.home-swiper .slogan {
    font-size: 3.2rem;
    color: #0F172A;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .01em;
    text-shadow: 0 1px 12px rgba(255,255,255,.5);
    margin-bottom: 8px;
    opacity:0;
    -webkit-transform:translateY(24px);
    -moz-transform:translateY(24px);
    -ms-transform:translateY(24px);
    -o-transform:translateY(24px);
    transform:translateY(24px);
    -webkit-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s forwards;
    -moz-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s forwards;
    -o-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s forwards;
    animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s forwards;
}
.home-swiper .slogan .bold {
	font-weight: 700;
}
/* 标题关键词渐变高亮（蓝→青） */
.home-swiper .slogan .hl{
	background:linear-gradient(120deg,#2563EB 0%,#3B82F6 40%,#22D3EE 100%);
	-webkit-background-clip:text;
	background-clip:text;
	-webkit-text-fill-color:transparent;
	-moz-text-fill-color:transparent;
	color:transparent;
	font-weight:700;
	position:relative;
	-webkit-text-shadow:none;
	-moz-text-shadow:none;
	text-shadow:none;
}
/* 副标题（主标语下方独立一行） */
.home-swiper .slogan-subtitle {
	font-size: 2rem;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: .02em;
	margin-top: 8px;
	margin-bottom: 0;
	opacity:0;
	-webkit-transform:translateY(16px);
	-moz-transform:translateY(16px);
	-ms-transform:translateY(16px);
	-o-transform:translateY(16px);
	transform:translateY(16px);
	-webkit-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s forwards;
	-moz-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s forwards;
	-o-animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s forwards;
	animation:heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.home-swiper .btn {
	color: #FFFFFF;
	width: 168px;
	margin-top: 32px;
	line-height: 24px;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .04em;
	background-color: #2563EB;
	border: 1px solid #2563EB;
	border-radius: 8px;
	-webkit-box-shadow: 0 8px 28px -8px rgba(37,99,235,.55);
	-moz-box-shadow: 0 8px 28px -8px rgba(37,99,235,.55);
	box-shadow: 0 8px 28px -8px rgba(37,99,235,.55);
	opacity:0;
	-webkit-transform:translateY(20px);
	-moz-transform:translateY(20px);
	-ms-transform:translateY(20px);
	-o-transform:translateY(20px);
	transform:translateY(20px);
	-webkit-animation:heroFadeUp .7s cubic-bezier(.16,1,.3,1) .5s forwards;
	-moz-animation:heroFadeUp .7s cubic-bezier(.16,1,.3,1) .5s forwards;
	-o-animation:heroFadeUp .7s cubic-bezier(.16,1,.3,1) .5s forwards;
	animation:heroFadeUp .7s cubic-bezier(.16,1,.3,1) .5s forwards;
	-webkit-transition: all .28s cubic-bezier(.16,1,.3,1);
	-o-transition: all .28s cubic-bezier(.16,1,.3,1);
	-moz-transition: all .28s cubic-bezier(.16,1,.3,1);
	transition: all .28s cubic-bezier(.16,1,.3,1);
}
.home-swiper .btn:hover {
	color: #FFFFFF;
	background-color: #1D4ED8;
	border-color: #1D4ED8;
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04);
	-webkit-box-shadow: 0 14px 36px -8px rgba(37,99,235,.65);
	-moz-box-shadow: 0 14px 36px -8px rgba(37,99,235,.65);
	box-shadow: 0 14px 36px -8px rgba(37,99,235,.65);
}
/* 按钮流光扫过效果：5s 循环一次 */
.home-swiper .btn{
	position:relative;
	overflow:hidden;
}
.home-swiper .btn .btn-shine{
	position:absolute;
	top:0;
	left:-60%;
	width:50%;
	height:100%;
	background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,0) 35%,rgba(255,255,255,.55) 50%,rgba(255,255,255,0) 65%,transparent 100%);
	-webkit-transform:skewX(-20deg);
	-moz-transform:skewX(-20deg);
	-ms-transform:skewX(-20deg);
	-o-transform:skewX(-20deg);
	transform:skewX(-20deg);
	pointer-events:none;
	opacity:0;
}
/* 仅激活 slide 的按钮触发流光，5s 循环 */
.home-swiper .swiper-slide-active .btn .btn-shine{
	-webkit-animation:btnShine 5s cubic-bezier(.4,0,.2,1) infinite;
	-moz-animation:btnShine 5s cubic-bezier(.4,0,.2,1) infinite;
	-o-animation:btnShine 5s cubic-bezier(.4,0,.2,1) infinite;
	animation:btnShine 5s cubic-bezier(.4,0,.2,1) infinite;
}
@-webkit-keyframes btnShine{
	0%{left:-60%;opacity:0}
	6%{opacity:1}
	24%{left:140%;opacity:1}
	30%{opacity:0}
	100%{left:140%;opacity:0}
}
@-moz-keyframes btnShine{
	0%{left:-60%;opacity:0}
	6%{opacity:1}
	24%{left:140%;opacity:1}
	30%{opacity:0}
	100%{left:140%;opacity:0}
}
@-o-keyframes btnShine{
	0%{left:-60%;opacity:0}
	6%{opacity:1}
	24%{left:140%;opacity:1}
	30%{opacity:0}
	100%{left:140%;opacity:0}
}
@keyframes btnShine{
	0%{left:-60%;opacity:0}
	6%{opacity:1}
	24%{left:140%;opacity:1}
	30%{opacity:0}
	100%{left:140%;opacity:0}
}
/* 响应式 */
@media (max-width:768px){
	.home-swiper{height:280px;}
	.home-swiper .swiper-slide{height:280px;}
	.home-swiper .swiper-slide > .container{
		margin-left:15px;
		margin-right:15px;
		padding-top:0;
	}
    .home-swiper .slogan{font-size:1.4rem;line-height:1.25;margin-bottom:4px;}
	.home-swiper .slogan-subtitle{font-size:1rem;margin-top:2px;margin-bottom:0;line-height:1.3;color:#000;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-transform:translateY(8px);transform:translateY(8px);-webkit-animation-delay:.35s;animation-delay:.35s;}
	.home-swiper .btn{width:120px;margin-top:8px;padding:8px 20px;font-size:14px;}

	/* banner 下方 4 个服务 box 移动端响应式：一行两个，紧凑缩小，消除下方空白 */
	.home-event{
		margin-top:-24px !important;
		padding-top:0 !important;
		padding-bottom:0 !important;
	}
	.home-event .container{
		padding-left:10px;
		padding-right:10px;
	}
	.home-event .event-items{
		margin:0 !important;
		padding:0 !important;
	}
	.home-event .event-items .row{
		display:-webkit-box;
		display:-webkit-flex;
		display:-moz-box;
		display:-ms-flexbox;
		display:flex;
		-webkit-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		margin-left:-4px;
		margin-right:-4px;
		margin-bottom:0 !important;
		padding-bottom:0 !important;
	}
	.home-event .event-items .row .col-sm-3{
		-webkit-box-flex:0;
		-webkit-flex:0 0 50%;
		-moz-box-flex:0;
		-ms-flex:0 0 50%;
		flex:0 0 50%;
		max-width:50%;
		width:50%;
		padding-left:4px;
		padding-right:4px;
		margin-bottom:8px;
		padding-bottom:0 !important;
	}
	.home-event .event-items .row .col-sm-3:nth-last-child(-n+2){
		margin-bottom:0 !important;
	}
	.home-event .event-item{
		height:80px !important;
		border-radius:8px;
		padding:0 8px !important;
		box-shadow:0 1px 4px rgba(15,23,42,.06),0 2px 8px rgba(15,23,42,.04);
		margin:0 !important;
	}
	.home-event .event-item-icon{
		flex:0 0 44px !important;
		width:44px !important;
		height:44px !important;
	}
	.home-event .event-item-info h3{
		font-size:14px !important;
		margin-bottom:2px !important;
	}
	.home-event .event-item-info p{
		font-size:11px !important;
		line-height:1.3;
	}
	.home-event .event-item-arrow{
		display:none !important;
	}
	.home-event .event-item::after{
		display:none !important;
	}
	.home-event .event-item:hover{
		-webkit-transform:none !important;
		-moz-transform:none !important;
		-ms-transform:none !important;
		-o-transform:none !important;
		transform:none !important;
	}

	/* 下一个区块（产品区域）减小顶部 padding，消除 box 下方空白 */
	.hot-products-main.space2x{
		padding-top:24px !important;
	}
}
.home-notices {
	height: 60px;
	background-color: #e1e2e9;
}
.home-notices .splide--ttb>.splide__pagination {
	display: none;
}
.home-notices .splide__arrows {
    position: absolute;
    top: 5px;
    right: 15px;
    z-index: 100;
    display: inline-block;
}
.home-notices .splide__arrow {
    display: block;
    height: 16px;
    width: 16px;
    font-size: 1.5rem;
    outline: none;
    background-color: transparent;
    position: relative;
}
.home-notices .splide__arrow svg {
	max-height: 16px;
	max-width: 16px;
}
.home-notices .splide--ttb>.splide__arrows .splide__arrow--prev {
	top: 0;
    margin-bottom: 15px;
}
.home-notices .splide--ttb>.splide__arrows .splide__arrow--next {
	bottom: 10px;
}
.home-notices .splide__slide {
	display: flex;
	align-items: center;
}
.home-notices .splide__slide .badge-cell {
	margin-right: 15px;
    padding: 3px 11px;
    border-radius: 13px;
    background: #333;
    font-size: 0.875rem;
    color: #fff;
    font-weight: 600;
}
.home-notices .splide__slide .text {
    padding-left: 10px;
}
.home-notices .splide__slide .text a {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}
.content-warp {
	min-height: 550px;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #f1f2f7;
}
.home-event {
	margin-top: -60px;
    position: relative;
    z-index: 1;
}
.home-event .container{
	max-width: 1440px;
}

.home-event .event-item {
	position:relative;
	padding: 0px;
	background: #FFFFFF;
	border: 1px solid rgba(37,99,235,.12);
	border-radius: 12px;
	height: 120px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 8px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.04);
	-webkit-transition: all .32s cubic-bezier(.16,1,.3,1);
	-o-transition: all .32s cubic-bezier(.16,1,.3,1);
	-moz-transition: all .32s cubic-bezier(.16,1,.3,1);
	transition: all .32s cubic-bezier(.16,1,.3,1);
	overflow: hidden;
}
/* 图标 - 紧贴左侧 */
.home-event .event-item-icon{
	flex:0 0 96px;
	width:96px;
	height:96px;
	object-fit: contain;
	-webkit-transition: all .32s cubic-bezier(.16,1,.3,1);
	-o-transition: all .32s cubic-bezier(.16,1,.3,1);
	-moz-transition: all .32s cubic-bezier(.16,1,.3,1);
	transition: all .32s cubic-bezier(.16,1,.3,1);
}
/* 渐变背景扫过层 */
.home-event .event-item::after{
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,rgba(37,99,235,0),rgba(37,99,235,.05),rgba(34,211,238,.04),rgba(37,99,235,0));
	-webkit-transition:left .6s cubic-bezier(.16,1,.3,1);
	-o-transition:left .6s cubic-bezier(.16,1,.3,1);
	-moz-transition:left .6s cubic-bezier(.16,1,.3,1);
	transition:left .6s cubic-bezier(.16,1,.3,1);
	pointer-events:none;
	z-index:0;
}
.home-event .event-item-info{
	position:relative;
	z-index:1;
	flex:1 1 auto;
	min-width:0;
	text-align:left;
}
.home-event .event-item-info h3 {
	font-size: 18px;
	color:#1E293B;
	font-weight:600;
	margin-bottom:6px;
	text-align:left;
}
.home-event .event-item-info p {
	color: #64748B;
	margin-bottom: 0;
	font-size:14px;
	text-align:left;
}
/* Hover 上浮 + 边框高亮 + 阴影加深 */
.home-event .event-item:hover{
	-webkit-transform:translateY(-4px);
	-moz-transform:translateY(-4px);
	-ms-transform:translateY(-4px);
	-o-transform:translateY(-4px);
	transform:translateY(-4px);
	border-color:rgba(37,99,235,.35);
	box-shadow:0 6px 20px rgba(15,23,42,.1), 0 12px 32px rgba(37,99,235,.1);
}
/* Hover 渐变背景扫过 */
.home-event .event-item:hover::after{
	left:100%;
}
/* Hover 图标微动 */
.home-event .event-item:hover .event-item-icon{
	-webkit-transform:scale(1.08) rotate(-3deg);
	-moz-transform:scale(1.08) rotate(-3deg);
	-ms-transform:scale(1.08) rotate(-3deg);
	-o-transform:scale(1.08) rotate(-3deg);
	transform:scale(1.08) rotate(-3deg);
}
/* 底部指示箭头 */
.home-event .event-item-arrow{
	position:absolute;
	right:18px;
	top:50%;
	-webkit-transform:translateY(-50%) translateX(-6px);
	-moz-transform:translateY(-50%) translateX(-6px);
	-ms-transform:translateY(-50%) translateX(-6px);
	-o-transform:translateY(-50%) translateX(-6px);
	transform:translateY(-50%) translateX(-6px);
	opacity:0;
	z-index:2;
	-webkit-transition:all .28s cubic-bezier(.16,1,.3,1);
	-o-transition:all .28s cubic-bezier(.16,1,.3,1);
	-moz-transition:all .28s cubic-bezier(.16,1,.3,1);
	transition:all .28s cubic-bezier(.16,1,.3,1);
	pointer-events:none;
}
.home-event .event-item:hover .event-item-arrow{
	opacity:1;
	-webkit-transform:translateY(-50%) translateX(0);
	-moz-transform:translateY(-50%) translateX(0);
	-ms-transform:translateY(-50%) translateX(0);
	-o-transform:translateY(-50%) translateX(0);
	transform:translateY(-50%) translateX(0);
}
.home-notice {
	background-color: #e1e2e9;
}
/* ===== 产品一级分类标签 ===== */
.product-tabs {
	display:grid;
	grid-template-columns:repeat(6, 1fr);
	gap:12px;
	margin:28px 0 32px;
}
.product-tab {
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:10px;
	padding:14px 16px;
	background:#fff;
	border:1px solid rgba(37,99,235,.12);
	border-radius:10px;
	cursor:pointer;
	transition:all .28s cubic-bezier(.16,1,.3,1);
	color:#475569;
	font-size:15px;
	font-weight:500;
	user-select:none;
	white-space:nowrap;
}
.product-tab:hover {
	border-color:rgba(37,99,235,.4);
	color:#2563EB;
	background:rgba(37,99,235,.04);
	transform:translateY(-2px);
}
.product-tab.active {
	background:linear-gradient(135deg,#2563EB,#3B82F6);
	border-color:transparent;
	color:#fff;
	box-shadow:0 4px 14px rgba(37,99,235,.35);
}
.ptab-icon {
	flex:0 0 32px;
	display:flex;
	align-items:center;
	justify-content:center;
	width:32px;
	height:32px;
	border-radius:8px;
	background:rgba(37,99,235,.08);
	transition:all .28s cubic-bezier(.16,1,.3,1);
}
.ptab-icon img {
	width:20px;
	height:20px;
	object-fit:contain;
	filter:brightness(0) saturate(100%) invert(38%) sepia(93%) saturate(2070%) hue-rotate(203deg) brightness(101%) contrast(102%);
}
.product-tab:hover .ptab-icon {
	background:rgba(37,99,235,.15);
}
.product-tab.active .ptab-icon {
	background:rgba(255,255,255,.2);
}
.product-tab.active .ptab-icon img {
	filter:brightness(0) invert(1);
}
.ptab-text {
	flex:1 1 auto;
}

/* ===== 产品面板 ===== */
.product-panels {
	position:relative;
}
.product-panel {
	display:none;
}
.product-panel.active {
	display:block;
	animation:panelFadeIn .4s cubic-bezier(.16,1,.3,1);
}
.panel-layout {
	display:flex;
	gap:20px;
	padding-bottom:8px;
}
/* 左侧固定区 */
.panel-sidebar {
	flex:0 0 220px;
	display:flex;
	flex-direction:column;
	gap:16px;
	padding-bottom:4px;
}
.sidebar-box {
	background:#fff;
	border:1px solid rgba(37,99,235,.1);
	border-radius:14px;
	padding:20px;
	transition:all .32s cubic-bezier(.16,1,.3,1);
}
.sidebar-title {
	background:linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
	color:#fff;
	border-color:transparent;
	position:relative;
	overflow:hidden;
}
.sidebar-title::before {
	content:"";
	position:absolute;
	top:-40px;
	right:-40px;
	width:120px;
	height:120px;
	background:rgba(255,255,255,.15);
	border-radius:50%;
}
.sidebar-label {
	display:block;
	font-size:12px;
	font-weight:500;
	opacity:.85;
	letter-spacing:.5px;
	margin-bottom:10px;
}
.sidebar-name {
	font-size:22px;
	font-weight:700;
	margin:0 0 8px;
	position:relative;
	z-index:1;
}
.sidebar-slogan {
	display:block;
	font-size:13px;
	opacity:.9;
	line-height:1.5;
	position:relative;
	z-index:1;
}
.sidebar-action {
	display:flex;
	flex-direction:column;
	gap:10px;
	margin-bottom:8px;
}
.sidebar-btn {
	display:block;
	background:linear-gradient(135deg, #2563EB, #3B82F6);
	color:#fff;
	text-align:center;
	padding:12px 16px;
	border-radius:10px;
	font-size:14px;
	font-weight:500;
	text-decoration:none;
	transition:all .28s cubic-bezier(.16,1,.3,1);
}
.sidebar-btn:hover {
	transform:translateY(-2px);
	box-shadow:0 6px 20px rgba(37,99,235,.35);
	color:#fff;
	text-decoration:none;
}
.sidebar-btn-ghost {
	display:block;
	background:transparent;
	color:#2563EB;
	text-align:center;
	padding:10px 16px;
	border-radius:10px;
	font-size:14px;
	font-weight:500;
	text-decoration:none;
	border:1px solid rgba(37,99,235,.2);
	transition:all .28s cubic-bezier(.16,1,.3,1);
}
.sidebar-btn-ghost:hover {
	background:rgba(37,99,235,.06);
	border-color:rgba(37,99,235,.4);
	color:#2563EB;
	text-decoration:none;
}
/* 右侧产品网格 */
.panel-products {
	flex:1 1 auto;
	min-width:0;
}
.products-grid {
	display:grid;
	grid-template-columns:repeat(4, 1fr);
	grid-template-rows:auto auto;
	gap:16px;
	max-height:320px;
	overflow:hidden;
}
@keyframes panelFadeIn {
	from { opacity:0; transform:translateY(12px); }
	to { opacity:1; transform:translateY(0); }
}

/* ===== 产品卡片 ===== */
.p-card {
	background:#fff;
	border:1px solid rgba(37,99,235,.1);
	border-radius:14px;
	padding:20px;
	height:130px;
	display:flex;
	flex-direction:column;
	gap:0;
	transition:all .32s cubic-bezier(.16,1,.3,1);
	position:relative;
	overflow:hidden;
	color:inherit;
	text-decoration:none;
}
.p-card:hover {
	color:inherit;
	text-decoration:none;
	border-color:rgba(37,99,235,.3);
	box-shadow:0 4px 16px rgba(37,99,235,.1);
}
.p-card::before {
	content:"";
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(90deg,rgba(37,99,235,0),rgba(37,99,235,.04),rgba(34,211,238,.03),rgba(37,99,235,0));
	transition:left .6s cubic-bezier(.16,1,.3,1);
	pointer-events:none;
}
.p-card:hover::before { left:100%; }
.p-card-body {
	flex:1 1 auto;
	min-width:0;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
}
.p-card-body h4 {
	font-size:16px;
	font-weight:600;
	color:#1E293B;
	margin:0 0 6px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.p-card-body p {
	font-size:13px;
	color:#64748B;
	margin:0;
	line-height:1.5;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.p-card-btn {
	flex:0 0 auto;
	display:flex;
	align-items:center;
	gap:4px;
	padding:8px 14px;
	background:linear-gradient(135deg,#2563EB,#3B82F6);
	color:#fff;
	font-size:12px;
	font-weight:500;
	border-radius:8px;
	transition:all .28s cubic-bezier(.16,1,.3,1);
	white-space:nowrap;
	align-self:flex-end;
	margin-top:auto;
}
.p-card-btn svg {
	transition:transform .28s cubic-bezier(.16,1,.3,1);
}
.p-card:hover .p-card-btn {
	box-shadow:0 4px 14px rgba(37,99,235,.35);
	transform:translateX(-2px);
}
.p-card:hover .p-card-btn svg {
	transform:translateX(3px);
}

.hot-products-main .container{
	max-width: 1440px;
}
.home-service {

}
.home-service .container {
	max-width: 1440px;
	padding: 0 2rem;
}
.home-service .title-main {
	margin-bottom: 8px;
}
.home-service .title-head {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 12px;
	letter-spacing: -.8px;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(24px);
}
.home-service .sub-head {
	margin: 0;
	font-size: 16px;
	color: #64748B;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(20px);
}
.home-service .nav-tabs {
	opacity: 0;
	transform: translateY(20px);
}
.home-service .tab-content {
	opacity: 0;
	transform: translateY(30px);
}
.home-service.in-view .title-head {
	animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-service.in-view .sub-head {
	animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.home-service.in-view .nav-tabs {
	animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.home-service.in-view .tab-content {
	animation: serviceContentIn 0.7s cubic-bezier(.16,1,.3,1) 0.55s forwards;
}
@keyframes serviceContentIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.home-service .nav-tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 48px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	width: 100%;
	border-bottom: 1px solid #E2E8F0;
}
.home-service .nav-tabs .nav-item {
	flex: none;
	font-size: 15px;
	font-weight: 500;
	position: relative;
}
.home-service .nav-tabs .nav-item .nav-link {
	color: #64748B;
	border: none;
	border-bottom: none;
	padding: 16px 24px 16px 60px;
	border-radius: 0;
	transition: color .28s ease;
	font-size: 16px;
	letter-spacing: .5px;
	position: relative;
}
.home-service .nav-tabs .nav-item-icon {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	color: #CBD5E1;
	transition: color .3s, transform .3s;
	z-index: 1;
	pointer-events: none;
}
.home-service .nav-tabs .nav-item .nav-link:hover {
	color: #2563EB;
	background: transparent;
}
.home-service .nav-tabs .nav-item:hover .nav-item-icon {
	color: #93C5FD;
}
.home-service .nav-tabs .nav-item .nav-link.active {
	background: transparent;
	color: #0F172A;
	box-shadow: none;
	border-bottom: none;
	font-weight: 600;
}
.home-service .nav-tabs .nav-item.active .nav-item-icon {
	color: #2563EB;
	transform: translateY(-50%) scale(1.15);
}
.home-service .nav-tabs .nav-item.active::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 24px;
	right: 24px;
	height: 3px;
	background: linear-gradient(90deg, #2563EB, #22D3EE);
	border-radius: 2px;
}
.home-service .tab-pane {
	animation: serviceTabFadeIn .5s cubic-bezier(.16,1,.3,1);
}
@keyframes serviceTabFadeIn {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}
.home-service .service-item-image {
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-service .service-item-image img {
	max-width: 70%;
}
.home-service h3 {
	font-size: 28px;
	margin-bottom: 30px;
}
.home-service h2 small {
	font-size: 1rem;
}
.home-service p {
	color: #808080;
}
.home-service .service-item {
	margin: 40px 0;
}
.home-program {
	background-color: #182335;
	background-image: url("../img/program_bg.jpg");
	background-position: center;
}
.home-datacenter {
	background-color: #fff;
	position: relative;
	overflow: hidden;
}
.home-datacenter::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 400px;
	background: radial-gradient(ellipse, rgba(37,99,235,.08) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.home-datacenter .container {
	position: relative;
	z-index: 1;
	padding: 0 2rem;
	max-width: 1440px;
}
.home-datacenter .title-head {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 12px;
	letter-spacing: -.8px;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(24px);
}
.home-datacenter .sub-head {
	margin: 0;
	font-size: 16px;
	color: #64748B;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(20px);
}
.home-datacenter.in-view .title-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-datacenter.in-view .sub-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.home-datacenter > .container > img {
	max-width: 90%;
	margin: 0 auto 48px;
	display: block;
	border-radius: 12px;
	box-shadow: 0 16px 48px rgba(15,23,42,.12);
	opacity: 0;
	transform: translateY(30px);
	position: relative;
	z-index: 2;
}
.home-datacenter.in-view > .container > img {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.home-datacenter .row {
	display: flex;
	justify-content: center;
	opacity: 0;
	transform: translateY(30px);
	position: relative;
	z-index: 2;
}
.home-datacenter.in-view .row {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.55s forwards;
}
.datacenter-item {
	text-align: center;
	padding: 28px 20px;
	position: relative;
}
.datacenter-item::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 50px;
	background: linear-gradient(180deg, transparent, rgba(15,23,42,.15), transparent);
}
.datacenter-item:last-child::before {
	display: none;
}
.datacenter-item h2 {
	color: #0F172A;
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	margin: 0 0 8px;
	background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #38BDF8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-variant-numeric: tabular-nums;
	letter-spacing: -1px;
}
.datacenter-item h2 small {
	font-size: 18px;
	font-weight: 600;
	color: rgba(37,99,235,.7);
	-webkit-text-fill-color: rgba(37,99,235,.7);
	margin-left: 2px;
	letter-spacing: 0;
}
.datacenter-item p {
	color: #64748B;
	font-size: 14px;
	margin: 0;
	letter-spacing: 1px;
}
@media (max-width: 768px) {
	.home-datacenter.space2x {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.home-datacenter .container {
		padding: 0 1rem;
	}
	.home-datacenter .sub-head {
		font-size: 13px;
	}
	/* 手机端隐藏数据中心展示图 */
	.home-datacenter > .container > img {
		display: none;
	}
	.home-datacenter .row {
		flex-wrap: wrap;
		gap: 12px 0;
	}
	.home-datacenter .row > .col-sm-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.datacenter-item {
		padding: 16px 8px;
	}
	.datacenter-item h2 {
		font-size: 26px;
	}
	.datacenter-item h2 small {
		font-size: 13px;
	}
	.datacenter-item p {
		font-size: 12px;
		letter-spacing: 0;
	}
	.datacenter-item::before {
		height: 28px;
	}
}
@media (max-width: 480px) {
	.home-datacenter .row > .col-sm-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.datacenter-item {
		padding: 12px 6px;
	}
	.datacenter-item h2 {
		font-size: 22px;
	}
	.datacenter-item h2 small {
		font-size: 12px;
	}
	.datacenter-item p {
		font-size: 11px;
	}
}
.home-cta {
	background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
	position: relative;
}
.home-cta .container {
	padding: 0 2rem;
	max-width: 1440px;
}
.home-cta .cta-title {
	margin-bottom: 36px;
	opacity: 0;
	transform: translateY(24px);
}
.home-cta.in-view .cta-title {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-cta .cta-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin: 0;
	letter-spacing: -.8px;
	line-height: 1.25;
}
.home-cta .cta-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	opacity: 0;
	transform: translateY(30px);
}
.home-cta.in-view .cta-grid {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.3s forwards;
}
.home-cta .cta-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px 28px;
	box-shadow: 0 4px 24px rgba(15,23,42,.04);
	transition: box-shadow .3s cubic-bezier(.16,1,.3,1);
	display: flex;
	flex-direction: column;
	min-height: 220px;
}
.home-cta .cta-card:hover {
	box-shadow: 0 12px 40px rgba(15,23,42,.1);
}
.home-cta .cta-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #2563EB;
	background: rgba(37,99,235,.08);
	padding: 4px 12px;
	border-radius: 6px;
	margin-bottom: 16px;
	align-self: flex-start;
	letter-spacing: .5px;
}
.home-cta .cta-heading {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.35;
	background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #38BDF8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.home-cta .cta-desc {
	font-size: 15px;
	color: #64748B;
	line-height: 1.6;
	margin: 0 0 24px;
	flex: 1;
}
.home-cta .cta-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}
.home-cta .cta-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	border: 1px solid rgba(37,99,235,.3);
	border-radius: 8px;
	color: #2563EB;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all .25s cubic-bezier(.16,1,.3,1);
	background: #fff;
}
.home-cta .cta-btn:hover {
	background: #2563EB;
	color: #fff;
	border-color: #2563EB;
	box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.home-cta .cta-link {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #2563EB;
	text-decoration: none;
	font-weight: 500;
	transition: color .2s;
}
.home-cta .cta-link:hover {
	color: #1d4ed8;
}
.home-cta .cta-link .cta-arrow {
	display: inline-block;
	margin-left: 4px;
	transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.home-cta .cta-link:hover .cta-arrow {
	transform: translate(2px, -2px);
}
.home-cta .cta-phone {
	font-size: 13px;
	color: #64748B;
	letter-spacing: .3px;
}
@media (max-width: 992px) {
	.home-cta .cta-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.home-cta .container {
		padding: 0 1rem;
	}
	.home-cta .cta-title h2 {
		font-size: 22px;
	}
	.home-cta .cta-card {
		padding: 24px 20px;
		min-height: auto;
	}
	.home-cta .cta-heading {
		font-size: 19px;
	}
}
.home-legalize {
	text-align: left;
}
.home-legalize .container {
	max-width: 1440px;
	padding: 0 2rem;
}
.home-legalize .title-main {
	margin-bottom: 8px;
}
.home-legalize .title-head {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 12px;
	letter-spacing: -.8px;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(24px);
}
.home-legalize .sub-head {
	margin: 0;
	font-size: 16px;
	color: #64748B;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(20px);
}
.home-legalize .row {
	margin-top: 32px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 0;
}
.home-legalize .row > .col {
	flex: 0 0 16.666%;
	max-width: 16.666%;
	text-align: center;
	opacity: 0;
	transform: translateY(30px);
}
.home-legalize img {
	max-height: 80px;
	filter: grayscale(30%);
	transition: filter .3s ease, transform .3s cubic-bezier(.16,1,.3,1);
}
.home-legalize .row > .col:hover img {
	filter: grayscale(0%);
	transform: scale(1.05);
}
.home-legalize .text {
	margin-top: 14px;
	color: #475569;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}
.home-legalize.in-view .title-head {
	animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-legalize.in-view .sub-head {
	animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.home-legalize.in-view .row > .col:nth-child(1) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.4s forwards; }
.home-legalize.in-view .row > .col:nth-child(2) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.5s forwards; }
.home-legalize.in-view .row > .col:nth-child(3) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.6s forwards; }
.home-legalize.in-view .row > .col:nth-child(4) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.7s forwards; }
.home-legalize.in-view .row > .col:nth-child(5) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.8s forwards; }
.home-legalize.in-view .row > .col:nth-child(6) { animation: certFadeIn 0.6s cubic-bezier(.16,1,.3,1) 0.9s forwards; }

@keyframes certFadeIn {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
.home-case .container {
	max-width: 1440px;
	padding: 0 2rem;
}
.home-case .title-head {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 12px;
	letter-spacing: -.8px;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(24px);
}
.home-case .sub-head {
	margin: 0;
	font-size: 16px;
	color: #64748B;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(20px);
}
.home-case .case-row {
	margin-top: 16px;
	overflow: hidden;
	opacity: 0;
	transform: translateY(30px);
}
.home-case.in-view .title-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-case.in-view .sub-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.home-case.in-view .case-row:nth-child(2) {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.home-case.in-view .case-row:nth-child(3) {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.55s forwards;
}
.home-case.in-view .case-row:nth-child(4) {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.7s forwards;
}
@keyframes caseTitleIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes caseRowIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.home-case .case-scroll {
	overflow: hidden;
	width: 100%;
	position: relative;
}
.home-case .case-scroll::before,
.home-case .case-scroll::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100px;
	z-index: 3;
	pointer-events: none;
}
.home-case .case-scroll::before {
	left: 0;
	background: linear-gradient(to right,
		rgba(255,255,255,1) 0%,
		rgba(255,255,255,.95) 20%,
		rgba(255,255,255,.75) 45%,
		rgba(255,255,255,.4) 70%,
		rgba(255,255,255,.1) 90%,
		transparent 100%);
}
.home-case .case-scroll::after {
	right: 0;
	background: linear-gradient(to left,
		rgba(255,255,255,1) 0%,
		rgba(255,255,255,.95) 20%,
		rgba(255,255,255,.75) 45%,
		rgba(255,255,255,.4) 70%,
		rgba(255,255,255,.1) 90%,
		transparent 100%);
}
.home-case .scroll-track {
	display: flex;
	align-items: center;
	width: max-content;
}
.home-case .scroll-track .col {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 100px;
	margin: 0 8px;
	padding: 16px 24px;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(15,23,42,.04), inset 0 0 0 1px rgba(15,23,42,.04);
	transition: all 0.4s cubic-bezier(.16,1,.3,1);
	flex-shrink: 0;
}
.home-case .scroll-track .col:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(37,99,235,.12), inset 0 0 0 1px rgba(37,99,235,.12);
}
.home-case .scroll-track img {
	max-width: 160px;
	max-height: 60px;
	object-fit: contain;
	transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.4s cubic-bezier(.16,1,.3,1);
	opacity: .95;
}
.home-case .scroll-track .col:hover img {
	transform: scale(1.06);
	opacity: 1;
}
.home-case .scroll-track {
	animation: caseScroll 40s linear infinite;
}
.home-case .case-row.reverse .scroll-track {
	animation: caseScrollReverse 45s linear infinite;
}
.home-case .case-scroll:hover .scroll-track {
	animation-play-state: paused;
}
@media (max-width: 768px) {
	.home-case.space2x {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.home-case .container {
		padding: 0 1rem;
	}
	.home-case .sub-head {
		font-size: 13px;
	}
	.home-case .case-row {
		margin-top: 12px;
	}
	.home-case .case-scroll::before,
	.home-case .case-scroll::after {
		width: 40px;
	}
	.home-case .scroll-track .col {
		min-width: 140px;
		min-height: 70px;
		margin: 0 6px;
		padding: 10px 14px;
		border-radius: 10px;
	}
	.home-case .scroll-track img {
		max-width: 110px;
		max-height: 44px;
	}
	.home-case .scroll-track {
		animation: caseScroll 30s linear infinite;
	}
	.home-case .case-row.reverse .scroll-track {
		animation: caseScrollReverse 35s linear infinite;
	}
}
@keyframes caseScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@keyframes caseScrollReverse {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

/* ========== Home News Section ========== */
.home-news .container {
	max-width: 1440px;
	padding: 0 2rem;
}
.home-news .title-head {
	font-size: 36px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 12px;
	letter-spacing: -.8px;
	line-height: 1.25;
	opacity: 0;
	transform: translateY(24px);
}
.home-news .sub-head {
	margin: 0;
	font-size: 16px;
	color: #64748B;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(20px);
}
.home-news .news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 32px;
	opacity: 0;
	transform: translateY(30px);
}
.home-news.in-view .title-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-news.in-view .sub-head {
	animation: caseTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.home-news.in-view .news-grid {
	animation: caseRowIn 0.7s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}

/* Shared Section Styles */
.home-news .help-section,
.home-news .news-section {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(15,23,42,.04);
	overflow: hidden;
}
.home-news .section-header {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 24px 24px 20px;
	border-bottom: 1px solid rgba(15,23,42,.05);
}
.home-news .section-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.home-news .section-title-wrap {
	flex: 1;
	min-width: 0;
}
.home-news .section-title {
	font-size: 18px;
	font-weight: 700;
	color: #0F172A;
	margin: 0 0 2px;
	line-height: 1.3;
}
.home-news .section-desc {
	font-size: 13px;
	color: #64748B;
	margin: 0;
	line-height: 1.4;
}

/* Help Section */
.home-news .help-section {
	padding-bottom: 4px;
}

/* News Section */
.home-news .news-section {
	padding-bottom: 4px;
}
.home-news .news-cate-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 16px 24px;
	border-bottom: 1px solid rgba(15,23,42,.05);
	background: linear-gradient(180deg, rgba(37,99,235,.02) 0%, transparent 100%);
}
.home-news .news-cate-tab {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 500;
	color: #64748B;
	background: #fff;
	border: 1px solid rgba(37,99,235,.08);
	border-radius: 0;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.home-news .news-cate-tab:hover {
	color: #2563EB;
	border-color: rgba(37,99,235,.35);
	background: rgba(37,99,235,.04);
}
.home-news .news-article-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.home-news .news-article-item {
	border-bottom: 1px solid rgba(15,23,42,.04);
	transition: background 0.4s cubic-bezier(.16,1,.3,1);
}
.home-news .news-article-item:nth-child(n+4) {
	display: none;
}
.home-news .news-article-item:nth-child(3) {
	border-bottom: none;
}
.home-news .news-article-item:last-child {
	border-bottom: none;
}
.home-news .news-article-item:hover {
	background: linear-gradient(90deg, rgba(37,99,235,.04) 0%, rgba(37,99,235,.01) 100%);
}
.home-news .news-article-content {
	padding: 18px 24px;
	position: relative;
	transition: padding-left 0.4s cubic-bezier(.16,1,.3,1);
}
.home-news .news-article-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 3px;
	background: linear-gradient(180deg, #2563EB, #0EA5E9);
	transform: scaleY(0);
	transition: transform 0.4s cubic-bezier(.16,1,.3,1);
	transform-origin: center;
}
.home-news .news-article-item:hover .news-article-content {
	padding-left: 32px;
}
.home-news .news-article-item:hover .news-article-content::before {
	transform: scaleY(1);
}
.home-news .news-article-title {
	font-size: 15px;
	font-weight: 600;
	color: #0F172A;
	line-height: 1.45;
	margin: 0 0 6px;
}
.home-news .news-article-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.home-news .news-article-item:hover .news-article-title a {
	color: #2563EB;
}
.home-news .news-article-excerpt {
	font-size: 13px;
	color: #64748B;
	line-height: 1.55;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.home-news .news-article-excerpt p {
	margin: 0;
}
.home-news .news-article-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 12px;
}
.home-news .news-meta-cate {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	background: rgba(37,99,235,.08);
	color: #2563EB;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}
.home-news .news-meta-cate:hover {
	background: rgba(37,99,235,.12);
}
.home-news .news-meta-date {
	color: #94A3B8;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}
.home-news .news-meta-views {
	color: #94A3B8;
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.home-news .news-meta-views .fa-eye {
	font-size: 11px;
}
.home-news .news-footer {
	padding: 16px 24px;
	border-top: 1px solid rgba(15,23,42,.05);
	text-align: right;
}
.home-news .news-more-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #2563EB;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(.16,1,.3,1);
}
.home-news .news-more-arrow {
	display: inline-block;
	transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.home-news .news-more-link:hover .news-more-arrow {
	transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
	.home-news .news-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.home-news .container {
		padding: 0 1.5rem;
	}
	.home-news .section-header {
		padding: 20px 20px 16px;
	}
	.home-news .section-icon {
		width: 28px;
		height: 28px;
	}
	.home-news .section-title {
		font-size: 16px;
	}
	.home-news .news-cate-tabs {
		padding: 14px 20px;
	}
	.home-news .news-article-content {
		padding: 14px 20px;
	}
	.home-news .news-article-item:hover .news-article-content {
		padding-left: 20px;
	}
	.home-news .news-article-meta {
		flex-wrap: wrap;
		gap: 8px;
	}
}
.program-item {
	border-radius: 16px;
	background-color: #fff;
	overflow: hidden;
}
.program-item-image img:hover, .program-item-info img:hover {
	    transform: scale(1.05);
}
.program-item-image img {
	max-width: 100%;
	max-height: 100%;
	transform: scale(1);
	opacity: 1;
	transition: all .5s cubic-bezier(.16,1,.3,1);
	border-radius: 16px;
	object-fit: cover;
	width: 100%;
}
.program-item-image {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,23,42,.06);
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(226,232,240,.8);
}
.program-item-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(37,99,235,.04) 100%);
    pointer-events: none;
    border-radius: 16px;
}
.program-item-image img {
    height: 100%;
    display: block;
}
.program-item-info {
	padding: 48px 40px;
	opacity: 1;
	transition: all .75s;
	position: relative;
	height: 100%;
	background-color: #fff;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(148,163,184,.1) 1px, transparent 0);
	background-size: 20px 20px;
	border-radius: 16px;
	overflow: hidden;
	color: #334155;
	border: 1px solid rgba(226,232,240,.8);
	box-shadow: 0 4px 24px rgba(15,23,42,.04);
}
.program-item-info::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.program-item-info-content {
	position: relative;
	z-index: 1;
}
.program-item-info h2 {
	font-size: 30px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 20px;
	line-height: 1.35;
	letter-spacing: -.5px;
	padding-left: 16px;
	position: relative;
}
.program-item-info h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 32px;
	background: linear-gradient(180deg, #2563EB, #22D3EE);
	border-radius: 2px;
}
.program-item-info .functions {
	list-style: none;
	padding: 0;
	margin: 20px 0 28px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 24px;
}
.program-item-info .functions li {
	position: relative;
	padding-left: 36px;
	font-size: 15px;
	color: #475569;
	line-height: 26px;
}
.program-item-info .functions li .func-icon {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	color: #2563EB;
}
.program-item-info .des {
	line-height: 1.8;
	font-size: 15px;
	color: #64748B;
	margin: 0 0 28px;
}
.jump-detail {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #2563EB, #3B82F6);
	color: #fff !important;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all .28s cubic-bezier(.16,1,.3,1);
	border: none;
	text-decoration: none;
}
.jump-detail svg {
	width: 16px;
	height: 16px;
	transition: transform .28s cubic-bezier(.16,1,.3,1);
}
.jump-detail:hover {
	box-shadow: 0 6px 20px rgba(37,99,235,.35);
	transform: translateY(-2px);
	color: #fff !important;
}
.jump-detail:hover svg {
	transform: translateX(4px);
}
.jump-detail img {
	display: none;
}
.stat-row {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 28px 0;
	padding: 20px 0;
	border-top: 1px solid #E2E8F0;
	border-bottom: 1px solid #E2E8F0;
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}
.stat-num {
	font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
	font-size: 28px;
	font-weight: 700;
	background: linear-gradient(135deg, #2563EB, #0EA5E9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}
.stat-label {
	font-size: 13px;
	color: #64748B;
	font-weight: 400;
	letter-spacing: .3px;
}
.stat-divider {
	width: 1px;
	height: 32px;
	background: linear-gradient(180deg, transparent, #CBD5E1, transparent);
}
.title-main {
	text-align: center;
}
.title-text {
	flex:1 1 auto;
}
.title-head {
	font-size: 2.5em;
	font-weight: 500;
	margin-bottom: 25px;
}
.sub-head {
    margin: 10px 0 0;
    font-size: 1.2rem;
    color: #808080;
}
.view-all-link {
	display:inline-flex;
	align-items:center;
	gap:4px;
	color:#2563EB;
	font-size:1.2rem;
	font-weight:500;
	text-decoration:none;
	white-space:nowrap;
	transition:color .24s ease;
	margin-left:16px;
	vertical-align:baseline;
}
.view-all-link svg {
	transition:transform .28s cubic-bezier(.16,1,.3,1);
}
.view-all-link:hover {
	color:#1D4ED8;
	text-decoration:none;
}
.view-all-link:hover svg {
	transform:translateX(4px);
}
.home-notice {
	background-color: #f1f2f7;
}
.home-notice .notice-item-title h3 {
	border-bottom: 2px solid #404856;
	padding-bottom: 10px;
	margin-bottom: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.home-notice .notice-item-title h3 a {
	color: #6c757d;
	color: var(--gray);
	font-size: 1rem;
}
.notice-item p {
    padding: 20px 0;
	border-bottom: 1px solid #e5e5e5;
}
.home-notice .notice-item-list li {
	border-bottom: 1px solid #e5e5e5;
    color: #333;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.home-notice .notice-item-list li a {
	color: #333;
}
.home-notice .notice-item-list li .time {
    color: #999;
}

.footer {
    color: #475569;
    font-size: 14px;
	background-color: transparent;
}
.footer p {
    padding-top: 20px;
	margin-bottom: 0;
}
.footer h5 {
	color: #0F172A;
    font-size: 16px;
	margin-bottom: 20px;
}
.footer li {
    line-height: 28px;
}
.footer li a {
    color: #64748B;
    font-weight: 400;
    text-decoration: none;
}
.pages-contact p {
	color: #808080;
	font-size: 16px;
	line-height: 1.7;
}
.about-wrap {
	background-image: url("../img/26871_15900482640336.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.about-wrap:after {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    content: '';
}
.about-image {
    padding-top: 110%;
    position: relative;
    margin-left: 10%;
}
.about-image:before {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    content: "";
    transform: translate(20px, 20px);
    width: 100%;
    height: 100%;
    background: rgba(49, 83, 212, 0.1);
}
.about-image:after {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../img/14170_15759733924803.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
.about-wrap .container {
	z-index: 1;
	position: relative;
}
.about-wrap h2 {
	font-size: 40px;
}

/* vps */
.boxe {
	position: relative;
	top: 0;
    padding: 30px;
	border: 1px solid #f9fafc;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    transition: top .3s;
    margin-bottom: 30px;
}
.boxe .new {
    display: inline-block;
    padding: 0 4px;
    color: #fff;
    background-color: #ff9803;
    border: 1px solid #ff9803;
    font-size: 14px;
}
.boxe .new.unvisible {
    visibility: hidden;
}
.boxe .percent {
    display: inline-block;
    margin-right: 5px;
    padding: 0 6px;
    border: 1px solid #f66b05;
    color: #f66b05;
    font-size: 14px;
}
.boxe .name {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
}
.boxe .badge.deeporange {
	position: absolute;
    top: -1px;
    left: -1px;
    display: inline-block;
    border-radius: 6px 0 0;
    color: #fff;
	padding: 8px 10px;
    background-color: #ff6f00;
}
.boxe .badge.qty {
	position: absolute;
    top: -1px;
    left: -1px;
    display: inline-block;
    border-radius: 6px 0 0;
    color: #fff;
	padding: 8px 10px;
    background-color: #007dc2;
}
.boxe dl,
.boxe dl dd,
.boxe dl dt {
    line-height: 2.2;
    margin-bottom: 0;
}
.boxe dl dt {
    float: left;
    min-width: 90px;
    color: #999;
}
.boxe dl dd {
	color: #333;
	font-weight: 500;
}
.boxe .cost {
    font-size: 18px;
    margin-bottom: 10px;
}
.boxe .cost s {
    display: block;
    text-decoration: line-through;
    font-size: 16px;
}
.boxe .cost .big {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Spoqa Han Sans','Malgun Gothic','Apple SD Gothic Neo', dotum, sans-serif;
}
.boxe .cost .won {
	font-size: 14px;
	color: #b7b7b7;
	vertical-align: text-top;
}
.boxe .btn:link,
.boxe .btn:focus,
.boxe .btn:active {
	margin-bottom: 20px;
	border-width: 0px;
    padding: 12px 0;
    min-width: 140px;
    font-size: 14px;
}
.boxe .btn-primary {
    background-color: #3090d6;
}
.boxe .btn-outofstock {
	color: #FFF;
	cursor: no-drop;
    background-color: #9ca0a7;
}
.bottom-border {
    border-bottom: 1px solid #f3f3f3;
}
.product-os {
	padding-bottom: 60px;
}
.product-os .os.centos {
	background-image: url('../img/os/centos.png');
}
.product-os .os.ubuntu {
	background-image: url('../img/os/ubuntu.png');
}
.product-os .os.fedora {
	background-image: url('../img/os/fedora.png');
}
.product-os .os.debian {
	background-image: url('../img/os/debian.png');
}
.product-os .os.suse {
	background-image: url('../img/os/opensuse.png');
}
.product-os .os.win {
	background-image: url('../img/os/windows.png');
}
.product-os .os {
    position: relative;
    height: 70px;
    border: 1px solid #ccc;
    margin-top: 30px;
    color: #666;
    border-radius: 5px;
	background-position: 20px center;
	background-repeat: no-repeat;
	background-size: 40px;
}
.product-os .os > span {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    padding-left: 80px;
}
.functions h1.sub-title {
	margin: 0 0 60px;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: center;
}
.functions .item {
    color: #666;
    font-size: 16px;
}
.functions .item .img-thumb {
    display: inline-block;
    width: 74px;
    height: 74px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.functions .item .title {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}
.functions .item .item-body {
    flex: 1;
    min-width: 0;
}
.functions .item .desc {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: 1.6;
}
.functions .item .img-thumb.use {
    background-image: url('../img/icon/ico-addition-i2.1.svg');
}
.functions .item .img-thumb.no-agreement {
    background-image: url('../img/icon/ico-addition-i3.1.svg');
}
.functions .item .img-thumb.vps-freefw {
    background-image: url('../img/icon/icon-reason-i1.svg');
}
.functions .item .img-thumb.vps-remote-power {
    background-image: url('../img/icon/icon-reason-i2.svg');
}
.functions-2 {
	padding-top: 50px;
}
.functions-2 .sub-title {
	margin: 0 0 50px;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -2px;
    text-align: center;
}
.functions-2 .item {
    color: #666;
    font-size: 16px;
	min-height: 130px;
    padding: 30px 54px 0 98px;
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: left center;
}
.functions-2 .item.icon-1 {
    background-image: url('../img/cloud/ico_addition_1.svg');
}
.functions-2 .item.icon-2 {
    background-image: url('../img/cloud/ico_addition_2.svg');
}
.functions-2 .item.icon-3 {
    background-image: url('../img/cloud/ico_addition_3.svg');
}
.functions-2 .item.icon-4 {
    background-image: url('../img/cloud/ico_addition_4.svg');
}
.functions-2 .item.icon-5 {
    background-image: url('../img/cloud/ico_addition_5.svg');
}
.functions-2 .item.icon-6 {
    background-image: url('../img/cloud/ico_addition_6.svg');
}
.functions-2 .item .title {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
}

.recommend {
	padding-bottom: 40px !important;
	background-color: #1c5ee5;
}
.recommend .title-s {
    color: #fff;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -2px;
    margin: 0;
}
.recommend .item {
	min-height: 145px;
	padding: 30px;
	margin-bottom: 30px;
	background-color: #3779ff;
	border-radius: 5px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.orange.recommend .item {
    background-color: #ec8d33;
}
.orange.recommend .item p {
    color: #FFF;
}
.recommend .item a {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -1px;
}
.recommend .item p {
    color: #d2f0ff;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 0;
}
.faq-area h3 {
    display: inline-block;
    margin-right: 20px;
    font-size: 32px;
    color: #141414;
}
.faq-area .item-collapse {
    font-size: 18px;
    color: #676767;
    margin-top: 22px;
    border-top: 2px solid #6f6f6f;
}
.faq-area .item-collapse > li {
    border-bottom: 1px solid #e5e5e5;
}
.faq-area .item-collapse .collapse-item {
    position: relative;
}
.faq-area .item-collapse .collapse-header {
    padding: 22px;
    cursor: pointer;
    color: #141414;
}
.faq-area .item-collapse .collapsed.collapse-header {
    background-color: transparent;
}
.faq-area .item-collapse .collapse-header {
    background-color: #f6fafd;
}
.gt-active .gt-collapse-content {
    background-color: #f6fafd;
}
.faq-area .item-collapse .icon.q {
    background-color: #1c5ee5;
}
.faq-area .item-collapse .icon.a {
    background-color: #6c737d;
}
.faq-area .item-collapse .icon {
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}
.faq-area .item-collapse .text {
    margin-left: 46px;
}
.faq-area .item-collapse .collapse-content {
    padding: 0 22px 30px;
    background-color: #f6fafd;
}

.w-table {
    width: 100%;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    border-top: 2px solid #6f6f6f;
    border-bottom: 1px solid #9a9a9a;
}
.w-table th, .w-table td {
    display: table-cell;
    text-align: left;
    padding: 30px;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    background-color: #fff;
}
.w-table th {
    background-color: #f9fafc;
    font-weight: normal;
}
.product-table th {
    padding: 48px 0 45px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}
.product-table th:first-child {
    vertical-align: top;
    padding-top: 40px;
}
.product-table th:first-child {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}
.product-table tr:last-child th,
.product-table tr:last-child td {
    border-bottom: 1px solid #ccc;
}
.product-table.type2 th {
    padding: 20px 0;
}
.product-table.type2 th:first-child {
    padding-left: 30px;
}
.product-table.type2 .product-logo {
	display: none
}
.product-name {
    font-size: 28px;
}
.product-table.type2 .product-name {
    color: #333;
    line-height: 1.2;
    margin-bottom: 0;
}
.event-label, .event-label-green {
    display: inline-block;
    margin-left: 5px;
    padding: 0 6px;
    background: #ff9900;
    color: #fff;
    font-size: 14px;
}
.product-table td {
    font-weight: 400;
    color: #666;
    padding: 20px;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0;
}
.product-table td:first-child {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    color: #333;
    font-weight: 400;
}
.product-table td .info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-table td .desc {
	font-size: 12px;
	color: #AAA;
}
.product-table td .fab {
	font-size: 22px;
	color: #AAA;
}
.product-table td .ip-div {
	display: flex;
	align-items: center;
}
.product-table td .ip-tag {
	height: 18px;
    min-width: 35px;
    display: block;
    line-height: 16px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #dbdee3;
    border-radius: 2px;
    background-color: #fbfbfc;
    color: #AAA;
    transform: scale(.8);
    margin-right: 2px;
    padding: 0 4px;
}
.product-table.type2 td {
    padding: 20px;
}
.product-table.type2 td.left {
    text-align: left;
}
.product-table .spec {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.product-table .spec .title {
    color: #333;
}
.product-table.type2 .product-apply {
    margin-bottom: 5px;
}
.product-table.type2 .product-apply .price {
    font-size: 24px;
    color: #333;
    vertical-align: middle;
    margin-bottom: 0;
}
.gt-medium, .term-price {
    font-size: 16px;
}

.product-table .btn {
	color: #FFF;
	padding: 0;
	border: 0 none;
	padding: 10px 32px;
	border-radius: 2px;
	background-color: #3090d6;
}
.product-table .btn:focus,
.product-table .btn:active {
	color: #FFF;
	box-shadow: none;
	background-color: #1479c2;
}
.product-table .btn:hover {
	color: #FFF;
	background-color: #34a0ef;
}
.color-picker-container.orange {
    background-color: #eb8423;
}

@media (max-width: 991px) {
	.space {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.px100 {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}
	.navbar-collapse {
		background-color: #FFF;
	    border-top: 1px solid #efefef;
	    border-bottom: 1px solid #efefef;
	    margin-top: 15px;
	    padding-bottom: 15px;
	    padding-left: 30px;
	    padding-right: 30px;
	}
	.header .navbar-nav.navbar-right>li {
		margin: 0;
	}
	.header .navbar-nav.navbar-right>li>a,
	.header .navbar-nav>li>a {
		padding: 15px;
		font-size: 18px;
		line-height: 1.5;
	}
	.header .navbar-nav.navbar-right>li .btn-link {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.header .navbar-nav.navbar-right {
		margin-top: 0;
	}
	section.login .join-container {
		padding: 30px 15px;
	}
	.functions .item,
	.boxe {
		margin-bottom: 30px;
	}
	.wrap-main-swiper .content-slide .slogan {
		font-size: 23px;
		letter-spacing: -1px;
	}
	.advantage .items {
		margin-bottom: 30px;
	}
	.advantage .items dl {
	    min-height: 80px;
	    padding-right: 100px;
	    padding-bottom: 0;
	}
	.clientarea-home .nav-tabs, .section-server .nav-tabs {
	    border: 0 none;
	    height: 55px;
	    overflow: hidden;
	    overflow-x: scroll;
	    width: 100%;
	}
	.table-list thead,
	.product-table.type2 thead {
		display: none;
	}
	.w-table th, .w-table td {
		border-right: 0;
	}
	.table-list td,
	.product-table.type2 td {
		display: block;
	}
	.product-table td {
		text-align: left;
	}
	.product-table.type2 .product-apply {
		display: inline-block;
		margin-bottom: 0;
	}
	.product-table .btn {
		display: block;
		margin-top: 15px;
	}
	.table-list .spec,
	.product-table .spec {
		padding-left: 18px;
	}
	.table-list td:last-child,
	.product-table.type2 td:last-child {
		border-bottom: 2px solid #6f6f6f;
	}
	.table-list td > .status,
	.table-list td > div.visible-xs,
	.product-table.type2 td > div.visible-xs {
		display: inline-block !important;
		width: 40%;
		font-weight: 400;
	}
	footer.footer .policy-area li {
		padding: 0 10px;
	}
	.footer.footer .back-to-top {

	}
	div.dataTables_wrapper div.dataTables_length label {
		float: left;
	}
	div.dataTables_wrapper div.dataTables_paginate {
		padding: 5px 0 0;
	}
	.navbar-header {
		height: 90px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.navbar-toggle {
		margin: 0;
	    position: absolute;
	    right: 15px;
	}
	.navbar-brand {
		margin: 0;
	}
	.header .navbar-collapse {
		margin: -1px -15px 0;
	}
	.header .navbar-collapse {
		display: block !important;
		position: fixed;
	    top: 0;
	    left: 0;
	    z-index: 12;
	    height: 100%;
	    width: 240px;
	    background-color: #1b70b8;
	    transition: transform .24s ease;
	    transform: translateX(-240px);
	    overflow-y: auto;
	    overflow-x: hidden;
	    margin: 0;
	    height: 100%;
	    border: 0;
	}
	.header .navbar-nav>li>a,
	.header .navbar-nav.navbar-right>li>a {
    	color: #FFF;
    	text-align: center;
	}
	.header .navbar-nav>li>a:hover {
		color: #EEE;
	}
	.header .navbar-collapse.in {
	    transform: translateX(0);
	}
	.header .navbar-nav.navbar-right>li.acount {
		margin-left: 0;
	}
	.header .navbar-nav.navbar-right>li.notices,
	.header .navbar-nav.navbar-right>li.shopbag {
		display: none;
	}
	.childmenu-wrap {
		display: block !important;
		position: relative !important;
		top: 0 !important;
		right: 0 !important;
	}
	.childmenu-wrap .childmenu {
		min-height: inherit !important;
	}
	.childmenu-title {
		display: none !important;
	}
	.brick-gnb__depth2 {
		padding: 10px !important;
	}
	.brick-gnb__depth2 .sub-menu-title {
		font-size: 16px !important;
		margin-top: 0 !important;
	}
	.brick-gnb__depth2 > li {
		padding: 0 !important;
		float: inherit !important;
		text-align: center;
		width: 100% !important;
	}
	.brick-gnb__depth3 {
		margin-bottom: 15px !important;
	}
	.brick-gnb__depth3 li {
		margin: 0 !important;
		line-height: 28px;
	}
	.product-table td .ip-tag,
	.product-table td .ip-div,
	.product-table td .info,
	.reload .status {
		display: inline-block;
	}
	.product-wrap .boxe-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 15px;
	}
	.product-wrap .boxe-title .name,
	.product-wrap .boxe-title .cost {
		margin: 0;
	}

	.product-wrap .boxe .btn {
		display: block;
	}
	.product-wrap  .boxe dl dt {
		float: inherit;
	}
	.product-wrap  .boxe dl dt,
	.product-wrap  .boxe dl dd {
		width: 24%;
		min-width: auto;
		display: inline-block;
	}
	.product-wrap  .boxe dl dd:last-child {
		width: 60%;
	}
	.advantage .tit-main {
		font-size: 36px;
	}
	.wrap-main-swiper .swiper-slide {
		height: 360px;
	}
	.wrap-main-swiper .content-slide {
		height: 360px;
		padding-top: 60px;
	}
	.advantage .items dl.secutiry,
	.advantage .items dl.server-admin,
	.advantage .items dl.professionalism {
		background-position: right center;
	}
	.notice .item-list li a {
		height: 24px;
		display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
	}
	.item-list li .time {
		display: block;
		float: inherit;
	}
}

main {
    margin-top: 61px;
}

@media screen and ( max-width: 980px ) {
    main {
    margin-top: 46px;
}

}

.hot-products-main .left-item {
	background: #f7f9fa;
	box-sizing: border-box;
	padding: 3.5rem 1.5rem 0 2.5rem;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
	height: 30rem;
}

.hot-products-main .left-item .hot {
	position: absolute;
	top: 0;
	right: 0
}

.hot-products-main .left-item .absolute {
	height: 160px;
	position: absolute;
	bottom: 3.5rem;
	right: 0
}

.hot-products-main .left-item .title {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 1.38rem;
	font-weight: 700
}

.hot-products-main .left-item .des {
	list-style-type: disc;
	padding: 0;
}

.hot-products-main .left-item .des li {
	line-height: 1.5rem;
	font-size: .875rem;
	color: #d8d8d8;
	margin-bottom: 1rem
}

.hot-products-main .left-item .price {
	font-size: .75rem;
	height: 4rem;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #3e4459;
	line-height: 4rem;
	padding-left: 1.75rem
}

.hot-products-main .left-item .price .num {
	font-size: 1.75rem
}

.hot-products-main .left-item:hover .title {
	--text-opacity: 1;
	color: #1770e6;
	color: rgba(23,112,230,var(--text-opacity))
}

.hot-products-main .left-item:hover .price {
	--bg-opacity: 1;
	background-color: #1770e6;
	background-color: rgba(23,112,230,var(--bg-opacity))
}

.hot-products-main .left-item:active .title {
	--text-opacity: 1;
	color: #1358b3;
	color: rgba(19,88,179,var(--text-opacity))
}

.hot-products-main .left-item:active .price {
	--bg-opacity: 1;
	background-color: #1358b3;
	background-color: rgba(19,88,179,var(--bg-opacity))
}

.hot-products-main .right-item {
	height: 14.5rem;
	background-color: #f7f9fa;
	box-sizing: border-box;
	padding: 1.5rem 1.5rem 0;
	cursor: pointer;
	position: relative;
}

.hot-products-main .right-item .title {
	font-size: 16px;
	color: #333;
	font-weight: 700
}

.hot-products-main .right-item .tags {
	display: flex;
	display: -ms-flexbox;
	margin-top: .625rem;
	margin-bottom: 1rem
}

.hot-products-main .right-item .tags .tag {
	border: 1px solid #cccfd9;
	background-color: #f5f7fa;
	border-radius: 2px;
	font-size: .75rem;
	color: #707a89;
	line-height: .625rem;
	padding: .1875rem .5rem;
	margin-right: .5rem
}

.hot-products-main .right-item .des {
	font-size: .875rem;
	color: #666;
	line-height: 1.5rem
}

.hot-products-main .right-item .price {
	font-size: .75rem;
	color: #999;
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem
}

.hot-products-main .right-item .price .num {
	font-size: 1.375rem;
	color: #1770e6
}


.hot-products-main .right-item:first-child,.hot-products-main .right-item:nth-child(2) {
	margin-bottom: 1rem
}

.hot-products-main .right-item:hover .title {
	--text-opacity: 1;
	color: #1770e6;
	color: rgba(23,112,230,var(--text-opacity))
}

.hot-products-main .right-item:active .title {
	--text-opacity: 1;
	color: #1358b3;
	color: rgba(19,88,179,var(--text-opacity))
}

.hot-products-main-content {
    background-color: #fff;
    z-index: 1;
    box-shadow: 0 2px 12px 0 rgb(35 38 49 / 6%);
    padding: 0 2rem;
}

.hot-products-main-content .title-main {
    padding-top: 40px;
}
.hot-products-main .title-head {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -.8px;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(24px);
}
.hot-products-main .sub-head {
    margin: 0;
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}
.hot-products-main .product-tabs {
    opacity: 0;
    transform: translateY(20px);
}
.hot-products-main .product-panels {
    opacity: 0;
    transform: translateY(30px);
}
.hot-products-main.in-view .title-head {
    animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.hot-products-main.in-view .sub-head {
    animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
.hot-products-main.in-view .product-tabs {
    animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}
.hot-products-main.in-view .product-panels {
    animation: serviceContentIn 0.7s cubic-bezier(.16,1,.3,1) 0.55s forwards;
}
section.home-service .tab-pane .row .col-sm-6:first-child{
    padding-right: 0px;
    padding-left: 0px;
}

section.home-service .tab-pane .row .col-sm-6:last-child {
	padding-left: 0px;
	padding-right: 0px;
}
section.home-service .tab-pane .row .col-sm-6 {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}
.home-service .tab-pane .program-item-info-content {
	animation: serviceContentFadeIn .6s cubic-bezier(.16,1,.3,1) .1s backwards;
}
.home-service .tab-pane .program-item-image {
	animation: serviceImageFadeIn .7s cubic-bezier(.16,1,.3,1) backwards;
}
.home-service .tab-pane.active .program-item-image {
	animation-delay: .05s;
}
.home-service .tab-pane.active .program-item-info-content {
	animation-delay: .15s;
}
@keyframes serviceContentFadeIn {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes serviceImageFadeIn {
	from { opacity: 0; transform: translateY(16px) scale(.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-service .tab-pane .stat-row {
	animation: statRowFadeIn .5s cubic-bezier(.16,1,.3,1) .3s backwards;
}
@keyframes statRowFadeIn {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}
.home-service .tab-pane .jump-detail {
	animation: jumpBtnFadeIn .5s cubic-bezier(.16,1,.3,1) .45s backwards;
}
@keyframes jumpBtnFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.program-item-info-content {
    position: relative;
    z-index: 1;
}




.summary-varied-solution {
  /*display: block;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 65px;
  margin-bottom: 60px;

}
.summary-varied-wrap {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 24%;
  -moz-box-flex: 0;
  -ms-flex: 0 1 24%;
  flex: 0 1 24%;
  padding: 1px 6px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.summary-varied-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 400px;
  padding: 0 10px;
  margin: 0 auto;
  border-radius: 3px;
  background-color: #ffffff;
  /* -webkit-box-shadow: 3px 3px 5px rgb(165 165 165 / 35%); */
  /* box-shadow: 3px 3px 5px rgb(165 165 165 / 35%); */
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  transition: background-color 0.5s;
  position: relative;
}
.summary-varied-item.active {
  width: 244px;
}

.summary-varied-item .content-img {
  width: 80px;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.summary-varied-wrap:hover:not(.active) .content-img {
  transform: scale(1.05);
}
.summary-varied-item .content {
  display: block;
  width: 150px;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  transition: margin-top 0.5s, width 0.2s;
  z-index: 9999;
}
.summary-varied-item .content > h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #1E293B;
  letter-spacing: -.3px;
  line-height: 1.35;
}
.summary-varied-wrap.active .summary-varied-item .content > h3 {
  color: #fff;
}
.summary-varied-item .content > p {
  line-height: 25px;
  color: #64748B;
  font-size: 14px;
}
.summary-varied-wrap.active .summary-varied-item .content > p {
  color: rgba(255,255,255,.9);
}
.summary-varied-item .content .text_active {
  color: rgba(255,255,255,.88);
  line-height: 26px;
  font-size: 14px;
  font-weight: 400;
  animation: textFadeIn 0.5s cubic-bezier(.16,1,.3,1) 0.1s both;
}
@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.summary-varied-item .content > a {
  display: none;
  opacity: 0;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  margin-top: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #F1F5F9);
  color: #2563EB;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.4s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
  transform: translateY(8px);
}
.summary-varied-wrap.active .summary-varied-item .content > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.25);
}
.summary-varied-wrap.active .summary-varied-item .content > a::after {
  content: " →";
  display: inline-block;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.summary-varied-wrap.active .summary-varied-item .content > a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.summary-varied-item .content .text {
  display: block;
  height: 110px;
}
.summary-varied-item .content .text_active {
  display: none;
  height: 110px;
}
.summary-varied-item .content_active {
  display: none;
}

.summary-varied-wrap.active {
  flex: 1 0 25%;
}
.summary-varied-wrap.active .summary-varied-item {
  background-color: #1E3A8A;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0),
    radial-gradient(circle at 80% 20%, rgba(34,211,238,.18) 0%, transparent 60%),
    linear-gradient(160deg, #2563EB 0%, #0EA5E9 100%);
  background-size: 20px 20px, 100% 100%, 100% 100%;
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(37,99,235,.25);
}
.summary-varied-wrap.active .content-img {
  -webkit-animation: floatLinger ease-in-out 4s infinite;
  animation: floatLinger ease-in-out 4s infinite;
}
.summary-varied-wrap .content {
  margin-top: 14px;
  width: 224px;
  position: absolute;
  top: 50px;
}
.summary-varied-wrap.active .content .text {
  display: none;
}
.summary-varied-wrap.active .content .text_active {
  display: block;
  width: 224px;
}
.summary-varied-wrap.active .btn {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: btnFadeInUp 0.5s cubic-bezier(.16,1,.3,1) 0.15s both;
}
@keyframes btnFadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes floatLinger {
  0% {
    -webkit-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
  50% {
    -webkit-transform: translateY(-5px) scale(1.1);
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
}
@-moz-keyframes floatLinger {
  0% {
    -moz-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
  50% {
    -moz-transform: translateY(-5px) scale(1.1);
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    -moz-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
}
@-o-keyframes floatLinger {
  0% {
    -o-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
  50% {
    -o-transform: translateY(-5px) scale(1.1);
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    -o-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
}
@keyframes floatLinger {
  0% {
    -webkit-transform: translateY(0px) scale(1.1);
    -moz-transform: translateY(0px) scale(1.1);
    -o-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
  50% {
    -webkit-transform: translateY(-5px) scale(1.1);
    -moz-transform: translateY(-5px) scale(1.1);
    -o-transform: translateY(-5px) scale(1.1);
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1.1);
    -moz-transform: translateY(0px) scale(1.1);
    -o-transform: translateY(0px) scale(1.1);
    transform: translateY(0px) scale(1.1);
  }
}



@media screen and (max-width: 770px) {



  .summary-varied-solution {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .summary-varied-item {
    margin: 10px 0;
    height: 220px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transition: background-color 0.5s, height.5s;
    -o-transition: background-color 0.5s, height.5s;
    -moz-transition: background-color 0.5s, height.5s;
    transition: background-color 0.5s, height.5s;
  }
  .summary-varied-item .content {
    width: 68%;
    padding-left: 0px;
    /*margin-top: 0;*/
  }

  .summary-varied-item .content > a {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .summary-varied-wrap.active .summary-varied-item {
    height: 300px;
  }

  .home-customer .customer-logo > a {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 33%;
    -moz-box-flex: 0;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
  }

  .summary-varied-wrap.active .content {
    margin-top: 0;
    width: 68%;
  }
  .summary-varied-wrap.active .content .text_active {
    width: 100%;
  }

  .home-common-starter .common-starter-wrap .common-starter-container .btn {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }


  .summary-varied-item .content .text_active {
    height: auto;
  }



  .home-customer .customer-logo .logo img {
    width: 100%;
  }

}


section.home-solution {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
}
section.home-solution::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,.15), transparent);
}
section.home-solution::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,.15), transparent);
}
.home-solution .container {
    max-width: 1440px;
    padding: 0 2rem;
}
.home-solution .title-main {
    position: relative;
}
.home-solution .title-head {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -.8px;
    line-height: 1.25;
    opacity: 0;
    transform: translateY(20px);
}
.home-solution .sub-head {
    margin: 0;
    color: #64748B;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}
.home-solution.in-view .title-head {
    animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.home-solution.in-view .sub-head {
    animation: solutionTitleIn 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards;
}
@keyframes solutionTitleIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes cardBounceIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(.92);
    }
    60% {
        transform: translateY(-6px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes cardContentSwitch {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    35% {
        opacity: 0;
        transform: translateY(-12px);
    }
    65% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.summary-varied-wrap {
  opacity: 0;
  transform: translateY(40px);
}
.home-solution.in-view .summary-varied-wrap {
  transition: transform 0.3s ease;
}
.home-solution.in-view .summary-varied-wrap:nth-child(1) { animation: cardBounceIn 0.7s cubic-bezier(.16,1,.3,1) 0.3s forwards; }
.home-solution.in-view .summary-varied-wrap:nth-child(2) { animation: cardBounceIn 0.7s cubic-bezier(.16,1,.3,1) 0.45s forwards; }
.home-solution.in-view .summary-varied-wrap:nth-child(3) { animation: cardBounceIn 0.7s cubic-bezier(.16,1,.3,1) 0.6s forwards; }
.home-solution.in-view .summary-varied-wrap:nth-child(4) { animation: cardBounceIn 0.7s cubic-bezier(.16,1,.3,1) 0.75s forwards; }
.home-solution.in-view .summary-varied-wrap:hover {
  transform: translateY(-4px);
}

.summary-varied-wrap .content {
  transition: all 0.45s cubic-bezier(.16,1,.3,1);
}
.summary-varied-wrap.switching .content {
  animation: cardContentSwitch 0.5s cubic-bezier(.16,1,.3,1);
}
.summary-varied-wrap.switching .summary-varied-item::before {
  animation: cardContentSwitch 0.5s cubic-bezier(.16,1,.3,1);
}
.summary-varied-solution {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin-top: 48px;
  margin-bottom: 40px;
  gap: 16px;
}
.summary-varied-wrap {
  flex: 0 1 24%;
  padding: 0;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.summary-varied-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 420px;
  padding: 0 20px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 24px rgba(15,23,42,.04);
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.summary-varied-item::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: "Playfair Display", "Noto Serif SC", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #CBD5E1;
  line-height: 1;
  letter-spacing: -2px;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.summary-varied-wrap.active .summary-varied-item::before {
  color: rgba(255,255,255,.25);
  transform: scale(1.05);
}
.summary-varied-wrap:hover:not(.active) .summary-varied-item {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(15,23,42,.08);
}
.summary-varied-wrap:hover:not(.active) .summary-varied-item::before {
  color: #94A3B8;
}
.home-solution-content-bgImg, .home-solution-content-noActImg {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
}
.summary-varied-wrap.active .home-solution-content-noActImg {
  display: none;
}
.summary-varied-wrap.active .home-solution-content-bgImg {
  display: block;
}
.home-solution-content-bgImg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37,99,235,.05) 0%, rgba(37,99,235,.12) 100%);
  pointer-events: none;
}



.footer-get-quote-section {
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

.footer-phone-container {
    min-width: 400px;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    background-color: #F1F5F9;
    border: 1px solid rgba(15,23,42,.1);
    padding: 4px;
    border-radius: 8px;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
}

input.footer-phone-input {
    background-color: transparent;
    color: #0F172A;
    line-height: 1;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    border: none;
    font-size: 15px;
    margin-left: 10px;
}

input.footer-phone-input::placeholder {
    color: #94A3B8;
}

.btn-footer-phone {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -moz-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -moz-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -moz-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    height: 48px !important;
    padding: 0 32px !important;
    margin: 0 !important;
    min-width: 120px;
    border: none !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .3s ease;
    -o-transition: all ease;
    -moz-transition: all ease;
    transition: all .3s ease;
    outline: none;
    font-weight: 600 !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    background: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
    background-image: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
    background-color: transparent !important;
}

.btn-footer-phone:hover {
    background: linear-gradient(135deg, #1d4ed8, #0284c7) !important;
    background-image: linear-gradient(135deg, #1d4ed8, #0284c7) !important;
    box-shadow: 0 8px 24px rgba(37,99,235,.35) !important;
    transform: translateY(-1px);
    color: #fff !important;
}

.btn-footer-phone:focus,
.btn-footer-phone:active {
    box-shadow: none !important;
    outline: none !important;
}

h3.footer-start-title {
    color: #0F172A;
    margin-bottom: 10px;
    padding: 0;
    border: 0;
    letter-spacing: .3px;
    font-weight: 600;
    font-size: 28px;
}

p.footer-start-subtitle {
    color: #475569;
    opacity: 1;
    margin-bottom: 0px;
    font-size: 15px;
}

.footer-quote-section {
    padding: 60px 24px 0;
}

.footer-get-quote-section {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(15,23,42,.08);
}


@media (max-width: 768px) {
.footer-quote-section {
    padding: 40px 16px 0;
}

.footer-get-quote-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.footer-get-quote-section div {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.footer-get-quote-section {
    display: block;
}

.footer-phone-container {
    min-width: auto;
    max-width: 100%;
    margin-top: 20px;
}
}



/* Footer - 终极覆盖层 */
body footer.footer,
html body footer.footer,
footer.footer.footer,
footer.footer,
footer {
	padding: 0 !important;
	background: #fff !important;
	background-color: #fff !important;
	color: #1a1a1a !important;
	font-size: 14px;
	position: relative;
}
/* 清除任何可能导致底色变暗的伪元素 / 遮罩 */
footer.footer::before,
footer.footer::after,
footer::before,
footer::after {
	display: none !important;
	background: transparent !important;
	content: none !important;
}
/* 覆盖 Bootstrap 的 text-muted 等浅色文字类 */
footer.footer .text-muted,
footer .text-muted,
footer.footer .text-secondary,
footer .text-secondary,
footer.footer .text-light,
footer .text-light {
	color: #64748B !important;
}
/* 覆盖任何内嵌 style="color:xxx" 的浅色文字 */
footer.footer h1, footer.footer h2, footer.footer h3,
footer.footer h4, footer.footer h5, footer.footer h6 {
	color: #0F172A !important;
}
footer.footer p,
footer.footer span,
footer.footer li,
footer.footer td,
footer.footer th {
	color: #475569;
}
/* 覆盖任何内嵌的深色边框线/背景 */
footer.footer hr {
	border-top-color: rgba(15,23,42,.08) !important;
	background: rgba(15,23,42,.08) !important;
}

/* -- Service Bar -- */
.footer-service-bar {
	background: #fff;
	border-top: 1px solid rgba(15,23,42,.08);
	border-bottom: 1px solid rgba(15,23,42,.08);
	padding: 32px 0;
}
.footer-service-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
	gap: 24px;
}
.footer-service-item {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 8px 16px;
	border-right: 1px solid rgba(15,23,42,.06);
	cursor: pointer;
	transition: all .3s cubic-bezier(.16,1,.3,1);
}
.footer-service-item:last-child {
	border-right: none;
}
.footer-service-icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(14,165,233,.05));
	position: relative;
}
.footer-service-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}
.footer-service-text {
	position: relative;
	overflow: hidden;
}
.footer-service-text h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #0F172A !important;
	line-height: 1.4;
	position: relative;
	transition: color .3s cubic-bezier(.16,1,.3,1);
}
.footer-service-item:hover .footer-service-text h4 {
	color: #2563EB !important;
}
.footer-service-text h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 0;
	background: linear-gradient(90deg, #2563EB, #0EA5E9);
	border-radius: 2px;
	transition: width .35s cubic-bezier(.16,1,.3,1);
}
.footer-service-item:hover .footer-service-text h4::after {
	width: 100%;
}

/* -- CTA Section -- */
.footer-quote-section {
	padding: 60px 24px 0;
	max-width: 1440px;
	margin: 0 auto;
}
.footer-get-quote-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid rgba(15,23,42,.08);
}
.footer-get-quote {
	flex: 1;
}
h3.footer-start-title {
	color: #0F172A;
	margin: 0 0 10px;
	font-weight: 600;
	font-size: 28px;
	letter-spacing: .3px;
}
p.footer-start-subtitle {
	color: #475569;
	margin: 0;
	font-size: 15px;
}
.footer-phone-container {
	min-width: 400px;
	background-color: #F1F5F9;
	border: 1px solid rgba(15,23,42,.1);
	padding: 4px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
input.footer-phone-input {
	background-color: transparent;
	color: #0F172A;
	line-height: 1;
	flex: 1;
	border: none;
	font-size: 15px;
	margin-left: 10px;
	outline: none;
}
input.footer-phone-input::placeholder {
	color: #94A3B8;
}
.btn-footer-phone {
	display: -webkit-inline-box !important;
	display: -webkit-inline-flex !important;
	display: -moz-inline-flex !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
	-webkit-box-align: center !important;
	-webkit-align-items: center !important;
	-moz-align-items: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-webkit-box-pack: center !important;
	-webkit-justify-content: center !important;
	-moz-justify-content: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	height: 48px !important;
	padding: 0 32px !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	font-weight: 600 !important;
	color: #fff !important;
	font-size: 16px !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	vertical-align: middle !important;
	white-space: nowrap !important;
	cursor: pointer !important;
	background: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
	background-image: linear-gradient(135deg, #2563EB, #0EA5E9) !important;
	background-color: transparent !important;
	transition: all .3s ease;
}
.btn-footer-phone:hover {
	background: linear-gradient(135deg, #1d4ed8, #0284c7) !important;
	background-image: linear-gradient(135deg, #1d4ed8, #0284c7) !important;
	box-shadow: 0 8px 24px rgba(37,99,235,.35) !important;
	transform: translateY(-1px);
	color: #fff !important;
}
.btn-footer-phone:focus,
.btn-footer-phone:active {
	box-shadow: none !important;
	outline: none !important;
}

/* -- Main Columns -- */
.footer-main {
	padding: 40px 24px 60px;
	max-width: 1440px;
	margin: 0 auto;
}
.footer-main-inner {
	display: flex;
	gap: 40px;
}
.footer-col-group {
	flex: 1;
	display: flex;
	gap: 40px;
}
.footer-col {
	flex: 1;
	min-width: 0;
}
.footer-col h4 {
	margin: 0 0 18px;
	font-size: 15px;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.4;
}
.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-col ul li {
	padding: 6px 0;
	line-height: 1.6;
}
.footer-col ul li a {
	color: #64748B;
	font-size: 14px;
	transition: color .2s ease;
	text-decoration: none;
}
.footer-col ul li a:hover {
	color: #2563EB;
	text-decoration: none;
}

/* -- Contact Column -- */
.footer-contact-col {
	flex: 0 0 320px;
	margin-left: auto;
}
.footer-contact-col h4 {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.4;
}
.footer-contact-desc {
	margin: 0 0 18px;
	font-size: 13px;
	color: #64748B;
	line-height: 1.6;
}
.footer-qr-row {
	display: flex;
	gap: 16px;
	margin-bottom: 20px;
}
.footer-qr-item {
	width: 88px;
	height: 88px;
	border: 1px solid rgba(37,99,235,.08);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
}
.footer-qr-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-hotline {
	margin-bottom: 14px;
	font-size: 14px;
	color: #475569;
}
.footer-hotline-number {
	font-size: 18px;
	font-weight: 600;
	color: #2563EB;
	letter-spacing: .5px;
}
.footer-contact-btn {
	display: inline-block;
	padding: 10px 32px;
	background: linear-gradient(135deg, #2563EB, #0EA5E9);
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none !important;
	transition: box-shadow .3s ease;
}
.footer-contact-btn:hover {
	box-shadow: 0 8px 24px rgba(37,99,235,.35);
}

/* -- Bottom Bar -- */
.footer-bottom {
	border-top: 1px solid rgba(15,23,42,.08);
	padding: 24px;
}
.footer-bottom-inner {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.copyright-text {
	margin: 0;
	font-size: 13px;
	color: #64748B;
	line-height: 1.8;
}
.footer-record-link {
	color: #64748B;
	text-decoration: none;
	margin-left: 12px;
	transition: color .2s ease;
}
.footer-record-link:hover {
	color: #2563EB;
	text-decoration: none;
}
.footer-bottom-links {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-bottom-links li a {
	color: #64748B;
	font-size: 13px;
	text-decoration: none;
	transition: color .2s ease;
}
.footer-bottom-links li a:hover {
	color: #2563EB;
	text-decoration: none;
}
.footer-bottom-links li.divider {
	width: 1px;
	height: 12px;
	background: rgba(15,23,42,.12);
	margin: 0 12px;
}

/* -- Responsive -- */
@media (max-width: 1200px) {
	.footer-col-group { gap: 32px; }
}
@media (max-width: 992px) {
	.footer-service-list { flex-wrap: wrap; gap: 16px; padding: 0 16px; }
	.footer-service-item { flex: 1 1 calc(50% - 8px); border-right: none; padding: 12px; }
	.footer-get-quote-section {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.footer-phone-container { min-width: auto; width: 100%; }
	.footer-main-inner { flex-direction: column; gap: 40px; }
	.footer-contact-col { flex: none; width: 100%; margin-left: 0; }
	.footer-quote-section { padding: 40px 16px 0; }
	.footer-main { padding: 40px 16px; }
}
@media (max-width: 768px) {
	/* 服务栏：2×2 网格，紧凑展示 */
	.footer-service-bar { padding: 20px 0; }
	.footer-service-list { padding: 0 12px; gap: 12px; }
	.footer-service-item {
		flex: 1 1 calc(50% - 6px);
		padding: 8px 10px;
		gap: 10px;
	}
	.footer-service-icon { width: 40px; height: 40px; border-radius: 10px; }
	.footer-service-icon img { width: 22px; height: 22px; }
	.footer-service-text h4 { font-size: 14px; }
	/* CTA 区块紧凑化 */
	.footer-quote-section { padding: 24px 12px 0; }
	.footer-get-quote-section {
		padding-bottom: 24px;
		margin-bottom: 24px;
		gap: 16px;
	}
	h3.footer-start-title { font-size: 20px; margin-bottom: 6px; }
	p.footer-start-subtitle { font-size: 13px; }
	.footer-phone-container { padding: 3px; border-radius: 6px; }
	input.footer-phone-input { font-size: 14px; margin-left: 8px; }
	.btn-footer-phone { height: 40px !important; padding: 0 20px !important; font-size: 14px !important; }
	/* 主链接区：手风琴折叠 */
	.footer-main { padding: 24px 12px; }
	.footer-main-inner { gap: 0; }
	.footer-col-group {
		flex-direction: column;
		gap: 0;
	}
	.footer-col {
		border-bottom: 1px solid rgba(15,23,42,.08);
		padding: 8px 0;
		flex: 1 1 100%;
	}
	.footer-col h4 {
		cursor: pointer;
		margin-bottom: 0;
		padding: 10px 36px 10px 0;
		position: relative;
		font-size: 14px;
	}
	.footer-col h4::after {
		content: "";
		position: absolute;
		right: 0;
		top: 14px;
		width: 12px;
		height: 12px;
		background: url(../img/footer-media.svg) no-repeat center;
		background-size: contain;
	}
	.footer-col ul {
		display: none;
		padding: 6px 0 10px;
	}
	.footer-col ul li { padding: 4px 0; }
	.footer-col ul li a { font-size: 13px; }
	.footer-col.active ul {
		display: block;
	}
	.footer-col.active h4::after {
		background-position: 50% 95%;
	}
	/* 联系人列：紧凑化 */
	.footer-contact-col { padding-top: 20px; }
	.footer-contact-col h4 { font-size: 14px; margin-bottom: 10px; }
	.footer-contact-desc { font-size: 12px; margin-bottom: 12px; }
	.footer-qr-row { gap: 12px; margin-bottom: 14px; }
	.footer-qr-item { width: 72px; height: 72px; border-radius: 6px; }
	.footer-hotline { font-size: 13px; margin-bottom: 12px; }
	.footer-hotline-number { font-size: 16px; }
	.footer-contact-btn { padding: 8px 24px; font-size: 14px; border-radius: 6px; }
	/* 底部版权：垂直堆叠 */
	.footer-bottom { padding: 16px 12px; }
	.footer-bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.copyright-text { font-size: 12px; line-height: 1.6; }
	.footer-record-link { display: inline-block; margin-left: 0; margin-right: 8px; }
	.footer-bottom-links li a { font-size: 12px; }
}
@media (max-width: 576px) {
	.footer-col { flex: 1 1 100%; }
}

.footer-col .list-unstyled.active {
	display: block;
}

/* -- Float Sidebar -- */
.float-sidebar {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 9999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}
.float-sidebar-item {
	width: 56px;
	height: 56px;
	background: #fff;
	border: 1px solid rgba(37,99,235,.08);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(15,23,42,.06);
	-webkit-transition: all .3s cubic-bezier(.16,1,.3,1);
	-o-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s cubic-bezier(.16,1,.3,1);
	position: relative;
	overflow: visible;
}
.float-sidebar-item a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #475569;
	text-decoration: none;
	position: relative;
	z-index: 2;
}
.float-sidebar-item .float-icon {
	width: 24px;
	height: 24px;
}
.float-sidebar-label {
	font-size: 11px;
	margin-top: 2px;
	font-weight: 500;
	letter-spacing: .2px;
}
.float-sidebar-item:not(.has-panel):hover {
	background: linear-gradient(135deg, #2563EB, #0EA5E9);
	border-color: transparent;
	box-shadow: 0 8px 24px rgba(37,99,235,.3);
	-webkit-transform: translateX(-4px);
	-moz-transform: translateX(-4px);
	-ms-transform: translateX(-4px);
	-o-transform: translateX(-4px);
	transform: translateX(-4px);
}
.float-sidebar-item:not(.has-panel):hover a {
	color: #fff;
}
.float-sidebar-item:not(.has-panel):hover .float-icon {
	filter: brightness(0) invert(1);
}
.float-sidebar-badge {
	position: absolute;
	top: 6px;
	right: 6px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	background: #ef4444;
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	border-radius: 8px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	-webkit-transition: background .3s ease;
	-o-transition: background .3s ease;
	-moz-transition: background .3s ease;
	transition: background .3s ease;
}
.float-sidebar-item:hover .float-sidebar-badge {
	background: #fff;
	color: #ef4444;
}
@media (max-width: 768px) {
	.float-sidebar {
		right: 10px;
		gap: 8px;
	}
	.float-sidebar-item {
		width: 48px;
		height: 48px;
		border-radius: 10px;
	}
	.float-sidebar-item .float-icon {
		width: 20px;
		height: 20px;
	}
	.float-sidebar-label {
		font-size: 10px;
	}
	.float-service-panel {
		right: 54px;
	}
}

/* -- Float Service Panel -- */
.float-sidebar-item.has-panel {
	position: relative;
}
/* 宽幅隐形桥接区域，防止鼠标移向面板时 hover 丢失 */
.float-sidebar-item.has-panel::before {
	content: "";
	position: absolute;
	left: -20px;
	top: -10px;
	width: 36px;
	height: calc(100% + 20px);
	background: transparent;
	z-index: 9998;
}
.float-service-panel {
	position: absolute;
	right: 68px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	padding: 8px;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity .15s ease;
	-moz-transition: opacity .15s ease;
	-o-transition: opacity .15s ease;
	transition: opacity .15s ease;
	z-index: 10001;
	white-space: nowrap;
	/* 关键：禁用时完全不可交互，且不占位 */
	visibility: hidden;
}
/* 鼠标悬停时显示面板 */
.float-sidebar-item.has-panel:hover .float-service-panel {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
/* 面板显示时，子元素与面板同步淡入 */
.float-service-panel > * {
	opacity: 0;
	-webkit-transition: opacity .15s ease;
	-moz-transition: opacity .15s ease;
	-o-transition: opacity .15s ease;
	transition: opacity .15s ease;
}
.float-sidebar-item.has-panel:hover .float-service-panel > * {
	opacity: 1;
}
/* has-panel 项悬停样式 */
.float-sidebar-item.has-panel:hover {
	background: #2563EB;
	border-color: #2563EB;
	box-shadow: 0 4px 16px rgba(37,99,235,.25);
}
.float-sidebar-item.has-panel:hover a {
	color: #fff;
}
.float-sidebar-item.has-panel:hover .float-icon {
	filter: brightness(0) invert(1);
}
/* 箭头 */
.float-service-panel::after {
	content: "";
	position: absolute;
	right: -5px;
	top: 50%;
	width: 8px;
	height: 8px;
	background: #fff;
	border-right: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-moz-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	-o-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}
/* 单个服务入口 */
.float-service-entry {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	text-decoration: none;
	color: #333;
	-webkit-transition: background .15s ease;
	-o-transition: background .15s ease;
	-moz-transition: background .15s ease;
	transition: background .15s ease;
	border-radius: 6px;
}
.float-service-entry + .float-service-entry {
	border-left: 1px solid #f0f0f0;
}
.float-service-entry:hover {
	background: #f5f7fa;
}
.float-service-entry-icon {
	width: 28px;
	height: 28px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #666;
	flex-shrink: 0;
}
.float-service-entry-icon .float-panel-icon {
	width: 22px;
	height: 22px;
}
.float-service-entry-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	line-height: 1.3;
}
.float-service-entry-title {
	font-size: 13px;
	font-weight: 500;
	color: #333;
}
.float-service-entry-desc {
	font-size: 11px;
	color: #999;
	margin-top: 1px;
}
.float-service-entry-phone .float-service-entry-icon {
	color: #666;
}
.float-service-entry-phone-num {
	font-size: 13px;
	font-weight: 600;
	color: #2563EB;
	margin-top: 1px;
}

/* -- 移动端响应式：隐藏搜索框、右侧悬浮工具栏、显示登录图标 -- */
.mobile-login-icon{
	display:none;
	align-items:center;
	justify-content:center;
	width:36px;
	height:36px;
	border-radius:8px;
	color:#0F172A;
	-webkit-transition:all .25s ease;
	-o-transition:all .25s ease;
	-moz-transition:all .25s ease;
	transition:all .25s ease;
}
.mobile-login-icon .mobile-user-icon{
	width:22px;
	height:22px;
}
.mobile-login-icon:hover{
	background:rgba(37,99,235,.08);
	color:#2563EB;
}
@media (max-width: 768px) {
	.float-sidebar {
		display: none !important;
	}
	.header-search {
		display: none !important;
	}
	.header-container-right .bor-link.et-trial,
	.header-container-right .bor-link.et-demonstract{
		display:none !important;
	}
	.header-container-right .user-info-row{
		display:none !important;
	}
	.mobile-login-icon{
		display:inline-flex !important;
	}
	.header-container-right{
		gap:8px;
	}
}


section.page-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 350px;
    background-position: top center;
    background-size: auto 350px;
}
section.page-banner.about-banner {
    background-image: url(../img/banner/banner10.png);
}
section.page-banner.legal-banner {
    background-image: url(../img/page/legal.png);
    color: #ffffff;
}
section.page-banner.article-banner {
    background-image: url(../img/page/article.png);
}

section.page-banner.game-banner {
    background-image: url(../img/page/solInd_game-banner.jpg);
    color:#ffffff;
}

section.page-banner.app-banner {
    background-image: url(../img/page/solInd_app-banner.jpg);
    color:#ffffff;
}

section.page-banner.edu-banner {
    background-image: url(../img/page/solInd_education-banner.jpg);
    color:#ffffff;
}

section.page-banner.shop-banner {
    background-image: url(../img/page/solInd_onlineRetailers-banner.jpg);
    color:#ffffff;
}

section.page-banner.website-banner {
    background-image: url(../img/page/sol_website-banner.jpg);
    color:#ffffff;
}

section.page-banner.transfer-banner {
    background-image: url(../img/page/sol_transfer-banner.jpg);
    color:#ffffff;
}

section.page-banner.security-banner {
    background-image: url(../img/page/sol_security-banner.jpg);
    color:#ffffff;
}

section.page-banner.mixedcloud-banner {
    background-image: url(../img/page/sol_mixedCloud-banner.jpg);
    color:#ffffff;
}

section.page-banner.highcalculation-banner {
    background-image: url(../img/page/sol_highCalculation-banner.jpg);
    color:#ffffff;
}

section.page-banner.highbuild-banner {
    background-image: url(../img/page/sol_highBuild-banner.jpg);
    color:#ffffff;
}

section.page-banner.video-banner {
    background-image: url(../img/page/solInd_videoStorage-banner.jpg);
    color:#ffffff;
}

section.page-banner.caredisaster-banner {
    background-image: url(../img/page/sol_careDisaster-banner.jpg);
    color:#ffffff;
}

.page-banner-text h2 {
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: 400;
}

.page-banner-text p {
    font-size: 18px;
    margin-top: 29px;
    line-height: 33px;
}

.page-banner-text-dark .page-banner-text h2 {
    color: #000;
}

.page-banner-text-dark .page-banner-text p {
    color: #2e3341;
}

section.page-banner.timeline-banner {
    background-image: url(../img/page/corp-info-banner.jpg);
}
section.page-banner.job-banner {
    background-image: url(../img/banner/banner15.png);
}

section.page-banner.activity-banner {
    background-image: url(../img/page/activity.png);
     color: #ffffff;
}

section.page-banner.contact-banner {
    background-image: url(../img/page/contact-banner.png);
}

section.page-banner.aff-banner {
    background-image: url(../img/page/aff-banner.jpg);
     color: #ffffff;
}
section.page-banner.aff-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
section.page-banner.timeline-banner{
    background-size: 100% auto;
        background-position: bottom;
}
section.page-banner.job-banner{
    background-size:  auto 100%;
        background-position: bottom;
}

section.page-banner.contact-banner{
    background-size:  100% 100%;
        background-position: bottom;
}


@media (max-width: 768px) {
section.page-banner {
    height: 280px;
    background-size: auto 280px;
}
.page-banner-text h2 {
        font-size: 30px;
}

.page-banner-text p {
        font-size: 16px;
    line-height: 28px;
}

section.page-banner.timeline-banner,section.page-banner.job-banner,section.page-banner.contact-banner {
    background-size: auto 100%;
    background-position: revert;
}

}


.Pro_Anchor {
    height: 60px;
    background: #fff;
    width: 100%;
    z-index: 22;
    overflow: hidden;
    border-bottom: 2px solid #eaeaea;
}
.Pro_Anchor ul li {
  line-height: 58px;
  float: left;
  margin-right: 40px;
  border-bottom: #fff solid 2px;
}
.Pro_Anchor ul li:last-child {
  margin-right: 0;
}
.Pro_Anchor ul li a {
  color: #333840;
  font-size: 14px;
}
.Pro_Anchor ul li.active {
  border-bottom: #0056ff solid 2px;
}
.Pro_Anchor ul li.active a {
  color: #0056ff;
}
.Pro_Anchor .buy-now {
  float: right;
  padding: 12px 0;
  display: none;
}
.Pro_Anchor .buy-now a {
  width: 104px;
  text-align: center;
  color: #fff;
  line-height: 36px;
  font-size: 14px;
  display: inline-block;
  background: #0056ff;
  border-radius: 4px;
}
.Pro_Anchor .buy-now a:hover {
  background: #428eff;
}
.Pro_Anchor.isStuck .buy-now {
  display: block;
}

section.Pro_Anchor.stuckMenu.isStuck {
    margin-top: 60px;
}

.product-nav ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

section#pro-advantage {
    background: url(../img/page/solution/pro-bg.png) no-repeat center bottom;
}




.solution-product .item {
  height: 125px;
  background: #fff;
  margin-top: 20px;
  border: 1px solid #e5e6eb;
  border-radius: 3px;
}
.solution-product .item dl {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 30px 22px;
}
.solution-product .item dl dt {
  margin-right: 15px;
  width: 68px;
  height: 68px;
  background-color: #3171ff;
  border-radius: 5px;
  display: flex;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
}
.solution-product .item dl dt img {
    max-width: 60px;
    max-height: 60px;
}
.solution-product .item dl dd.t1 {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-right: 15px;
}
.solution-product .item dl dd.t1 span {
  color: #4c525b;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.solution-product .item dl dd.t1 em {
  font-size: 14px;
  color: #89919b;
}
.solution-product .item dl dd.t2 a {
  width: 74px;
  line-height: 34px;
  border: #2d81ff solid 1px;
  color: #2d81ff;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 4px;
}
.solution-product .item dl dd.t2 a:hover {
  background: #2d81ff;
  color: #fff;
}


.solution-challenge-box {
  box-shadow: 0 0 9px #ddd;
  padding: 20px;
  margin-top: 20px;
      min-height: 260px;
  background: #fff;
  display: flex;
  align-items: center;
      height: 100%;
}
.advantage-3num .item.p16 {
  padding: 0.45rem 0.16rem;
}
.solution-challenge-box dl {
  text-align: center;
}
.solution-challenge-box dl dt {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  width: 60px;
  height: 60px;
  margin: 0 auto 0.2rem;
}
.solution-challenge-box dl dt img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
.solution-challenge-box dl dd {
  display: flex;
  flex-direction: column;
  color: #828282;
  font-size: 14px;
  text-align: left;
  line-height: 28px;
}
.solution-challenge-box dl dd span {
  font-size: 18px;
  color: #1e212c;
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  white-space: nowrap;
}
.solution-challenge-box dl dd span:before {
  position: absolute;
  background: #2d81ff;
  left: 50%;
  width: 28px;
  margin-left: -14px;
  bottom: -10px;
  height: 2px;
  content: '';
}
.solution-challenge-box dl dd .em {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: center;
}

.pro-func {
  background: #f6f8fb;
  padding-bottom: 0.6rem;
}
.pro-func.func2 .item dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.pro-func.func2 .item dl dd {
  font-size: 14px;
  color: #89919b;
}
.pro-func .func-type {
  font-size: 16px;
  color: #333840;
  font-weight: bold;
  margin-top: 0.4rem;
  position: relative;
  padding-left: 18px;
}
.pro-func .func-type:before {
  position: absolute;
  left: 0px;
  width: 5px;
  height: 16px;
  top: 50%;
  margin-top: -8px;
  content: '';
  background: #2d81ff;
}
.pro-func .item {
  margin-top: 0.4rem;
}
.pro-func .item dl dt {
  color: #333840;
  font-size: 16px;
  height: 28px;
  display: flex;
  align-items: center;
}
.pro-func .item dl dt i.icon {
  font-size: 32px;
  margin-right: 10px;
  font-weight: normal;
}
.pro-func .item dl dd {
  font-size: 14px;
  color: #333840;
  line-height: 24px;
  overflow: hidden;
}
.pro-func .item dl dd.row6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  height: auto;
}
.pro-func .item dl dd.row7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  height: auto;
}
.pro-func .item dl dd.row5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  height: auto;
}
.pro-func .item dl dd.row4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: auto;
}





.solution-contact-us {
	padding-top: 40px;
	padding-bottom: 40px;
	color: #FFF;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../img/bg_contact_us_footer.png');
}

.home-contact h2 {
    color: #1d2129;
    margin-bottom: 10px;
}

.home-contact p {
    color: #999DB1;
    margin-bottom: 0px;
}

a.btn.btn-contact {
    display: inline-block;
    position: relative;
    outline: 0;
    border: none;
    color: #fff;
    border-radius: 2px;
    border-radius: var(--border-radius);
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #3370ff;
    background-color: #3370ff;
        min-width: 120px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 31px;
    font-size:14px;
    letter-spacing: .3px;
    font-weight:500;
    margin-top:20px

}


.banner-btn {
    margin-top: 40px;
    padding-bottom: 80px;
}

.banner-btn a {
    padding: 12px 25px;
}

.banner-btn a:first-child {
    margin-right: 10px;
}


.header-top.cart-top .slogan h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
}

.header-top.cart-top .slogan p {
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin-bottom: 0;
}

.header-top.cart-top .slogan {
    padding-bottom: 0px;
}


.titleBar{
	height: 5rem;
	background-color: #fff;
	z-index: 3;
	margin: -2rem auto 0;
	box-shadow: 0 4px 8px 0 rgba(83,92,103,.12);
}

.titleBar .titleBar-content{
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	height: 100%;
	list-style: none;
	padding: 0;
}

.titleBar .titleBar-content .item{
	height: 100%;
	width: 10rem;
	text-align: center;
	line-height: 5rem;
	cursor: pointer;
	font-size: 1.2rem;
	color: #000;
}

.titleBar .titleBar-content .item:hover {
	--text-opacity: 1;
	color: #1770e6;
	color: rgba(23,112,230,var(--text-opacity))
}

.titleBar .titleBar-content .item.active{
	border-bottom: 3px solid #1770e6;
	--text-opacity: 1;
	color: #1d7dfc;
	color: rgba(29,125,252,var(--text-opacity))
}

.titleBar .titleBar-content .item a {
    color: #333!important;
}

@media screen and (max-width: 770px) {
section.home-event {
    margin-top: -20px;
}

.home-event .event-item {
    margin-bottom: 20px;
}

.hot-products-main .left-item {
    margin-bottom: 20px;
}

.home-service .nav-tabs {
    flex-direction: column;
}

}

.header-top.dedicated .bg-img-wrap {
    background: url(../img/banner/banner7.png);
    background-size: cover;
}

/* ===== Banner 左侧竖向标签导航 ===== */
.home-swiper{position:relative;}
.home-swiper .swiper-container{position:relative;overflow:hidden;}

/* 标签容器：左侧竖向排列，靠左 */
.banner-tabs{
	position:absolute;
	left:24px;
	top:50%;
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	-o-transform:translateY(-50%);
	transform:translateY(-50%);
	z-index:10;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	-moz-box-orient:vertical;
	-moz-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	gap:8px;
	width:200px;
}

/* 单个标签 */
.banner-tab{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-webkit-align-items:center;
	-moz-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	gap:12px;
	padding:14px 16px;
	background:rgba(255,255,255,.85);
	-webkit-backdrop-filter:blur(10px);
	backdrop-filter:blur(10px);
	border:1px solid rgba(37,99,235,.18);
	border-left:3px solid transparent;
	border-radius:8px;
	cursor:pointer;
	-webkit-transition:all .28s cubic-bezier(.16,1,.3,1);
	-o-transition:all .28s cubic-bezier(.16,1,.3,1);
	-moz-transition:all .28s cubic-bezier(.16,1,.3,1);
	transition:all .28s cubic-bezier(.16,1,.3,1);
}
.banner-tab:hover{
	background:rgba(255,255,255,.95);
	border-color:rgba(37,99,235,.4);
	-webkit-transform:translateX(4px);
	-moz-transform:translateX(4px);
	-ms-transform:translateX(4px);
	-o-transform:translateX(4px);
	transform:translateX(4px);
}

/* 非激活标签 hover 时的箭头指示器 */
.banner-tab:not(.active)::after{
	content:'';
	display:inline-block;
	width:14px;
	height:14px;
	-webkit-box-flex:0;
	-webkit-flex:0 0 auto;
	-moz-box-flex:0;
	-ms-flex:0 0 auto;
	flex:0 0 auto;
	margin-left:-4px;
	opacity:0;
	-webkit-transform:translateX(-6px);
	-moz-transform:translateX(-6px);
	-ms-transform:translateX(-6px);
	-o-transform:translateX(-6px);
	transform:translateX(-6px);
	-webkit-transition:opacity .28s cubic-bezier(.16,1,.3,1),-webkit-transform .28s cubic-bezier(.16,1,.3,1);
	-o-transition:opacity .28s cubic-bezier(.16,1,.3,1),-o-transform .28s cubic-bezier(.16,1,.3,1);
	-moz-transition:opacity .28s cubic-bezier(.16,1,.3,1),transform .28s cubic-bezier(.16,1,.3,1),-moz-transform .28s cubic-bezier(.16,1,.3,1);
	transition:opacity .28s cubic-bezier(.16,1,.3,1),transform .28s cubic-bezier(.16,1,.3,1);
	background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M5 2.5L9.5 7L5 11.5' fill='none' stroke='%232563EB' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-position:center center;
}
.banner-tab:not(.active):hover::after{
	opacity:1;
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	-ms-transform:translateX(0);
	-o-transform:translateX(0);
	transform:translateX(0);
}

/* 文本区 */
.banner-tab-text{
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-webkit-flex-direction:column;
	-moz-box-orient:vertical;
	-moz-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	gap:2px;
	min-width:0;
	-webkit-box-flex:1;
	-webkit-flex:1 1 auto;
	-moz-box-flex:1;
	-ms-flex:1 1 auto;
	flex:1 1 auto;
}
.banner-tab-title{
	display:block;
	font-size:15px;
	font-weight:600;
	color:#0F172A;
	line-height:1.3;
	letter-spacing:.02em;
	-webkit-transition:color .28s ease;
	-o-transition:color .28s ease;
	-moz-transition:color .28s ease;
	transition:color .28s ease;
}
.banner-tab-sub{
	display:block;
	font-size:11.5px;
	font-weight:400;
	color:#64748B;
	line-height:1.3;
	-webkit-transition:color .28s ease;
	-o-transition:color .28s ease;
	-moz-transition:color .28s ease;
	transition:color .28s ease;
}

/* 激活态：顶栏主蓝 */
.banner-tab.active{
	background:linear-gradient(135deg,#2563EB 0%,#3B82F6 100%);
	border-color:#2563EB;
	-webkit-box-shadow:0 10px 28px -8px rgba(37,99,235,.55);
	-moz-box-shadow:0 10px 28px -8px rgba(37,99,235,.55);
	box-shadow:0 10px 28px -8px rgba(37,99,235,.55);
}
.banner-tab.active .banner-tab-title{color:#FFFFFF;}
.banner-tab.active .banner-tab-sub{color:rgba(255,255,255,.9);}

/* 入场错峰动画（仅 opacity，避免与 active 位移冲突） */
.banner-tab{
	opacity:0;
	-webkit-animation:bannerTabIn .5s cubic-bezier(.16,1,.3,1) forwards;
	-moz-animation:bannerTabIn .5s cubic-bezier(.16,1,.3,1) forwards;
	-o-animation:bannerTabIn .5s cubic-bezier(.16,1,.3,1) forwards;
	animation:bannerTabIn .5s cubic-bezier(.16,1,.3,1) forwards;
}
.banner-tab:nth-child(1){-webkit-animation-delay:.1s;animation-delay:.1s;}
.banner-tab:nth-child(2){-webkit-animation-delay:.18s;animation-delay:.18s;}
.banner-tab:nth-child(3){-webkit-animation-delay:.26s;animation-delay:.26s;}
.banner-tab:nth-child(4){-webkit-animation-delay:.34s;animation-delay:.34s;}
@-webkit-keyframes bannerTabIn{to{opacity:1}}
@-moz-keyframes bannerTabIn{to{opacity:1}}
@-o-keyframes bannerTabIn{to{opacity:1}}
@keyframes bannerTabIn{to{opacity:1}}

/* 移动端响应式：隐藏左侧标签菜单，显示并调整轮播指示条 */
@media (max-width:768px){
	.banner-tabs{
		display:none !important;
	}
	.banner-pagination{
		opacity:1 !important;
		left:50% !important;
		top:auto !important;
		bottom:40px !important;
		-webkit-transform:translateX(-50%);
		-moz-transform:translateX(-50%);
		-ms-transform:translateX(-50%);
		-o-transform:translateX(-50%);
		transform:translateX(-50%);
		-webkit-animation:none !important;
		-moz-animation:none !important;
		-o-animation:none !important;
		animation:none !important;
		pointer-events:auto;
		z-index:20;
	}
	.banner-pagination .swiper-pagination-bullet{
		width:24px;
		height:3px;
	}
	.banner-pagination .swiper-pagination-bullet-active{
		width:36px;
	}
	.banner-pagination .swiper-pagination-bullet:hover{
		width:30px;
	}
}

/* 轮播指示条：由 JS 同步到按钮下方 */
.banner-pagination{
	position:absolute;
	left:0;
	top:0;
	z-index:10;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align:center;
	-webkit-align-items:center;
	-moz-box-align:center;
	-ms-flex-align:center;
	align-items:center;
	gap:8px;
	pointer-events:auto;
	opacity:0;
	-webkit-animation:heroFade .6s cubic-bezier(.16,1,.3,1) .8s forwards;
	-moz-animation:heroFade .6s cubic-bezier(.16,1,.3,1) .8s forwards;
	-o-animation:heroFade .6s cubic-bezier(.16,1,.3,1) .8s forwards;
	animation:heroFade .6s cubic-bezier(.16,1,.3,1) .8s forwards;
}
.banner-pagination .swiper-pagination-bullet{
	width:28px;
	height:4px;
	border-radius:2px;
	background:rgba(37,99,235,.25);
	opacity:1;
	margin:0;
	-webkit-transition:all .35s cubic-bezier(.16,1,.3,1);
	-o-transition:all .35s cubic-bezier(.16,1,.3,1);
	-moz-transition:all .35s cubic-bezier(.16,1,.3,1);
	transition:all .35s cubic-bezier(.16,1,.3,1);
	cursor:pointer;
	position:relative;
	overflow:hidden;
}
.banner-pagination .swiper-pagination-bullet:hover{
	background:rgba(37,99,235,.5);
	width:36px;
}
.banner-pagination .swiper-pagination-bullet-active{
	width:52px;
	background:rgba(37,99,235,.2);
	-webkit-box-shadow:0 2px 8px rgba(37,99,235,.25);
	-moz-box-shadow:0 2px 8px rgba(37,99,235,.25);
	box-shadow:0 2px 8px rgba(37,99,235,.25);
}
/* 播放进度条：仅在激活 bullet 内填充 */
.bullet-progress{
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:0;
	background:linear-gradient(90deg,#2563EB,#3B82F6);
	border-radius:2px;
}
.swiper-pagination-bullet-active .bullet-progress{
	-webkit-animation:bulletProgress 10s linear forwards;
	-moz-animation:bulletProgress 10s linear forwards;
	-o-animation:bulletProgress 10s linear forwards;
	animation:bulletProgress 10s linear forwards;
}
@-webkit-keyframes bulletProgress{from{width:0}to{width:100%}}
@-moz-keyframes bulletProgress{from{width:0}to{width:100%}}
@-o-keyframes bulletProgress{from{width:0}to{width:100%}}
@keyframes bulletProgress{from{width:0}to{width:100%}}

/* Hero 区域入场动画 */
@-webkit-keyframes heroFadeUp{to{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}
@-moz-keyframes heroFadeUp{to{opacity:1;-moz-transform:translateY(0);transform:translateY(0)}}
@-o-keyframes heroFadeUp{to{opacity:1;-o-transform:translateY(0);transform:translateY(0)}}
@keyframes heroFadeUp{to{opacity:1;transform:translateY(0)}}
@-webkit-keyframes heroFade{to{opacity:1}}
@-moz-keyframes heroFade{to{opacity:1}}
@-o-keyframes heroFade{to{opacity:1}}
@keyframes heroFade{to{opacity:1}}

/* ===== 产品区域响应式 ===== */
@media (max-width: 1200px) {
	/* 一级分类：横向排列，超出横向滚动 */
	.product-tabs {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		grid-template-columns: none;
		gap: 10px;
		margin: 28px 0 32px;
		padding-bottom: 6px;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}
	.product-tabs::-webkit-scrollbar {
		height: 4px;
	}
	.product-tabs::-webkit-scrollbar-track {
		background: rgba(37,99,235,.06);
		border-radius: 2px;
	}
	.product-tabs::-webkit-scrollbar-thumb {
		background: rgba(37,99,235,.3);
		border-radius: 2px;
	}
	.product-tab {
		flex: 0 0 auto;
	}
	/* 二级分类：隐藏固定的两个 box，产品区撑满 */
	.panel-sidebar {
		display: none;
	}
	.panel-layout {
		gap: 0;
	}
	/* 最多展示 6 个产品：3列2行 */
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
		max-height: none;
		gap: 16px;
	}
	.products-grid .p-card:nth-child(n+7) {
		display: none;
	}
	.p-card {
		height: 120px;
	}
}
@media (max-width: 992px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.p-card {
		height: 125px;
	}
}
@media (max-width: 768px) {
	.product-tabs {
		gap: 8px;
		margin: 20px 0 24px;
	}
	.product-tab {
		padding:10px 12px;
		font-size:13px;
		gap:8px;
	}
	.ptab-icon {
		flex:0 0 28px;
		width:28px;
		height:28px;
	}
	.ptab-icon img {
		width:16px;
		height:16px;
	}
	.products-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.p-card {
		padding:14px;
		height: auto;
		min-height: 110px;
	}
	.p-card-body h4 {
		font-size: 14px;
	}
	.p-card-body p {
		font-size: 12px;
	}
	.p-card-btn {
		padding:7px 12px;
		font-size:11px;
	}
	.view-all-link {
		font-size:1rem;
		margin-left:8px;
	}
	/* 减小产品区域上下内边距，消除下方大片空白 */
	.hot-products-main.space2x {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	/* 减小服务区域上下内边距，消除产品区下方空白 */
	.home-service.space2x {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	/* 产品面板底部不留多余间距 */
	.panel-layout {
		padding-bottom: 0;
	}
}

/* ===== 服务区域响应式 ===== */
@media (max-width: 992px) {
	.home-service .container {
		padding: 0 1.5rem;
	}
	.home-service .nav-tabs {
		margin: 0 0 28px;
	}
	.program-item-info {
		padding: 32px 28px;
	}
	.program-item-info h2 {
		font-size: 24px;
	}
	.program-item-info .functions {
		grid-template-columns: 1fr;
	}
	.program-item-info .functions li {
		padding-left: 36px;
	}
	.program-item-image {
		margin-bottom: 24px;
	}
	.stat-row {
		gap: 16px;
	}
	.stat-num {
		font-size: 24px;
	}
}
@media (max-width: 768px) {
	.home-service .container {
		padding: 0 1rem;
	}
	/* 标签横向排列，超出可横向滑动 */
	.home-service .nav-tabs {
		flex-direction: row;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		width: 100%;
		padding: 6px;
		gap: 8px;
		border-bottom: 1px solid #E2E8F0;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}
	.home-service .nav-tabs::-webkit-scrollbar {
		height: 4px;
	}
	.home-service .nav-tabs::-webkit-scrollbar-thumb {
		background: rgba(37,99,235,.3);
		border-radius: 2px;
	}
	.home-service .nav-tabs .nav-item {
		flex: 0 0 auto;
		width: auto;
	}
	.home-service .nav-tabs .nav-item .nav-link {
		text-align: center;
		padding: 12px 16px 12px 40px;
		white-space: nowrap;
	}
	.home-service .nav-tabs .nav-item-icon {
		left: 12px;
		width: 20px;
		height: 20px;
	}
	/* 手机端隐藏图片，信息卡片撑满 */
	.program-item-image {
		display: none;
	}
	.program-item-info {
		padding: 28px 20px;
	}
	.program-item-info h2 {
		font-size: 20px;
	}
	.program-item-info .functions {
		gap: 12px;
	}
	.program-item-info .functions li {
		font-size: 14px;
		padding-left: 32px;
		line-height: 24px;
	}
	.program-item-info .functions li::before {
		font-size: 13px;
	}
	.stat-row {
		gap: 12px;
		padding: 16px 0;
		margin: 20px 0;
	}
	.stat-num {
		font-size: 22px;
	}
	.stat-label {
		font-size: 12px;
	}
	.jump-detail {
		padding: 10px 20px;
		font-size: 13px;
	}
}

/* ===== 安全合规区域响应式 ===== */
@media (max-width: 992px) {
	.home-legalize.space2x {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.home-legalize .container {
		padding: 0 1.5rem;
	}
	.home-legalize .row {
		gap: 16px 0;
		margin-top: 24px;
	}
	.home-legalize .row > .col {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
	.home-legalize img {
		max-height: 64px;
	}
	.home-legalize .text {
		font-size: 13px;
		margin-top: 10px;
	}
}
@media (max-width: 768px) {
	.home-legalize.space2x {
		padding-top: 24px;
		padding-bottom: 24px;
	}
	.home-legalize .container {
		padding: 0 1rem;
	}
	.home-legalize .sub-head {
		font-size: 13px;
	}
	.home-legalize .row {
		gap: 14px 0;
		margin-top: 20px;
	}
	.home-legalize .row > .col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.home-legalize img {
		max-height: 56px;
	}
	.home-legalize .text {
		font-size: 12px;
		margin-top: 8px;
	}
}

/* ===== 统一所有 section 标题手机端文字样式（置于末尾确保覆盖） ===== */
@media (max-width: 768px) {
	.home-service .title-head,
	.home-datacenter .title-head,
	.home-legalize .title-head,
	.home-case .title-head,
	.home-news .title-head,
	.home-solution .title-head,
	.hot-products-main .title-head,
	.home-cta .cta-title h2 {
		font-size: 22px !important;
		font-weight: 700 !important;
		color: #0F172A !important;
		letter-spacing: -.8px !important;
		line-height: 1.25 !important;
		margin-bottom: 8px !important;
	}
	.home-service .sub-head,
	.home-datacenter .sub-head,
	.home-legalize .sub-head,
	.home-case .sub-head,
	.home-news .sub-head,
	.home-solution .sub-head,
	.hot-products-main .sub-head {
		font-size: 13px !important;
		font-weight: 400 !important;
		color: #64748B !important;
		line-height: 1.6 !important;
	}
}


/* ==== aether layout fixes ==== */
/* 固定导航覆盖在 Banner 上方，首页不留白缝 */
body {
	padding-top: 0;
}
body:not(.index) .header-top .slogan {
	padding-top: 100px;
}
.home-event {
	margin-top: -60px;
	position: relative;
	z-index: 2;
}
.header-top .bg-img-wrap,
.header-top .slogan {
	position: relative;
	z-index: 1;
}
.header-menu {
	position: relative;
	z-index: 5;
	background: #fff;
}
.header-menu .tab-nav-wrap .gt-tab-nav .gt-nav-item {
	display: block;
}
