/* ======  reset  ====== */
:root {
	--primary: #f6821f;
	--primary-light: #e6f2ff;
	--primary-dark: #e07216;
	--secondary: #a20101;
	--white: #fff;
	--text: #222;
	--text-light: #666;
	--light-gray: #f8f9fa;
	--medium-gray: #e9ecef;
	--dark-gray: #1e1e1e;
	--dark: #121212;
	--accent: #ff6b00;
	--transition: all 0.3s ease;
	--family-big-title: "RBold";
	--family-text:"PRegular";
}

@font-face {
    font-family: "RBold";
    font-style: normal;
    font-display: block;
    src: url(../webfonts/RBold.ttf) format("truetype")
}
@font-face {
    font-family: "RMedium";
    font-style: normal;
    font-display: block;
    src: url(../webfonts/RMedium.ttf) format("truetype")
}
@font-face {
    font-family: "PRegular";
    font-style: normal;
    font-display: block;
    src: url(../webfonts/PRegular.ttf) format("truetype")
}

*, *::before, *::after {
	box-sizing: border-box; 
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth; 
	font-size: 62.5%;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed; 
	line-height: 1.5;
	font-size: 14px;
	font-family: "Microsoft YaHei","PingHei","PingFang SC","STHeitiSC-Light","Helvetica Neue","Helvetica","Arial",sans-serif;
	background-color: var(--white);
	color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
}

ul, ol {
	list-style: none;
	padding-left: 0;
}

a {
	text-decoration: none;
	color: inherit;
	background-color: transparent;
}
/* a {
	color: var(--text);
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
} */

button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button, input {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

img, embed, iframe, object, video {
	max-width: 100%;
	height: auto;
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.hide{display: none !important;}
.float-r{float: right;}
.fy-text{font-family: var(--family-text);}
.t-primary{color: var(--primary);}
.t-center{text-align: center;}
.w-color{color: #fff;}
.container {max-width: 1440px;margin: 0 auto;}
.mgt20{margin-top: 20px;}
.mgt40{margin-top: 40px;}
.mgt60{margin-top: 60px;}
.mgt80{margin-top: 80px;}
.mgt100{margin-top: 100px;}
.mgb20{margin-bottom: 20px;}
.mgb40{margin-bottom: 40px;}
.mgb60{margin-bottom: 60px;}
.pdt10{padding-top: 10px;}
.pdt40{padding-top: 40px;}
.clamp2{
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
}
.clamp3{
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
}
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	*zoom: 1;
}
.dglang{overflow:hidden;}
.dglang img{width:30px;height:20px}
.dglang li{float:left;padding:5px}

/*language-select*/
.language-select {
  position: relative;
  margin-left: auto;
  z-index: 999999;
}

.language-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid #f1f5f9;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-trigger:hover {
  border-color: #e1eaf1;
  background-color: #f9fafb;
}

.dropdown-icon {
  transition: transform 0.3s ease;
  color: #666;
}

.language-select:hover .dropdown-icon {
  transform: rotate(180deg);
}

.language-select .language-dropdown {
  position: absolute;
  top: 100%;
  right: 4px; 
  width: 70px;
  margin-top: 6px;
  padding: 8px 0;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease 0.3s; 
  z-index: 99999;
}

.language-select:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.language-option a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.language-option a:hover {
  background-color: #f2f6fe;
  color: #165DFF;
}

 /* ########### nav nav Start */
.top-info-bar {
	 height: 50px;
	 background-color: var(--text);
	 color: var(--white);
	 display: flex;
	 align-items: center;
	 transition: var(--transition);
 }
 .top-info-bar.hide {transform: translateY(-50px);}
 .top-info-content {display: flex;justify-content: space-between;width: 100%;align-items: center;}
 .top-contact-info span {margin-right: 25px;}
 .top-contact-info i {margin-right: 8px;color: var(--primary);}
 .top-social-icons a {color: #ccc;margin-left: 18px;font-size: 16px;transition: var(--transition);}
 .top-social-icons a:hover {color: var(--primary);transform: translateY(-2px);}
 
 /* main-pc-nav */
 .main-navbar {
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 width: 100%;
	 padding: 0.6rem 0;
	 background: #2d2d2d;
	 z-index: 1030;
	 transition: background 0.4s ease, box-shadow 0.4s ease;
 }
 .main-navbar .container {
	 max-width: 1200px;
	 transition: max-width 0.4s ease;
 }
 .main-navbar.fixed {
	 position: fixed;
	 top: 0;
	 background: #fff;
	 box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	 animation: navSlideIn 0.4s ease;
 }
 .main-navbar.fixed .container {
	 max-width: 94%;
 }
 
 @keyframes navSlideIn {
	 from { transform: translateY(-100%); }
	 to { transform: translateY(0); }
 }
 
 .nav-container {display: flex;align-items: center;height: 100%;}
 .logo {width: 228px;}
 .logo img {
	max-height: 50px;
	width: auto;
}
.logo .logo-scroll { display: none; }
.main-navbar.fixed .logo .logo-default { display: none; }
.main-navbar.fixed .logo .logo-scroll { display: inline-block; }
 .main-menu {display: flex;list-style: none;margin: 0;padding: 0;flex-grow: 1;    justify-content: flex-end;}
 .main-menu > li {position: relative;margin: 0 13px;}
 .main-menu > li .fa-chevron-down{margin-left: .2rem; font-size: 12px; color: inherit;}
 .main-menu > li > a {
	 color: rgba(255,255,255,0.9);
	 text-decoration: none;
	 font-weight: 500;
	 font-size: 1.5rem;
	 padding: 15px 0;
	 display: block;
	 transition: all 0.3s;
	 position: relative;
 }
 .main-navbar.fixed .main-menu > li > a {
	 color: #333;
 }
 .main-menu > li > a:before {
	 content: '';
	 position: absolute;
	 bottom: 0;
	 left: 50%;
	 width: 0;
	 height: 2px;
	 background: var(--primary);
	 transition: all 0.3s;
	 transform: translateX(-50%);
 }
 
.main-menu > li > a:hover:before,
.main-menu > li:hover > a:before,
.main-menu > li.active > a:before {
	 width: 100%;
 }
 
 .main-menu > li > a:hover,
 .main-menu > li.active > a{
	 color: var(--primary);
 }
/* 导航搜索图标 */
.nav-search-btn {
	background: none;
	border: none;
	color: rgba(255,255,255,0.9);
	font-size: 16px;
	cursor: pointer;
	padding: 8px;
	margin-left: 15px;
	transition: all 0.3s;
}
.nav-search-btn:hover { color: var(--primary); }
 .main-navbar.fixed .nav-search-btn { color: #333; }
.main-navbar.fixed .nav-search-btn:hover { color: var(--primary); }

/* ===== 内页导航 - 永远白色固定样式，进入文档流避免遮挡内容 ===== */
.is-inner-page .main-navbar {
	position: relative;
	background: #fff;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.is-inner-page .main-navbar .container { max-width: 1200px; }
.is-inner-page .main-navbar .logo .logo-default { display: none; }
.is-inner-page .main-navbar .logo .logo-scroll { display: inline-block; }
.is-inner-page .main-navbar .main-menu > li > a { color: #333; }
.is-inner-page .main-navbar .nav-search-btn { color: #333; }
.is-inner-page .main-navbar .nav-search-btn:hover { color: var(--primary); }
 
 /* erji nav */
 .gigac-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border: none;
	border-radius: 6px;
	padding: 20px 0;
	display: none;
	z-index: 1000;
	opacity: 0;
	transform: translateY(15px) scale(0.95);
	transition: all 0.3s ease;
	transform-origin: top center;
 }
 
 .main-menu > li:hover > .gigac-dropdown-menu {
	 display: block;
	 opacity: 1;
	 transform: translateY(0) scale(1);
 }
 
.gigac-dropdown-itemu {
	 display: flex;
	 align-items: center;
	 padding: 12px 25px;
	 color: var(--text-light);
	 text-decoration: none;
	 transition: all 0.3s;
	 font-size: 14px;
	 position: relative;
	 overflow: hidden;
 }
 
 .gigac-dropdown-itemu:before {
	 content: '';
	 position: absolute;
	 left: 0;
	 top: 0;
	 height: 100%;
	 width: 3px;
	 background: var(--primary);
	 transform: translateX(-100%);
	 transition: transform 0.3s;
 }
 
 .gigac-dropdown-itemu:hover:before {
	 transform: translateX(0);
 }
 
 .gigac-dropdown-itemu:hover {
	 background: #f8f9fa;
	 color: var(--primary);
	 padding-left: 30px;
 }
 
 .nav-icon-circle {
	 width: 48px;
	 height: 48px;
	 border: 1px solid var(--primary);
	 border-radius: 50%;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-right: 15px;
	 font-size: 18px;
	 color: var(--primary);
	 transition: all 0.3s;
	 position: relative;
	 z-index: 1;
	 overflow: hidden;
 }
 .nav-icon-circle img {
	 width: 100%;
	 height: 100%;
	 display: block;
	 object-fit: cover;
 }
 .gigac-dropdown-itemu:hover .nav-icon-circle {
	 /*background: var(--primary);*/
	 background: #fff;
	 color: var(--primary);
	 transform: rotate(360deg);
 }
 
 /* 3ji nav */
 .has-submenu {position: relative;}
 .has-submenu > .gigac-dropdown-menu {top: -20px;left: 100%;}
 .has-submenu:after {content: '\f105';font-family: 'Font Awesome 5 Free';font-weight: 900;position: absolute;right: 25px;top: 50%;transform: translateY(-50%);color: #999;}
 
 /* language */
 .language-switcher {margin-left: 10px;}
 .lang-btn {
	 width: 111px;
	 height: 36px;
	 background: #f2f2f2;
	 border-radius: 18px;
	 display: flex;
	 align-items: center;
	 padding: 0 5px;
	 position: relative;
	 cursor: pointer;
	 transition: all 0.3s;
	 overflow: hidden;
 }
 
 .lang-btn:before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background: linear-gradient(45deg, var(--primary), #ff9d4d);
	 opacity: 0;
	 transition: opacity 0.3s;
 }
 
 .lang-btn:hover:before {opacity: 0.1;}
 .lang-option {
	 flex: 1;
	 text-align: center;
	 z-index: 2;
	 transition: color 0.3s;
 }
 /* 
 .lang-btn:hover .lang-option {
	 color: var(--white);
 } */
 .lang-btn .lang-option:last-child {
	 color: var(--white);
 }
 .lang-slider {
	 position: absolute;
	 width: 57px;
	 height: 29px;
	 background: var(--primary);
	 border-radius: 14.5px;
	 left: 5px;
	 transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	 z-index: 1;
 }
 .lang-slider.en {left: 49px;}
 @media (max-width: 1399px) {
	 .logo{width: 10%;margin-right: 0;}
	 .main-menu > li > a{font-size: 16px;}
 }
 @media (max-width: 1199px) {
	 .logo {max-width: 40%;}
	 .main-menu > li {margin: 0 10px;}
 }
 
 @media (max-width: 991px) {
	 .logo{width: 100%;}
	.main-navbar .container{padding: 0;}
	.nav-container {justify-content: space-between;}
	.main-menu,.language-switcher,.top-contact-info span:nth-child(2),
	.top-contact-info span:nth-child(3),.top-social-icons{display: none;}
	.menu-toggle {display: block;font-size: 24px;background: none;border: none;cursor: pointer;padding: 0;width: 30px;position: relative;}
	.mobile-nav {position: fixed;top: 0;right: -100%;width: 300px;height: 100vh;background: #fff;box-shadow: -5px 0 30px rgba(0,0,0,0.15);z-index: 1040;transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);padding: 80px 20px 30px;overflow-y: auto;}
	.mobile-nav.open {right: 0;}
	.mobile-menu {display: block;}
	.mobile-menu > li {margin: 0;border-bottom: 1px solid #eee;}
	.mobile-menu > li > a {position: relative;display: flex;justify-content: space-between;align-items: center;padding: 12px 0;text-decoration: none;font-size: 16px;}
	.mobile-menu .gigac-dropdown-menu {position: static;width: 100%;box-shadow: none;padding: 0 0 0 20px;display: none;opacity: 1;transform: none;transition: initial;}
	.mobile-menu .gigac-dropdown-itemu {padding: 12px 0;}
	.mobile-menu .gigac-dropdown-itemu:before {display: none;}
	.close-menu {position: absolute;top: 20px;right: 20px;font-size: 24px;background: none;border: none;cursor: pointer;}
	.mobile-language {margin: 30px 0 0;}
	.nav-overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0,0,0,0.5);z-index: 1039;opacity: 0;visibility: hidden;transition: all 0.4s;}
	.nav-overlay.active {opacity: 1;visibility: visible;}
 }
 
 @media (min-width: 992px) {
	.menu-toggle, .mobile-nav, .nav-overlay {display: none;}
 }
 /* ########### nav nav End */
 

/* ########### banner nav Start */
.banner-section {margin: 50px 0 30px;}
.banner-container {background: white;border-radius: 16px;overflow: hidden;display: flex;/* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1); */height: 450px;}
.banner-text-content {width: 850px;padding: 0 50px 0 0;display: flex;flex-direction: column;justify-content: space-between;}
.banner-slide-content {display: none;}
.banner-slide-content.active {display: block;}
.banner-slide-content h3 {font-size: 58px;font-weight: 700;margin-bottom: 15px;text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);}

.banner-slide-content p {
	font-size: 18px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 35px;
	font-family: var(--family-text);
}

.banner-features {display: flex;gap: 30px;margin-top: 30px;}
.banner-feature {display: flex;align-items: center;gap: 12px;}

.banner-feature i {color: var(--primary);font-size: 24px;}
.banner-feature span {font-size: 16px;font-weight: 600;}
.buttons {display: flex;gap: 20px;margin-top: 30px;}

.bnr-btn {
	padding: 12px 22px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bnr-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bnr-btn-quote {background: var(--primary);color: white;}
.bnr-btn-contact{background: var(--secondary);color: white;}
.bnr-btn-quote:hover {background: var(--primary);}
/* .bnr-btn-contact:hover {background: var(--primary-dark);} */
.banner-pro-imgcon {
	/* width: 574px; */
	height: 100%;
	padding: 20px;
	/* background: #f8f9fa; */
	display: grid;
	grid-template-columns: 275px 275px;
	grid-template-rows: 189px 189px;
	gap: 12px;
	grid-template-areas:
		"top-left right-large"
		"bottom-left right-large";
}

.b-pro-imgbox {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.b-pro-imgbox:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.b-pro-imgbox.active {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	border: 3px solid var(--primary);
}

.b-pro-imgbox:first-child{grid-area: top-left;height: 189px;}
.b-pro-imgbox:nth-child(2) {grid-area: bottom-left;height: 189px;}
.b-pro-imgbox:nth-child(3) {grid-area: right-large;height: 397px;}

.bnr-img-placeholder {
	width: 100%;
	height: 100%;
	/*background: linear-gradient(45deg, #e0e0e0, #f5f5f5);*/
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-size: 16px;
	text-align: center;
}

.b-pro-imgbox.active .bnr-img-placeholder {
	/*background: linear-gradient(45deg, #d0e8ff, #e1f0ff);*/
	background: #fff;
}

.bnr-indicator {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.bnr-slide-indicators {
	display: none;
	/* display: flex; */
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.bnr-indicator-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.bnr-indicator-dot.active {
	background: var(--primary);
	transform: scale(1.2);
}

/* ########### banner nav End */


/* z - banner */
.banner-wrap {
	width: 100%;
	height: 475px;
	background: linear-gradient(90deg, #d8dbdd 0%, #eff1f3 100%);
	background-image: url(../images/zbanner.png);
	background-size: cover;
	background-repeat:no-repeat;
	border-radius: 5px;
	display: flex;
	position: relative;
	padding: 0 60px;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}
.banner-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 40px;
	z-index: 2;
}
.banner-text .title {
	font-weight: 700;
	font-size: 46px;
	line-height: 1.2;
	margin:1.5rem 0 2.5rem;
	max-width: 800px;
	color: var(--secondary);
}

.banner-text .description {
    margin-top: 2rem;
	font-size: 16px;
	line-height: 2;
	color: #34495e;
	max-width: 750px;
	font-family: var(--family-text);
}

.banner-wrap .product-image {
	width: 45%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-wrap .product-img {
	position: absolute;
	top: -55px;
	right: 0;
	height: 125%;
	max-height: 530px;
	object-fit: contain;
	z-index: 1;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.banner-wrap .dots {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 180px;
	height: 180px;
	overflow: hidden;
}

.banner-wrap .dots::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background-image: radial-gradient(#a6b0bb 3px, transparent 3px);
	background-size: 20px 20px;
	bottom: -40px;
	right: -40px;
	opacity: 0.5;
}

@media (max-width: 1200px) {
	.banner-text .title {font-size: 36px;}
	.banner-text .description {font-size: 15px;}
}

@media (max-width: 992px) {
	.banner-wrap {
		flex-direction: column;
		height: auto;
		padding: 40px 30px;
	}
	.banner-text {padding-right: 0;margin-bottom: 40px;text-align: center;}
	.banner-text .title, .banner-text .description {max-width: 100%;}
	.banner-wrap .product-image {width: 100%;height: 300px;}
	.banner-wrap .product-img {position: relative;top: 0;height: 100%;width: auto;max-width: 100%;}
}
@media (max-width: 576px) {
    .banner-wrap {padding: 2rem 20px;background-image: initial !important;background: linear-gradient(90deg, #d8dbdd 0%, #eff1f3 100%) !important;}
	.banner-text{margin-bottom: 0;}
	.banner-text .title {font-size: 28px;}
	.banner-text .description {font-size: 14px;}
	.banner-wrap .product-image {height: 250px;}
}


/* ######## Main column - # index Start #*/

/* index-about */
.hero-section {
	position: relative;
	width: 100%;
	height: 480px;
	padding-top: 6rem;
	background:url('../images/ab-bg.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	/* justify-content: center; */
}

/* video-btn */
.video-btn-container {position: relative;margin-bottom: 40px;}
.video-btn {width: 80px;height: 80px;background: #fff;border-radius: 50%;display: flex;align-items: center;justify-content: center;cursor: pointer;z-index: 10;position: relative;transition: transform 0.3s ease;}
.video-btn:hover {transform: scale(1.1);}
.video-btn-inner {width: 45px;height: 45px;background-color: var(--primary);border-radius: 50%;display: flex;justify-content: center;align-items: center;position: relative;}
.play-icon {color: white;font-size: 14px;margin-left: 2px;}
.video-btn i {font-size: 24px;color: white;margin-left: 5px;}

/* vidbtn-animation */
.video-btn::before,
.video-btn::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid var(--primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
	opacity: 0;
}
.video-btn::after {animation-delay: 1s;}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.3);
		opacity: 0;
	}
}
/* tanchu style */
.modal.fade {background: rgba(0, 0, 0, 0.85);backdrop-filter: blur(10px);}
.modal-content {
	background: rgba(20, 20, 30, 0.95);
	border: none;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {border-bottom: 1px solid rgba(255, 255, 255, 0.1);padding: 15px 20px;background: rgba(10, 10, 20, 0.8);}

.btn-close {
	background: transparent;
	opacity: 0.7;
	transition: all 0.3s ease;
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-close::before, .btn-close::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 2px;
	background: white;
	border-radius: 1px;
}
.btn-close::before {transform: rotate(45deg);}
.btn-close::after {transform: rotate(-45deg);}
.btn-close:hover {
	opacity: 1;
	background: rgba(255, 100, 100, 0.3);
	transform: rotate(90deg);
}
.modal-body {padding: 0;position: relative;}
.fixed-video {
	width: 100%;
	height: auto;
	max-height: 70vh;
	border-radius: 0 0 15px 15px;
	display: block;
}

.video-title {
	position: absolute;
	top: 20px;
	left: 20px;
	color: white;
	font-size: 1.8rem;
	font-weight: 500;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
	z-index: 10;
}

.modal.fade .modal-dialog {transform: scale(0.7);transition: transform 0.3s ease-out, opacity 0.3s ease-out;opacity: 0;}
.modal.show .modal-dialog {transform: scale(1);opacity: 1;}

@media (max-width: 768px) {
	.modal-dialog {margin: 20px;}
	.btn-play {padding: 12px 30px;font-size: 1rem;}
}

/* Title Area */
.titles-container {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 20px;
}

.small-title {
	font-size: 18px;
	color: #f6821f;
	margin-bottom: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.main-title {
	font-size: 48px;
	line-height: 1.2;
}
.hero-section .main-title,
.rev_slider .main-title {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* 应用场景 / 解决方案 / 新闻资讯 三处栏目标题统一规格 */
.app-scenes-section .header .main-title,
.bgc-application .header .main-title,
.ind_article .header .main-title {
	font-size: 48px;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0;
}
.app-scenes-section .header .subtitle-text,
.app-scenes-section .header .subtitle-text2,
.bgc-application .header .subtitle-text,
.bgc-application .header .subtitle-text2,
.ind_article .header .subtitle-text,
.ind_article .header .subtitle-text2 {
	font-size: 16px;
}
/* 首页栏目标题统一头部 - 上下间距均衡，含橙色短线 */
.home-sec-head {
	padding: 60px 0 60px;
	margin-bottom: 0 !important;
}
.home-sec-head .main-title {
	margin: 0 0 18px;
}
.home-sec-head .toptit-line {
	max-width: 100%;
}
.home-sec-head .subtitle-text2 {
	max-width: 990px;
}
/* 防止 section/容器自身再叠加上下空白，导致与下方内容不对称 */
.app-scenes-section {
	padding: 0 !important;
}
.app-scenes-section.mgb40 {
	margin-bottom: 0 !important;
}
.ind_article {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

/* number module */
.stats-container {
	display: flex;
	justify-content: space-between;
	width: 1200px;
	max-width: 95%;
	margin: -30px auto 20px;
	position: relative;
	z-index: 2;
}

.stat-box {
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	padding: 10px 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.stat-box:hover {transform: translateY(-10px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);}
.stat-number {font-size: 4.8rem;font-weight: 700;margin-bottom: 15px;height: 6rem;}
.stat-number .count,.stat-title{color: var(--white);}
.stat-number span {padding-left: 1rem;color: var(--primary);font-size: 4.8rem;}
.stat-title {font-size: 1.6rem;line-height: 1.4;}

/* White box */
.info-box {
	width: 1200px;
	max-width: 95%;
	height: 294px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	margin: 30px auto 0;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	position: relative;
	transform: translateY(-55%);
	margin-bottom: -10rem;
}

.info-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #333;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.info-text {
	color: var(--text-light);
	margin-bottom: 35px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
	text-align:left
}

.learn-more-btn {
	display: inline-block;
	background: var(--primary);
	color: white;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 12px 30px;
	border-radius: 5px;
	transition: all 0.3s ease;
	min-width: 142px;
	height: 45px;
	line-height: 21px;
	margin: 0 auto;
}

.learn-more-btn:hover {background: var(--primary);transform: translateY(-3px);box-shadow: 0 10px 20px rgba(246, 130, 31, 0.3);}

/* advantage section */
.adv-section {
	background: transparent;
	padding: 25px 0;
}
.adv-container {
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}
.adv-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
}
.adv-text {
	display: flex;
	flex-direction: column;
}
.adv-icon {
	width: 70px;
	height: 60px;
	flex-shrink: 0;
	margin-right: 12px;
	background-image: url('../images/adv-icons.png');
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.adv-icon-1 { background-position: 0% 0; }
.adv-icon-2 { background-position: 33.33% 0; }
.adv-icon-3 { background-position: 66.66% 0; }
.adv-icon-4 { background-position: 100% 0; }
.adv-title {
	color: #333;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 3px;
}
.adv-desc {
	color: #999;
	font-size: 13px;
	line-height: 1.4;
}

/* rec-products */
.rec-products-section {
	background: #fff;
	padding: 40px 0;
}
.rec-products-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}
.rec-products-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1.5fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	height: 520px;
}
.rec-product-card {
	border-radius: 14px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	text-decoration: none;
	transition: transform 0.35s, box-shadow 0.35s;
}
.rec-product-card:nth-child(1) {
	grid-row: 1 / 3;
}
.rec-product-card:nth-child(4) {
	grid-row: 1 / 3;
	grid-column: 3;
}
.rec-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.rec-product-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 20px 22px;
	align-self: flex-start;
	text-align: left;
}
.rec-product-card:nth-child(1) .rec-product-overlay {
	text-align: center;
	padding-top: 50px;
}
.rec-product-card:nth-child(4) .rec-product-overlay {
	padding-top: 50px;
}
.rec-product-card:nth-child(2) .rec-product-overlay {
	align-self: center;
	max-width: 50%;
}
.rec-product-card:nth-child(3) .rec-product-overlay {
	align-self: center;
	text-align: left;
	max-width: 50%;
	margin-left: auto;
}
.rec-product-card:nth-child(4) .rec-product-overlay {
	text-align: center;
}
.rec-product-sub {
	color: #fff;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.3px;
	margin-bottom: 6px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.rec-product-name {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* index-td */
.header {position: relative;}
.subtitle {display: flex;justify-content: center;align-items: center;}
.decoration-line {width: 20px;height: 3px;background-color: var(--primary);margin-right: 15px;}

.subtitle-text {font-size: 16px;font-weight: 600;color: var(--primary);letter-spacing: 2px;text-transform: uppercase;}
.subtitle-text2 {max-width: 730px;text-align: center;margin: auto;font-size: 16px;color: #666;font-family: var(--family-text);}
.toptit-line{position: relative;display: inline-block;margin: auto;width: 423px;height: 1px;background: #eee;}
.toptit-line::before {
    content: '';
    position: absolute;
	top: 0;
    left: 0;
	right: 0;
	margin: auto;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* 2 */
.choose-content {display: flex;justify-content: center;position: relative;height: 700px;}
.center-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 508px;
	height: 508px;
	border-radius: 50%;
	background: url('../images/index-yuan.png') center/cover no-repeat;
}

.choose-box {
	position: absolute;
	width: 395px;
	height: 258px;
	background: white;
	border-radius: 12px;
	padding:20px 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 3;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.choose-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.choose-icon {
	width: 70px;
	height: 70px;
	background: rgba(246, 130, 31, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.choose-icon i {font-size: 32px;color: var(--primary);transition: all 0.3s ease;}
.choose-title {font-size: 24px;font-weight: 700;margin-bottom: 15px;transition: all 0.3s ease;}
.choose-desc {font-family: var(--family-text);line-height: 1.7;color: var(--text-light);transition: all 0.3s ease;margin-bottom: 0;}

/* xuanting xiaoguo */
.choose-box:hover {transform: translateY(-10px);box-shadow: 0 20px 40px rgba(0,0,0,0.15);}
.choose-box:hover::before {transform: scaleX(1);}
.choose-box:hover .choose-icon {background: var(--primary);}
.choose-box:hover .choose-icon i {color: white;transform: scale(1.1);}
.choose-box:hover .choose-title {color: var(--primary);}
.choose-box:hover .choose-desc {color: #444;}
.choose-box.c-top-l,.choose-box.c-bottom-l{align-items: flex-end;}
.choose-box.c-top-l .choose-desc,
.choose-box.c-bottom-l .choose-desc{
text-align: right;
}	
/* dingwei 4ge mokuai */
.c-top-l {top: 75px;left: 0;animation: float 6s ease-in-out infinite;}
.c-top-r {top: 75px;right: 0;animation: float 6s ease-in-out infinite 0.5s;}
.c-bottom-l {bottom: 75px;left: 0;animation: float 6s ease-in-out infinite 1s;}
.c-bottom-r {bottom: 75px;right: 0;animation: float 6s ease-in-out infinite 1.5s;}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}
/* 3 */
.in-products-bg{background: var(--text);padding-top: 35px;padding-bottom: 187px;}
.inpro-box{position: relative;margin-top: -17rem;}
.products-row {display: flex;justify-content: space-between;flex-wrap: wrap;gap: 40px;}
.pro-t-m{color: #fff;font-size: 16px;margin-top: 1.5rem;}
.in-product-card {
	width: calc(50% - 20px);
	background: #f6f7fb;
	min-height: 289px;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.in-product-card:hover {transform: translateY(-15px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);}
.in-product-card .product-left {position: relative;width: 420px;padding: 22px 20px 0;}
.in-product-card .product-title {font-size: 22px;font-weight: 700;margin-bottom: 22px;line-height: 1.4;position: relative;}

.title-line {position: absolute;bottom: -10px;left: 0;width: 396px;height: 1px;background: #eee;}
.title-line::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background: var(--primary);
}
.in-pro-desc {
	color: var(--text-light);
	line-height: 1.8;
	margin-top: 24px;
	margin-bottom: 15px;
	font-family: var(--family-text);
}
.in-tags-con {
	display: flex;
	gap: 15px;
	margin-bottom: 2.2rem;
	flex-wrap: wrap;
}

.in-tags-con .tag {
	background: white;
	color: var(--primary);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 16px;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(246, 130, 31, 0.2);
	transition: all 0.3s ease;
}

.in-tags-con .tag:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
}

.pro-more {
	display: inline-block;
	/*width: 105px;*/
	padding: 0 1rem;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-weight: 600;
	border: 1px solid rgba(34, 34, 34, 0.5);
	border-radius: 4px;
	transition: all 0.3s ease;
	/* position: absolute;
	bottom: 20px;
	z-index: 1; */
	margin-bottom: 2rem;
	font-family: var(--family-text);
}

.pro-more:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.product-right {
	position: relative;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 20px;
}

.hot-tag {
	position: absolute;
	top: 10px;
	right: 20px;
	background: var(--primary);
	color: white;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 15px;
	border-radius: 20px;
	transform: rotate(15deg);
	box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
	z-index: 2;
}

.product-image {
	width: 186px;
	height: 232px;
	object-fit: contain;
	position: relative;
	right: -37px;
	transition: all 0.4s ease;
	z-index: 1;
}
.in-product-card:hover .product-image {transform: scale(1.05) rotate(2deg);}
.decoration {position: absolute;background: rgba(246, 130, 31, 0.1);border-radius: 50%;z-index: 0;}
.dec-1 {width: 200px;height: 200px;top: -50px;right: -50px;}
.dec-2 {width: 150px;height: 150px;bottom: -30px;left: -30px;}

/* Application Solutions Grid */
.bgc-application{background: #fff; position: relative; overflow: hidden; padding-bottom: 50px;}
.sol-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	max-width: 1440px;
	margin: 0 auto;
}
.sol-card {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.sol-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.sol-card:nth-child(1) { grid-row: 1 / 3; }
.sol-card:nth-child(2) { grid-row: 1 / 3; }
.sol-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.sol-card:nth-child(4) { grid-column: 3; grid-row: 2; }
.sol-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 4px;
	letter-spacing: 1px;
}
.sol-img {
	width: 100%;
	background-size: cover;
	background-position: center;
	border-radius: 12px 12px 0 0;
}
.sol-card:nth-child(1) .sol-img,
.sol-card:nth-child(2) .sol-img {
	flex: 1;
	min-height: 320px;
}
.sol-card:nth-child(3),
.sol-card:nth-child(4) {
	background-size: cover;
	background-position: center;
	position: relative;
}
.sol-card:nth-child(3) .sol-img,
.sol-card:nth-child(4) .sol-img {
	position: absolute;
	inset: 0;
	border-radius: 12px;
}
.sol-card:nth-child(3)::after,
.sol-card:nth-child(4)::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.35);
	border-radius: 12px;
	z-index: 1;
}
.sol-body {
	padding: 20px 22px;
	position: relative;
	z-index: 2;
}
.sol-card:nth-child(1) .sol-body,
.sol-card:nth-child(2) .sol-body {
	background: #fff;
}
.sol-card:nth-child(3) .sol-body,
.sol-card:nth-child(4) .sol-body {
	color: #fff;
	margin-top: auto;
}
.sol-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	font-family: var(--family-big-title);
}
.sol-card:nth-child(3) .sol-title,
.sol-card:nth-child(4) .sol-title {
	color: #fff;
}
.sol-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}
.sol-card:nth-child(3) .sol-desc,
.sol-card:nth-child(4) .sol-desc {
	color: rgba(255,255,255,0.9);
}

/* Legacy app-bento kept for compatibility */
.app-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1.2fr 1fr 1.3fr;
	gap: 15px;
	height: 820px;
}
.app-bento-item {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}
.app-bento-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 40%, transparent 65%);
	border-radius: 10px;
	transition: background 0.3s;
}
.app-bento-item:hover::after {
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 75%);
}
.app-bento-text {
	position: relative;
	z-index: 2;
	padding: 28px;
	color: #fff;
}
.app-bento-text h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 14px;
	line-height: 1.3;
	font-family: var(--family-big-title);
}
.app-bento-shopbtn {
	display: inline-block;
	padding: 9px 22px;
	background: var(--primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: background 0.3s;
}
.app-bento-item:hover .app-bento-shopbtn { background: var(--primary-dark); }
.app-bento-item:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}
.app-bento-item:nth-child(2) {
	grid-column: 3 / 5;
	grid-row: 1;
}
.app-bento-item:nth-child(3) {
	grid-column: 3;
	grid-row: 2;
}
.app-bento-item:nth-child(4) {
	grid-column: 4;
	grid-row: 2;
}
.app-bento-item:nth-child(5) {
	grid-column: 1 / 3;
	grid-row: 3;
}
.app-bento-item:nth-child(6) {
	grid-column: 3 / 5;
	grid-row: 3;
}

/* news */
.in-news-grid {display: flex;flex-wrap: wrap;justify-content: space-between;}
.in-news-card {
	width: 340px;
	background: #efefef;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	position: relative;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.in-news-card:hover {transform: translateY(-15px);box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);}
.in-img-newsctr {width: 100%;height: 210px;overflow: hidden;}
.in-news-image {width: 100%;height: 100%;object-fit: cover;transition: transform 0.5s ease;}
.in-news-card:hover .in-news-image {transform: scale(1.1);}
.in-news-card .date-badge {
	position: absolute;
	top: 45%;
	left: 20px;
	transform: translateY(-50%);
	width: 58px;
	height: 58px;
	background: var(--primary);
	border: 1px solid white;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.date-day {font-size: 30px;font-weight: 700;color: white;line-height: 1;}
.date-month-year {color: white;margin-top: 3px;font-size: 12px;line-height: 1;white-space: nowrap;}
.in-news-card-content {padding: 25px;}
.in-news-card-content-txt{height: 148px;}
.in-news-title {font-size: 18px;line-height: 1.4;}
.in-news-excerpt {font-size: 14px;color: var(--text-light);line-height: 1.7;margin-top: 5px;font-family: var(--family-text);}

.news-more-btn {color: var(--primary);text-decoration: none;transition: all 0.3s ease;}
.news-more-btn:hover {transform: translateX(5px);}
.news-more-btn i {
	padding: 8px;
	background: #fff;
	margin-left: 8px;
	border-radius: 50%;
	border: 1px solid var(--primary);
	transition: transform 0.3s ease;
}
.news-more-btn:hover i {background: var(--primary);color: #fff;transform: translateX(3px);}
/* 4- form */
.inform-bg{padding: 40px 0; background: url(../images/index-formbg.jpg);background-size: cover;background-position: center;}
.in-form-wrap{margin:auto; max-width:1200px; background: #fff;display: flex;}
.form-ms{position: relative; padding: 2rem; margin: 3px; width: 483px;background: var(--primary);;color: #fff;}
.form-ms .tit{margin-top: 4rem; font-size: 48px;text-transform: uppercase}
.form-ms .desc{font-family: var(--family-text);}
.form-ms .lx{position: absolute;left: 2.5rem;bottom: 2rem;font-size: 18px;}
/* @media */
@media (max-width: 1440px) {
	.app-bento { height: 480px; }
}
@media (max-width: 1200px) {
	.in-product-card{width: 100%;height: auto;}
	.stats-container {flex-wrap: wrap;justify-content: center;max-width: 100%;}
	.stat-box {margin: 15px;}
	.stat-number span{padding-left: 0;font-size: 3rem;}
	.info-box {height: auto;padding: 40px 30px;transform: initial;margin: auto;}
	.content {height: auto;flex-direction: column;align-items: center;}
	.center-circle {position: relative;top: auto;left: auto;transform: none;margin: 50px 0;}
	.decoration {display: none;}
	.pro-more{position: relative;}
	.in-news-grid {justify-content: space-between;}
	.in-news-card {margin-bottom: 40px;}
}
@media (max-width: 992px) {
	.in-news-card {width: calc(50% - 20px);height: auto;}
	.in-img-newsctr {height: 200px;}
}
			
@media (max-width: 768px) {
	.container{width: 100%;padding: 2rem 20px;}
	.hero-section {height: 700px;}
	.main-title {font-size: 42px;}
	.adv-section{padding: 18px 0;}
	.adv-container{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 12px;padding: 0 16px;}
	.adv-item{align-items: flex-start;background: #fff;border-radius: 10px;padding: 14px 12px;box-shadow: 0 6px 20px rgba(0,0,0,.06);}
	.adv-icon{width: 48px;height: 42px;margin-right: 10px;}
	.adv-title{font-size: 16px;line-height: 1.3;margin-bottom: 5px;}
	.adv-desc{font-size: 13px;line-height: 1.55;}
	.rec-products-section{padding: 24px 0;}
	.rec-products-container{padding: 0 16px;}
	.rec-products-grid{grid-template-columns: repeat(2, minmax(0, 1fr));grid-template-rows: none;gap: 12px;height: auto;}
	.rec-product-card,
	.rec-product-card:nth-child(1),
	.rec-product-card:nth-child(4){grid-column: auto;grid-row: auto;min-height: 220px;}
	.rec-product-overlay,
	.rec-product-card:nth-child(1) .rec-product-overlay,
	.rec-product-card:nth-child(2) .rec-product-overlay,
	.rec-product-card:nth-child(3) .rec-product-overlay,
	.rec-product-card:nth-child(4) .rec-product-overlay{max-width: none;margin-left: 0;padding: 18px 14px;text-align: left;align-self: flex-start;}
	.rec-product-name{font-size: 18px;line-height: 1.35;}
	.stat-box {width: 80%;max-width: 300px;}
	.choose-content{display: block;height:auto}
	.choose-box{
		margin-bottom: 2rem;
		width: 100%;
		position: relative !important;
		animation:inherit !important;
		align-items:initial !important;
		top: 0 !important;
	}
	.choose-box .choose-desc{text-align: left !important;}
	.center-circle{display: none;}
	.in-products-bg{padding: 0;}
	.inpro-box{margin-top: -10rem;}
	.in-news-card {width: 100%;max-width: 400px;}
	.inpro-box{margin: 0;}
	.in-form-wrap{display: block;}
	.form-ms{width: 100%;margin: 0;}
	.form-ms .lx{position: initial;}
	.form-ms .tit{font-size: 32px;margin-top: 0;}
}

@media (max-width: 480px) {
	.decoration-line,.hot-tag{display: none;}
	.in-news-card{max-width: 100%;}
	.adv-container{grid-template-columns: 1fr;}
	.adv-item{min-height: 112px;}
	.rec-products-grid{grid-template-columns: 1fr;}
	.rec-product-card,
	.rec-product-card:nth-child(1),
	.rec-product-card:nth-child(4){min-height: 230px;}
	.stat-box{margin: 5px;width: 45% !important;}
	.hero-section {height: 800px;padding-top: 50px;}
	.main-title {font-size: 36px;}
	.info-title {font-size: 20px;}
	.info-text {font-size: 15px;}
	.subtitle-text {font-size: 14px;}
	.app-bento { height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
	.app-bento-item { min-height: 200px; }
	.sol-grid { grid-template-columns: 1fr; }
	.sol-card:nth-child(1), .sol-card:nth-child(2) { grid-row: auto; }
	.sol-card:nth-child(3), .sol-card:nth-child(4) { grid-column: auto; }
	.sol-card:nth-child(1) .sol-img, .sol-card:nth-child(2) .sol-img { min-height: 200px; }
}
/* ######## Main column - # index End #*/





/* ######## Main column - # About Start #*/
/* 1 screen style */
.ab-screen-1 {background: url('../images/ab-bg02.jpg') no-repeat center center;background-size: cover;padding: 60px 0 20px;color: white;}
.about-topwrap{display: flex;justify-content: space-around;}
.abtop-left{width: 53%;}
.about-content {padding: 0 20px;}
.ab-subtitle {font-size: 18px;letter-spacing: 1rem;}
.abjs-text {line-height: 2.5;margin-top: 4rem;margin-bottom: 30px;font-family: var(--family-text);}
.abjs-text p{margin-bottom: 2rem;}
.abjs-img {padding-left: 5%;max-width: 100%;height: auto;}
.zab-xg{margin:5px 5rem 0;width: 100%;}
.zab-xg .stat-box{border: 0;box-shadow:initial;}
.zab-xg .stat-number{white-space: nowrap;line-height: 1;}
.zab-xg .stat-box:last-child span,.zab-xg .stat-box:last-child .stat-title{color: var(--text);}
.zab-xg .stat-box:last-child .stat-number span{font-size: 3rem;padding-left: .5rem;line-height: 1;vertical-align: baseline;white-space: nowrap;}
.zab-xg .stat-box:nth-child(4) span{color: #fff;}
/* 2 screen style */
.ab-screen-2 {background-color: #fff;}
.ab-td-wrap{display: flex;flex-wrap: wrap;justify-content: space-between;gap: 20px;}
.technology-card {width: 338px;height: 324px;position: relative;overflow: hidden;border-radius: 5px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);transition: transform 0.3s ease;}
.technology-card:hover {transform: translateY(-5px);}
.te-logy-img {width: 100%;height: 149px;object-fit: cover;}
.te-logy-content {padding: 20px;}
.te-logy-title {font-size: 18px;margin-bottom: 10px;text-align: center;padding: 0 3rem;}
.te-logy-desc {line-height: 1.6;color: var(--text-light);font-family: var(--family-text);text-align: center;}
.technology-icon {position: absolute;left: -15px;top: 130px;width: 50px;height: 38px;background-color: var(--primary);border-radius: 25px;display: flex;align-items: center;justify-content: center;box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);}
.technology-icon i{color: #fff;padding-left: 1rem;}

/* 3 screen style */
.ab-screen-3 {background: url('../images/ab-contact-bg.jpg') no-repeat center center;background-size: cover;padding: 50px 0;text-align: center;color: white;}

.ab-screen-3-title {font-size: 36px;font-weight: 700;text-transform: uppercase;margin-bottom: 40px;max-width: 800px;margin-left: auto;margin-right: auto;line-height: 1.3;}
.contact-btn {display: inline-block;background-color: var(--primary);color: white;border: none;padding: 15px 40px;font-size: 18px;font-weight: 600;border-radius: 30px;margin-bottom: 30px;cursor: pointer;transition: all 0.3s ease;}
.contact-btn:hover {background-color: var(--primary-dark);transform: translateY(-3px);}
.ab-divider {height: 1px;background-color: rgba(255, 255, 255, 0.3);margin: 0 auto 50px;}
.hzlogo-container {display: flex;justify-content: center;gap: 40px;flex-wrap: wrap;}
.hzlogo-img {/*height: 60px;*/opacity: 0.8;transition: opacity 0.3s ease;}
.hzlogo-img:hover {opacity: 1;}

/* 4 screen style */
.ab-screen-4 {padding: 40px 0;background-color: #f8f9fa;}
.video-container {height: 405px;margin: 0 auto;background: url('../images/video-bg.jpg') no-repeat center center;background-size: cover;display: flex;align-items: center;justify-content: center;position: relative;border-radius: 8px;overflow: hidden;}
.play-btn {width: 80px;height: 80px;background-color: rgba(255, 107, 0, 0.8);border-radius: 50%;display: flex;align-items: center;justify-content: center;color: white;font-size: 30px;cursor: pointer;transition: all 0.3s ease;}
.play-btn:hover {background-color: rgba(255, 107, 0, 1);transform: scale(1.1);}

/* 5 screen style */
.ab-screen-5 {background-color: #141414;padding: 80px 0;color: white;display: flex;justify-content: center;align-items: center;}
.strength-container {width: 1820px;height: 637px;background: url('../images/ab-qh-bg.jpg') no-repeat center center;background-size: cover;border-radius: 8px;padding: 50px;overflow: hidden;}
.dpflex{display: flex;}
.strength-title {font-size:60px;margin-top: 5rem;margin-bottom: 7.5rem;}
.tabs-container {width: 53%;padding-right: 40px;}
.tab-item {margin-bottom: 30px;cursor: pointer;padding-bottom: 35px;border-bottom: 1px solid rgba(255, 255, 255, 0.3);transition: color 0.3s ease;}
.tab-item.active {color: var(--primary);}
.tab-title {font-size: 30px;margin-bottom: 10px;}
.tab-content {width: 60%;padding: 20px;}
.tab-content .con-text {display: none;}
.tab-content .con-text.active {display: block;}
.tab-content .content-img {width: 742px;height: 317px;object-fit: cover;margin-bottom: 20px;border: 2px solid #fff;}
.tab-content .content-text {line-height:2;font-family: var(--family-text);text-indent: 2em;}
/* honor */
.ab-honor{margin: 2rem 0;}
.honor-dfx{display: flex;flex-wrap: wrap;justify-content: flex-start;gap: 2rem;}
.honor-dfx li{width: 15.4%; border: 1px solid #eee;padding: 3rem 1rem .5rem;}
.honor-dfx .honor-title{padding-top:2rem;text-align:center;font-size_:1.8rem}
/* about - @media */
@media (max-width: 1440px) {
	.about-content, .features-container {max-width: 100%;}
	.ab-td-wrap{justify-content: center;}
	.video-container {width: 100%;border-radius: 0;}
	.strength-container {width: 90%;}
	.content-img {width: 100%;}
	.tab-title{font-size: 24px;}
	.main-title{font-size: 40px;}
}
@media (max-width: 1200px) {
	.technology-card {width: 300px;}
	.honor-dfx li{width: 31%;}
}
@media (max-width: 992px) {
	.strength-container {flex-direction: column;width: 100%;padding: 10px;height: auto;}
	.tabs-container, .tab-content,.abtop-left {width: 100%;}
	.tabs-container {padding-right: 0;margin-bottom: 30px;}
	.dpflex,.about-topwrap{display: block;}
	.abjs-img{padding-left: 0;}
	.zab-xg{display: none;}
	.tab-content{padding: 0;}
	.tab-title{font-size: 18px;}
	.tab-item{padding-bottom: 10px;}
	.ab-screen-3-title{font-size: 26px;}
	.honor-dfx li{width: 100%;}
	.ab-honor{margin: 0;}
}


/* ######## Main column - # About End #*/

/* ######## About V2 Start ######## */
.about-v2 {background: #fff;overflow: hidden;}
.about-v2 .container {max-width: 1280px;}
.about-channel-hero {position: relative;min-height: 440px;display: flex;align-items: stretch;color: #fff;background-repeat: no-repeat;background-size: cover;background-position: center center;overflow: hidden;}
.about-channel-mask {position: absolute;inset: 0;background: linear-gradient(90deg,rgba(17,28,45,.84) 0%,rgba(17,28,45,.66) 45%,rgba(17,28,45,.28) 100%);}
.about-channel-inner {position: relative;z-index: 1;display: grid;grid-template-columns: minmax(0,1fr) 360px;gap: 52px;align-items: center;width: 100%;min-height: 440px;padding: 116px 24px 56px;}
.about-channel-inner.no-form {grid-template-columns: minmax(0,760px);justify-content: flex-start;}
.about-channel-copy {max-width: 720px;}
.about-channel-copy h1 {font-size: 42px;font-weight: 800;line-height: 1.24;color: #fff;margin-bottom: 18px;letter-spacing: 0;}
.about-channel-copy p {max-width: 660px;font-size: 16px;line-height: 1.9;color: rgba(255,255,255,.9);margin-bottom: 26px;}
.about-channel-btn {display: inline-flex;align-items: center;justify-content: center;min-width: 116px;height: 38px;padding: 0 24px;border-radius: 22px;background: var(--primary);color: #fff;font-size: 14px;font-weight: 700;transition: background .25s ease, transform .25s ease, box-shadow .25s ease;}
.about-channel-btn:hover {background: var(--primary-dark);color: #fff;transform: translateY(-2px);box-shadow: 0 10px 24px rgba(246,130,31,.3);}
.about-channel-form-card {width: 360px;justify-self: end;background: rgba(255,247,246,.96);border: 1px solid rgba(255,255,255,.55);border-radius: 6px;padding: 28px 26px 24px;box-shadow: 0 22px 46px rgba(8,16,30,.26);color: #222;}
.about-channel-form-title {display: flex;align-items: center;justify-content: center;gap: 12px;margin-bottom: 8px;}
.about-channel-form-title span {display: block;width: 42px;height: 1px;background: rgba(246,130,31,.45);}
.about-channel-form-title strong {font-size: 22px;font-weight: 800;color: #9d2920;}
.about-channel-form-sub {font-size: 14px;line-height: 1.6;text-align: center;color: #777;margin-bottom: 20px;}
.about-channel-form {display: grid;gap: 12px;}
.about-channel-field {height: 42px;display: flex;align-items: center;background: #fff;border: 1px solid #eadcda;border-radius: 4px;overflow: hidden;transition: border-color .25s ease, box-shadow .25s ease;}
.about-channel-field:focus-within {border-color: var(--primary);box-shadow: 0 0 0 3px rgba(246,130,31,.12);}
.about-channel-field i {width: 42px;flex: 0 0 42px;text-align: center;color: #b65a42;font-size: 14px;}
.about-channel-field input {width: 100%;height: 100%;border: 0;outline: none;background: transparent;color: #333;font-size: 14px;padding: 0 12px 0 0;}
.about-channel-field input::placeholder {color: #999;}
.about-channel-code-row {display: grid;grid-template-columns: minmax(0,1fr) 104px;gap: 10px;align-items: center;}
.about-channel-code-img {height: 42px;display: flex;align-items: center;justify-content: center;background: #fff;border: 1px solid #eadcda;border-radius: 4px;overflow: hidden;}
.about-channel-code-img img {display: block;max-width: 100%;height: 34px;object-fit: contain;}
.about-channel-submit {justify-self: center;width: 138px;height: 38px;margin-top: 4px;border: 0;border-radius: 22px;background: #a20101;color: #fff;font-size: 14px;font-weight: 700;cursor: pointer;transition: background .25s ease, transform .25s ease, box-shadow .25s ease;}
.about-channel-submit:hover {background: var(--primary);transform: translateY(-2px);box-shadow: 0 10px 22px rgba(162,1,1,.24);}
.about-channel-submit:disabled {cursor: not-allowed;opacity: .72;transform: none;box-shadow: none;}
.about-v2-hero {position: relative;min-height: 680px;display: flex;align-items: center;justify-content: center;text-align: center;color: #fff;overflow: hidden;}
.about-v2-hero-bg {position: absolute;inset: 0;background: url('../images/video-bg.jpg') center center / cover no-repeat;transform: scale(1.02);}
.about-v2-hero-mask {position: absolute;inset: 0;background: rgba(0,0,0,.5);}
.about-v2-hero-content {position: relative;z-index: 2;max-width: 980px;padding: 120px 24px 70px;}
.about-v2-hero-content h1 {font-size: 52px;font-weight: 800;line-height: 1.25;margin-bottom: 26px;letter-spacing: 0;}
.about-v2-hero-content p {font-size: 18px;line-height: 2;max-width: 900px;margin: 0 auto;color: rgba(255,255,255,.94);}

.about-v2-intro {position: relative;overflow: hidden;background: #0f1b2d;color: #fff;padding: 60px 0 66px;}
.about-v2-intro:before {content: "";position: absolute;inset: 0;background: linear-gradient(135deg,transparent 0 18%,rgba(34,60,98,.42) 18% 30%,transparent 30% 43%,rgba(37,70,115,.46) 43% 57%,transparent 57% 68%,rgba(62,96,150,.36) 68% 83%,transparent 83%), radial-gradient(900px 500px at 100% 10%,rgba(54,92,145,.45),transparent 62%);opacity: .96;pointer-events: none;}
.about-v2-intro:after {content: "";position: absolute;inset: 0;background: linear-gradient(155deg,rgba(6,15,30,.22) 0 35%,transparent 35% 100%);pointer-events: none;}
.about-v2-intro .container {position: relative;z-index: 1;}
.about-v2-intro-grid {display: grid;grid-template-columns: minmax(0,1.02fr) minmax(460px,.98fr);gap: 58px;align-items: center;min-height: 552px;color: #fff;padding: 0 0 30px;background: transparent;border-radius: 0;overflow: visible;}
.about-v2-intro-text,.about-v2-intro-media {position: relative;z-index: 1;}
.about-v2-kicker,.about-v2-section-head span {display: inline-block;color: #ffc329;font-size: 14px;font-weight: 700;text-transform: uppercase;letter-spacing: 0;margin-bottom: 16px;}
.about-v2-intro-text h2 {max-width: 610px;font-size: 42px;font-weight: 800;line-height: 1.2;margin-bottom: 14px;color: #fff;}
.about-v2-intro-text h3 {max-width: 610px;font-size: 21px;font-weight: 700;line-height: 1.55;color: rgba(255,255,255,.94);margin-bottom: 22px;}
.about-v2-scrolltext {max-width: 650px;max-height: 205px;overflow-y: auto;padding-right: 18px;scrollbar-color: rgba(255,195,41,.78) rgba(255,255,255,.12);}
.about-v2-scrolltext::-webkit-scrollbar {width: 6px;}
.about-v2-scrolltext::-webkit-scrollbar-track {background: rgba(255,255,255,.12);border-radius: 10px;}
.about-v2-scrolltext::-webkit-scrollbar-thumb {background: rgba(255,195,41,.82);border-radius: 10px;}
.about-v2-scrolltext p {font-size: 16px;line-height: 1.95;color: rgba(255,255,255,.9);margin-bottom: 16px;}
.about-v2-actions {display: flex;align-items: center;gap: 38px;flex-wrap: wrap;margin-top: 30px;}
.about-v2-primary-btn {display: inline-flex;align-items: center;justify-content: center;min-width: 178px;height: 56px;padding: 0 28px;border-radius: 4px;background: #ffc329;color: #141414;font-size: 15px;font-weight: 700;transition: background .25s ease, transform .25s ease;}
.about-v2-primary-btn:hover {background: #ffd35c;color: #141414;transform: translateY(-2px);}
.about-v2-link-btn {display: inline-flex;align-items: center;gap: 8px;min-height: 34px;border-bottom: 2px solid #ffc329;color: #fff;font-size: 16px;font-weight: 700;line-height: 1;}
.about-v2-link-btn:hover {color: #ffc329;}
.about-v2-link-btn i {font-size: 13px;}

/* Company profile keeps only the company name, introduction and media. */
.about-v2-intro {background: #fff;color: #222;}
.about-v2-intro:before,.about-v2-intro:after {display: none;}
.about-v2-intro-grid {color: #222;}
.about-v2-intro-text h2 {margin-bottom: 24px;color: #222;}
.about-v2-intro-text h3 {display: none;}
.about-v2-scrolltext {max-width: 650px;max-height: 205px;overflow-y: auto;padding-right: 18px;scrollbar-color: rgba(255,195,41,.78) rgba(0,0,0,.08);}
.about-v2-scrolltext::-webkit-scrollbar {width: 6px;}
.about-v2-scrolltext::-webkit-scrollbar-track {background: rgba(0,0,0,.08);border-radius: 10px;}
.about-v2-scrolltext::-webkit-scrollbar-thumb {background: rgba(255,195,41,.9);border-radius: 10px;}
.about-v2-scrolltext p {color: #555;}
.about-v2-intro-media {min-height: 470px;}
.about-v2-media-main {position: absolute;right: 118px;top: 0;width: 73%;height: 398px;border-radius: 0 33% 0 33%;overflow: hidden;border-top: 4px solid #ffc329;}
.about-v2-media-sub {position: absolute;right: 0;bottom: 18px;width: 52%;height: 300px;border-radius: 33% 0 33% 0;overflow: hidden;border-top: 4px solid #ffc329;box-shadow: 0 22px 48px rgba(0,0,0,.34);}
.about-v2-media-main img,.about-v2-media-sub img {width: 100%;height: 100%;object-fit: cover;}
.about-v2-honor-strip {display: block;color: #fff;padding: 0;background: transparent;border: 0;border-radius: 0;}
.about-v2-honor-title {position: absolute;width: 1px;height: 1px;overflow: hidden;clip: rect(0 0 0 0);white-space: nowrap;}
.about-v2-honor-title span {display: block;color: #ffc329;font-size: 13px;text-transform: uppercase;font-weight: 700;}
.about-v2-honor-title strong {display: block;font-size: 24px;margin-top: 5px;color: #fff;}
.about-v2-honor-track {overflow: hidden;padding: 12px 0 0;}
.about-v2-honor-list {display: flex;gap: 24px;width: max-content;animation: aboutV2Honor 34s linear infinite;}
.about-v2-honor-list:hover {animation-play-state: paused;}
.about-v2-honor-item {width: 176px;flex: 0 0 176px;text-align: center;color: #fff;}
.about-v2-honor-item img {display: block;width: 100%;height: 118px;object-fit: contain;background: #fff;border: 1px solid rgba(255,255,255,.55);box-shadow: 0 12px 24px rgba(0,0,0,.18);}
.about-v2-honor-item span {display: block;margin-top: 9px;font-size: 13px;font-weight: 700;line-height: 1.35;color: rgba(255,255,255,.95);height: 36px;overflow: hidden;}
@keyframes aboutV2Honor {from {transform: translateX(0);} to {transform: translateX(-50%);}}

.about-v2-tech {padding: 92px 0;background: #f6f6f6;}
.about-v2-section-head {text-align: center;max-width: 860px;margin: 0 auto 42px;}
.about-v2-section-head h2 {font-size: 38px;font-weight: 800;line-height: 1.25;margin-bottom: 14px;color: #2d2d2d;}
.about-v2-section-head p {font-size: 16px;line-height: 1.8;color: #777;}
.about-v2-tech-grid {display: grid;grid-template-columns: repeat(4,minmax(0,1fr));gap: 28px;}
.about-v2-tech-card {background: #fff;min-height: 274px;padding: 36px 24px 30px;text-align: center;border-radius: 4px;box-shadow: 0 10px 30px rgba(0,0,0,.06);transition: transform .25s ease, box-shadow .25s ease;}
.about-v2-tech-card:hover {transform: translateY(-6px);box-shadow: 0 18px 42px rgba(0,0,0,.1);}
.about-v2-tech-card img {height: 44px;width: auto;margin: 0 auto 22px;}
.about-v2-tech-card h3 {font-size: 20px;font-weight: 800;line-height: 1.35;color: #333;margin-bottom: 16px;}
.about-v2-tech-card p {font-size: 14px;line-height: 1.85;color: #777;}

.about-v2-strength {position: relative;padding: 92px 0;background: #1d1f24;}
.about-v2-strength .about-v2-section-head h2 {color: #fff;}
.about-v2-strength .about-v2-section-head p {color: #898989;}
.about-v2-strength-list {display: grid;gap: 28px;}
.about-v2-strength-item {display: grid;grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr);align-items: center;gap: 0;background: #1d1f24;border: 0;border-radius: 0;overflow: hidden;}
.about-v2-strength-item.reverse {grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr);}
.about-v2-strength-item.reverse .about-v2-strength-img {order: 2;}
.about-v2-strength-img {height: 320px;background: #1d1f24;overflow: hidden;}
.about-v2-strength-img img {width: 100%;height: 100%;object-fit: cover;transition: transform .35s ease;}
.about-v2-strength-item:hover .about-v2-strength-img img {transform: scale(1.04);}
.about-v2-strength-text {padding: 44px 50px;}
.about-v2-strength-text h3 {font-size: 28px;font-weight: 800;line-height: 1.35;color: #fff;margin-bottom: 18px;}
.about-v2-strength-text p {position: relative;font-size: 16px;line-height: 2;color: #898989;margin: 0;padding-bottom: 36px;}
.about-v2-strength-text p:after {content: "";position: absolute;left: 0;bottom: 0;width: 28px;height: 3px;background: #d51b32;}

.about-v2-timeline {position: relative;height: 728px;background: #303030 url("/static/skin/images/about-v2/about-client-bg.jpg") center top/1920px 728px no-repeat;color: #fff;overflow: hidden;}
.about-v2-timeline-title {position: absolute;left: 50%;top: 108px;z-index: 2;width: 100%;transform: translateX(-50%);text-align: center;}
.about-v2-timeline-title h2 {margin: 0 0 30px;font-size: 46px;font-weight: 800;line-height: 1.2;color: #fff;}
.about-v2-timeline-title p {margin: 0;font-size: 16px;line-height: 1.7;color: #fff;}
.about-v2-line-wrap {position: absolute;left: 0;right: 0;bottom: 100px;z-index: 1;width: auto;height: auto;padding: 0;}
.about-v2-line-bg-img {display: block;width: 100%;height: auto;}
.about-v2-line-bg-ef {position: absolute;left: 0;top: 0;width: 0;max-width: none;transition: width 1.6s ease;}
.about-v2-line-bg-spacer {opacity: 0;}
.about-v2-timeline.is-active .about-v2-line-bg-ef {width: 100%;}
.about-v2-line-items {position: absolute;inset: 0;display: block;margin: 0;}
.about-v2-line-item {position: absolute;width: 190px;text-align: center;color: #fff;opacity: 0;transition: opacity 1.4s ease;}
.about-v2-line-item:before {display: none;}
.about-v2-line-item-1 {left: 14.85%;bottom: 10%;}
.about-v2-line-item-2 {left: 30%;bottom: 72.7%;transition-delay: .3s;}
.about-v2-line-item-3 {left: 44.7%;bottom: 35%;transition-delay: .6s;}
.about-v2-line-item-4 {left: 60.2%;bottom: 94.7%;transition-delay: .9s;}
.about-v2-line-item-5 {left: 78%;bottom: 35.5%;transition-delay: 1.2s;}
.about-v2-timeline.is-active .about-v2-line-item {opacity: 1;}
.about-v2-line-item strong {display: flex;align-items: baseline;justify-content: center;width: auto;height: auto;margin: 0 0 10px;background: transparent;border-radius: 0;color: #fff;font-size: 63px;font-weight: 900;line-height: 1;font-family: var(--family-big-title),Arial,Helvetica,sans-serif;white-space: nowrap;}
.about-v2-line-item strong i {font-style: normal;}
.about-v2-line-item strong span {margin-left: 10px;font-size: 30px;font-weight: 800;}
.about-v2-line-item h3 {margin: 0 0 7px;font-size: 16px;font-weight: 500;line-height: 1.35;color: #fff;}
.about-v2-line-item p {margin: 0 0 20px;font-size: 12px;line-height: 1.45;color: rgba(255,255,255,.5);}
.about-v2-line-item > i {display: block;font-style: normal;}
.about-v2-line-item > i img {display: inline-block;max-width: 100%;height: auto;}

.about-v2-partner {position: relative;padding: 0 0 145px;background: #fff;}
.about-v2-partner > .container,.about-v2-partner-show .container {width: min(1400px,100%);max-width: 1400px;}
.about-v2-partner-title {padding-top: 48px;padding-bottom: 48px;text-align: left;}
.about-v2-partner-title h2 {margin: 0;padding-left: 70px;font-size: 46px;font-weight: 800;line-height: 1.2;color: #d51b32;}
.about-v2-partner-title p {margin: 0;padding: 10px 0 0 70px;font-size: 16px;line-height: 1.8;color: #7a7a7a;}
.about-v2-partner-show {border-top: 1px solid #e8e8e8;border-bottom: 1px solid #e8e8e8;}
.about-v2-partner-grid {display: block;font-size: 0;text-align: left;}
.about-v2-partner-grid div {display: inline-block;width: 14.66%;height: 80px;margin: 20px 1%;padding: 0;border: 0;background: transparent;line-height: 80px;text-align: center;vertical-align: top;overflow: hidden;transition: none;}
.about-v2-partner-grid div:hover {transform: none;box-shadow: none;}
.about-v2-partner-grid img {max-width: 100%;max-height: 80px;height: auto;object-fit: contain;filter: grayscale(100%);transition: filter .6s ease;}
.about-v2-partner-grid div:hover img {filter: grayscale(0);}

@media (max-width: 1200px) {
	.about-channel-inner {grid-template-columns: minmax(0,1fr) 340px;gap: 34px;padding-left: 22px;padding-right: 22px;}
	.about-channel-form-card {width: 340px;padding: 26px 22px 22px;}
	.about-channel-copy h1 {font-size: 38px;}
	.about-v2-hero {min-height: 600px;}
	.about-v2-hero-content h1 {font-size: 44px;}
	.about-v2-intro {padding: 54px 0 60px;}
	.about-v2-intro-grid {grid-template-columns: 1fr;gap: 34px;min-height: auto;padding-bottom: 22px;}
	.about-v2-intro-media {width: min(100%,720px);min-height: 420px;margin: 0 auto;}
	.about-v2-honor-list {gap: 36px;}
	.about-v2-tech-grid {grid-template-columns: repeat(2,minmax(0,1fr));}
	.about-v2-strength-item,.about-v2-strength-item.reverse {grid-template-columns: 1fr;}
	.about-v2-strength-item.reverse .about-v2-strength-img {order: 0;}
	.about-v2-strength-img {height: 280px;}
}
@media (max-width: 992px) {
	.about-channel-hero {min-height: auto;}
	.about-channel-inner,.about-channel-inner.has-form,.about-channel-inner.no-form {grid-template-columns: 1fr;gap: 28px;min-height: auto;padding: 104px 20px 42px;}
	.about-channel-copy {max-width: 760px;}
	.about-channel-form-card {width: min(100%,390px);justify-self: start;}
}
@media (max-width: 768px) {
	.about-channel-mask {background: linear-gradient(180deg,rgba(17,28,45,.86) 0%,rgba(17,28,45,.72) 58%,rgba(17,28,45,.66) 100%);}
	.about-channel-inner,.about-channel-inner.has-form,.about-channel-inner.no-form {padding: 94px 18px 34px;}
	.about-channel-copy h1 {font-size: 30px;}
	.about-channel-copy p {font-size: 14px;line-height: 1.8;margin-bottom: 20px;}
	.about-channel-btn {height: 36px;min-width: 106px;padding: 0 20px;}
	.about-channel-form-card {width: 100%;padding: 22px 18px 20px;}
	.about-channel-form-title strong {font-size: 20px;}
	.about-channel-form-title span {width: 30px;}
	.about-channel-code-row {grid-template-columns: minmax(0,1fr) 96px;gap: 8px;}
	.about-channel-submit {width: 128px;height: 36px;}
	.about-v2-hero {min-height: 520px;}
	.about-v2-hero-content {padding: 108px 18px 54px;}
	.about-v2-hero-content h1 {font-size: 32px;}
	.about-v2-hero-content p {font-size: 15px;line-height: 1.8;}
	.about-v2-intro {padding: 42px 0 48px;}
	.about-v2-intro-grid {padding: 0 18px 18px;border-radius: 0;}
	.about-v2-intro-text h2 {font-size: 27px;line-height: 1.28;}
	.about-v2-intro-text h3 {font-size: 17px;}
	.about-v2-scrolltext {max-height: 230px;}
	.about-v2-actions {gap: 18px;margin-top: 22px;}
	.about-v2-primary-btn {height: 44px;min-width: 142px;padding: 0 20px;font-size: 14px;}
	.about-v2-link-btn {font-size: 14px;}
	.about-v2-intro-media {min-height: 300px;}
	.about-v2-media-main {right: 34px;width: 82%;height: 238px;border-radius: 0 56px 0 56px;}
	.about-v2-media-sub {width: 56%;height: 158px;bottom: 0;border-radius: 44px 0 44px 0;}
	.about-v2-honor-strip {padding: 0 18px;}
	.about-v2-honor-track {padding: 18px 0 0;}
	.about-v2-honor-list {gap: 16px;animation-duration: 26s;}
	.about-v2-honor-item {width: 142px;flex-basis: 142px;}
	.about-v2-honor-item img {height: 96px;}
	.about-v2-honor-item span {font-size: 12px;height: 34px;}
	.about-v2-tech,.about-v2-strength {padding: 56px 0;}
	.about-v2-section-head h2 {font-size: 30px;}
	.about-v2-tech-grid {grid-template-columns: 1fr;gap: 16px;}
	.about-v2-tech-card {min-height: auto;padding: 28px 20px;}
	.about-v2-strength-list {gap: 16px;}
	.about-v2-strength-img {height: 190px;}
	.about-v2-strength-text {padding: 28px 22px;}
	.about-v2-strength-text h3 {font-size: 22px;}
	.about-v2-strength-text p {font-size: 14px;line-height: 1.85;}
	.about-v2-timeline {height: 456px;background-image: url("/static/skin/images/about-v2/about-client-bg-m.jpg");background-size: 390px auto;background-position: center top;padding: 0;}
	.about-v2-timeline-title {display: none;}
	.about-v2-timeline-title h2 {margin-bottom: 12px;font-size: 36px;}
	.about-v2-timeline-title p {font-size: 15px;line-height: 1.8;}
	.about-v2-line-wrap {display: none;}
	.about-v2-partner {padding: 45px 0 35px;}
	.about-v2-partner-title {padding: 0 15px;text-align: left;}
	.about-v2-partner-title h2 {padding-left: 0;font-size: 36px;}
	.about-v2-partner-title p {padding-left: 0;font-size: 15px;}
	.about-v2-partner-show {margin-top: 30px;border: 0;}
	.about-v2-partner-grid {text-align: center;}
	.about-v2-partner-grid div {width: calc(50% - 12px);height: 70px;margin: 0 6px 18px;border: 1px solid #e3e3e3;line-height: 68px;}
	.about-v2-partner-grid img {max-width: 68%;max-height: 90%;}
}
/* ######## About V2 End ######## */



/* ######## Main column - # 1ji pro start # */
/* 1ji- pro - nav */
.promenu-section {width: 100%;background-color: #f5f6fa;display: flex;justify-content: center;padding: 20px 0;}
/* .promenu-wrap {display: flex;justify-content: space-around;align-items: center;} */
.promenu-wrap{display: grid;grid-template-columns: repeat(5, 1fr);gap: 30px;}
.promenu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*width: 180px;*/
	/*height: 100px;*/
	border-radius: 10px;
	transition: all 0.3s ease;
}
.promenu-item i {font-size: 32px;margin-bottom: 10px;transition: all 0.3s ease;}
.promenu-item span {font-size: 16px;transition: all 0.3s ease;text-align: center;}
.promenu-item:hover {background: white;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
.promenu-item:hover i,
.promenu-item:hover span {
	color: var(--primary);
}

/* 1ji- pro - bufen */
.yjpro-item{
	width: 1300px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 20px;
	margin: 4rem auto 0;
}
.promenu-item img{max-width:10rem;}
.yjpro-wrap {display: flex;}
.yjproduct-left {flex: 1;padding-right: 30px;}
.yjproduct-right {display: flex;justify-content: center;align-items: center;}
.yjpro-item:nth-child(2n) .yjpro-wrap{flex-direction: row-reverse;}
.yjpro-item:nth-child(2n) .yjpro-wrap .yjproduct-left {
	padding-right: 0;
	padding-left: 30px;
}
.yjproduct-title {font-size: 28px;margin-bottom: 15px;position: relative;}
.yjpro-item:nth-child(2n) .yjproduct-title{text-align: right;}
.yjpro-item:nth-child(2n) .more-button{float: right;}
.yjproduct-title p{
	position: relative;
	display: inline-block;
	padding-bottom: 2rem;
	margin-bottom: 0;
	border-bottom: 1px solid var(--primary);
	z-index: 10;
}
.title-bg-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #eee;
}
.yjpro-tit-r .title-line{left: initial;right: 0;}
.yjproduct-features {margin-top: 20px;color: var(--text-light);font-size: 16px;line-height: 1.6;}
.yjproduct-features .txt p {
	margin-bottom: 10px;
	position: relative;
	padding-left: 20px;
	font-family: var(--family-text);
}

.yjproduct-features .txt p:before {content: "•";color: var(--primary);font-weight: bold;position: absolute;left: 0;}
.yjpro-application {margin-top: 20px;font-style: italic;color: var(--text-light);border-left: 3px solid var(--primary);padding-left: 15px;}
.yjpro-application span{color: var(--primary);}

.more-button {
	display: inline-block;
	margin-top: 25px;
	width: 146px;
	height: 40px;
	background: var(--primary);
	color: white;
	text-align: center;
	line-height: 40px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.more-button:hover {background: var(--primary-dark);transform: translateY(-2px);}
.yjpro-item .yjproduct-image{height:auto}
.yjproduct-image {
	width: 527px;
	height: 228px;
	/*background: linear-gradient(45deg, #3498db, #2c3e50);*/
	border: 6px solid #f5f6fa;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: relative;
	display: flex
    justify-content: center;
    align-items: center;
}
.yjproduct-image img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* @media */
@media (max-width: 1400px) {
	.yjpro-item,.promenu-item{width: 100%;}
}
@media (max-width: 992px) {
   .yjproduct-image,.yjproduct-image{width: 100%;x}
   .yjproduct-image{margin-top: 2rem;}
   .promenu-wrap {flex-wrap: wrap;}
   .yjpro-wrap,.yjproduct-right{display:block;}
   .yjpro-item:nth-child(2n) .yjproduct-title{text-align: left;}
   .yjpro-item:nth-child(2n) .more-button{float: initial;}
   .yjpro-item:nth-child(2n) .yjpro-wrap .yjproduct-left{padding-left: 0;}
   .yjproduct-left{padding-right: 0;}
   .promenu-wrap{grid-template-columns: repeat(4, 1fr);}
}
@media (max-width: 480px) {
	.promenu-wrap{grid-template-columns: repeat(2, 1fr);}
}
/* ######## Main column - # 1ji pro End # */



/* ######## Main column - # pro - list Start #*/
.prolist-wrap {display: flex;gap: 30px;}
.pro-list{display: flex;flex-wrap: wrap;justify-content: flex-start;align-content: flex-start;gap: 15px;}
.pro-item {width: 335px;position: relative;}
.pro-item a:hover .title{color: var(--primary);}
.pro-item .pro-top{background: #f4f4f4;position: relative;padding-top: 40px;}
.pro-item .pro-top img{display: block;margin: auto;height: 189px;}
.pro-desc{padding: 2rem 2rem 1rem;font-family: var(--family-text);min-height:129px}
.pro-desc span{display: block;margin-bottom: .5rem;color: var(--primary);}
.hoticon{position: absolute;top: 2rem;left: 2rem;background: url(../images/hot.png);width: 37px;height: 37px;display: block;}
.pro-bottom{border: 1px solid #f4f4f4;padding: 1rem 2rem;}
.pro-bottom .title{min-height: 54px; font-size: 18px;margin-bottom: .5rem;transition: all 0.3s ease;}
.pro-bottom .tags span{
	padding: .3rem 1rem;
	border: 1px solid #f4f4f4;
	border-radius: 2rem;
	color: var(--primary-dark);
	font-family: var(--family-text);
}
.pro-bottom .tags button{border:0;background:transparent;color:inherit;font:inherit;padding:0;cursor:pointer}
.selector-detail-tags a{padding:6px 12px;background:#f0f4f8;color:#56677b;border-radius:4px}
/* siderbar - nav */
.sidebar-nav {background: linear-gradient(180deg, #2c3e50 0%, #1a2530 100%);color: #fff;}
.sidebar-header {padding: 25px 20px;border-bottom: 1px solid rgba(255, 255, 255, 0.1);text-align: center;}
.sidebar-header h2 {font-weight: 600;font-size: 22px;display: flex;align-items: center;justify-content: center;}

.sidebar-header h2 i {margin-right: 10px;color: var(--primary);}
.nav-title {padding: 15px 20px;font-size: 13px;text-transform: uppercase;letter-spacing: 1px;color: #9ca9b8;font-weight: 600;}

.nav-item {border-bottom: 1px solid rgba(255, 255, 255, 0.03);}
.nav-link {
	color: #e6e6e6;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	font-size: 16px;
}
.nav-link:hover {background: rgba(255, 255, 255, 0.05);color: #fff;}
.nav-item.active .nav-link{background: rgba(255, 255, 255, 0.05);}
.nav-link i {margin-right: 12px;font-size: 18px;width: 20px;text-align: center;color: var(--primary);}
.pro-nav-arrow-icon {margin-left: auto;transition: transform 0.3s;}
.nav-link.active .pro-nav-arrow-icon {transform: rotate(90deg);}
.sub-menu {background: rgba(0, 0, 0, 0.2);padding: 0;list-style: none;max-height: 0;overflow: hidden;transition: max-height 0.3s ease-out;}
.sub-menu.show {max-height: 500px;}
.sub-item {border-bottom: 1px solid rgba(255, 255, 255, 0.03);}
.sub-link {
	color: #b3b3b3;
	padding: 12px 20px 12px 50px;
	display: block;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 14px;
	position: relative;
}
.sub-link:before {
	content: "";
	position: absolute;
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--primary);
}
.sub-link:hover {color: #fff;background: rgba(255, 255, 255, 0.05);}
@media (max-width: 1440px) {
	.pro-list{justify-content: flex-start;}
	.pro-item{width: 32%;}
}
@media (max-width: 992px) {
	.sidebar-nav .sidebar {width: 100%;height: auto;position: relative;}
	.sidebar-nav,.pro-item{width: 100%;}
	.sj-none{display: none;}
}
/* ######## Main column - # pro - list End #*/



/* ######## Main column - # pro - show Strat #*/
 /* Product Section */
.show-pro-section {padding: 50px 0;}
.selector-detail-page{padding:30px 0 70px}.selector-detail-head{display:grid;grid-template-columns:minmax(320px,46%) 1fr;gap:42px;background:#fff;padding:30px;border-radius:10px;box-shadow:var(--shadow)}.selector-detail-media{background:#f2f5f8;min-height:360px;display:flex;align-items:center;justify-content:center}.selector-detail-media img{display:block;width:100%;height:360px;object-fit:contain}.selector-detail-summary{padding:22px 8px}.selector-detail-summary h1{font-size:32px;line-height:1.35;margin:14px 0}.selector-detail-type{color:#f6821f;font-weight:700}.selector-detail-tags{display:flex;flex-wrap:wrap;gap:8px;margin:24px 0}.selector-detail-tags span{padding:6px 12px;background:#f0f4f8;color:#56677b;border-radius:4px}.selector-detail-contact{display:inline-flex;gap:8px;align-items:center;margin-top:18px;padding:12px 20px;background:#f6821f;color:#fff;border-radius:4px}.selector-detail-content{display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:24px;margin-top:24px}.selector-detail-main article,.selector-detail-aside{background:#fff;padding:28px;border-radius:10px;box-shadow:var(--shadow);margin-bottom:20px}.selector-detail-main h2,.selector-detail-aside h2{margin:0 0 16px;color:#20344b}.selector-detail-main article>div{color:#637286;line-height:1.9}.selector-detail-aside{height:max-content}.selector-detail-aside>span{color:#f6821f;font-weight:700}.selector-detail-aside p{color:#637286;line-height:1.8}.selector-detail-aside a{color:#f6821f;font-weight:700}.selector-detail-form-anchor{height:1px}
.show-pro-con {display: grid;grid-template-columns: 1fr 1fr;gap: 40px;}
@media (max-width: 768px) {
	.show-pro-con {display:initial; grid-template-columns: 1fr;}
	.show-pro-section{padding:0}
}
.product-gallery {background: white;border-radius: 12px;box-shadow: var(--shadow);max-width: 692.5px;}
.main-image {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	padding: 20px;
	position: relative;
	cursor: zoom-in;
}

.main-image img {max-width: 100%;max-height: 100%;object-fit: contain;}
.thumbnails {display: flex;padding: 15px;border-top: 1px solid var(--border);overflow-x: auto;}
.thumbnail {width: 80px;height: 80px;margin-right: 10px;border: 2px solid transparent;border-radius: 6px;overflow: hidden;cursor: pointer;flex-shrink: 0;}
.thumbnail.active {border-color: var(--accent);}
.thumbnail img {width: 100%;height: 100%;object-fit: cover;}

/*qie huan an niu*/
	.lbcpzy-btn {
	  position: relative; 
	}
	
	.lbcpzy-btn .thumbnails {
	  display: flex;
	  gap: 8px; 
	  overflow-x: hidden; 
	  /* padding: 8px 30px; */
	  margin: 0 50px;
	  position: relative;
	  scroll-behavior: smooth; 
	}
	
	.lbcpzy-btn .thumbnails img {
	  border: 1px solid #eee; 
	  border-radius: 4px; 
	  padding: 2px; 
	  transition: border-color 0.3s; 
	  cursor: pointer;
	}
	
	.lbcpzy-btn .thumbnails img:hover {
	  border-color: #ccc;
	}
	.lbcpzy-btn .thumb-btn {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%); 
	  width: 32px;
	  height: 32px;
	  border-radius: 50%; 
	  background: #333; 
	  color: #fff; 
	  font-size: 20px; 
	  line-height: 32px; 
	  text-align: center;
	  cursor: pointer;
	  z-index: 10; 
	  display: none; 
	  box-shadow: 0 3px 10px rgba(0,0,0,0.2); 
	  transition: all 0.3s ease;
	  border: none; 
	}
	
	.lbcpzy-btn .thumb-btn.prev {
	  left: 20px; 
	  padding-right: 3px; 
	}
	
	.lbcpzy-btn .thumb-btn.next {
	  right: 20px; 
	  padding-left: 3px; 
	}
	
	.lbcpzy-btn .thumb-btn:hover {
	  background: #ff6b35; 
	  transform: translateY(-50%) scale(1.1);
	  box-shadow: 0 5px 15px rgba(0,0,0,0.3); 
	}
	
	.lbcpzy-btn:hover .thumb-btn {
	  display: block;
	  opacity: 0.9;
	}
	
..lbcpzy-btn .thumb-btn {
  @media (max-width: 768px) {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent; 
}

..lbcpzy-btn .thumbnails {
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
.lbcpzy-btn .thumbnails{overflow-x:auto}
  ..lbcpzy-btn .thumbnails img {
    padding: 4px;
  }
}

..lbcpzy-btn {
  overflow: visible;
}


.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    display: none;
    z-index: 10;
}

.zoom-preview {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 20px;
    width: 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 100;
    background: #fff;
}

.zoom-preview img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: none !important;
    max-height: none !important;
}
	@media (max-width: 1200px) {
	    .zoom-preview {
	        width: 350px;
	        height: 350px;
	    }
	}
	
	@media (max-width: 992px) {
	    .zoom-preview {
	        display: none !important;
	    }
	}

.show-product-info {background: white;border-radius: 12px;padding: 30px;box-shadow: var(--shadow);}
.show-pro-title {font-size: 30px;margin-bottom: 15px;}
.show-pro-sku {padding-bottom: 1rem;margin-bottom: 1rem;border-bottom: 1px solid #eee;}
.show-pro-desc {
	margin-bottom: 1rem;color: #fff;line-height: 1.8;font-family: var(--family-text);
	border-bottom: 1px solid #eee;padding:.5rem 1rem;background: var(--secondary);border-radius: .5rem;
}
.show-pro-desc strong{font-size:16px}
.sg-td-w {margin-bottom: 30px;font-family: var(--family-text);}
.sg-td-w .sgtd-item {margin-bottom: 1rem;}
.sgtd-item .tit{margin-bottom: .5rem; color:var(--primary)}
.sgtd-item .desc p{margin-bottom: 4px;}
.action-buttons {display: flex;gap: 15px;margin-top: 30px;}
.action-buttons .secondary-button {
	flex: 1;
	background: white;
	color: var(--primary);
	border: 2px solid var(--primary);
	text-align: center;
	padding: 10px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}
.action-buttons .secondary-button:hover {background: var(--primary);color: white;transform: translateY(-2px);}

/* text-content */
.text-content,.pages,.show-tags{font-family: var(--family-text);}
.show-tags {border-bottom: 1px solid #eee;padding-bottom: 1rem;margin-bottom: 1rem;}
.show-tags a{padding: 0 1rem;}
.pages{display: flex;justify-content: space-between;}
.show-tags a:hover,.pages a:hover{color: var(--primary);}

.pcon-table .protable-con{
	margin: 2rem auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 5px 15px;
	overflow-x: auto;
}
.pcon-table table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin: 20px 0;
	font-size: 16px;
	min-width: 600px !important;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
}
.pcon-table tr:first-child,
.pcon-table tr:first-child span,
.pcon-table tr:first-child p{
    color: white !important; 
}
.pcon-table tr:first-child {
	/* background: linear-gradient(135deg, #eee 0%, #f6821f 100%); */
	background: #c0504d !important;
	font-weight: 600;
}
        
.pcon-table tr:first-child td {
	padding: 18px 15px;
	/*font-size: 18px;*/
	text-align: center;
	border: none;
	position: relative;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.pcon-table tr:first-child:hover td {
    background-color: initial !important;
}
.pcon-table table,.pcon-table td,.pcon-table tr{height:auto !important}
.pcon-table td {
	padding: 1rem !important;
	text-align: center;
	border: 1px solid #e1e5eb;
	transition: all 0.3s ease;
	/*vertical-align: top;*/
	word-break: break-word;
}
.pcon-table tr:nth-child(even) {background-color: #f8fafc;}
.pcon-table tr:nth-child(odd) {background-color: #ffffff;}
.pcon-table tr:hover {background-color: #f1f7ff;}
.pcon-table td:hover {background-color: #e6f0ff;transform: translateY(-2px);box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);}
.protable-con p {margin-bottom: 0 !important;}
.text-content span{text-wrap-mode: initial !important;}
.text-content img{height:auto !important}
/*.protable-con p {*/
/*	margin-top: 25px;*/
/*	font-size: 18px;*/
/*	line-height: 1.7;*/
/*	color: #4a5568;*/
/*	padding: 15px;*/
/*	background: linear-gradient(to right, #fefefe, #f7f9fc);*/
/*	border-left: 4px solid #2575fc;*/
/*	border-radius: 0 8px 8px 0;*/
/*}*/
@media screen and (max-width: 768px) {
	.pcon-table .protable-con{padding:0;box-shadow:initial;}
    .pcon-table {padding: 15px;border-radius: 8px;}
	.pcon-table table {min-width: 100%;}
    .pcon-table tr:first-child td {padding: 12px 8px;font-size: 16px;}
    .pcon-table td {padding: 10px 8px;}
    .protable-con p {font-size: 16px;padding: 12px;}
    .show-pro-title{font-size:20px}
}
@media screen and (max-width: 480px) {
	.pcon-table {padding: 10px;}
    .pcon-table table {font-size: 12px;}
    .pcon-table tr:first-child td {padding: 10px 5px;}
    .pcon-table td {padding: 8px 5px;}
    .protable-con p {line-height: 1.6;}
}
.protable-con {
	overflow-x: auto;
	margin: 20px 0;
	border-radius: 8px;
}


/* Related Sections */
.related-sections {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 30px 0;
}
.show-pro-section .section-card {background: white;border-radius: 12px;padding: 25px;box-shadow: var(--shadow);}
.show-pro-section .section-title {
	font-size: 20px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}
.show-pro-section .section-title i {margin-right: 10px;color: var(--accent);}

/* Related Products */
.related-products {display: grid;gap: 20px;}
.related-product {display: flex;align-items: center;padding: 15px;border-radius: 8px;transition: all 0.3s ease;}
.related-product:hover {background: #f8fafc;transform: translateX(5px);}

.related-product img {width: 70px;height: 70px;object-fit: cover;border-radius: 6px;margin-right: 15px;}
.related-show-product-info h4 {font-size: 18px;margin-bottom: 5px;}
.related-show-product-info .leibie {color: var(--accent);font-weight: 600;}

/* News Section */
.news-list {display: grid;gap: 20px;}
.showpro-news-item {padding: 15px;border-radius: 8px;transition: all 0.3s ease;}
.showpro-news-item:hover {background: #f8fafc;}
.showpro-news-item h4 {font-size: 18px;margin-bottom: 8px;}
.news-date {font-size: 12px;color: var(--text-light);margin-bottom: 5px;}
.news-excerpt {
	font-size: 14px;
	color: var(--text-light);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-family: var(--family-text);
}

/* Downloads Section */
.download-list {display: grid;grid-template-columns: repeat(2, 1fr);gap: 15px;}
.download-item {
	display: flex;
	align-items: center;
	padding: 15px;
	border-radius: 8px;
	background: #f8fafc;
	transition: all 0.3s ease;
}
.download-item:hover {background: #edf2f7;transform: translateX(5px);}
.download-icon {
	width: 50px;
	height: 50px;
	/* background: var(--primary); */
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 20px;
}
.download-info h4 {font-size: 16px;margin-bottom: 5px;}
.download-info .file-size {font-size: 12px;color: var(--text-light);}
.down-xz{flex: 3;text-align: right;color: #999;font-family: var(--family-text);}
.down-xz i{margin-right: 5px;}
/* Responsive adjustments */
@media (max-width: 768px) {
	.action-buttons {flex-direction: column;}
	.main-image {height: auto;}
	.download-list{grid-template-columns: repeat(1, 1fr);}
}
.pos-dw{border-bottom: 1px solid #eee;padding: 20px 0 10px; font-family: var(--family-text);}
/* ######## Main column - # pro - show End #*/



/* ######## Main column - # zt - page start # */
.zt-module-1 {padding-top: 5rem;padding-bottom: 5rem;background: #fff;}
.zt-pro-grid {display: grid;grid-template-columns: repeat(2, 1fr);gap: 30px;}
.zt-pro-card {
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	display: flex;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zt-pro-card:hover {transform: translateY(-5px);box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);}
.zt-pro-left {width: 48%;padding: 25px 15px 0 20px;border-right: 1px solid #f0f0f0;}
.zt-pro-title {font-size: 18px;margin-bottom: 15px;transition: color 0.3s ease;}
.zt-pro-card:hover .zt-pro-title {color: var(--primary);}
.zt-title-line {height: 1px;background: #eeeeee;margin-bottom: 20px;}
.zt-pro-image {
	width: 277px;
	height: 174px;
	/*background: linear-gradient(45deg, #3498db, #2c3e50);*/
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: 600;
}
.zt-pro-right {width: 52%;padding: 25px 5px 0 15px;position: relative;}
.info-section {margin-bottom: 25px;}
.section-header {display: flex;align-items: center;margin-bottom: 5px;}

.icon-circle {
	width: 32px;
	height: 32px;
	background: #d5d5d5;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 12px;
	flex-shrink: 0;
}

.icon-circle i {color: #e74c3c;font-size: 16px;}
.zt-pro-right .section-title {font-size: 18px;font-weight: 600;}
.zt-pro-right .section-content {padding-left: 44px;font-family: var(--family-text);}
.param-wrap{display: flex;flex-wrap: wrap}
.param-item {display: flex;align-items: center;margin-bottom: 8px;padding-left: 44px;}
.param-dot {
	width: 6px;
	height: 6px;
	background: var(--primary);
	border-radius: 50%;
	margin-right: 10px;
	flex-shrink: 0;
}

.param-text {color: #999;margin-bottom: 0;font-family: var(--family-text);}
.zt-pro-card a.zl-r-top{position: absolute;top: 0;right: 0;z-index: 999;}
.arrow-triangle {
	border-style: solid;
	border-width: 0 70px 70px 0;
	border-color: transparent #eee transparent transparent;
	transition: border-color 0.3s ease;
}
.zt-pro-card:hover .arrow-triangle {border-color: transparent var(--primary) transparent transparent;}
.arrow-icon {position: absolute;top: 10px;right: 10px;color: white;font-size: 20px;transform: rotate(45deg);}

/* module 2 */
.zt-module-2 {margin-bottom: 40px;}
.zt-pro-grid-2 {display: grid;grid-template-columns: repeat(3, 1fr);gap: 30px;}
.zt-pro-card-2 {
	background: white;
	border: 1px solid #eff3f7;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}
.zt-pro-card-2:hover {transform: translateY(-5px);}
.zt-pro-card-2:hover .zt-pro-title-2{color: var(--primary);}
.zt-pro-image-2 {
	height: 311px;
	background: linear-gradient(45deg, #2c3e50, #4a6580);
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 18px;
	font-weight: 600;
}
.zt-divider {height: 1px;background: #eff3f7;width: 100%;}
.product-info-2 {height: 97px;display: flex;align-items: center;justify-content: center;padding: 0 20px;}
.zt-pro-title-2 {font-size: 18px;text-align: center;}
@media (max-width: 1440px) {
	.container{max-width: 100%;}
	.zt-pro-image{width: 100%;height: auto;}
}
@media (max-width: 1024px) {
	.zt-pro-grid { grid-template-columns: repeat(1, 1fr);}
	.zt-pro-grid-2{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 768px) {
	.zt-pro-card{display: block;}
	.zt-pro-left,.zt-pro-right{width: 100%;}
	.zt-pro-grid-2{grid-template-columns: repeat(1, 1fr);}
}
/* ######## Main column - # zt page End # */



/* ######## Main column - # newslist Start #*/
 .list-dfwrap {display: flex;gap: 30px;}
/* left - news */
.news-list {flex: 1;}
.news-item {width: 1014px;background: white;border-radius: 8px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);padding: 20px;margin-bottom: 30px;position: relative;}
.news-tag {background: #f6821f;color: white;padding: 2px 15px;border-radius: 20px;font-size: 16px;font-weight: 600;}
.news-meta {display: flex;align-items: center;margin-bottom: 15px;color: #666;font-size: 16px;}
.new-divider {width: 3px;height: 22px;background: #f6821f;margin: 0 15px;}
.news-title {font-size: 28px;font-weight: 700;margin-bottom: 20px;transition:var(--transition)}
.news-title:hover{color:var(--primary);}
.news-content {
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 16px;
	font-family: var(--family-text);
}
.newslist-btn {display: flex;align-items: center;font-size: 20px;font-weight: 600;}
.newslist-btn i {margin-left: 10px;color: var(--primary);transition: transform 0.3s ease;}
.news-item a:hover i {transform: translateX(15px);}

/* right - sidebar */
.sidebar {width: 360px;flex-shrink: 0;}
.search-box {width: 100%;height: 65px;background: #f7f5f7;border-radius: 10px;display: flex;align-items: center;padding: 0 20px;margin-bottom: 40px;}
.search-box input {flex: 1;border: none;background: transparent;font-size: 16px;padding: 10px;outline: none;}
.search-box i {color: var(--text-light);font-size: 26px;cursor: pointer;}
.search-box button{border: 0;}
.widget {margin-bottom: 40px;}
.widget-title {font-size: 30px;font-weight: 700;margin-bottom: 25px;position: relative;display: flex;align-items: center;}
.widget-title::after {content: "";flex: 1;height: 2px;background: #e5e5e5;margin-left: 25px;}
.widget-title::before {content: "";position: absolute;left: 51%;width: 27px;height: 6px;background: var(--primary);}
.post-item {display: flex;margin-bottom: 20px;align-items: center;}
.post-img {width: 98px;height_: 93px;border-radius: 8px;object-fit: cover;margin-right: 15px;background: #f3f2f8;overflow: hidden;}
.post-img img{margin: auto;height: 100%;}
.post-content {flex: 1;}
.post-title {font-weight: 600;margin-bottom: 8px;font-size: 17px;}
.post-content a:hover {color: var(--primary);}
.post-date {color: #999;}
.tags {display: flex;flex-wrap: wrap;gap: 10px;}
.tag {background: #f7f5f7;padding: 10px 20px;border-radius: 30px;font-size: 15px;color: var(--text-light);transition: all 0.3s ease;}
.tag:hover {background: var(--primary);color: white;cursor: pointer;}
.pub-contact-card {
	width: 346px;
	height: 461px;
	background:  url('../images/dhp.png') center/cover;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
	color: white;
}
.pub-contact-card .contact-number {
	border: 1px solid white;
	padding: 12px 25px;
	border-radius: 30px;
	margin-bottom: 30px;
	font-size: 18px;
}
.pub-contact-card .contact-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
}
.pub-contact-card .contact-title span:first-child {color: var(--primary);}
.pub-contact-card .contact-button {
	background: var(--primary);
	color: white;
	padding: 18px 35px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.pub-contact-card .contact-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(246, 130, 31, 0.4);
}
@media (max-width: 1400px) {
	.news-item {width: 100%;}
}
@media (max-width: 992px) {
	.list-dfwrap{display: block;}
	.sidebar{width: 100%;}
}
@media (max-width: 768px) {
   .news-title{font-size: 1.8rem;}
   .list-dfwrap.mgt60{margin-top:0}
   .news-meta .news-tag{display:none}
}
/* ######## Main column - # newslist End #*/



/* ######## Main column - # show Start #*/
.show-df {display: flex;margin:40px auto;gap: 30px;}
.show-wrap .news-list {flex: 1;}
.show-wrap .news-meta {display: flex;align-items: center;margin-top: 1rem;margin-bottom: 15px;color: var(--text-light);font-size: 16px;}
.show-divider {width: 3px;height: 22px;background: #f6821f;margin: 0 15px;}
.show-wrap h1{font-size: 4.8rem;}
.show-txt-con {font-family: var(--family-text) !important;font-size: 1.6rem;line-height: 1.8;}
.show-txt-con img{height:auto !important}
.show-txt-con p,.show-txt-con span{text-wrap-mode: initial !important;}
.show-desc{display: flex;margin-bottom: 2rem; background: #f0f2f4;padding: 30px 20px 20px;border-radius: 2rem;}
.show-desc .t-con{padding-left: 3rem;flex: 1;}
.show-desc p{font-family: var(--family-text);font-size: 1.6rem;color: #666;}
.show-desc span{font-size: 18px;}
.show-desc .yh-icon{position: relative; background: #fff;width: 62px;height: 62px;border-radius: 50%;}
.show-desc .yh-icon:before{
	content: "";
	width: 31px;
	height: 24px;
	position: absolute;
	background-image: url(../images/show-icon.png);
	margin: 20px auto 0;
	right: 0;
	left: 0;
}
.show-tags{
	margin-top: 4rem;
	padding-bottom: 3rem;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid #d9dde1;
}
.show-tags .tag{
	background: #f7f5f7;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 15px;
	color: var(--text-light);
	transition: all 0.3s ease;
}
.pages{margin-top: 4rem;display: flex;flex-wrap: wrap;gap: 60px;font-size: 16px;}
.pages strong{margin-bottom: 1rem;display: block;color: var(--primary);}
.pages p{flex: 1;}
.pages p a{font-family: var(--family-text);}
.pages p a:hover{color: var(--primary);}
@media (max-width: 992px) {
	.show-df,.pages{display: block;margin-top:0;padding-top:0}
}
@media (max-width: 768px) {
	.show-wrap h1{font-size: 3.2rem;}
}
/* ######## Main column - # show End #*/



/* ######## Main column - # Contact Us Start #*/
.contact-wrap{display: flex;flex-wrap: wrap;justify-content: space-between;gap: 10px;}
.contact-card{
	position: relative;padding: 5rem 1rem 3rem 3rem;
	width: 340px;height: 298px;border: 1px solid #eee;
	border-radius: 38px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-card:hover {transform: translateY(-15px);}
.contact-card:hover .waib-icon i:before{background: var(--primary);color: #fff;}
.contact-card .title{font-size: 30px;margin-bottom: 1rem;}
.contact-card .subtit{font-size: 15px;font-family: var(--family-text);}
.contact-card .icon{
	position: absolute;bottom: 2rem;
	width: 70px;height: 70px;background: #f0f2f4;
	border-radius: 2rem;display: flex;align-items: center;justify-content: center;
	transition: all 0.3s ease;
}
.tans1:before,.tans1::after{content: "";position: absolute;right: -1px;bottom: 60px;}
.tans2:before,.tans2::after{content: "";position: absolute;right: 60px;bottom: -1px;}
.tans1:before,.tans2:before{
	border-bottom-right-radius: 2rem;
	width: 38px;height: 38px;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	z-index: 2;
}
.tans1::after,.tans2::after{
	width: 22px;height: 22px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	z-index: 1;
}
.waib-icon i{
	position: absolute;
	right: -1px;
	bottom: -1px;
	border-top-left-radius: 2.8rem;
	width: 62px;height: 62px;
	background: #fff;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
}
.waib-icon i:before{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 51px;height: 51px;
	font-size: 2rem;
	background: #f0f2f4;
	color: #4c5d73;
	border-radius: 50%;display: flex;align-items: center;justify-content: center;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.contact-card,.toptit-line{width: 100%;}
}
/* ######## Main column - # Contact Us End #*/



/* ######## Main column - # Faq Start #*/
.faq-wrap {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 10px;}
.faq-card {width: 683px;min-height: 220px;background: white;border-radius: 10px;margin-bottom: 30px;display: flex;position: relative;flex-direction: column;}
.faq-card .expandable{border-radius: 10px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);}
.faq-card .expandable:hover {position: absolute;background: #fff;z-index: 100;}
.faq-card .expandable .faq-content{padding: 35px 25px;}
.faq-content {flex: 1;overflow: hidden;}
.faq-question {display: flex;align-items: flex-start;margin-bottom: 20px;min-height:58px}
.q-circle,.a-letter {width: 36px;height: 36px;border-radius: 50%;display: flex;align-items: center;justify-content: center;margin-right: 15px;flex-shrink: 0;}
.q-circle span,.a-letter span {color: white;font-size: 18px;}
.q-circle{background-color: #a20101;}
.a-letter {background-color: #7c7c7b;}
.faq-question h3 {font-size: 24px;}
.faq-answer {display: flex;margin-bottom: 1rem;color: #666;line-height: 2;}
.answer-text {
font-size: 14px;
	height: 80px;
	font-family: var(--family-text);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.faq-card .expandable:hover .answer-text{-webkit-line-clamp: unset;height: 100%;transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
.faq-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #a20101;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-card:hover .faq-bottom {height: 23px;}
.faq-bottom i {color: white;font-size: 12px;transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
.faq-card:hover .faq-bottom i {transform: rotate(180deg);}
@media (max-width: 1400px) {
	.faq-card {width: 100%;}
	.faq-card .expandable:hover{position: relative;}
}
@media (max-width: 768px) {
	.faq-card {height: auto;min-height: 229px;}
}
/* ######## Main column - # Faq End #*/



/* ######## Main column - # Application Start #*/
.aps-wrap {display: flex;flex-wrap: wrap;justify-content: space-between;gap: 20px;}
.aps-card{width: 32%;/* height: 523px; */background: #fff;padding: 10px;border-radius: 5px;transition: transform 0.3s ease, box-shadow 0.3s ease;}
.aps-card:hover {transform: translateY(-5px);box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);}
.aps-card .image-aps{width: 100%;height: 180px;overflow: hidden;position:relative}
.aps-card .image-aps img{width: 100%;height: auto;position: absolute;top: 50%;left: 0;transform: translateY(-50%);}
.aps-title{font-size: 20px;margin: 15px 0 10px;}
.aps-desc{font-family: var(--family-text);line-height: 1.6;}
.aps-more-btn{display: flex;align-items: center;margin-top: 20px;color: #a20101;font-size: 20px;font-weight: 600;cursor: pointer;}
.aps-more-btn i {margin-left: 10px;transition: transform 0.3s ease;}
.aps-more-btn:hover i {transform: translateX(5px);}
@media (max-width: 1400px) {
	.aps-wrap {width: 100%;}
	.aps-card{width: 32%;}
}
@media (max-width: 992px) {
	.aps-card{width: 100%;height: auto;}
}
/* ######## Main column - # Application End #*/



/* ######## Main column - # public - form Start #*/
.form-bg{position: relative;height: 512px;background: #f6f7fb;background-image: url(../images/form-bg.jpg);background-size: cover;background-size: contain;background-repeat: no-repeat;}
.form-header{text-align: center;}
.form-header img{display: block;padding-top: 23px;margin: auto ;}
.form-header .inq{font-size: 6rem;text-transform: uppercase;}
.form-header p{margin-bottom: 0;font-size: 16px;}

.form-con{display: flex;max-width: 1205px;background: #fff;border-radius: 20px; position: absolute;top: 22rem;left: 0;right: 0;margin: auto;z-index: 999;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);}
.form-img{margin-top: 2rem;}
.form-inpt{width: 58%; padding: 35px 53px 20px 40px;}
.form-inpt input {float: left;margin-right: 4%;margin-bottom: 2%;width: 48%;padding: 20px;}
.form-inpt .form-group:nth-child(2n) input {margin-right: 0;}
.form-inpt textarea {margin-top: .7rem; width: 100%;padding: 25px 25px 45px;}
.form-inpt input,.form-inpt textarea{font-size: 16px;outline: none;background-color: #f5f5f5;border: 0;}
.form-btn{display: inline-block;margin-top: 10px;width: 146px;height: 40px;background: var(--primary);color: white;border: 0;transition: all 0.3s ease;}
.form-btn:hover{background-color: var(--primary-dark);}
@media (max-width: 768px) {
   .form-img{display: none;}
   .form-inpt,.form-inpt input,.form-btn{width: 100%;}
   .form-header .inq{font-size: 4.8rem;}
   .form-inpt{padding: 2.5rem;}
}
/* ######## Main column - # public - form End #*/
.pagination {
    display: table;
    margin: 20px auto;
	padding-left: 0;
	border-radius: 4px;
}
.pagination>li {
    display: inline;
}
.pagination>li>a, .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	z-index: 3;
	color: #fff;
	cursor: default;
    background-color: var(--primary);
    border-color: var(--primary);
}


/* footer */
.footer-bg{background: var(--dark-gray);}
.ft-contact-bar {background: var(--dark);padding: 18px 0;}
.ft-contact-container {
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.ft-contact-item {
	display: flex;
	align-items: center;
	color: var(--white);
	position: relative;
}

.ft-contact-icon {
	font-size: 24px;
	color: var(--primary);
	margin-right: 18px;
}
.fa-lightbulb.ft-contact-icon{
	margin-right: 6px;
}
.vertical-line {
	width: 2px;
	height: 32px;
	background: var(--primary);
	margin-right: 30px;
}
.ft-contact-info {
	display: flex;
	flex-direction: column;
}

.ft-contact-main {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.ft-contact-sub {color: #aaa;}
.contact-separator {display: flex;height: 40px;}
.contact-separator .line {width: 1px;height: 100%;}
.line-1 {background: #000;}
.line-2 {background: #1e1e1e;}

.footer-content {background: var(--dark-gray);padding: 60px 0 0;}
.footer-container {width: 100%;margin: 0 auto;display: grid;grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(120px, .75fr));gap: 40px;padding: 0 20px;}
.footer-column {min-width: 0;padding: 0 15px;}
.footer-column:first-child{min-width: 0;margin-right: 0;}
.footer-logo {width: 25.5rem;margin: 0 auto 25px;}
.qr-code {width: 130px;height: 130px;margin: 0 auto 15px;display: block;}
.ft-qr-email {color: #fff;font-size: 18px;font-weight: 400;margin-bottom: 12px;text-align: left;display: flex;align-items: flex-start;line-height: 1.5;}
.ft-qr-email i {margin-right: 8px;color: var(--primary);font-size: 22px;line-height: 1.5;flex-shrink: 0;}
.ft-contact-phone {font-size: 18px;color: white;margin-bottom: 25px;margin-top: 10px;font-weight: 600;text-align: left;line-height: 1.5;}
.ft-contact-phone .ft-contact-icon {margin-right: 8px;color: var(--primary);font-size: 22px;vertical-align: middle;}
.ft-email-form {position: relative;display: flex;flex-direction: column;}
.ft-email-input {padding: 12px 15px;background: var(--white);border: none;border-radius: 4px;margin-bottom: 10px;font-size: 14px;font-family: var(--family-text);}
.ft-email-input::placeholder {color: #aaa;}
.ft-submit-btn {
	position: absolute;
	top: 2px;
	right: 2px;
	padding: 10px 15px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 14px;
}
.ft-submit-btn:hover {background: var(--primary-dark);}
.ft-nav-title {
	font-size: 18px;
	color: white;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary);
	display: inline-block;
}

.ft-nav-list {list-style: none;}
.ft-nav-list li {margin-bottom: 15px;}
.ft-nav-list a {
	color: #aaa;
	transition: color 0.3s;
	font-size: 14px;
	font-family: var(--family-text);
}

.ft-nav-list a:hover {color: var(--primary);}
.friend-links {margin-top: 30px;}
.friend-links h4 {font-size: 16px;color: white;margin-bottom: 15px;}
.friend-links a {
	display: inline-block;
	color: #aaa;
	text-decoration: none;
	margin-right: 15px;
	margin-bottom: 10px;
	font-size: 13px;
	transition: opacity 0.3s;
	font-family: var(--family-text);
}
.friend-links a:hover {opacity: 0.8;}

/* banquan */
.copyright-bar {
	background: var(--dark-gray);
	padding: 30px 0;
	border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.copyright-container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.social-links {
	display: flex;
	align-items: center;
}
.social-text {
	color: white;
	font-size: 14px;
	margin-right: 20px;
	font-family: var(--family-text);
}
.footer-social-icons {
	display: flex;
	gap: 15px;
}
.social-icon {
	width: 36px;
	height: 36px;
	background: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}
.social-icon i{font-size: 14px;}
.social-icon:hover {background: var(--primary);transform: translateY(-3px);}
.copyright-text {color: #aaa;font-size: 13px;font-family: var(--family-text);}

.p-tel{position: fixed;padding: 15px;bottom: 0px;width: 100%;background: var(--primary-dark);border-radius: 5px;text-align: center;display: none;z-index: 999;}
.p-tel a{float: left;width: 50%;color: #fff;font-size: 16px;font-weight: bold;border-right: 1px solid #fff;display: inline-block;}
.p-tel a:last-child{border: 0;}
@media (max-width: 992px) {
	.ft-contact-container {flex-direction: column;}
	.ft-contact-bar {padding: 0;flex-direction: column;}
	.ft-contact-item {width: 100%;padding: 20px 40px;border-bottom: 1px solid #222;}
	.contact-separator {display: none;}
	.footer-container {flex-direction: column;}
	.footer-column {min-width: 100%;}
	.footer-column:first-child{min-width: 100%;margin-right: 0;}
	.copyright-container {flex-direction: column;text-align: center;gap: 20px;}
	.social-links {justify-content: center;margin-bottom: 15px;}
}

@media (max-width: 576px) {
    .p-tel {display: block !important;}
	.footer-bg{padding-bottom: 54px;}
	.footer-content{padding: 28px 0 0;}
	.footer-container{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 24px 18px;padding: 0 20px;}
	.footer-column{min-width: 0 !important;width: 100%;padding: 0;}
	.footer-column:first-child{grid-column: 1 / -1;min-width: 0 !important;margin-right: 0;}
	.footer-logo{width: 170px;margin: 0 0 18px;}
	.qr-code{display: none;}
	.ft-qr-email{font-size: 14px;line-height: 1.6;margin-bottom: 8px;}
	.ft-qr-email i{font-size: 16px;line-height: 1.6;}
	.ft-contact-phone{font-size: 15px;margin: 10px 0 16px;}
	.ft-email-form{max-width: 100%;}
	.ft-email-input{height: 42px;padding: 10px 76px 10px 12px;margin-bottom: 0;}
	.ft-submit-btn{top: 2px;right: 2px;height: 38px;padding: 0 14px;}
	.ft-nav-title{font-size: 16px;margin-bottom: 12px;padding-bottom: 8px;}
	.ft-nav-list{padding: 0;margin: 0;}
	.ft-nav-list li{margin-bottom: 8px;}
	.ft-nav-list a{display: block;font-size: 13px;line-height: 1.45;color: #c8c8c8;}
	.friend-links{margin-top: 22px;padding: 0 20px;}
	.copyright-bar{padding: 20px 0 68px;}
	.copyright-text{line-height: 1.7;padding: 0 10px;}
	.ft-contact-item {flex-direction: column;text-align: center;}
	.vertical-line {display: none;}
	.ft-contact-icon {margin-right: 0;margin-bottom: 10px;}
	.ft-contact-info {margin-top: 10px;}
}

/* ===== RevSlider 自定义元素兜底 ===== */
rs-module-wrap { display: block; width: 100%; overflow: hidden; }
rs-module { display: block; position: relative; overflow: hidden; }
rs-layer { display: block; }
/* 背景图强制覆盖整个slide,不让natural尺寸撑大 */
rs-slide > .rev-slidebg,
rs-slide > img:first-child {
	position: absolute !important;
	top: 0; left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	z-index: 0;
}
/* 标题强制宽度让中文换行 */
.my-rev-title {
	width: 560px !important;
	max-width: 560px !important;
	white-space: normal !important;
	word-wrap: break-word !important;
}
/* 按钮强制样式匹配参考站 */
.my-rev-btn {
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1 !important;
	padding: 14px 28px !important;
	border-radius: 30px !important;
	background-color: #282828 !important;
	color: #fff !important;
	display: inline-block !important;
	text-decoration: none !important;
}
.my-rev-btn:hover {
	background-color: #F6821F !important;
}

/* RevSlider 导航元素兜底 */
rs-arrows, rs-bullets {
	display: block !important;
	position: absolute !important;
	z-index: 100 !important;
	pointer-events: none;
}
/* 左右箭头：圆形按钮 */
rs-arrow {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	background: rgba(0,0,0,0.05) !important;
	border: 1px solid rgba(0,0,0,0.1);
	color: #282828;
	cursor: pointer !important;
	pointer-events: auto !important;
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%);
	z-index: 100;
	transition: all 0.3s;
}
rs-arrow:hover {
	background: #F6821F !important;
	color: #fff !important;
	border-color: #F6821F !important;
}
rs-arrow.tp-leftarrow { left: 30px; }
rs-arrow.tp-rightarrow { right: 30px; }
rs-arrow::before {
	content: '';
	width: 12px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}
rs-arrow.tp-leftarrow::before { transform: rotate(-135deg); margin-left: 4px; }
rs-arrow.tp-rightarrow::before { transform: rotate(45deg); margin-right: 4px; }

/* 圆点容器 */
rs-bullets {
	bottom: 25px !important;
	left: 50% !important;
	transform: translateX(-50%);
	display: flex !important;
	gap: 10px;
	pointer-events: auto !important;
}
rs-bullet {
	display: block !important;
	width: 10px !important;
	height: 10px !important;
	border-radius: 50% !important;
	background: rgba(0,0,0,0.3) !important;
	cursor: pointer !important;
	transition: all 0.3s;
	pointer-events: auto !important;
}
rs-bullet.selected,
rs-bullet:hover {
	background: #282828 !important;
	width: 26px !important;
	border-radius: 5px !important;
}

/* ===== Elecgreen Style Banner Start ===== */
.eg-banner-wrap {
	overflow: hidden;
	background: #eef0f3;
}
.eg-slider {
	position: relative;
	height: 700px;
	overflow: hidden;
}
.eg-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}
.eg-slide.active { opacity: 1; pointer-events: auto; }

.eg-slide-inner {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	z-index: 1;
}
.eg-text-side {
	flex: 0 0 42%;
	z-index: 2;
	padding: 40px 0;
}

/* 入场动画：初始隐藏 */
.eg-slide .eg-desc,
.eg-slide .eg-btn-discover,
.eg-slide .eg-img-side img { opacity: 0; }

/* 产品图：从右侧遮罩滑入 */
.eg-slide.active .eg-img-side > img:first-child {
	animation: egImgMask 1s cubic-bezier(0.25,0.46,0.45,0.94) 0s forwards;
}
@keyframes egImgMask {
	0%   { opacity: 1; clip-path: inset(0 0 0 100%); transform: translateX(60px); }
	100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

/* 标题逐字：3D旋转飞入（参考RevSlider） */
.eg-title {
	font-size: 55px;
	font-weight: 700;
	line-height: 1.18;
	margin-bottom: 18px;
	color: #282828;
	font-family: var(--family-big-title);
	overflow: hidden;
	perspective: 600px;
}
.eg-char-wrap {
	display: inline-block;
	vertical-align: bottom;
	line-height: 1.18;
	overflow: hidden;
}
.eg-char-inner {
	display: inline-block;
	transform: translateX(105%) rotateY(45deg) rotateZ(90deg);
	opacity: 0;
	will-change: transform, opacity;
}
.eg-slide.active .eg-char-inner {
	animation: egCharIn 1.2s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes egCharIn {
	0%   { transform: translateX(105%) rotateY(45deg) rotateZ(90deg); opacity: 0; }
	30%  { opacity: 1; }
	100% { transform: translateX(0) rotateY(0deg) rotateZ(0deg); opacity: 1; }
}

/* 标签：色块扫描揭示 blocktoright */
.eg-tag {
	position: relative;
	overflow: hidden;
	display: inline-block;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.eg-tag-text { opacity: 0; display: inline-block; }
.eg-tag::after {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--primary);
	transform: translateX(-101%);
}
.eg-slide.active .eg-tag::after {
	animation: egBlockRight 1.2s cubic-bezier(0.76,0,0.24,1) 2.38s forwards;
}
.eg-slide.active .eg-tag-text {
	animation: egReveal 0s linear 2.98s forwards;
}
@keyframes egBlockRight {
	0%   { transform: translateX(-101%); }
	50%  { transform: translateX(0); }
	100% { transform: translateX(101%); }
}
@keyframes egReveal {
	to { opacity: 1; }
}

/* 描述：从左滑入 */
.eg-slide.active .eg-desc {
	animation: egDescIn 1s ease 3.11s forwards;
}
@keyframes egDescIn {
	from { opacity: 0; transform: translateX(-50px); }
	to   { opacity: 1; transform: translateX(0); }
}

/* 按钮：Y轴360°翻转 */
.eg-slide.active .eg-btn-discover {
	animation: egBtnFlip 0.5s cubic-bezier(0.18,0.89,0.32,1.28) 3.86s forwards;
}
@keyframes egBtnFlip {
	0%   { opacity: 0; transform: perspective(600px) rotateY(360deg); }
	30%  { opacity: 1; }
	100% { opacity: 1; transform: perspective(600px) rotateY(0deg); }
}

.eg-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	font-style: italic;
	margin-bottom: 32px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.eg-btn-discover {
	display: inline-block;
	padding: 12px 30px;
	background: #282828;
	color: #fff;
	border-radius: 25px;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s;
}
.eg-btn-discover:hover {
	background: var(--primary);
	color: #fff;
}
.eg-img-side {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
}
.eg-img-side img {
	max-height: 82%;
	max-width: 95%;
	object-fit: contain;
	filter: drop-shadow(0 16px 40px rgba(0,0,0,0.15));
}
/* 绿色圆形徽章 */
.eg-badge-bounce {
	position: absolute;
	width: 203px;
	height: 203px;
	object-fit: contain;
	z-index: 6;
	opacity: 0;
	transform: scale(0.9);
}
.eg-slide:nth-child(1) .eg-badge-bounce { left: 40px; top: 50%; margin-top: -101px; }
.eg-slide:nth-child(2) .eg-badge-bounce { right: -30px; top: 60px; }
.eg-slide:nth-child(3) .eg-badge-bounce { right: 20px; bottom: 60px; }
.eg-slide.active .eg-badge-bounce {
	animation: egBadgeIn 1s ease 0.76s forwards, egBadgeFloat 3s ease-in-out 1.76s infinite alternate;
}
@keyframes egBadgeIn {
	0%   { opacity: 0; transform: scale(0.9); }
	100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes egBadgeFloat {
	0%   { transform: scale(1) translateY(-15px); }
	100% { transform: scale(1) translateY(15px); }
}
/* 箭头（默认隐藏，悬停显示） */
.eg-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0,0,0,0.05);
	border: 1px solid rgba(0,0,0,0.08);
	color: #555;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
}
.eg-slider:hover .eg-arrow {
	opacity: 1;
	visibility: visible;
}
.eg-prev { left: 30px; transform: translateY(-50%) translateX(-10px); }
.eg-next { right: 30px; transform: translateY(-50%) translateX(10px); }
.eg-slider:hover .eg-prev,
.eg-slider:hover .eg-next {
	transform: translateY(-50%) translateX(0);
}
.eg-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
/* 圆点（简洁样式—参考站 hermes） */
.eg-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}
.eg-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0,0,0,0.25);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}
.eg-dot.active {
	background: #282828;
	width: 24px;
	border-radius: 4px;
}
/* 响应式 */
@media (max-width: 1240px) {
	.eg-slider { height: 600px; }
	.eg-title { font-size: 43px; }
}
@media (max-width: 1024px) {
	.eg-slider { height: 500px; }
	.eg-title { font-size: 32px; }
	.eg-text-side { flex: 0 0 50%; }
}
@media (max-width: 778px) {
	.eg-slider { height: 400px; }
	.eg-slide-inner { flex-direction: column-reverse; text-align: center; padding: 20px 0; gap: 0; }
	.eg-text-side { flex: none; max-width: 100%; padding: 0 16px; }
	.eg-img-side { flex: none; height: 180px; }
	.eg-img-side img { animation: none !important; }
	.eg-badge-bounce { display: none; }
	.eg-title { font-size: 24px; }
	.eg-desc { display: none; }
	.eg-arrow { width: 36px; height: 36px; font-size: 14px; }
	.eg-prev { left: 10px; }
	.eg-next { right: 10px; }
}
@media (max-width: 480px) {
	.eg-slider { height: 300px; }
	.eg-title { font-size: 20px; }
	.eg-tag { font-size: 12px; }
	.eg-btn-discover { padding: 8px 20px; font-size: 12px; }
}
/* ===== Elecgreen Style Banner End ===== */


/* ===== Application Scenes Bento ===== */
.app-scenes-section { padding: 60px 0; background: #f7f8fa; }
.app-scenes-section .app-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(220px, auto);
	gap: 20px;
	height: auto;
}
.app-scenes-section .app-bento-card {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f0f3f7;
	border-radius: 16px;
	overflow: hidden;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-scenes-section .app-bento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.app-scenes-section .app-bento-image {
	display: none;
	position: relative;
	flex: 1 1 auto;
	min-height: 180px;
	background-size: cover;
	background-position: center;
	background-color: #1a3a5c;
}
.app-scenes-section .app-bento-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--primary, #F6821F);
	color: #fff;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
}
.app-scenes-section .app-bento-body {
	background: transparent;
	color: #fff;
	padding: 18px 22px 20px;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.app-scenes-section .app-bento-title a { color: inherit; text-decoration: none; }
.app-scenes-section .app-bento-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px 0;
	line-height: 1.3;
	text-align: center;
}
.app-scenes-section .app-bento-desc {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,.92);
	margin: 0 0 12px 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: left;
}
.app-scenes-section .app-bento-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px 16px;
}
.app-scenes-section .app-bento-item {
	display: block;
	color: rgba(255,255,255,.92) !important;
	font-size: 15px;
	line-height: 2;
	text-decoration: none !important;
	border: 0 !important;
	outline: 0 !important;
	background: none !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.2s;
	padding: 0;
	margin: 0;
}
.app-scenes-section .app-bento-item::before,
.app-scenes-section .app-bento-item::after {
	content: none !important;
	display: none !important;
}
.app-scenes-section .app-bento-item:hover {
	color: var(--primary, #F6821F) !important;
}
.app-scenes-section .app-bento-item:nth-child(n) {
	grid-column: auto !important;
	grid-row: auto !important;
}
.app-scenes-section .app-bento-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 50%, transparent 80%);
	pointer-events: none;
}
.app-scenes-section .app-bento-tag { z-index: 2; }
.app-scenes-section .app-bento-body { position: relative; z-index: 2; }
/* Bento Positioning per image 1 */
.app-scenes-section .app-bento-pos-1 { grid-column: 1 / 3; grid-row: 1 / span 2; }
.app-scenes-section .app-bento-pos-2 { grid-column: 3 / 5; grid-row: 1; }
.app-scenes-section .app-bento-pos-3 { grid-column: 3; grid-row: 2; }
.app-scenes-section .app-bento-pos-4 { grid-column: 4; grid-row: 2; }
.app-scenes-section .app-bento-pos-5 { grid-column: 1 / 3; grid-row: 3; }
.app-scenes-section .app-bento-pos-6 { grid-column: 3 / 5; grid-row: 3; }

/* 所有卡片隐藏栏目标题（标题已包含在图片里） */
.app-scenes-section .app-bento-title { display: none; }

/* 小卡片(3,4)：只显示文章列表 */
.app-scenes-section .app-bento-pos-3 .app-bento-desc,
.app-scenes-section .app-bento-pos-4 .app-bento-desc {
	display: none;
}
.app-scenes-section .app-bento-pos-3 .app-bento-body,
.app-scenes-section .app-bento-pos-4 .app-bento-body {
	padding: 14px 16px;
}

@media (max-width: 991px) {
	.app-scenes-section .app-bento {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}
	.app-scenes-section .app-bento-pos-1,
	.app-scenes-section .app-bento-pos-2,
	.app-scenes-section .app-bento-pos-3,
	.app-scenes-section .app-bento-pos-4,
	.app-scenes-section .app-bento-pos-5,
	.app-scenes-section .app-bento-pos-6 {
		grid-column: auto;
		grid-row: auto;
		min-height: 320px;
	}
}
@media (max-width: 600px) {
	.app-scenes-section {padding: 36px 0;}
	.app-scenes-section .container{padding-left: 20px;padding-right: 20px;}
	.app-scenes-section .app-bento { grid-template-columns: 1fr; gap: 16px; }
	.app-scenes-section .app-bento-pos-1,
	.app-scenes-section .app-bento-pos-2,
	.app-scenes-section .app-bento-pos-3,
	.app-scenes-section .app-bento-pos-4,
	.app-scenes-section .app-bento-pos-5,
	.app-scenes-section .app-bento-pos-6 {
		min-height: 300px;
	}
	.app-scenes-section .app-bento-card {border-radius: 12px;}
	.app-scenes-section .app-bento-tag {top: 14px;left: 14px;padding: 5px 12px;font-size: 12px;}
	.app-scenes-section .app-bento-body {padding: 60px 16px 18px;text-shadow: 0 1px 4px rgba(0,0,0,.65);}
	.app-scenes-section .app-bento-desc {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 10px;
		-webkit-line-clamp: 3;
	}
	.app-scenes-section .app-bento-list {grid-template-columns: 1fr;gap: 4px;}
	.app-scenes-section .app-bento-item {
		min-height: 0 !important;
		height: auto !important;
		width: auto !important;
		font-size: 13px;
		line-height: 1.55;
		white-space: nowrap;
		text-overflow: ellipsis;
	}
}
/* ===== Application Scenes Bento End ===== */

/* ===== ind_article (新闻资讯 - 移植自参考站) ===== */
.ind_article {
	background: #fff;
	position: relative;
	margin-bottom: 70px;
}
.ind_article .ind_article-viewport {
	overflow: hidden;
	width: 100%;
}
.ind_article ul.ind_article-list {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	will-change: transform;
}
.ind_article ul li {
	flex: 0 0 calc((100% - 60px) / 3);
	margin-right: 30px;
	padding: 28px 26px;
	box-shadow: inset 0 0 0 4px #f7f6f6;
	overflow: hidden;
	position: relative;
	transition: all .4s ease;
	box-sizing: border-box;
	list-style: none;
}
.ind_article ul li::before,
.ind_article ul li::after {
	box-sizing: inherit;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
}
.ind_article ul li::before {
	border-top: 4px solid #f6821f;
	border-bottom: 4px solid #f6821f;
	-webkit-transform: scale3d(0,1,1);
	transform: scale3d(0,1,1);
	-webkit-transform-origin: left;
	transform-origin: left;
}
.ind_article ul li::after {
	border-left: 4px solid #f6821f;
	border-right: 4px solid #f6821f;
	-webkit-transform: scale3d(1,0,1);
	transform: scale3d(1,0,1);
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}
.ind_article ul li:hover::before,
.ind_article ul li:hover::after {
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s,-webkit-transform 0.4s;
}
.ind_article ul li .name {
	margin: 0 0 25px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.ind_article ul li .name a {
	display: block;
	width: calc(100% - 28px);
	float: left;
	font-size: 18px;
	color: #333;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color 0.3s;
}
.ind_article ul li:hover .name a { color: #f6821f; }
.ind_article ul li .name i {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #333 url(/static/skin/images/morejt2.png) center no-repeat;
	background-size: 70%;
	float: right;
	margin-top: 5px;
	transition: background-color 0.3s;
}
.ind_article ul li:hover .name i { background-color: #f6821f; }
.ind_article ul li .ms {
	font-size: 14px;
	color: #999;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	position: relative;
	z-index: 2;
}
.ind_article ul li .artfot {
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: right;
	font-size: 14px;
	color: #999;
	margin-top: 30px;
	position: relative;
	z-index: 2;
}
.ind_article ul li .artfot {
	background: url(/static/skin/images/artico.png) left center no-repeat;
}
.ind_article .abmore {
	display: block;
	width: 184px;
	height: 50px;
	line-height: 50px;
	margin: 40px auto 0;
	background: #e7eaf1;
	border-radius: 30px;
	font-size: 16px;
	color: #333;
	text-decoration: none;
	position: relative;
	padding-left: 40px;
	transition: all .4s ease;
}
.ind_article .abmore::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	color: #f6821f;
	position: absolute;
	right: 5px;
	top: 5px;
	font-size: 12px;
	transition: all .4s ease;
}
.ind_article .abmore:hover {
	color: #fff;
	background: #f6821f;
}
.ind_article .abmore:hover::after { background: #fff; color: #f6821f; }
@media (max-width: 1079px) {
	.ind_article { margin-bottom: 40px; }
	.ind_article ul li { padding: 20px; }
	.ind_article ul li .name { margin: 0 0 15px; }
	.ind_article ul li .artfot { margin-top: 25px; font-size: 15px; }
	.ind_article .abmore { width: 144px; height: 40px; line-height: 40px; font-size: 16px; padding-left: 30px; }
	.ind_article .abmore::after { width: 30px; height: 30px; }
}
@media (max-width: 767px) {
	.ind_article { margin-bottom: 25px; padding-top: 10px; }
	.ind_article ul li {
		flex: 0 0 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.ind_article ul li .name { margin: 0 0 10px; }
	.ind_article ul li .name a { font-size: 16px; }
	.ind_article .abmore { margin-top: 20px; }
}
/* ===== ind_article End ===== */

/* ===== 合作单位 ===== */
.ind_partners { padding: 60px 0 80px; background: #fff; }
.partners-wrap {
	position: relative;
	padding: 0 60px;
}
.partners-viewport {
	overflow: hidden;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}
.partners-viewport.dragging { cursor: grabbing; }
.partners-track {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	padding: 0;
	margin: 0;
	transition: transform .5s ease;
	will-change: transform;
}
.partners-track.no-anim { transition: none; }
.partner-item {
	flex: 0 0 calc((100% - 24px * 5) / 6);
	margin-right: 24px;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	box-sizing: border-box;
	padding: 14px;
}
.partner-item img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	pointer-events: none;
	filter: grayscale(100%);
	opacity: 1;
}
.partners-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #f6821f;
	color: #fff;
	box-shadow: 0 4px 14px rgba(0,0,0,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 4px 12px rgba(246,130,31,.3);
	transition: opacity .3s, visibility .3s, background .3s, color .3s;
	z-index: 5;
}
.partners-prev { left: 0; }
.partners-next { right: 0; }
.partners-wrap:hover .partners-arrow { opacity: 1; visibility: visible; }
.partners-arrow:hover { background: #d96d10; color: #fff; }
.partners-arrow:disabled { cursor: not-allowed; opacity: .4 !important; }
@media (max-width: 1199px) {
	.partner-item { flex: 0 0 calc((100% - 20px * 4) / 5); margin-right: 20px; height: 110px; }
}
@media (max-width: 991px) {
	.partner-item { flex: 0 0 calc((100% - 16px * 3) / 4); margin-right: 16px; height: 100px; }
	.partners-prev { left: 0; }
	.partners-next { right: 0; }
	.partners-arrow { opacity: 1; visibility: visible; }
}
@media (max-width: 767px) {
	.ind_partners { padding-bottom: 40px; }
	.partner-item { flex: 0 0 calc((100% - 12px * 2) / 3); margin-right: 12px; height: 90px; padding: 10px; }
	.partners-arrow { width: 28px; height: 28px; font-size: 11px; }
}
/* ===== 合作单位 End ===== */

/* ===== 在线客服侧边栏 ===== */
.cs-sidebar {position: fixed;right: 0;top: 50%;transform: translateY(-50%);z-index: 9999;display: flex;align-items: stretch;}
.cs-tab {background: #f6821f;color: #fff;padding: 15px 10px;font-size: 16px;font-weight: 600;letter-spacing: 2px;cursor: pointer;border-radius: 4px 0 0 4px;display: flex;flex-direction: column;align-items: center;justify-content: center;line-height: 1.6;box-shadow: -2px 0 8px rgba(0,0,0,.15);}
.cs-tab:hover {background: #d96f18;}
.cs-arrow {font-size: 18px;margin-top: 6px;font-weight: 700;animation: csArrowBlink 1.2s infinite;}
@keyframes csArrowBlink {0%,100%{opacity:1}50%{opacity:.3}}
.cs-panel {width: 280px;background: #fff;box-shadow: -3px 0 20px rgba(0,0,0,.15);border-radius: 4px 0 0 4px;overflow: hidden;display: none;}
.cs-sidebar.open .cs-panel {display: block;}
.cs-sidebar.open .cs-tab {display: none;}
.cs-header {background: #f6821f;color: #fff;padding: 12px 15px;display: flex;align-items: center;justify-content: space-between;}
.cs-header-icon {margin-right: 8px;font-size: 18px;}
.cs-header-icon i {color: #fff;}
.cs-header-title {flex: 1;font-size: 16px;font-weight: 600;}
.cs-close {font-size: 24px;cursor: pointer;line-height: 1;opacity: .8;}
.cs-close:hover {opacity: 1;}
.cs-body {padding: 20px 15px;max-height: 60vh;overflow-y: auto;}
.cs-section {display: flex;align-items: center;margin-bottom: 12px;padding-bottom: 8px;border-bottom: 1px solid #eee;}
.cs-section-icon {margin-right: 8px;font-size: 16px;}
.cs-section-icon i {color: #999;}
.cs-section-title {font-size: 14px;font-weight: 600;color: #333;}
.cs-section-wx .cs-section-icon i {color: #07c160;}
.cs-info {margin-bottom: 12px;text-align: center;}
.cs-label {font-size: 12px;color: #999;margin: 0 0 2px;}
.cs-value {font-size: 16px;color: #333;margin: 0;font-weight: 500;}
.cs-qr {text-align: center;margin-top: 10px;display: flex;justify-content: center;}
.cs-qr img {width: 160px;height: 160px;border: 1px solid #eee;border-radius: 4px;display: block;margin: 0 auto;}
.cs-footer {padding: 10px 20px 14px;text-align: center;}
.cs-close-btn {width: 100%;padding: 8px 0;background: #1abc9c;color: #fff;border: none;border-radius: 20px;font-size: 15px;font-weight: 600;cursor: pointer;transition: background .2s;}
.cs-close-btn:hover {background: #16a085;}
@media (max-width: 768px) {.cs-sidebar {display: none;}}
/* ===== 在线客服 End ===== */

/* ===== 回到顶部 ===== */
.back-to-top {position: fixed;right: 30px;bottom: 30px;width: 44px;height: 44px;background: #f6821f;color: #fff;border-radius: 50%;display: flex;align-items: center;justify-content: center;font-size: 18px;cursor: pointer;opacity: 0;visibility: hidden;transition: all .3s;z-index: 9998;box-shadow: 0 2px 10px rgba(0,0,0,.2);}
.back-to-top.show {opacity: 1;visibility: visible;}
.back-to-top:hover {background: #d96f18;transform: translateY(-3px);}
/* ===== 回到顶部 End ===== */


/* Site search overlay */
.nav-search-btn {
    background: none;
    border: none;
    color: #111;
    font-size: 18px;
    padding: 8px 10px;
    cursor: pointer;
}
.nav-search-btn:hover { color: var(--primary); }
.main-navbar.fixed .nav-search-btn { color: #333; }
.main-navbar.fixed .nav-search-btn:hover { color: var(--primary); }
.site-search-panel { position: fixed; inset: 0; z-index: 10000; display: none; align-items: flex-start; justify-content: center; padding: 120px 20px 20px; }
.site-search-panel.open { display: flex; }
.site-search-backdrop { position: absolute; inset: 0; padding: 0; border: 0; background: rgba(0,0,0,0.48); cursor: default; }
.site-search-box { position: relative; width: min(620px, 100%); background: #fff; border-radius: 8px; padding: 34px 34px 28px; box-shadow: 0 24px 70px rgba(0,0,0,0.22); }
.site-search-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 0; background: transparent; color: #666; font-size: 20px; cursor: pointer; }
.site-search-close:hover { color: var(--primary); }
.site-search-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: #111; }
.site-search-fields { display: flex; align-items: center; height: 58px; border: 1px solid #e5e5e5; border-radius: 6px; overflow: hidden; background: #fff; }
.site-search-fields input[type="text"] { flex: 1; min-width: 0; height: 100%; border: 0; padding: 0 18px; font-size: 16px; outline: none; }
.site-search-fields button[type="submit"] { width: 64px; height: 100%; border: 0; background: var(--primary); color: #fff; font-size: 18px; cursor: pointer; }
.site-search-fields button[type="submit"]:hover { background: var(--primary-dark); }
.is-inner-page .main-navbar .nav-search-btn { color: #333; }
.is-inner-page .main-navbar .nav-search-btn:hover { color: var(--primary); }
@media (max-width: 575px) {
    .site-search-panel { padding: 96px 14px 20px; }
    .site-search-box { padding: 30px 18px 22px; }
    .site-search-title { font-size: 20px; margin-bottom: 16px; }
.site-search-fields { height: 52px; }
}

/* V2 common inner page banner */
.inner-hero-banner {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	overflow: hidden;
}
.inner-hero-mask {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(9, 24, 44, .78) 0%, rgba(9, 24, 44, .5) 48%, rgba(9, 24, 44, .18) 100%);
}
.inner-hero-content {
	position: relative;
	z-index: 1;
	padding-top: 80px;
	padding-bottom: 48px;
}
.inner-hero-kicker {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	color: #d4aa3b;
	margin-bottom: 12px;
	letter-spacing: 0;
}
.inner-hero-content h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 18px;
}
.inner-hero-content p {
	max-width: 700px;
	font-size: 17px;
	line-height: 1.85;
	color: rgba(255,255,255,.88);
}
.news-channel-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	margin-bottom: -8px;
}
.news-channel-nav a {
	min-width: 128px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	border: 1px solid #e5e9f0;
	border-radius: 4px;
	background: #fff;
	color: #27384d;
	font-weight: 700;
	transition: all .25s ease;
}
.news-channel-nav a:hover,
.news-channel-nav a.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(246,130,31,.22);
}
.news-aggregate {
	padding: 54px 0 82px;
	background: #f6f8fb;
}
.news-agg-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 30px;
}
.news-agg-head span,
.news-agg-section-head span {
	display: block;
	color: #d4aa3b;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.news-agg-head h2 {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.24;
	color: #22354d;
}
.news-agg-head p {
	max-width: 560px;
	margin: 0;
	font-size: 15px;
	line-height: 1.85;
	color: #6c7788;
}
.news-agg-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(360px, .6fr);
	gap: 26px;
	align-items: stretch;
}
.news-agg-main,
.news-agg-side,
.news-industry-panel {
	background: #fff;
	border: 1px solid #e7ecf2;
	border-radius: 6px;
	box-shadow: 0 16px 38px rgba(25, 42, 68, .07);
}
.news-agg-main,
.news-agg-side {
	padding: 28px;
}
.news-agg-section-head {
	margin-bottom: 20px;
}
.news-agg-section-head h3 {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	color: #22354d;
	margin: 0;
}
.news-agg-section-head-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.news-agg-section-head-row a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #22354d;
	font-weight: 800;
}
.news-agg-section-head-row a:hover {
	color: var(--primary);
}
.news-headline-card {
	display: grid;
	grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: stretch;
}
.news-headline-img,
.news-industry-img {
	display: block;
	background: #edf1f6;
	overflow: hidden;
}
.news-headline-img {
	min-height: 342px;
	border-radius: 4px;
}
.news-headline-img img,
.news-industry-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.news-headline-card:hover .news-headline-img img,
.news-industry-card:hover .news-industry-img img {
	transform: scale(1.05);
}
.news-headline-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.news-agg-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: #8a96a6;
	font-size: 13px;
	font-weight: 700;
}
.news-agg-meta i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #d4aa3b;
}
.news-video-badge {
	display: inline-flex;
	align-items: center;
	height: 22px;
	padding: 0 8px;
	border: 1px solid var(--primary);
	border-radius: 3px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
}
.news-headline-body h3 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.35;
	color: #1f334d;
	margin-bottom: 18px;
}
.news-headline-body a:hover h3,
.news-industry-body a:hover h4,
.news-recommend-item:hover h4 {
	color: var(--primary);
}
.news-headline-body p {
	font-size: 15px;
	line-height: 1.9;
	color: #697789;
	margin-bottom: 28px;
}
.news-agg-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	height: 42px;
	padding: 0 22px;
	border-radius: 4px;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
}
.news-agg-more:hover {
	background: var(--primary-dark);
	color: #fff;
}
.news-recommend-list {
	display: grid;
	gap: 14px;
}
.news-recommend-item {
	display: block;
	padding: 18px 18px 16px;
	border: 1px solid #edf1f5;
	border-radius: 4px;
	background: #f8fafc;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.news-recommend-item:hover {
	border-color: rgba(246,130,31,.45);
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(25, 42, 68, .08);
}
.news-recommend-item h4 {
	font-size: 17px;
	font-weight: 800;
	line-height: 1.55;
	color: #22354d;
	margin: 0;
}
.news-industry-panel {
	margin-top: 28px;
	padding: 28px;
}
.news-headline-panel {
	margin-top: 0;
	margin-bottom: 28px;
}
.news-industry-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.news-headline-grid .news-industry-img {
	height: 205px;
}
.news-channel-columns {
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}
.news-focus-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.news-industry-card {
	border: 1px solid #edf1f5;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.news-industry-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(25, 42, 68, .1);
}
.news-industry-img {
	height: 168px;
}
.news-industry-body {
	padding: 18px 18px 20px;
}
.news-industry-body h4 {
	min-height: 52px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.45;
	color: #22354d;
	margin-bottom: 10px;
}
.news-industry-body p {
	min-height: 50px;
	font-size: 14px;
	line-height: 1.75;
	color: #738195;
	margin: 0;
}
.news-list-main {
	min-width: 0;
}
.sidebar-search-panel {
	flex: 0 0 300px;
}
.news-side-nav {
	display: grid;
	gap: 10px;
}
.news-side-nav .widget-title {
	margin-bottom: 16px;
}
.news-side-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid #edf1f5;
	border-radius: 4px;
	background: #fff;
	color: #22354d;
	font-weight: 800;
}
.news-side-nav a:after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #b3bdca;
}
.news-side-nav a:hover,
.news-side-nav a.active {
	border-color: var(--primary);
	background: var(--primary);
	color: #fff;
}
.news-side-nav a:hover:after,
.news-side-nav a.active:after {
	color: #fff;
}
.news-side-post {
	display: block;
	padding: 0 0 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #edf1f5;
}
.news-side-post span {
	display: block;
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 7px;
}
.news-side-post h4 {
	font-size: 16px;
	line-height: 1.5;
}
.faq-page-wrap {
	padding-bottom: 70px;
}
.select-center-section {
	padding: 76px 0 84px;
	background: #fff;
}
.select-center-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 28px;
}
.select-center-head span {
	display: block;
	color: #d4aa3b;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.select-center-head h2 {
	font-size: 38px;
	font-weight: 800;
	color: #22354d;
	line-height: 1.25;
}
.select-center-head p {
	max-width: 580px;
	font-size: 15px;
	line-height: 1.85;
	color: #66758a;
	margin: 0;
}
.select-filter-box {
	border: 1px solid #e8edf3;
	background: #f8fafc;
	border-radius: 6px;
	padding: 20px 24px;
	margin-bottom: 28px;
}
.select-filter-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
}
.select-filter-row + .select-filter-row {
	border-top: 1px solid #e8edf3;
}
.select-filter-row strong {
	width: 88px;
	color: #22354d;
	font-weight: 800;
}
.select-filter-options {display: contents;}
.select-filter-row button {
	border: 1px solid #dfe6ef;
	background: #fff;
	color: #4d5f74;
	height: 38px;
	padding: 0 16px;
	border-radius: 4px;
	font-weight: 700;
	cursor: pointer;
	transition: all .22s ease;
}
.select-filter-row button:hover,
.select-filter-row button.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.select-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}
.select-product-card {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 6px;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.select-product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 38px rgba(20, 38, 66, .12);
}
.select-product-img {
	height: 210px;
	background: #f2f5f8;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.select-product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.select-product-card:hover .select-product-img img {
	transform: scale(1.05);
}
.select-product-body {
	position: relative;
	padding: 22px 22px 24px;
}
.select-product-hot {display: inline-block;margin-bottom: 8px;color: #f05b37;font-size: 14px;line-height: 1;}
.select-product-tags {display: flex;flex-wrap: wrap;gap: 6px;margin: 0 0 10px;}
.select-product-tags button {border: 0;border-radius: 3px;background: #f2aa22;color: #fff;padding: 5px 9px;font-size: 12px;line-height: 1.2;cursor: pointer;}
.select-product-tags button:hover {background: #df8e08;}
.select-product-cat {
	color: var(--primary);
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 10px;
}
.select-product-body h3 {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.42;
	color: #22354d;
	min-height: 56px;
	margin-bottom: 12px;
}
.select-product-body p {
	font-size: 14px;
	line-height: 1.75;
	color: #6c7788;
	min-height: 72px;
	margin-bottom: 16px;
}
.select-product-body span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #22354d;
	font-weight: 800;
}
.select-product-body span i {
	color: var(--primary);
}
.select-empty {
	display: none;
	padding: 28px;
	text-align: center;
	color: #66758a;
	background: #f8fafc;
	border: 1px dashed #cfd8e4;
	border-radius: 6px;
}
.patent-detail-wrap {
	background: #fff;
	border-radius: 8px;
	padding: 34px;
	box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.patent-detail-head {
	margin-bottom: 24px;
}
.patent-detail-head span {
	display: block;
	color: #d4aa3b;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.patent-detail-head h2 {
	font-size: 30px;
	font-weight: 800;
	color: #22354d;
}
.patent-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.patent-detail-card {
	background: #f8fafc;
	border: 1px solid #e8edf3;
	border-radius: 6px;
	padding: 24px;
	min-height: 180px;
}
.patent-detail-card-main {
	grid-column: span 3;
	background: #122944;
	color: #fff;
}
.patent-detail-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #22354d;
	margin-bottom: 14px;
}
.patent-detail-card-main h3 {
	color: #fff;
}
.patent-detail-card p,
.patent-richtext {
	font-size: 15px;
	line-height: 1.9;
	color: #627287;
}
.patent-detail-card-main p {
	color: rgba(255,255,255,.88);
}
.patent-richtext ul,
.patent-richtext ol {
	padding-left: 20px;
}
.patent-richtext li {
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.inner-hero-banner {
		min-height: 260px;
	}
	.inner-hero-content {
		padding-top: 88px;
		padding-bottom: 34px;
	}
	.inner-hero-content h1 {
		font-size: 32px;
	}
	.inner-hero-content p {
		font-size: 14px;
		line-height: 1.75;
	}
	.news-channel-nav {
		margin-top: 16px;
		gap: 8px;
	}
	.news-channel-nav a {
		min-width: auto;
		flex: 1 1 calc(33.333% - 8px);
		height: 40px;
		padding: 0 10px;
		font-size: 13px;
	}
	.news-aggregate {
		padding: 42px 0 56px;
	}
	.news-agg-head,
	.news-agg-section-head-row {
		display: block;
	}
	.news-agg-head h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}
	.news-agg-layout,
	.news-headline-card,
	.news-industry-grid,
	.news-focus-grid {
		grid-template-columns: 1fr;
	}
	.news-agg-main,
	.news-agg-side,
	.news-industry-panel {
		padding: 20px;
	}
	.news-headline-img {
		min-height: 210px;
	}
	.news-headline-body h3 {
		font-size: 24px;
	}
	.news-industry-img {
		height: 190px;
	}
	.news-industry-body h4,
	.news-industry-body p {
		min-height: auto;
	}
	.sidebar-search-panel {
		width: 100%;
		margin-top: 28px;
	}
	.select-center-section {
		padding: 48px 0 56px;
	}
	.select-center-head {
		display: block;
	}
	.select-center-head h2 {
		font-size: 30px;
		margin-bottom: 12px;
	}
	.select-filter-box {
		padding: 14px;
	}
	.select-filter-row {
		align-items: flex-start;
	}
	.select-filter-row strong {
		width: 100%;
	}
	.select-filter-row button {
		height: 36px;
		padding: 0 12px;
		font-size: 13px;
	}
	.select-product-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.select-product-img {
		height: 190px;
	}
	.select-product-body h3,
	.select-product-body p {
		min-height: auto;
	}
	.patent-detail-wrap {
		padding: 24px 18px;
	}
	.patent-detail-head h2 {
		font-size: 25px;
	}
	.patent-detail-grid {
		grid-template-columns: 1fr;
	}
	.patent-detail-card-main {
		grid-column: auto;
	}
	.patent-detail-card {
		padding: 20px;
		min-height: auto;
	}
}

/* V2 patent products */
.patent-v2-intro-band,.patent-v2-detail-band{padding:82px 0}

.patent-v2-intro-layout,.patent-v2-summary-layout{display:grid;grid-template-columns:230px minmax(0,1fr);gap:72px;align-items:start}
.patent-v2-section-label{padding-top:8px;color:#b58a20;font-size:13px;font-weight:800;text-transform:uppercase}
.patent-v2-intro-layout h2,.patent-v2-summary-layout h2{margin:0 0 22px;color:#26384f;font-size:36px;line-height:1.25;font-weight:800}
.patent-v2-intro-copy,.patent-v2-richtext{color:#66758a;font-size:16px;line-height:1.95}
.patent-v2-intro-copy p,.patent-v2-richtext p{margin:0 0 16px}
.patent-v2-core-band{padding:84px 0 92px;background:#f3f5f8}
.patent-v2-heading{margin:0 0 34px}
.patent-v2-heading>span,.patent-v2-heading>div>span{display:block;margin-bottom:8px;color:#b58a20;font-size:12px;font-weight:800;text-transform:uppercase}
.patent-v2-heading h2{margin:0 0 12px;color:#26384f;font-size:34px;line-height:1.25;font-weight:800}
.patent-v2-heading>p{max-width:720px;margin:0;color:#718095;font-size:15px;line-height:1.8}
.patent-v2-heading-row{display:flex;align-items:flex-end;justify-content:space-between;gap:48px}
.patent-v2-heading-row>p{max-width:520px;text-align:right}
.patent-v2-core-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.patent-v2-core-card{overflow:hidden;border:1px solid #dfe5ec;border-radius:6px;background:#fff;box-shadow:0 12px 32px rgba(20,43,70,.08)}
.patent-v2-core-image{display:block;overflow:hidden;aspect-ratio:4/3;background:#e9edf2}
.patent-v2-core-image img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.patent-v2-core-card:hover .patent-v2-core-image img{transform:scale(1.035)}
.patent-v2-core-body{padding:24px}
.patent-v2-core-body>span{display:block;margin-bottom:12px;color:#f6821f;font-size:12px;font-weight:800}
.patent-v2-core-body h3{min-height:56px;margin:0 0 12px;font-size:20px;line-height:1.4;font-weight:800}
.patent-v2-core-body h3 a{color:#26384f}
.patent-v2-core-body p{min-height:75px;margin:0 0 18px;color:#718095;font-size:14px;line-height:1.75}
.patent-v2-more{display:inline-flex;align-items:center;gap:9px;color:#f6821f;font-size:14px;font-weight:800}
.patent-v2-list-band{padding:84px 0 96px;background:#fff}
.patent-v2-list-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.patent-v2-list-card{border:1px solid #dfe5ec;border-radius:6px;background:#fff;transition:border-color .25s ease,box-shadow .25s ease}
.patent-v2-list-card:hover{border-color:#f6821f;box-shadow:0 10px 28px rgba(20,43,70,.08)}
.patent-v2-list-card>a{display:grid;grid-template-columns:190px minmax(0,1fr);min-height:190px;color:#26384f}
.patent-v2-list-card img{display:block;width:190px;height:100%;object-fit:cover;background:#edf1f5}
.patent-v2-list-card>a>div{padding:24px}
.patent-v2-list-card span{display:block;margin-bottom:8px;color:#b58a20;font-size:11px;font-weight:800;text-transform:uppercase}
.patent-v2-list-card h3{margin:0 0 10px;font-size:19px;line-height:1.45;font-weight:800}
.patent-v2-list-card p{margin:0 0 14px;color:#718095;font-size:14px;line-height:1.65}
.patent-v2-list-card strong{color:#f6821f;font-size:13px}
.patent-v2-detail-hero .inner-hero-content h1{max-width:880px;font-size:46px}
.patent-v2-feature-band{background:#f3f5f8}
.patent-v2-feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.patent-v2-feature-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
.patent-v2-feature-grid-7{grid-template-columns:repeat(4,minmax(0,1fr))}
.patent-v2-feature-card{overflow:hidden;border:1px solid #dfe5ec;border-radius:6px;background:#fff}
.patent-v2-feature-card img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;background:#e9edf2}
.patent-v2-feature-card>div{padding:22px}
.patent-v2-feature-card span,.patent-v2-problem-grid span,.patent-v2-advantage-grid span{display:block;margin-bottom:9px;color:#f6821f;font-size:11px;font-weight:800}
.patent-v2-feature-card h3,.patent-v2-problem-grid h3,.patent-v2-advantage-grid h3{margin:0 0 9px;color:#26384f;font-size:19px;line-height:1.4;font-weight:800}
.patent-v2-feature-card p,.patent-v2-problem-grid p,.patent-v2-advantage-grid p{margin:0;color:#718095;font-size:14px;line-height:1.72}
.patent-v2-summary-band{background:#fff}
.patent-v2-problem-band{background:#26384f}
.patent-v2-heading-light h2{color:#fff}
.patent-v2-problem-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.patent-v2-problem-grid article{min-height:190px;padding:26px;border:1px solid rgba(255,255,255,.16);border-radius:6px;background:rgba(255,255,255,.05)}
.patent-v2-problem-grid h3{color:#fff}
.patent-v2-problem-grid p{color:#c8d2de}
.patent-v2-advantage-band{background:#fff}
.patent-v2-advantage-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.patent-v2-advantage-grid article{min-height:190px;padding:28px 0 12px;border-top:3px solid #f6821f}
.patent-v2-related-band{background:#f3f5f8}
.patent-v2-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.patent-v2-related-card{overflow:hidden;border:1px solid #dfe5ec;border-radius:6px;background:#fff}
.patent-v2-related-card a{display:block;color:#26384f}
.patent-v2-related-card img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;background:#e9edf2}
.patent-v2-related-card div{padding:21px}
.patent-v2-related-card span{display:block;margin-bottom:7px;color:#b58a20;font-size:11px;font-weight:800}
.patent-v2-related-card h3{margin:0 0 9px;font-size:18px;line-height:1.45;font-weight:800}
.patent-v2-related-card p{margin:0;color:#718095;font-size:13px;line-height:1.65}
.patent-v2-form-anchor{position:relative;top:-110px}

@media (max-width:1199px){
	.patent-v2-feature-grid-7{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:991px){
	.patent-v2-intro-layout,.patent-v2-summary-layout{grid-template-columns:180px minmax(0,1fr);gap:36px}
	.patent-v2-core-grid,.patent-v2-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
	.patent-v2-problem-grid,.patent-v2-advantage-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
	.patent-v2-feature-grid,.patent-v2-feature-grid-7{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:767px){
	.patent-v2-intro-band,.patent-v2-detail-band,.patent-v2-core-band,.patent-v2-list-band{padding:54px 0}
	.patent-v2-intro-layout,.patent-v2-summary-layout{grid-template-columns:1fr;gap:18px}
	.patent-v2-heading-row{display:block}
	.patent-v2-heading-row>p{margin-top:14px;text-align:left}
	.patent-v2-core-grid,.patent-v2-list-grid,.patent-v2-related-grid,.patent-v2-problem-grid,.patent-v2-advantage-grid,.patent-v2-feature-grid,.patent-v2-feature-grid-4,.patent-v2-feature-grid-7{grid-template-columns:1fr}
	.patent-v2-list-card>a{grid-template-columns:128px minmax(0,1fr);min-height:150px}
	.patent-v2-list-card img{width:128px}
	.patent-v2-list-card>a>div{padding:18px}
}

/* 专利产品页：参考海思产品详情页的白色图文专题模块 */
.patent-v3-intro{padding:58px 0 62px;background:#fff}
.patent-v3-label{display:block;margin-bottom:10px;color:#c90000;font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase}
.patent-v3-intro h2,.patent-v3-section-head h2{margin:0 0 16px;color:#c90000;font-size:34px;line-height:1.3;font-weight:800}
.patent-v3-intro-copy{width:100%;max-width:none;color:#56677c;font-size:16px;line-height:2}
.patent-v3-intro-copy p{width:100%!important;max-width:none!important}
.patent-v3-intro-copy p{margin:0 0 12px}
.patent-v3-core-band{padding:54px 0 42px;background:#f5f5f5}
.patent-v3-section-head{margin:0 auto 34px;max-width:1390px}
.patent-v3-section-head p{max-width:760px;margin:0;color:#718095;font-size:15px;line-height:1.8}
.patent-v3-feature{display:grid;grid-template-columns:1fr 1fr;min-height:430px;margin:0 auto 48px;overflow:hidden;border-radius:7px;background:#fff}
.patent-v3-feature-reverse .patent-v3-feature-image{order:2}
.patent-v3-feature-image{display:block;min-height:430px;background:#e9edf2}
.patent-v3-feature-image img{display:block;width:100%;height:100%;object-fit:cover}
.patent-v3-feature-copy{display:flex;flex-direction:column;justify-content:center;padding:54px 48px}
.patent-v3-number{display:block;margin-bottom:12px;color:#c90000;font-size:12px;font-weight:800;letter-spacing:.5px}
.patent-v3-feature-copy h3{margin:0 0 16px;color:#c90000;font-size:32px;line-height:1.35;font-weight:800}
.patent-v3-feature-copy p{margin:0;color:#142b48;font-size:16px;line-height:2}
.patent-v3-learn{display:flex;align-items:center;justify-content:flex-end;gap:15px;margin-top:24px;padding-top:14px;border-top:3px dotted #d9dde2;color:#172b45;font-size:14px;font-weight:700}
.patent-v3-learn i{font-size:12px}
.patent-v3-more-band{padding:50px 0 92px;background:#f5f5f5}
.patent-v3-more-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:32px}
.patent-v3-more-item{border-top:1px solid #dfe5ec;background:#fff}
.patent-v3-more-item>a{display:grid;grid-template-columns:180px minmax(0,1fr);min-height:180px;color:#26384f}
.patent-v3-more-item img{display:block;width:180px;height:100%;min-height:180px;object-fit:cover;background:#e9edf2}
.patent-v3-more-item>a>div{padding:24px}
.patent-v3-more-item h3{margin:0 0 10px;font-size:19px;line-height:1.45}
.patent-v3-more-item p{margin:0 0 16px;color:#718095;font-size:14px;line-height:1.75}
.patent-v3-more-item strong{color:#c90000;font-size:13px}

/* 专利详情页：4/6/7 项核心特征主视觉布局 */
.patent-v3-detail-feature-band{padding:82px 0 94px;overflow:hidden;background:#fff}
.patent-v3-detail-feature-band-seven{padding-bottom:3vw}
.patent-v2-summary-band-compact{padding-top:32px}
.patent-v3-detail-heading{margin-bottom:42px;text-align:center}
.patent-v3-detail-heading>span{display:none}
.patent-v3-detail-heading>p{margin-right:auto;margin-left:auto}
.patent-v3-detail-heading h2{margin:0;color:#151b25;font-size:36px;font-weight:700}
.patent-v3-feature-stage{position:relative;display:grid;align-items:stretch;width:100%;margin:0 auto;background:#fff}
.patent-v3-feature-node{position:relative;z-index:2;display:flex;align-items:center;gap:15px;min-width:0;background:transparent}
.patent-v3-feature-node>img{flex:0 0 52px;width:52px;height:52px;padding:9px;border-radius:50%;object-fit:contain}
.patent-v3-feature-node h3{margin:0 0 8px;color:#121a26;font-size:17px;line-height:1.4;font-weight:700}
.patent-v3-feature-node p{margin:0;color:#5f6d7d;font-size:13px;line-height:1.68}
.patent-v3-feature-wheel-labels{display:none}
.patent-v3-feature-media{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;min-width:0;overflow:hidden;background:transparent}
.patent-v3-feature-media img,.patent-v3-feature-media video{display:block;width:100%;height:100%;object-fit:contain}
.patent-v3-feature-stage-4{max-width:1180px;grid-template-columns:250px minmax(500px,1fr) 250px;grid-template-rows:repeat(2,minmax(160px,auto));gap:18px 48px;padding:18px 0 8px}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(1){grid-column:1;grid-row:1}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(2){grid-column:1;grid-row:2}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(3){grid-column:3;grid-row:1}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(4){grid-column:3;grid-row:2}
.patent-v3-feature-stage-4 .patent-v3-feature-media{grid-column:2;grid-row:1 / span 2;min-height:390px}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(-n+2){flex-direction:row-reverse;text-align:right}
.patent-v3-feature-stage-4 .patent-v3-feature-node>img{background:#9fc62e}
.patent-v3-feature-stage-4 .patent-v3-feature-node:after{content:"";position:absolute;top:50%;width:42px;border-top:1px solid #aab4bf}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(-n+2):after{right:-46px}
.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(n+3):after{left:-46px}
.patent-v3-feature-stage-4 .patent-v3-feature-node h3{font-size:16px;text-transform:uppercase}
.patent-v3-feature-stage-4 .patent-v3-feature-node p{font-size:13px;line-height:1.6}
.patent-v3-feature-stage-6{max-width:1160px;grid-template-columns:310px minmax(330px,1fr) 310px;grid-template-rows:repeat(3,minmax(126px,auto));gap:16px 56px;padding:16px 0}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(1){grid-column:1;grid-row:1}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(2){grid-column:1;grid-row:2}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(3){grid-column:1;grid-row:3}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(4){grid-column:3;grid-row:1}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(5){grid-column:3;grid-row:2}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(6){grid-column:3;grid-row:3}
.patent-v3-feature-stage-6 .patent-v3-feature-media{grid-column:2;grid-row:1 / span 3;min-height:410px;padding:36px;background:linear-gradient(135deg,#5365c8 0%,#243aa5 100%)}
.patent-v3-feature-stage-6 .patent-v3-feature-node{padding:18px 22px;border:1px solid #617dcc;border-radius:3px}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3){flex-direction:row-reverse;text-align:right}
.patent-v3-feature-stage-6 .patent-v3-feature-node h3{display:none}
.patent-v3-feature-stage-6 .patent-v3-feature-node:before{content:attr(data-feature-title);position:absolute;top:50%;z-index:3;display:flex;width:92px;height:78px;margin-top:-39px;align-items:center;justify-content:center;padding:10px;color:#15264d;font-size:12px;line-height:1.35;font-weight:700;text-align:center;background:#fff;clip-path:polygon(24% 0,76% 0,100% 50%,76% 100%,24% 100%,0 50%);filter:drop-shadow(0 0 1px #617dcc)}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3):before{right:-103px}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(n+4):before{left:-103px}
.patent-v3-feature-stage-6 .patent-v3-feature-node:after{content:"";position:absolute;top:50%;width:56px;border-top:1px solid #617dcc}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3):after{right:-57px}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(n+4):after{left:-57px}
.patent-v3-feature-stage-6 .patent-v3-feature-node>img{border-radius:6px;background:#edf1fb}
.patent-v3-feature-stage-6 .patent-v3-feature-node>img{position:absolute;top:50%;z-index:4;width:34px;height:34px;margin-top:-31px;padding:4px;border:0;border-radius:0;background:#fff;object-fit:contain}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3)>img{right:-87px}
.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(n+4)>img{left:-87px}
.patent-v3-feature-stage-6 .patent-v3-feature-node>img+div{padding-top:24px}
.patent-v3-feature-stage-6 .patent-v3-feature-node h3{color:#142548;font-size:15px}
.patent-v3-feature-stage-6 .patent-v3-feature-node p{font-size:12px;line-height:1.55}
.patent-v3-feature-stage-7{display:block;max-width:1100px;height:560px;padding:0}
.patent-v3-feature-stage-7:before{content:"";position:absolute;left:50%;top:55px;width:390px;height:390px;margin-left:-195px;border-radius:50%;background:conic-gradient(from -12deg,#3d16a9 0 13%,#fff 13% 14%,#5520af 14% 27%,#fff 27% 28%,#284fc0 28% 41%,#fff 41% 42%,#118acb 42% 55%,#fff 55% 56%,#07a8d0 56% 69%,#fff 69% 70%,#1398ce 70% 83%,#fff 83% 84%,#255bc2 84% 97%,#fff 97% 100%);-webkit-mask:radial-gradient(circle,transparent 0 48%,#000 49% 100%);mask:radial-gradient(circle,transparent 0 48%,#000 49% 100%)}
.patent-v3-feature-stage-7:after{content:"";position:absolute;left:50%;top:44px;width:410px;height:410px;margin-left:-205px;border:3px solid #cdd2d8;border-radius:50%;pointer-events:none}
.patent-v3-feature-stage-7 .patent-v3-feature-node{position:absolute;width:300px;min-height:88px;display:block}
.patent-v3-feature-stage-7 .patent-v3-feature-node h3{display:none}
.patent-v3-feature-stage-7 .patent-v3-feature-node p{color:#1d2835;font-size:14px;line-height:1.65}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(1){left:20px;top:58px;text-align:right}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(2){right:8px;top:35px;text-align:left}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(3){left:0;top:225px;text-align:right}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(4){right:0;top:190px;text-align:left}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(5){left:55px;top:405px;text-align:right}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(6){right:25px;top:365px;text-align:left}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(7){left:50%;top:485px;width:380px;margin-left:-190px;text-align:center}
.patent-v3-feature-stage-7 .patent-v3-feature-node:not(:nth-of-type(7)):after{content:"";position:absolute;top:48px;width:115px;border-top:1px solid #758ba2}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(1):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(3):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(5):after{right:-120px}
.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(2):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(4):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(6):after{left:-120px}
.patent-v3-feature-stage-7 .patent-v3-feature-node>img{display:none}
.patent-v3-feature-stage-7 .patent-v3-feature-media{position:absolute;left:50%;top:152px;z-index:3;width:196px;height:196px;margin-left:-98px;border:0;border-radius:50%;background:#fff}
.patent-v3-feature-stage-7 .patent-v3-feature-media img,.patent-v3-feature-stage-7 .patent-v3-feature-media video{border-radius:50%;object-fit:contain}
.patent-v3-feature-wheel-labels{position:absolute;left:50%;top:55px;z-index:4;display:block;width:390px;height:390px;margin-left:-195px;border-radius:50%;pointer-events:none}
.patent-v3-feature-wheel-labels span{position:absolute;width:72px;color:#fff;font-size:14px;line-height:1.25;font-weight:700;text-align:center;transform:translate(-50%,-50%)}
.patent-v3-feature-wheel-labels span:nth-child(1){left:50%;top:12%}
.patent-v3-feature-wheel-labels span:nth-child(2){left:79%;top:26%}
.patent-v3-feature-wheel-labels span:nth-child(3){left:88%;top:57%}
.patent-v3-feature-wheel-labels span:nth-child(4){left:68%;top:84%}
.patent-v3-feature-wheel-labels span:nth-child(5){left:34%;top:86%}
.patent-v3-feature-wheel-labels span:nth-child(6){left:12%;top:61%}
.patent-v3-feature-wheel-labels span:nth-child(7){left:20%;top:28%}

.patent-v3-camera{position:relative;text-align:center}
.patent-v3-camera-box{margin:8.75vw 0 6.82vw}
.patent-v3-camera-box picture{display:flex;justify-content:center}
.patent-v3-camera-box img{display:block;width:24.84vw;opacity:1}
.patent-v3-camera-img{position:absolute;top:1vw;left:50%;z-index:2;opacity:0;transform:translateX(-50%);animation:patentCameraIn .6s ease forwards}
.patent-v3-camera-img1{animation-delay:.05s}
.patent-v3-camera-img2{top:2.2vw;left:29.6vw;animation-delay:.12s}
.patent-v3-camera-img3{top:2.2vw;left:43.2vw;animation-delay:.19s}
.patent-v3-camera-img4{top:9.8vw;left:28.2vw;animation-delay:.26s}
.patent-v3-camera-img5{top:9.8vw;left:44.4vw;animation-delay:.33s}
.patent-v3-camera-img6{top:16vw;left:31.6vw;animation-delay:.4s}
.patent-v3-camera-img7{top:16vw;left:40.8vw;animation-delay:.47s}
.patent-v3-camera-img8{top:50%;left:50%;z-index:3;transform:translate(-50%,-50%);animation-delay:.54s}
.patent-v3-camera-line{position:relative}
.patent-v3-camera-img1>.patent-v3-camera-line>picture>img{width:8.8vw}
.patent-v3-camera-img2>.patent-v3-camera-line>picture>img,.patent-v3-camera-img3>.patent-v3-camera-line>picture>img{width:8.18vw}
.patent-v3-camera-img4>.patent-v3-camera-line>picture>img,.patent-v3-camera-img5>.patent-v3-camera-line>picture>img{width:6.3vw}
.patent-v3-camera-img6>.patent-v3-camera-line>picture>img,.patent-v3-camera-img7>.patent-v3-camera-line>picture>img{width:8.54vw}
.patent-v3-camera-text{position:absolute;top:50%;left:50%;width:4vw;color:#fff;font-size:1.56vw;line-height:1.3;font-weight:700;text-align:center;transform:translate(-50%,-50%)}
.patent-v3-camera-img4 .patent-v3-camera-text{width:6vw}
.patent-v3-camera-copy{position:absolute;color:#151b25;font-size:1.145vw;line-height:1.77vw}
.patent-v3-camera-copy p{margin:0;min-width:13vw}
.patent-v3-camera-copy img{display:block;width:20.93vw}
.patent-v3-camera-img1 .patent-v3-camera-copy{top:-7.2vw;left:6.4vw;text-align:right}
.patent-v3-camera-img2 .patent-v3-camera-copy{top:-5.8vw;left:-15vw;text-align:left}
.patent-v3-camera-img2 .patent-v3-camera-copy img{width:19.48vw}
.patent-v3-camera-img3 .patent-v3-camera-copy{top:-2.2vw;left:5.4vw;text-align:right}
.patent-v3-camera-img3 .patent-v3-camera-copy img{width:22.97vw}
.patent-v3-camera-img4 .patent-v3-camera-copy{top:5.6vw;left:-20.6vw;text-align:left}
.patent-v3-camera-img4 .patent-v3-camera-copy img{width:24.67vw}
.patent-v3-camera-img5 .patent-v3-camera-copy{top:2.2vw;left:5.6vw;text-align:right}
.patent-v3-camera-img5 .patent-v3-camera-copy img{width:21.67vw}
.patent-v3-camera-img6 .patent-v3-camera-copy{top:5.2vw;left:-14vw;text-align:left}
.patent-v3-camera-img6 .patent-v3-camera-copy img{width:21.25vw}
.patent-v3-camera-img7 .patent-v3-camera-copy{top:5.6vw;left:4vw;text-align:right}
.patent-v3-camera-img7 .patent-v3-camera-copy img{width:22.98vw}
.patent-v3-camera-img4 .patent-v3-camera-copy p,.patent-v3-camera-img7 .patent-v3-camera-copy p{margin-top:-6.4vw}
.patent-v3-camera-img5 .patent-v3-camera-copy p,.patent-v3-camera-img6 .patent-v3-camera-copy p{margin-top:-5vw}
.patent-v3-camera-center{position:relative;width:8.02vw;height:4.58vw}
.patent-v3-camera-center-shape img{display:block;width:8.02vw}
.patent-v3-camera-media{display:flex;width:8.02vw;height:4.58vw;align-items:center;justify-content:center;overflow:hidden;background:transparent}
.patent-v3-camera-media img,.patent-v3-camera-media video{display:block;width:100%;height:100%;object-fit:contain}
@keyframes patentCameraIn{from{opacity:0;transform:translateX(-50%) scale(.88)}to{opacity:1;transform:translateX(-50%) scale(1)}}
.patent-v3-camera-img8{animation-name:patentCameraCenterIn}
@keyframes patentCameraCenterIn{from{opacity:0;transform:translate(-50%,-50%) scale(.7)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}

@media (max-width:767px){
	.patent-v3-detail-feature-band{padding:46px 0 62px;overflow:hidden}
	.patent-v3-detail-feature-band>.container{width:100%;padding:0}
	.patent-v3-detail-heading{margin-bottom:24px;padding:0 15px}
	.patent-v3-detail-heading h2{font-size:26px}
	.patent-v3-feature-stage-7{display:block;width:89.33vw;height:auto;margin:0 auto;transform:none}
	.patent-v3-camera-box{margin:22.93vw 0 17.06vw}
	.patent-v3-camera-box img{width:57.065vw}
	.patent-v3-camera-img1>.patent-v3-camera-line>picture>img{width:20vw}
	.patent-v3-camera-img2>.patent-v3-camera-line>picture>img,.patent-v3-camera-img3>.patent-v3-camera-line>picture>img{width:18.935vw}
	.patent-v3-camera-img4>.patent-v3-camera-line>picture>img,.patent-v3-camera-img5>.patent-v3-camera-line>picture>img{width:14.4vw}
	.patent-v3-camera-img6>.patent-v3-camera-line>picture>img,.patent-v3-camera-img7>.patent-v3-camera-line>picture>img{width:19.6vw}
	.patent-v3-camera-img1{top:2vw}
	.patent-v3-camera-img2{top:5.2vw;left:28.6vw}
	.patent-v3-camera-img3{top:5.2vw;left:60.2vw}
	.patent-v3-camera-img4{top:22.8vw;left:25.2vw}
	.patent-v3-camera-img5{top:22.8vw;left:63.4vw}
	.patent-v3-camera-img6{top:42vw;left:30.8vw}
	.patent-v3-camera-img7{top:37vw;left:54.8vw}
	.patent-v3-camera-text{width:10vw;font-size:3.73vw;line-height:5.8vw}
	.patent-v3-camera-img4 .patent-v3-camera-text{width:12vw}
	.patent-v3-camera-copy{font-size:3.2vw;line-height:4.8vw}
	.patent-v3-camera-copy p{min-width:28vw}
	.patent-v3-camera-copy img{width:36.27vw}
	.patent-v3-camera-img1 .patent-v3-camera-copy{top:-19.2vw;left:1.4vw;width:44vw}
	.patent-v3-camera-img2 .patent-v3-camera-copy{top:-11.8vw;left:-17vw}
	.patent-v3-camera-img2 .patent-v3-camera-copy img{width:28.53vw}
	.patent-v3-camera-img3 .patent-v3-camera-copy{top:-5.2vw;left:9.4vw}
	.patent-v3-camera-img3 .patent-v3-camera-copy img{width:29.6vw}
	.patent-v3-camera-img4 .patent-v3-camera-copy{top:13.6vw;left:-17.6vw}
	.patent-v3-camera-img4 .patent-v3-camera-copy img{width:25.6vw}
	.patent-v3-camera-img5 .patent-v3-camera-copy{top:15.2vw;left:7.6vw}
	.patent-v3-camera-img5 .patent-v3-camera-copy img{width:24.5vw}
	.patent-v3-camera-img6 .patent-v3-camera-copy{top:14.2vw;left:-18vw}
	.patent-v3-camera-img6 .patent-v3-camera-copy img{width:33.6vw}
	.patent-v3-camera-img7 .patent-v3-camera-copy{top:12.6vw;left:8vw}
	.patent-v3-camera-img7 .patent-v3-camera-copy img{width:33.07vw}
	.patent-v3-camera-img4 .patent-v3-camera-copy p{margin-top:-26vw}
	.patent-v3-camera-img5 .patent-v3-camera-copy p{margin-top:-16vw}
	.patent-v3-camera-img6 .patent-v3-camera-copy p{margin-top:-11vw}
	.patent-v3-camera-img7 .patent-v3-camera-copy p{margin-top:0}
	.patent-v3-camera-center{width:16.8vw;height:9.6vw}
	.patent-v3-camera-center-shape img{width:16.8vw}
	.patent-v3-camera-media{width:16.8vw;height:9.6vw}
}
.patent-v3-feature-stage-custom{grid-template-columns:repeat(3,minmax(0,1fr))}
.patent-v3-feature-stage-custom{gap:22px}
.patent-v3-feature-stage-custom .patent-v3-feature-node{padding:24px;border:1px solid #dfe5ec}
.patent-v3-feature-stage-custom .patent-v3-feature-media{grid-column:1 / -1;grid-row:1}
.patent-v2-summary-layout{display:block;max-width:1200px}
.patent-v2-summary-layout .patent-v2-section-label{display:none}
.patent-v2-summary-layout h2{text-align:center}
.patent-v2-summary-layout .patent-v2-richtext{width:100%;max-width:none}
.patent-v2-richtext ol,.patent-v2-richtext ul,.patent-v2-richtext table,.patent-v2-richtext img{max-width:100%!important}
.patent-v3-problem-band{background:#fff}
.patent-v3-problem-band .patent-v2-problem-grid{gap:0}
.patent-v3-problem-band .patent-v2-problem-grid article{min-height:190px;padding:26px 34px;border:0;border-left:1px solid #cfd6df;border-radius:0;background:transparent;text-align:center}
.patent-v3-problem-band .patent-v2-problem-grid article:first-child{border-left:0}
.patent-v3-problem-band .patent-v2-problem-grid h3{color:#26384f;font-size:18px}
.patent-v3-problem-band .patent-v2-problem-grid p{color:#66758a;font-size:14px;line-height:1.8}
.patent-v3-advantage-band{background:#f3f5f8}
.patent-v3-advantage-band .patent-v2-heading{text-align:center}
.patent-v3-advantage-band .patent-v2-heading>span{display:none}
.patent-v3-advantage-band .patent-v2-advantage-grid{gap:20px}
.patent-v3-advantage-band .patent-v2-advantage-grid article{min-height:210px;padding:30px 26px;border:0;background:#fff;box-shadow:0 10px 28px rgba(20,43,70,.07);text-align:center}
.patent-v3-advantage-band .patent-v2-advantage-grid h3{font-size:18px}
.patent-v3-advantage-band .patent-v2-advantage-grid p{line-height:1.8}
.patent-v4-problem-band{padding:82px 0 92px;background:#fff}
.patent-v4-section-head{max-width:860px;margin:0 auto 44px;text-align:center}
.patent-v4-section-head h2{margin:0;color:#111;font-size:32px;line-height:1.3;font-weight:800}
.patent-v4-problem-grid{width:100%;max-width:1120px;margin:0 auto;grid-template-columns:repeat(3,minmax(0,1fr));gap:0}
.patent-v4-problem-band .patent-v4-problem-grid article{display:flex;min-height:148px;padding:0 44px;border:0;border-left:1px solid #c9cdd2;background:transparent;align-items:flex-start;flex-direction:column;justify-content:flex-start;text-align:center}
.patent-v4-problem-band .patent-v4-problem-grid article:nth-child(3n+1){border-left:0}
.patent-v4-problem-band .patent-v4-problem-grid h3{width:100%;margin:0 0 20px;color:#111;font-size:17px;line-height:1.55;font-weight:800}
.patent-v4-problem-band .patent-v4-problem-grid p{width:100%;margin:0;color:#333;font-size:14px;line-height:1.8}
.patent-v4-advantage-band{padding:86px 0 96px;background:#f5f5f5}
.patent-v4-advantage-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.patent-v4-advantage-band .patent-v4-advantage-grid article{display:flex;min-height:220px;padding:34px 28px;border:1px solid #ededed;border-radius:4px;background:#fff;box-shadow:0 10px 30px rgba(0,0,0,.055);align-items:center;flex-direction:column;justify-content:center;text-align:center;transition:transform .25s ease,box-shadow .25s ease}
.patent-v4-advantage-band .patent-v4-advantage-grid article:hover{transform:translateY(-5px);box-shadow:0 18px 40px rgba(0,0,0,.09)}
.patent-v4-advantage-band .patent-v4-advantage-grid h3{margin:0 0 16px;color:#333;font-size:19px;line-height:1.45;font-weight:800}
.patent-v4-advantage-band .patent-v4-advantage-grid p{margin:0;color:#777;font-size:14px;line-height:1.85}
.patent-v4-related-band{padding:86px 0 96px;background:#fff}
.patent-v4-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.patent-v4-related-grid .pro-item{width:auto;min-width:0}
.patent-v4-related-grid .pro-top{overflow:hidden}
.patent-v4-related-grid .pro-top img{max-width:100%;object-fit:contain}
.patent-v4-related-grid .pro-bottom .tags{display:flex;min-height:22px;flex-wrap:wrap;gap:8px}
.patent-v4-related-grid .pro-bottom .tags button{padding:3px 10px;border:1px solid #e5e7eb;border-radius:14px;color:#56677b;font-size:12px;line-height:1.4}
@media (min-width:768px) and (max-width:1199px){
	.patent-v3-feature-stage-4{grid-template-columns:minmax(180px,1fr) minmax(300px,1.45fr) minmax(180px,1fr);gap:24px 36px;padding:30px 10px}
	.patent-v3-feature-stage-6{grid-template-columns:minmax(205px,1fr) minmax(280px,1.1fr) minmax(205px,1fr);gap:18px 42px;padding:30px 10px}
	.patent-v3-feature-stage-7{height:520px;transform:scale(.9);transform-origin:top center}
	.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(-n+2):after{right:-31px;width:24px}
	.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(n+3):after{left:-31px;width:24px}
	.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3):after{right:-22px;width:21px}
	.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(n+4):after{left:-22px;width:21px}
	.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(1):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(3):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(5):after{right:-31px;width:26px}
	.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(2):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(4):after,.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(6):after{left:-31px;width:26px}
	.patent-v4-problem-band .patent-v4-problem-grid article{padding-right:28px;padding-left:28px}
	.patent-v4-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
.m-patent-v3{background:#f5f5f5}
.m-patent-v3-intro,.m-patent-v3-core,.m-patent-v3-more{padding:34px 15px;background:#fff}
.m-patent-v3-intro{margin-bottom:14px}
.m-patent-v3-label,.m-patent-v3-heading>span{display:block;margin-bottom:8px;color:#c90000;font-size:11px;font-weight:800;letter-spacing:.8px;text-transform:uppercase}
.m-patent-v3-intro h2,.m-patent-v3-heading h2{margin:0 0 14px;color:#c90000;font-size:25px;line-height:1.35}
.m-patent-v3-intro>div{color:#56677c;font-size:14px;line-height:1.85}
.m-patent-v3-intro p{margin:0 0 10px}
.m-patent-v3-core{background:#f5f5f5;padding-top:36px;padding-bottom:14px}
.m-patent-v3-heading{margin-bottom:22px}
.m-patent-v3-heading>p{margin:0;color:#718095;font-size:13px;line-height:1.7}
.m-patent-v3-feature{margin-bottom:20px;background:#fff;border-radius:6px;overflow:hidden}
.m-patent-v3-feature>a{display:block;color:#26384f}
.m-patent-v3-feature img{display:block;width:100%;height:205px;object-fit:cover;background:#e9edf2}
.m-patent-v3-feature>a>div{padding:22px 20px 20px}
.m-patent-v3-feature span{display:block;margin-bottom:9px;color:#c90000;font-size:11px;font-weight:800}
.m-patent-v3-feature h3{margin:0 0 10px;color:#c90000;font-size:23px;line-height:1.4}
.m-patent-v3-feature p{margin:0;color:#142b48;font-size:14px;line-height:1.85}
.m-patent-v3-feature strong{display:flex;justify-content:flex-end;align-items:center;gap:10px;margin-top:18px;padding-top:12px;border-top:3px dotted #d9dde2;color:#172b45;font-size:13px}
.m-patent-v3-more{margin-top:0;padding-top:38px}
.m-patent-v3-more .m-patent-v3-heading{margin-bottom:18px}

@media (max-width:767px){
	.patent-v3-intro{padding:40px 15px 42px}
	.patent-v3-intro h2,.patent-v3-section-head h2{font-size:28px}
	.patent-v3-intro-copy{font-size:14px;line-height:1.85}
	.patent-v3-core-band{padding:42px 15px 22px}
	.patent-v3-section-head{margin-bottom:22px}
	.patent-v3-section-head p{font-size:13px}
	.patent-v3-feature{display:flex;flex-direction:column;min-height:0;margin-bottom:22px}
	.patent-v3-feature-reverse .patent-v3-feature-image{order:0}
	.patent-v3-feature-image{min-height:205px;height:205px}
	.patent-v3-feature-copy{padding:24px 20px 20px}
	.patent-v3-feature-copy h3{font-size:24px}
	.patent-v3-feature-copy p{font-size:14px;line-height:1.85}
	.patent-v3-more-band{padding:40px 15px 54px}
	.patent-v3-more-grid{grid-template-columns:1fr;gap:22px}
	.patent-v3-more-item>a{grid-template-columns:120px minmax(0,1fr);min-height:140px}
	.patent-v3-more-item img{width:120px;min-height:140px}
	.patent-v3-more-item>a>div{padding:18px}
	.patent-v3-more-item h3{font-size:17px}
	.patent-v3-more-item p{font-size:13px}
	.patent-v3-feature-stage-4,.patent-v3-feature-stage-6,.patent-v3-feature-stage-7,.patent-v3-feature-stage-custom{display:flex;flex-direction:column}
	.patent-v3-feature-stage{gap:12px;padding:0;background:transparent}
	.patent-v3-feature-node,.patent-v3-feature-stage-4 .patent-v3-feature-node:nth-of-type(-n+2),.patent-v3-feature-stage-6 .patent-v3-feature-node:nth-of-type(-n+3),.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(1),.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(3),.patent-v3-feature-stage-7 .patent-v3-feature-node:nth-of-type(5){flex-direction:row;text-align:left}
	.patent-v3-feature-node{width:100%!important;padding:18px;border:1px solid #dfe5ec!important;border-radius:4px;background:#fff}
	.patent-v3-feature-node:after{display:none!important}
	.patent-v3-feature-media{order:-1;width:100%;min-height:220px;aspect-ratio:auto!important;border:0!important;border-radius:0!important}
	.patent-v3-problem-band .patent-v2-problem-grid article{border-left:0;border-top:1px solid #cfd6df}
	.patent-v3-problem-band .patent-v2-problem-grid article:first-child{border-top:0}
	.patent-v4-problem-band,.patent-v4-advantage-band,.patent-v4-related-band{padding:54px 0}
	.patent-v4-section-head{margin-bottom:28px;padding:0 15px}
	.patent-v4-section-head h2{font-size:26px}
	.patent-v4-problem-grid,.patent-v4-advantage-grid,.patent-v4-related-grid{grid-template-columns:1fr}
	.patent-v4-problem-band .patent-v4-problem-grid article{min-height:0;padding:24px 15px;border-left:0;border-top:1px solid #c9cdd2}
	.patent-v4-problem-band .patent-v4-problem-grid article:first-child{border-top:0}
	.patent-v4-advantage-band .patent-v4-advantage-grid article{min-height:0}
}

/* News aggregation cards: keep the existing hero and restyle only the content below it. */
.news-aggregate{background:#f4f6fa}
.news-headline-panel,.news-agg-main,.news-agg-side,.news-industry-panel{border:0;background:transparent;box-shadow:none}
.news-headline-panel,.news-agg-main,.news-agg-side,.news-industry-panel{padding:28px 0}
.news-headline-panel{margin-bottom:0}
.news-channel-columns{display:block}
.news-agg-main{margin-bottom:18px}
.news-agg-side{margin-bottom:18px}
.news-agg-section-head{text-align:center}
.news-agg-section-head-row{justify-content:center}
.news-agg-section-head-row>div{text-align:center}
.news-headline-grid,.news-industry-grid,.news-focus-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.news-headline-grid .news-industry-card{min-height:185px;padding:28px 30px;border:0;border-radius:0;background:#fff;box-shadow:0 12px 28px rgba(25,42,68,.08)}
.news-headline-grid .news-industry-img,.news-focus-grid .news-industry-img,.news-industry-panel .news-industry-img{display:none}
.news-headline-grid .news-industry-body,.news-focus-grid .news-industry-body,.news-industry-panel .news-industry-body{padding:0}
.news-headline-grid .news-industry-body h4,.news-focus-grid .news-industry-body h4,.news-industry-panel .news-industry-body h4{min-height:0;margin-bottom:14px;color:#1f3045;font-size:20px;line-height:1.5}
.news-headline-grid .news-industry-body p,.news-focus-grid .news-industry-body p,.news-industry-panel .news-industry-body p{min-height:0;margin:0;color:#68788c;font-size:15px;line-height:1.75}
.news-focus-grid,.news-industry-panel:not(.news-headline-panel) .news-industry-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.news-focus-grid .news-industry-card,.news-industry-panel:not(.news-headline-panel) .news-industry-card{padding:24px 30px;border:0;border-radius:0;background:#e9eef6;box-shadow:none}
.news-focus-grid .news-industry-card:hover,.news-industry-panel:not(.news-headline-panel) .news-industry-card:hover{transform:none;box-shadow:none;background:#e4eaf3}
.news-agg-side .news-recommend-list{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.news-recommend-item{position:relative;min-height:0;padding:0;border:0;border-radius:0;background:#101722;aspect-ratio:16/9;overflow:hidden}
.news-recommend-item:hover{transform:translateY(-4px);border:0;box-shadow:0 14px 30px rgba(25,42,68,.16)}
.news-recommend-img,.news-recommend-img img{display:block;width:100%;height:100%}
.news-recommend-img img{object-fit:cover;transition:transform .35s ease}
.news-recommend-item:hover .news-recommend-img img{transform:scale(1.05)}
.news-recommend-body{position:absolute;right:0;bottom:0;left:0;padding:34px 18px 16px;background:linear-gradient(transparent,rgba(8,14,24,.88));color:#fff}
.news-recommend-body .news-agg-meta{margin:0 0 5px;color:rgba(255,255,255,.78);font-size:12px}
.news-recommend-body .news-agg-meta i{background:#f6821f}
.news-recommend-body h4{margin:0;color:#fff;font-size:18px;line-height:1.45}
.news-home-card{position:relative;padding:28px 26px;overflow:hidden;background:#fff;box-shadow:inset 0 0 0 4px #f7f6f6;box-sizing:border-box;transition:all .4s ease}
.news-home-card::before,.news-home-card::after{position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:inherit;content:"";pointer-events:none}
.news-home-card::before{border-top:4px solid #f6821f;border-bottom:4px solid #f6821f;transform:scale3d(0,1,1);transform-origin:left}
.news-home-card::after{border-right:4px solid #f6821f;border-left:4px solid #f6821f;transform:scale3d(1,0,1);transform-origin:bottom}
.news-home-card:hover::before,.news-home-card:hover::after{transform:scale3d(1,1,1);transition:transform .4s}
.news-home-card-title{position:relative;z-index:2;margin:0 0 25px;overflow:hidden}
.news-home-card-title a{display:block;float:left;width:calc(100% - 28px);overflow:hidden;color:#333;font-size:18px;line-height:30px;white-space:nowrap;text-overflow:ellipsis;transition:color .3s}
.news-home-card:hover .news-home-card-title a{color:#f6821f}
.news-home-card-title i{display:block;float:right;width:20px;height:20px;margin-top:5px;border-radius:50%;background:#333 url(/static/skin/images/morejt2.png) center no-repeat;background-size:70%;transition:background-color .3s}
.news-home-card:hover .news-home-card-title i{background-color:#f6821f}
.news-home-card-copy{position:relative;z-index:2;display:-webkit-box;height:48px;overflow:hidden;color:#999;font-size:14px;line-height:24px;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.news-home-card-foot{position:relative;z-index:2;width:100%;height:30px;margin-top:30px;color:#999;font-size:14px;line-height:30px;text-align:right;background:url(/static/skin/images/artico.png) left center no-repeat}
.news-list .news-item{overflow:hidden;border:0;border-radius:0;box-shadow:inset 0 0 0 4px #f7f6f6;box-sizing:border-box}
.news-list .news-item::before,.news-list .news-item::after{position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:inherit;content:"";pointer-events:none}
.news-list .news-item::before{border-top:4px solid #f6821f;border-bottom:4px solid #f6821f;transform:scale3d(0,1,1);transform-origin:left}
.news-list .news-item::after{border-right:4px solid #f6821f;border-left:4px solid #f6821f;transform:scale3d(1,0,1);transform-origin:bottom}
.news-list .news-item:hover::before,.news-list .news-item:hover::after{transform:scale3d(1,1,1);transition:transform .4s}
.news-list .news-item>*{position:relative;z-index:2}

@media (max-width:768px){
    .news-headline-panel,.news-agg-main,.news-agg-side,.news-industry-panel{padding:20px 0}
    .news-headline-grid,.news-focus-grid,.news-industry-panel:not(.news-headline-panel) .news-industry-grid,.news-agg-side .news-recommend-list{grid-template-columns:1fr}
    .news-headline-grid .news-industry-card{min-height:0;padding:22px 20px}
    .news-focus-grid .news-industry-card,.news-industry-panel:not(.news-headline-panel) .news-industry-card{padding:20px}
    .news-agg-side .news-recommend-list{gap:14px}
    .news-recommend-item{aspect-ratio:16/9}
    .news-recommend-body h4{font-size:17px}
    .news-home-card{min-height:210px;padding:22px 20px}
    .news-list .news-item{border-radius:0;box-shadow:inset 0 0 0 4px #f7f6f6}
}
