/* ======  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: "RBold", Arial, helvetica, 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;
}

 /* ########### 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%;}
 .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 {
	 /* height: 100px; */
	 padding: 2rem;
	 background: var(--white);
	 box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	 transition: var(--transition);
 }
 .main-navbar.fixed {
	 position: fixed;
	 top: 0;
	 left: 0;
	 right: 0;
	 z-index: 1030;
	 /* height: 80px; */
	 padding: 1rem;
	 animation: navSlideIn 0.4s ease;
 }
 
 @keyframes navSlideIn {
	 from { transform: translateY(-100%); }
	 to { transform: translateY(0); }
 }
 
 .nav-container {display: flex;align-items: center;height: 100%;}
 .logo {width: 228px;}
 .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;}
 .main-menu > li > a {
	 color: var(--text-color);
	 text-decoration: none;
	 font-weight: 500;
	 font-size: 18px;
	 padding: 15px 0;
	 display: block;
	 transition: all 0.3s;
	 position: relative;
 }
 .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);
 }
 
 /* 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: 630px;
	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;
	max-width: 900px;
	padding: 0 20px;
}

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

.main-title {
	font-size: 60px;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* 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 0 0 20px;}
.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;
	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 */
.bgc-application{background: #f3f4f6;}
.application-grid{margin: 0 auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
.scene-card {
	width: 700px;
	height: 240px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	margin-bottom: 40px;
	padding: 8px;
	overflow: visible;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scene-card:hover {transform: translateY(-5px);box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);}

.app-tag {
	position: absolute;
	top: -15px;
	left: 22px;
	width: 157px;
	height: 32px;
	background: #000;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 4px;
}

.ap-conwrap {display: flex;height: 100%;}
.app-textcon {
	flex: 1;
	padding: 20px 20px 20px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.application-txt .title {
	font-size: 18px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.application-txt .description {
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 15px;
	font-family: var(--family-text);
}

.aption-more {
	display: inline-block;
	font-weight: 600;
	font-size: 16px;
	position: relative;
	width: fit-content;
	transition: color 0.2s;
	font-family: var(--family-text);
}
.aption-more::after {content: '→';margin-left: 10px;transition: transform 0.2s;color: var(--primary);}
.aption-more:hover {color: var(--primary);}
.aption-more:hover::after {transform: translateX(3px);}
.image-yycj {width: 349px;border-radius: 6px;overflow: hidden;}
.image-yycj img{height: 100%;}

/* 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) {
	.scene-card{width: 100%;height: auto;}
}
@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;}
	.image-yycj{width: 100%;}
	.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;}
	.ap-conwrap{display: block;}
}
/* ######## 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;}
.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: 412px;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 25px;display: block;}
.ft-contact-phone {font-size: 18px;color: white;margin-bottom: 25px;font-weight: 600;}
.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;}
}



