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

@media (max-width: 1200px) {
	.banner-container {flex-direction: column;height: auto;}
	.banner-text-content, .banner-pro-imgcon {width: 100%;}
	.banner-pro-imgcon {height: 400px;padding: 30px;}
}
@media (max-width: 768px) {
	.banner-pro-imgcon{height: auto;grid-template-columns:initial}
	.banner-text-content{padding: 0;}
	.banner-slide-content h3{font-size: 4.2rem;}
	.banner-section{margin-top: 0;}
	
}
/* ########### 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: 53px;
	height: 56px;
	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: 2px;}
.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;}
	.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%;}
	.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-box:last-child span,.zab-xg .stat-box:last-child .stat-title{color: var(--text);}
.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 #*/



/* ######## 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);
}
/* 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;}
.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: flex;flex-wrap: wrap;padding: 0 20px;}
.footer-column {flex: 1;min-width: 22rem;padding: 0 15px;}
.footer-column:first-child{min-width: 34rem;margin-right: 6rem;}
.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;}
	.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 .app-bento { grid-template-columns: 1fr; }
}
/* ===== 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 ===== */
