/* AB模板网 整站模板下载 */
/* 模板：Www.AdminBuy.Cn */
/* 仿站：Fang.AdminBuy.Cn */
/* 素材：Sc.AdminBuy.Cn */
/* js特效：js.AdminBuy.Cn */
/* QQ：9490489 */

/* Modern Design Upgrade - 2025 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800&display=swap');

:root {
	--primary-color: #0F172A;
	/* Deep Navy */
	--secondary-color: #2563EB;
	/* Vibrant Blue */
	--accent-color: #F97316;
	/* Modern Orange */
	--text-main: #334155;
	/* Slate 700 */
	--text-light: #64748B;
	/* Slate 500 */
	--bg-body: #F8FAFC;
	/* Slate 50 */
	--bg-surface: #FFFFFF;
	--border-color: #E2E8F0;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--font-main: 'Inter', sans-serif;
	--font-heading: 'Montserrat', sans-serif;
	--transition: all 0.3s ease;
}

body {
	font-family: var(--font-main);
	color: var(--text-main);
	background-color: var(--bg-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--primary-color);
	font-weight: 700;
}

a {
	transition: var(--transition);
	text-decoration: none;
}


* {
	box-sizing: border-box;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

.main-container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0;
	margin-bottom: 0;
}

.full-main {
	width: 100%;
	/* min-width: 1200px; Removed to allow full width responsiveness */
}

.wap-menu {
	float: right;
	background: none;
	border: 1px solid #333;
	padding: 5px 8px;
	display: none;
}

.wap-menu span {
	display: block;
	width: 20px;
	height: 2px;
	background: #333333;
	margin: 4px 0;
}

/* 首页 */
/* Header */
/* Header */
.head-box {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95) !important;
	/* Default solid for inner pages */
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
	transition: all 0.4s ease;
}

/* Homepage Transparent State */
.head-box.is-home:not(.scrolled) {
	background-color: transparent !important;
	box-shadow: none !important;
	backdrop-filter: none;
}

.head-box.scrolled {
	background-color: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Navigation Colors */
/* Default (Inner Pages) */
.head-box .nav-row ul li a {
	color: var(--text-main);
	text-shadow: none;
}

/* Homepage Transparent */
.head-box.is-home:not(.scrolled) .nav-row ul li a {
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Scrolled State (Same as default) */
.head-box.scrolled .nav-row ul li a {
	color: var(--text-main);
	text-shadow: none;
}

/* Logo & Icons Adaptation */
/* Default (Inner Pages) */
.logo-wrap img {
	filter: none;
}

.search i,
.wap-menu span {
	filter: none;
	background-color: #333;
	/* Default dark for menu spans */
}

/* Homepage Transparent */
.head-box.is-home:not(.scrolled) .logo-wrap img {
	filter: brightness(0) invert(1);
	/* White logo */
}

.head-box.is-home:not(.scrolled) .search i,
.head-box.is-home:not(.scrolled) .wap-menu span {
	filter: brightness(0) invert(1);
	background-color: #fff;
}

.head-box.scrolled .search i {
	filter: none;
}

/* Active State Underline */
.head-box .nav-row ul li a:after {
	background: var(--accent-color);
}

.head-box.is-home:not(.scrolled) .nav-row ul li a:after {
	background: #fff;
}

.head-box.scrolled .nav-row ul li a:after {
	background: var(--accent-color);
}

.head-wrap {
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: center;
	height: 90px;
}

.logo-row {
	display: flex;
	align-items: center;
}

.logo-wrap img {
	height: 50px;
	/* Adjust logo height */
	display: block;
	width: auto;
}

.search i {
	width: 24px;
	height: 24px;
	display: block;
	background: url(../images/search.png) no-repeat center;
	background-size: contain;
	cursor: pointer;
	transition: var(--transition);
	opacity: 0.7;
}

.search i:hover {
	opacity: 1;
	transform: scale(1.1);
}

.search.search-block i {
	background: url(../images/close.png);
}

.search .pc-search-input {
	position: relative;
	display: none;
}

.search.search-block .pc-search-input {
	display: block;
}

.search .pc-search-input .search-in {
	position: absolute;
	right: 0;
	top: 40px;
	z-index: 100;
	width: 300px;
	height: 36px;
	border: 1px solid #333;
	padding: 10px;
}

.search .pc-search-input .search-btn {
	width: 24px;
	height: 24px;
	display: block;
	background: url(../images/search.png);
	position: absolute;
	top: 46px;
	right: 6px;
	z-index: 200;
	border: none;
	background-size: 100%;
}

.web-search {
	display: none;
}

.nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-row ul {
	display: flex;
	gap: 40px;
	/* Use gap instead of padding-right */
}

.nav-row ul li {
	padding-right: 0;
	position: relative;
}

.nav-row ul li a {
	display: block;
	position: relative;
	line-height: 30px;
	padding: 10px 0;
	font-size: 16px;
	/* Reduced from 22px for a cleaner look */
	font-weight: 500;
	color: var(--text-main);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-row ul li a:after {
	content: '';
	width: 100%;
	/* Full width underline */
	height: 2px;
	display: block;
	position: absolute;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
	z-index: -1;
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: right;
	display: block;
	/* Always block, just hidden by scale */
}

.nav-row ul li:hover a {
	color: var(--accent-color);
}

.nav-row ul li:hover a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-row ul li.current-menu-item a {
	color: var(--accent-color);
}

.nav-row ul li.current-menu-item a:after {
	transform: scaleX(1);
}

/* Hero Section */
.home-banner {
	position: relative;
}

.home-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 180px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
	z-index: 10;
	pointer-events: none;
}

#swiper1 {
	height: 85vh;
	/* Modern height */
	min-height: 600px;
}

/* Banner Text Overlay */
.banner-text-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 20;
	background: rgba(0, 0, 0, 0.2);
	/* Slight darken for readability */
}

.banner-text-overlay .text-content {
	max-width: 800px;
	color: #fff;
}

.banner-text-overlay h2 {
	font-size: 4rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
}

.banner-text-overlay p {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	font-weight: 500;
	max-width: 600px;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-banner {
	display: inline-block;
	padding: 15px 40px;
	background: var(--accent-color);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 30px;
	transition: all 0.3s;
	letter-spacing: 1px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-banner:hover {
	background: #fff;
	color: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.banner-text-overlay h2 {
		font-size: 2.5rem;
	}

	.banner-text-overlay p {
		font-size: 1.1rem;
	}
}

#swiper1 .swiper-slide {
	position: relative;
}

#swiper1 .swiper-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.1));
	/* Subtle overlay */
	pointer-events: none;
}

#swiper1 .swiper-slide img.wap-banner {
	display: none;
}

#swiper1 .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

#swiper1 .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

#swiper1 .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 30px;
	border-radius: 6px;
	transition: width 0.3s ease;
}

#swiper1 .swiper-button-next,
#swiper1 .swiper-button-prev {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	backdrop-filter: blur(4px);
	transition: var(--transition);
}

#swiper1 .swiper-button-next:after,
#swiper1 .swiper-button-prev:after {
	font-size: 20px;
}

#swiper1 .swiper-button-next:hover,
#swiper1 .swiper-button-prev:hover {
	background: var(--accent-color);
}

#swiper-sj {
	height: auto;
}

#swiper-sj .swiper-slide img.wap-banner {
	display: none;
}

#swiper-sj .swiper-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

#swiper-sj .swiper-pagination-bullet-active {
	background: #f25f05;
}

#swiper-sj .swiper-button-next,
#swiper-sj .swiper-button-prev {
	color: #fff;
}

/* products */
.text-center {
	text-align: center;
}

.products {
	padding-top: 100px;
	padding-bottom: 120px;
	background-color: var(--bg-body);
	position: relative;
	overflow: hidden;
}

/* Decorative background element */
.products::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
	z-index: 0;
	pointer-events: none;
}

.title-row {
	margin-bottom: 70px;
	position: relative;
	z-index: 1;
}

.title-row .title p {
	font-size: 42px;
	font-weight: 800;
	font-family: var(--font-heading);
	text-transform: uppercase;
	color: var(--primary-color);
	line-height: 1.2;
	margin-bottom: 15px;
	text-align: center;
	letter-spacing: -0.5px;
}

.title-row .title span {
	display: block;
	margin: 0 auto;
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.6;
	text-align: center;
	max-width: 600px;
	font-weight: 500;
}

.products .product-row {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	padding: 0 40px;
	/* Space for arrows */
}

#swiper2 {
	padding: 20px;
	/* Prevent shadow clipping */
	margin: -20px;
	/* Offset padding */
	overflow: hidden;
}

#swiper2 .swiper-slide {
	width: calc(25% - 23px);
	/* Show 4 items */
	margin-right: 30px;
	height: auto;
	display: flex;
}

@media (max-width: 1200px) {
	#swiper2 .swiper-slide {
		width: calc(33.33% - 20px);
		/* Show 3 items */
	}
}

@media (max-width: 992px) {
	#swiper2 .swiper-slide {
		width: calc(50% - 15px);
		/* Show 2 items */
	}
}

@media (max-width: 600px) {
	#swiper2 .swiper-slide {
		width: 100%;
		/* Show 1 item */
		margin-right: 0;
	}
}

#swiper2 .swiper-slide .pro-item {
	width: 100%;
}

#swiper2 .swiper-slide .pro-item a {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: var(--bg-surface);
	padding: 0;
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	/* Bouncy transition */
	border: 1px solid var(--border-color);
}

#swiper2 .swiper-slide .pro-item a:after {
	display: none;
}

#swiper2 .swiper-slide .pro-item a:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

#swiper2 .swiper-slide .pro-item img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
	margin-bottom: 0;
	transition: transform 0.5s ease;
}

#swiper2 .swiper-slide .pro-item a:hover img {
	transform: scale(1.05);
}

#swiper2 .swiper-slide .pro-item p {
	font-size: 18px;
	color: var(--text-main);
	font-weight: 700;
	padding: 25px 20px;
	text-align: center;
	line-height: 1.4;
	height: auto;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	background: #fff;
	position: relative;
	z-index: 1;
}

#swiper2 .swiper-slide .pro-item a:hover p {
	color: var(--accent-color);
}

.product-row .swiper-button-next,
.product-row .swiper-button-prev {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: var(--shadow-md);
	color: var(--primary-color);
	transition: var(--transition);
	top: 50%;
	margin-top: -25px;
	position: absolute;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-row .swiper-button-next:after,
.product-row .swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}

.product-row .swiper-button-next:hover,
.product-row .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
	transform: scale(1.1);
}

.product-row .swiper-button-prev {
	left: 0;
}

.product-row .swiper-button-next {
	right: 0;
}

/* about */
.about {
	padding-top: 120px;
	padding-bottom: 120px;
	background: linear-gradient(to right, #f8fafc 50%, #fff 50%);
	/* Split background */
	position: relative;
}

.about .flex-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 80px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.about .about-img {
	width: 50%;
	height: 600px;
	/* Taller image */
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	position: relative;
}

.about .about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.about .about-img:hover img {
	transform: scale(1.03);
}

.about .about-text {
	width: 50%;
	padding: 0;
	background: transparent;
	color: var(--text-main);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.about .about-text img {
	margin-bottom: 40px;
	max-width: 220px;
	height: auto;
}

.about .about-text p {
	font-size: 18px;
	/* Larger text */
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 50px;
	text-align: left;
}

.about .about-text a {
	width: auto;
	padding: 0 40px;
	height: 56px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	background: var(--primary-color);
	color: #fff;
	border-radius: 28px;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about .about-text a:hover {
	background: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
}

/* solution */
.solution {
	padding-top: 120px;
	padding-bottom: 120px;
	background: url(../images/solution-bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.solution::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
	z-index: 1;
}

.solution .title-row,
.solution .solution-list {
	position: relative;
	z-index: 2;
}

.solution .title-row .title p {
	color: #fff;
}

.solution .title-row .title span {
	color: rgba(255, 255, 255, 0.6);
}

/* Solution Swiper Styles */
.solution-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	/* Remove gap for seamless look */
	margin: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-list .list-item {
	width: 100%;
	padding: 0;
	background: rgba(255, 255, 255, 0.03);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(5px);
	transition: var(--transition);
	overflow: hidden;
	position: relative;
	height: 300px;
	/* Fixed height */
	display: flex;
	flex-direction: column;
}

.solution-list .list-item:last-child {
	border-right: none;
}

.solution-list .list-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(0);
	/* No lift, just highlight */
}

.solution-list .list-item .img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.4;
	transition: var(--transition);
}

.solution-list .list-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
	filter: grayscale(100%);
}

.solution-list .list-item:hover .img {
	opacity: 0.8;
}

.solution-list .list-item:hover img {
	transform: scale(1.1);
	filter: grayscale(0%);
}

.solution-list .list-item p {
	position: relative;
	z-index: 2;
	margin-top: auto;
	/* Push to bottom */
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.solution-list .list-item p a {
	display: block;
	font-size: 20px;
	color: #fff;
	line-height: 1.4;
	padding: 30px 20px;
	text-align: center;
	font-weight: 700;
	transition: var(--transition);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.solution-list .list-item:hover p a {
	color: var(--accent-color);
	transform: translateY(-10px);
}



/* news */
.news {
	padding-top: 120px;
	padding-bottom: 120px;
	background: var(--bg-body);
	position: relative;
}

.news .title-row {
	margin-bottom: 70px;
}

.news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-right: 0;
	margin-left: 0;
	max-width: 1400px;
	margin: 0 auto;
}

.news-list .news-item {
	width: 100%;
	padding: 0;
	background: var(--bg-surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
}

.news-list .news-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

.news-list .news-item .img {
	width: 100%;
	height: 260px;
	overflow: hidden;
	position: relative;
}

.news-list .news-item .img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-list .news-item:hover .img img {
	transform: scale(1.05);
}

.news-list .news-item .text {
	background: #fff;
	padding: 35px 30px;
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.news-list .news-item .text .date {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: var(--accent-color);
	position: absolute;
	top: -30px;
	right: 30px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.news-list .news-item:hover .text .date {
	transform: scale(1.1);
}

.news-list .news-item .text .date p {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 2px;
}

.news-list .news-item .text .date span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	text-transform: uppercase;
	font-weight: 600;
}

.news-list .news-item .text-content {
	margin-bottom: 20px;
	flex-grow: 1;
}

.news-list .news-item .text-content a {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	display: block;
	color: var(--primary-color);
	margin-top: 10px;
	margin-bottom: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 56px;
	transition: var(--transition);
}

.news-list .news-item:hover .text-content a {
	color: var(--accent-color);
}

.news-list .news-item .text-content p {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-light);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news-list .news-item .more a {
	display: inline-flex;
	justify-content: start;
	align-items: center;
	font-size: 14px;
	color: var(--accent-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.news-list .news-item .more a i {
	width: 20px;
	height: 20px;
	display: block;
	background: var(--accent-color) url(../images/more-ico.png) no-repeat center;
	background-size: 50%;
	margin-left: 10px;
	border-radius: 50%;
	transition: var(--transition);
}

.news-list .news-item:hover .more a i {
	transform: translateX(5px);
}

/* contact */
.contact {
	margin-top: 0;
	width: 100%;
	max-width: 100%;
	background: url(../images/contact.jpg) no-repeat center center;
	background-size: cover;
	position: relative;
	display: flex;
	justify-content: flex-end;
	/* Align text to right */
	align-items: center;
	min-height: 600px;
	/* Ensure height */
	padding: 0;
}

.contact .img {
	display: none;
	/* Hide original image container */
}

.contact .text {
	width: 100%;
	/* Full width */
	height: 100%;
	min-height: 600px;
	background: rgba(15, 23, 42, 0.85);
	/* Semi-transparent primary color */
	backdrop-filter: blur(10px);
	/* Glassmorphism */
	display: flex;
	justify-content: center;
	align-items: center;
	/* Center horizontally */
	flex-direction: column;
	padding: 80px 20px;
	position: relative;
	text-align: center;
	/* Center text */
}

/* Decorative pattern */
.contact .text::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
	pointer-events: none;
}

.contact .text h3 {
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin-bottom: 30px;
	font-family: var(--font-heading);
}

.contact .text p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	width: 100%;
	max-width: 600px;
	line-height: 1.8;
	margin-bottom: 50px;
}

.contact .text a {
	width: 220px;
	height: 60px;
	display: flex;
	background: var(--accent-color);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	border-radius: 30px;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
	letter-spacing: 1px;
}

.contact .text a:hover {
	background: #fff;
	color: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
	.contact {
		justify-content: center;
	}

	.contact .text {
		width: 100%;
		background: rgba(15, 23, 42, 0.9);
		padding: 60px 30px;
	}
}

/* footer */
.footer {
	background: var(--primary-color);
	color: #fff;
}

.footer .footer-content.flex-box {
	align-items: flex-start;
	gap: 40px;
}

.footer .footer-content {
	padding-top: 80px;
	padding-bottom: 60px;
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.footer-item h4 {
	font-size: 20px;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-item ul li a {
	display: block;
	line-height: 2.2;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	transition: var(--transition);
}

.footer-item ul li a:hover {
	color: var(--accent-color);
	padding-left: 5px;
}

.footer-item .add p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	width: 100%;
	max-width: 380px;
	line-height: 1.8;
	margin-bottom: 40px;
}

.footer-item .phone p {
	line-height: 1.8;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-item .follow {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	gap: 15px;
}

.footer .follow-wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
}

.footer .follow-wrap img {
	width: 140px;
	display: block;
	margin-bottom: 40px;
}

.footer-item .follow a {
	width: 40px;
	height: 40px;
	margin-left: 0;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	transition: var(--transition);
}

.footer-item .follow a:hover {
	background-color: var(--accent-color);
	transform: translateY(-3px);
}

.footer-item .follow a.facebook {
	background-image: url(../images/facebook.png);
}

.footer-item .follow a.tiwtter {
	background-image: url(../images/twitter.png);
}

.footer-item .follow a.in {
	background-image: url(../images/in.png);
}

.footer-item .follow a.youtobe {
	background-image: url(../images/youtube.png);
}

.footer .copyright-row {
	height: 80px;
	display: flex;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.footer .copyright-row p {
	color: rgba(255, 255, 255, 0.4);
	font-size: 14px;
}



/* 首页结束 */
/* 分页 */
.page-bg {
	background: #f7f7f7;
}

.page-banner {
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.6);
	z-index: 0;
}

.page-banner .category-title {
	position: relative;
	z-index: 1;
}

.page-banner .category-title h3 {
	font-size: 60px;
	font-weight: 800;
	font-family: var(--font-heading);
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.page-banner .category-title p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}


.breadcrumb {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 60px;
	padding: 20px 0;
}

.breadcrumb a {
	font-size: 14px;
	color: var(--text-light);
	margin-right: 10px;
	font-weight: 500;
}

.breadcrumb a:hover {
	color: var(--accent-color);
}

.breadcrumb a:after {
	content: '/';
	margin-left: 10px;
	color: var(--border-color);
}

.breadcrumb span {
	font-size: 14px;
	color: var(--primary-color);
	font-weight: 600;
}

.page-categ {
	background: var(--bg-surface);
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	margin-bottom: 40px;
}

.page-categ .cat-title {
	width: 240px;
	height: auto;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
}

.page-categ .cat-list {
	width: calc(100% - 240px);
	padding: 0 30px;
	display: flex;
	align-items: center;
}

.page-categ .cat-list ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.page-categ .cat-list ul li {
	width: auto;
	line-height: 40px;
	padding: 0;
}

.page-categ .cat-list ul li a {
	font-size: 15px;
	color: var(--text-main);
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 20px;
	transition: var(--transition);
}

.page-categ .cat-list ul li:hover a,
.page-categ .cat-list ul li.active a {
	color: #fff;
	background-color: var(--accent-color);
}

.page-pic-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-left: 0;
	margin-right: 0;
	padding-top: 20px;
	padding-bottom: 20px;
}

.page-pic-list .list-item {
	width: 100%;
	padding: 0;
}

.page-pic-list .list-item a {
	display: block;
	background: var(--bg-surface);
	border-bottom: none;
	padding-top: 0px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.page-pic-list .list-item:hover a {
	border-bottom: none;
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

.page-pic-list .list-item .item-img {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.page-pic-list .list-item .item-img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: var(--transition);
}

.page-pic-list .list-item:hover .item-img img {
	transform: scale(1.1);
}

.page-pic-list .list-item .item-text {
	text-align: center;
	padding: 20px;
}

.page-pic-list .list-item .item-text h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.4;
	margin-bottom: 10px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.page-pic-list .list-item:hover .item-text h4 {
	color: var(--accent-color);
}

.page-pic-list .list-item .item-text span {
	font-size: 14px;
	color: var(--text-light);
	font-weight: 500;
}

.page-pic-list .list-item .item-text p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-light);
	margin-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.navigation,
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	margin-bottom: 80px;
	gap: 10px;
}

.navigation a,
.navigation span {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	font-size: 14px;
	border-radius: 50%;
	/* Circle pagination */
	transition: var(--transition);
	font-weight: 600;
}

.navigation a {
	border: 1px solid var(--border-color);
	color: var(--text-main);
	background: #fff;
}

.navigation a:hover {
	border-color: var(--accent-color);
	background: var(--accent-color);
	color: #fff;
}

.navigation span {
	color: #fff;
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
}

.page-pt-list .list-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 80px;
	height: 320px;
	background-color: #fff;
}

.page-pt-list .list-item .item-img {
	width: 40%;
	height: 320px;
	overflow: hidden;
}

.page-pt-list .list-item .item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.page-pt-list .list-item .item-text {
	padding: 40px 50px;
	background: #fff;
	width: 60%;
}

.page-pt-list .list-item .item-text .title a {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	display: block;
	line-height: 1;
	margin-bottom: 15px;

}

.page-pt-list .list-item:hover .item-text .title a {
	color: #e83d18;
}

.page-pt-list .list-item .item-text .tags {
	margin-bottom: 20px;
}

.page-pt-list .list-item .item-text .tags span {
	font-size: 16px;
	font-weight: bold;
	color: #bebebe;
	line-height: 1;
	margin-right: 10px;
}

.page-pt-list .list-item .item-text .tags span i {
	width: 12px;
	height: 12px;
	display: inline-block;
	background: #bebebe;
	border-radius: 2px;
	margin-right: 5px;
}

.page-pt-list .list-item .item-text p {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 40px;
}

.page-pt-list .list-item .item-text .more {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	width: 120px;
	height: 30px;
	background: #e83d18;
}


@media(min-width:1200px) {
	.main-container {
		max-width: 1140px
	}
}

@media(min-width:1500px) {
	.main-container {
		max-width: 1400px
	}
}

#swiper-sj {
	display: none;
}

@media only screen and (max-width: 760px) {
	.main-container {
		width: 100%;
		margin: 0 auto;
		padding: 0 15px;

	}

	.page-pt-list .list-item {
		height: auto;
	}

	.full-main {
		width: 100%;
		min-width: 100%;
	}

	.row {
		margin-right: 0;
		margin-left: 0;
	}

	.head-box .top-row {
		display: none;
	}

	.wap-menu {
		display: block;

	}

	.head-wrap {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.search {
		display: none;
	}

	.web-search {
		display: block;
		margin-right: 20px;
	}

	.web-search i {
		width: 24px;
		height: 24px;
		display: block;
		background: url(../images/search.png);
	}

	.web-search .wap-search-input {
		width: 100%;
		display: none;
	}

	.web-search.search-block .wap-search-input {
		display: block;
	}

	.web-search.search-block i {
		background: url(../images/close.png);
	}

	.web-search .wap-search-input .search-in {
		position: absolute;
		width: 100%;
		height: 44px;
		left: 0;
		top: 80px;
		z-index: 800;
		padding: 0 20px;
		border: none;
		border-top: 1px solid #2e3875;
	}

	.web-search .wap-search-input .search-btn {
		width: 24px;
		height: 24px;
		background: url(../images/search.png);
		display: block;
		border: none;

		position: absolute;
		right: 20px;
		top: 90px;
		z-index: 900;
	}

	.logo-row {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	.logo-wrap {
		margin-right: auto;
	}

	.nav-row {
		width: 100%;
		transition: all .3s ease;
		overflow: hidden;
		position: absolute;
		width: 100%;
		top: 80px;
		left: 0;
		z-index: 700;
		display: none;
		background: #fff;
		padding: 20px 0;
		border-top: 1px solid #ddd;
	}

	.nav-row ul {
		display: block;
		padding: 0 20px;
	}

	.nav-row ul li {
		width: 100%;
		padding: 0;
	}

	.nav-row ul li a:after {
		content: '';
		width: 100%;
		height: 3px;
		display: block;
		position: absolute;
		background: #e83d18;
		right: 0;
		bottom: 0;
		z-index: -1;
		display: none;
	}

	.wap-home .nav-row {
		display: block;
	}

	.logo-wrap {
		height: 40px;
	}


	#swiper1 {
		height: auto;
	}

	#swiper1 {
		display: none;
	}

	#swiper-sj {
		display: block;
	}

	#swiper-sj .swiper-button-next,
	#swiper-sj .swiper-button-prev {
		display: none;
	}

	.products .title-row .title p {
		font-size: 50px;
		margin-bottom: 10px;
		color: #fff;
	}

	.products .title-row {
		margin-bottom: 30px;
	}

	.title-row .title span {
		width: 100%;
		padding: 0 20px;
		font-size: 14px;
	}

	.products {
		padding-top: 50px;
		padding-bottom: 80px;
	}

	.products .product-row {
		width: 100%;
		margin: 0;
		padding-left: 20px;
	}

	#swiper2 .swiper-slide {
		width: 70%;
		margin-right: 40px;
	}

	#swiper2 .swiper-slide .team-text {
		width: 100%;
		float: left;
		padding-left: 0;
	}

	#swiper2 .swiper-slide .pro-item p {
		font-size: 18px;
		padding: 0 20px;
		text-align: center;
		line-height: 1.2;
		height: 48px;
		overflow: hidden;
	}

	.product-row .swiper-button-next,
	.product-row .swiper-button-prev {
		display: none;
	}

	/* about */
	.flex-box {
		display: block;
	}

	.about {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.about .title-row .title p {
		font-size: 50px;
		margin-bottom: 10px;
		text-align: center;
	}

	.about .title-row .title span {
		width: 100%;
		padding: 0;
		font-size: 14px;
		text-align: center;
	}

	.about-nav {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 30px;
	}

	.about-nav a {
		width: 33.33%;
	}

	.about-nav a img {
		width: 48px;
		height: 48px;
	}

	.about-nav a p {
		font-size: 14px;
		text-align: center;
	}

	.about .about-img {
		width: 100%;
		height: auto;
	}

	.about .about-img .swiper-slide img {
		width: 100%;
		display: block;
	}

	.about .about-text img {
		margin-bottom: 20px;
		max-width: 100%;
	}

	.about .about-text {
		width: 100%;
		height: auto;
		padding: 30px;
		position: static;
	}

	.about .about-text p {
		font-size: 16px;
	}

	.about .about-text a {
		position: static;
		margin-top: 40px;
	}

	/* solution */
	.solution {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.solution .title-row .title p {
		font-size: 50px;
		margin-bottom: 10px;
	}

	.solution-list .list-item {
		width: 50%;
		padding: 10px;
	}

	.solution-list {
		margin-left: 0;
		margin-right: 0;
	}

	.solution .title-row {
		margin-bottom: 30px;
	}

	.solution-list .list-item .img {
		width: 100%;
		overflow: hidden;
	}

	.solution-list .list-item p a {
		display: block;
		font-size: 14px;
		color: #fff;
		line-height: 1.2;
		margin-top: 10px;
		text-align: center;
	}

	/* news */
	.news {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.news .title-row .title p {
		font-size: 50px;
		margin-bottom: 10px;
	}

	.news-list {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}

	.news-list .news-item {
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}

	.news-list .news-item .img {
		height: 200px;
	}

	.news-list .news-item .text-content p {
		display: none;
	}

	/* contact */
	.contact {
		position: relative;
	}

	.contact .img {
		width: 100%;
		height: 200px;
	}

	.contact .text {
		width: 100%;
		height: 200px;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 20px;
		padding-bottom: 20px;
		position: absolute;
		bottom: 0;
		background: rgba(46, 56, 17, 0.5);
	}

	.contact .text p {
		width: 100%;
		font-size: 14px;
		text-align: center;
		margin-bottom: 20px;
	}

	.contact .text h3 {
		font-size: 24px;
		text-align: center;
		margin-bottom: 20px;
	}

	.contact .text a {
		margin: 0 auto;
	}

	/* footer */
	.footer .footer-content {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.footer-link {
		display: none;
	}

	.footer-pro {
		display: none;
	}

	.footer-item {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer-item .add p {
		margin-bottom: 20px;
		width: 100%;
	}

	.footer .follow-wrap img {
		margin-bottom: 30px;
	}

	.footer .copyright-row {
		text-align: center;
		padding-top: 20px;
	}

	.footer .copyright-row p {
		line-height: 1.5;
	}

	/* pages */
	.page-banner {
		height: 200px;
	}

	.page-banner .category-title h3 {
		font-size: 40px;
	}

	.page-banner .category-title p {
		font-size: 14px;
		width: 100%;
		padding: 0 20px;
	}

	.page-categ {
		background: #fff;
		padding: 20px;
		display: block;
		justify-content: space-between;
		align-items: flex-start;
	}

	.page-categ .cat-title {
		width: 100%;
		height: 44px;
		text-align: center;
		line-height: 44px;
		background: #2e3875;
		color: #fff;
		font-size: 24px;
		font-weight: bold;
	}

	.page-categ .cat-list {
		width: 100%;
		padding-left: 0;
	}

	.page-categ .cat-list ul {
		display: block;
	}

	.page-categ .cat-list ul li {
		width: 100%;
		padding: 0;
	}

	.page-pic-list {
		margin-left: -10px;
		margin-right: -10px;
	}

	.page-pic-list .list-item {
		width: 50%;
		padding: 10px;
	}

	.page-pic-list .list-item .item-img {
		width: 100%;

		overflow: hidden;
	}

	.page-pic-list .list-item .item-text {
		text-align: center;
		padding: 10px 20px 20px 20px;
	}

	.page-pic-list .list-item .item-text h4 {
		font-size: 16px;
	}

	.page-pic-list .list-item .item-text p {
		display: none;
	}

	.page-pic-list .list-item .item-text span {
		font-size: 14px;
		color: #999;
		font-weight: bold;
	}

	.page-pt-list .list-item {
		display: block;
	}

	.page-pt-list .list-item .item-img {
		width: 100%;
		height: auto;
	}

	.page-pt-list .list-item .item-text {
		padding: 20px;
		width: 100%;
	}

	.page-pt-list .list-item .item-text .title a {
		font-size: 20px;
	}

	.page-pt-list .list-item .item-text p {
		display: none;
	}

	/* right-bar */
	.right-bar {
		display: none;
	}
}

/*right-bar*/
.right-bar {
	position: fixed;
	top: 30%;
	right: 0;
	width: 60px;
	height: 203px;
	z-index: 9999;
	margin-top: 100px;
}

.right-bar ul li {
	width: 60px;
	height: 60px;
	background: #6e738c;
	cursor: pointer;
	position: absolute;
}

.right-bar ul li a {
	width: 60px;
	height: 60px;
	cursor: pointer;
	overflow: hidden;
	display: block;
	float: left;
}

.rtbar-li2 {
	top: 61px;
}

.right-bar ul li.rtbar-li3 {
	top: 122px;
	width: 240px;
}

.rtbar-li4 {
	top: 183px;
}

.right-bar ul li em {
	width: 60px;
	height: 60px;
	display: block;
}

.right-bar ul li.rtbar-li1 em {
	background: url(../images/right-icon1.png);
	background-size: 100%;
}

.right-bar ul li.rtbar-li3 em {
	background: url(../images/right-icon2.png);
	background-size: 100%;
}

.right-bar ul li.rtbar-li2 em {
	background: url(../images/right-icon3.png);
	background-size: 100%;
}

.right-bar ul li.rtbar-li4 em {
	background: url(../images/right-icon4.png);
	background-size: 100%;
}

.right-bar ul li.rtbar-li2 p {
	text-align: center;
	line-height: 1;
	margin-bottom: 20px;
}

.right-bar ul li:hover {
	background: #e83d18;
}

.right-bar ul li:hover i {
	color: #ffffff;
}

.rtbar-li3 strong {
	font-size: 20px;
	line-height: 60px;
	color: #fff;
	font-weight: 500;
}

.rtbar-li4 i {
	color: #ffffff;
}

.right-bar ul li.rtbar-li4 a span {
	color: #ffffff;
}

.rtbar_shwx {
	position: absolute;
	right: 60px;
	top: 0px;
	background: #fff;
	box-shadow: 0 2px 21px rgba(108, 108, 108, .19);
	display: none;
	z-index: 20;
}

.rtbar_shwx img {
	padding: 5px;
	max-width: 140px;
}

.right-bar ul li.gotop {
	display: none;
	background: #e83d18;
}


.news-editor {
	padding: 30px 0 0px 200px;
	position: relative;
}

.news-editor .editor-time {
	width: 140px;
	height: 140px;
	background: #eff1f5;
	position: absolute;
	left: 0;
	top: 30px;
	padding: 25px;
}

.news-editor .editor-time p {
	font-size: 44px;
	color: #e83d18;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}

.news-editor .editor-time span {
	font-size: 14px;
	line-height: 18px;
	color: #333;
}

.news-editor .editor-wrap .title {
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}

.news-editor .editor-wrap .title h2 {
	font-size: 30px;
	color: #333;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}

.news-editor .editor-wrap .title p span {
	font-size: 14px;
	color: #666;
	margin-right: 20px;
}

.news-editor .editor-wrap .content {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	padding-top: 30px;
	padding-bottom: 50px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}

.news-editor .editor-wrap .content img {
	display: block;
	margin: 0 auto 20px;
}

.content-page {
	margin-bottom: 50px;
}

.content-page div {
	line-height: 50px;

}

.content-page span {
	font-size: 14px;
	color: #333;
}

.content-page a {
	font-size: 14px;
	color: #666;
	margin-left: 20px;
}

.contact-us {
	padding-top: 50px;
	padding-bottom: 100px;
	font-size: 16px;
	color: #333;
	line-height: 30px;
}

.contact-us .img {
	width: 50%;
	float: left;
	height: 400px;
	overflow: hidden;
}

.contact-us .img img {}

.amap-icon img {
	width: 25px;
}

.contact-us .text {
	width: 50%;
	float: left;
	padding: 0 100px;
}

.contact-us .text .title {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
	margin-top: 20px;
}

.contact-us .text .add {
	font-size: 14px;
	color: #666;
	margin-bottom: 50px;
}

.contact-us .text .info {
	font-size: 14px;
	color: #666;
	line-height: 30px;
	margin-bottom: 80px;
}

.contact-us .text em {
	color: #f25f05;
}

.contact-us .text .small-title {
	font-size: 16px;
	color: #333;
	line-height: 1;
	margin-bottom: 20px;
}

.contact-us .text .tips {
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.gs-jianjie .text p.content {
	font-size: 16px;
	line-height: 28px;
	color: #666;
}

.contact-us {
	padding-top: 50px;
	padding-bottom: 100px;
}

.contact-us .img {
	width: 50%;
	float: left;
	height: 400px;
	overflow: hidden;
}

.contact-us .img img {}

.contact-us .text {
	width: 50%;
	float: left;
	padding: 0 100px;
}

.contact-us .text .title {
	font-size: 24px;
	color: #333;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
	margin-top: 20px;
}

.contact-us .text .add {
	font-size: 14px;
	color: #666;
	margin-bottom: 50px;
}

.contact-us .text .info {
	font-size: 14px;
	color: #666;
	line-height: 30px;
	margin-bottom: 80px;
}

.contact-us .text em {
	color: #f25f05;
}

.contact-us .text .small-title {
	font-size: 16px;
	color: #333;
	line-height: 1;
	margin-bottom: 20px;
}

.contact-us .text .tips {
	font-size: 14px;
	line-height: 24px;
	color: #666;
}

.w100 {
	width: 100% !important;
}

.ppd-top-box {
	overflow: hidden;
}

.page-product-details {
	padding-top: 10px;
}

.ppd-img {
	width: 500px;
	float: left;
}

.ppd-info {
	width: 600px;
	float: right;
}

.ppd-img .gallery-top {
	width: 500px;
	height: 500px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	overflow: hidden;
}

.ppd-img-bar img {
	width: 100%;
}

.ppd-img .gallery-thumbs {
	width: 500px;
	height: 120px;
	box-sizing: border-box;
	border: 1px solid #ddd;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
	padding: 5px 25px;
}

.ppd-img .gallery-thumbs .swiper-slide {
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	border: 1px solid #f5f5f5;
}

.ppd-img .gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.gallery-thumbs .swiper-slide {
	height: 100%;
	opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.ppd-img .swiper-button-prev {
	left: 0;
	transform: scale(.6);
}

.ppd-img .swiper-button-next {
	right: 0;
	transform: scale(.6);
}

.ppd-tell {
	width: 360px;
	height: 90px;
	background: #e98c64;
	line-height: 90px;
	text-align: center;
	font-size: 24px;
	color: #ffffff;
	margin-top: 36px;
}

.ppd-pname {
	font-size: 24px;
	line-height: 50px;
	border-bottom: 1px solid #ddd;
}

.ppd-info-content {
	padding-top: 20px;
	font-size: 16px;
	color: #666666;
	line-height: 30px;
}

.ppd-info-content p {
	font-size: 16px;
	color: #666666;
	line-height: 40px;
}

.ppd-price {
	font-size: 24px;
	color: #e98c64;
	margin-top: 30px;
}

.ppd-price span {
	font-size: 14px;
	color: #999999;
}

.ppd-content-box {
	border: 1px solid #eee;
	margin-top: 40px;
	box-sizing: border-box;
	margin-bottom: 50px;
}

.ppd-content-text-title {
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-indent: 20px;
	background: #eeeeee;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
}

.ppd-content-text {
	padding: 30px 20px 50px;
	font-size: 14px;
	line-height: 30px;
	color: #666666;
	background-color: #fff;
}

.page-tab {
	font-size: 14px;
	margin-top: 30px;
}

.page-tab a {
	margin: 0 10px;
	color: #666666;
}

.page-tab span {
	color: #999999;
}

.page-tab .pre {
	width: 50%;
	float: left;
	padding-left: 30px;
	box-sizing: border-box;
	line-height: 16px;
	background: url(../images/pt-pre.png) left no-repeat;
}

.page-tab .next {
	width: 50%;
	float: right;
	text-align: right;
	padding-right: 30px;
	box-sizing: border-box;
	background: url(../images/pt-next.png) right no-repeat;
}

.page-tab .next span {
	float: right;
}

.page-product-details .page_turning {
	padding-left: 0px;
}

.screen-reader-text {
	display: none;
}

.navigation {
	clear: both;
}

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

	.page-pt-list .list-item {
		margin-bottom: 20px;
	}

	.news-editor {
		padding: 0px 0 50px;
		position: relative;
	}

	.news-editor .editor-time {
		width: 100px;
		height: 100px;
		background: #eff1f5;
		position: absolute;
		left: 0;
		top: 20px;
		padding: 15px;
	}

	.news-editor .editor-time p {
		font-size: 30px;
	}

	.news-editor .editor-wrap .content img {
		width: 100%;
		height: auto;
	}

	.editor-time {
		display: none;
	}

	.contact-us {
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.contact-us .img {
		width: 100%;
		float: none;
		height: 300px;
		overflow: hidden;
	}

	.contact-us .text {
		width: 100%;
		float: none;
		padding: 0;
	}

	.ppd-img {
		width: 100%;
		float: none;
	}

	.ppd-img .gallery-top {
		width: auto;
		height: 100%;
		border: 1px solid #ddd;
		box-sizing: border-box;
		overflow: hidden;
	}

	.ppd-img .gallery-thumbs {
		width: 100%;

		box-sizing: border-box;
		border: 1px solid #ddd;
		margin-top: 10px;
		position: relative;
		overflow: hidden;
		padding: 5px 25px;
	}

	.ppd-img .swiper-slide img {
		width: 100%;
		height: initial !important;
		object-fit: cover;
	}

	.ppd-info {
		width: auto;
	}

}

.pagebar {
	padding: 20px;
	overflow: hidden
}

.pagebar .pagination {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.pagination a {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;
	font-size: 12px;
	padding: 7px 8px 5px;
	margin: 0 2px;

}

.pagination span {
	color: #333;
	font-size: 12px;
	padding: 7px 2px;
	margin: 0 2px;
	border-radius: 3px;
}

.pagination a:hover {
	color: #337ab7;
	border: 1px solid #337ab7;
}

.pagination a.page-num-current {
	color: #fff;
	background: #337ab7;
	border: 1px solid #337ab7;
}

.pagination .st {
	font-family: 宋体
}

.text-secondary {
	text-align: center;
	padding: 20px 0
}

#maximg img {
	max-width: 100%;
	height: auto !important
}

/* ----- PB分页数字条效果 结束 ----- */

/* Page Main Container - Spacing for Fixed Header */
.page-main {
	margin-top: 100px;
	/* Adjust based on header height */
	min-height: calc(100vh - 400px);
	/* Ensure footer stays at bottom on short pages */
}

@media (max-width: 768px) {
	.page-main {
		margin-top: 80px;
	}
}

/* Product Detail Page Enhancements */
.page-product-details {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
}

.ppd-top-box {
	display: flex;
	gap: 60px;
	margin-bottom: 80px;
}

.ppd-img {
	width: 50%;
	position: relative;
}

.gallery-top {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	margin-bottom: 20px;
}

.gallery-thumbs .swiper-slide {
	opacity: 0.6;
	cursor: pointer;
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition);
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	box-shadow: 0 0 0 2px var(--accent-color);
}

.ppd-info {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ppd-pname {
	font-size: 36px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1.2;
	margin-bottom: 20px;
	font-family: var(--font-heading);
}

.ppd-info-content {
	font-size: 16px;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 30px;
}

.ppd-btns {
	margin-top: 30px;
}

.btn-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 40px;
	background: var(--accent-color);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 28px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow-lg);
	transition: var(--transition);
}

.btn-contact:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.ppd-content-box {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-sm);
	margin-bottom: 80px;
}

.ppd-content-text-title {
	border-bottom: 1px solid var(--border-color);
}

/* Related Products Image Fix */
.related-products .pro-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

margin-bottom: 30px;
}

.ppd-content-text-title span {
	display: inline-block;
	padding: 15px 30px;
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
	border-bottom: 3px solid var(--accent-color);
	margin-bottom: -2px;
}

.ppd-content-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-main);
}

.related-products .main-title {
	margin-bottom: 50px;
}

.related-products .product-row {
	overflow: hidden;
	padding: 20px;
	margin: -20px;
}

.related-products .pro-item {
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.related-products .pro-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent-color);
}

.related-products .pro-item a {
	display: block;
}

.related-products .pro-item img {
	width: 100%;
	/*height: 200px;*/
	object-fit: cover;
	display: block;
}

.related-products .pro-item p {
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-main);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.related-products .pro-item:hover p {
	color: var(--accent-color);
}

/* News Detail Page Enhancements */
.news-detail-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.news-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
}

.news-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: var(--font-heading);
}

.news-meta {
	display: flex;
	justify-content: center;
	gap: 30px;
	color: var(--text-light);
	font-size: 14px;
}

.news-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.news-article-content {
	font-size: 18px;
	line-height: 1.9;
	color: var(--text-main);
	margin-bottom: 60px;
}

.news-article-content p {
	margin-bottom: 20px;
}

.news-navigation {
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
	border-top: 1px solid var(--border-color);
	margin-bottom: 80px;
}

.news-navigation .nav-item {
	display: flex;
	flex-direction: column;
	max-width: 45%;
}

.news-navigation .nav-item span {
	font-size: 12px;
	color: var(--text-light);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.news-navigation .nav-item a {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-navigation .nav-item a:hover {
	color: var(--accent-color);
}

.related-news {
	margin-top: 60px;
}

.related-news .section-title h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	padding-left: 15px;
}

.related-news .section-title h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 5px;
	width: 4px;
	background: var(--accent-color);
	border-radius: 2px;
}

.related-news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.related-item {
	background: var(--bg-body);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: var(--transition);
}

.related-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.related-item .ri-img {
	height: 180px;
	overflow: hidden;
}

.related-item .ri-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.related-item:hover .ri-img img {
	transform: scale(1.1);
}

.related-item .ri-info {
	padding: 20px;
}

.related-item .ri-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 44px;
}

.related-item .ri-date {
	font-size: 12px;
	color: var(--text-light);
}

@media (max-width: 992px) {
	.ppd-top-box {
		flex-direction: column;
	}

	.ppd-img,
	.ppd-info {
		width: 100%;
	}

	.related-news-list {
		grid-template-columns: 1fr;
	}
}

/* Sidebar Layout */
.product-layout,
.news-layout {
	display: flex;
	gap: 40px;
	padding: 40px 0;
}

.sidebar {
	width: 300px;
	flex-shrink: 0;
}

.product-main-content,
.news-main-content {
	flex-grow: 1;
	width: calc(100% - 340px);
	/* Adjust based on gap and sidebar width */
}

.sidebar-box {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-sm);
}

.sidebar-title h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--border-color);
	position: relative;
}

.sidebar-title h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--accent-color);
}

.sidebar-cate li {
	border-bottom: 1px solid var(--border-color);
}

.sidebar-cate li:last-child {
	border-bottom: none;
}

.sidebar-cate li a {
	display: block;
	padding: 12px 0;
	color: var(--text-main);
	font-size: 15px;
	transition: var(--transition);
}

.sidebar-cate li a:hover {
	color: var(--accent-color);
	padding-left: 5px;
}

.sidebar-hot li {
	margin-bottom: 20px;
}

.sidebar-hot li a {
	display: flex;
	align-items: center;
	gap: 15px;
}

.sidebar-hot li .img {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.sidebar-hot li .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-hot li p {
	font-size: 14px;
	color: var(--text-main);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: var(--transition);
}

.sidebar-hot li a:hover p {
	color: var(--accent-color);
}

.sidebar-news li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed var(--border-color);
}

.sidebar-news li:last-child {
	border-bottom: none;
}

.sidebar-news li a {
	font-size: 14px;
	color: var(--text-main);
	line-height: 1.5;
	display: block;
	transition: var(--transition);
}

.sidebar-news li a:hover {
	color: var(--accent-color);
}

.sidebar-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sidebar-tags a {
	display: inline-block;
	padding: 5px 12px;
	background: var(--bg-body);
	color: var(--text-light);
	font-size: 13px;
	border-radius: 15px;
	transition: var(--transition);
}

.sidebar-tags a:hover {
	background: var(--accent-color);
	color: #fff;
}

@media (max-width: 992px) {

	.product-layout,
	.news-layout {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		order: 2;
		/* Move sidebar to bottom on mobile */
	}

	.product-main-content,
	.news-main-content {
		width: 100%;
	}
}

/* Inquiry Form */
.inquiry-box {
	margin-top: 60px;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-sm);
}

.inquiry-form {
	max-width: 800px;
	margin: 0 auto;
}

.inquiry-form .form-group {
	margin-bottom: 20px;
	width: 48%;
	float: left;
	margin-right: 4%;
}

.inquiry-form .form-group:nth-child(2n) {
	margin-right: 0;
}

.inquiry-form .form-group.full-width {
	width: 100%;
	float: none;
	clear: both;
}

.inquiry-form input,
.inquiry-form textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 15px;
	color: var(--text-main);
	transition: var(--transition);
	background: var(--bg-body);
}

.inquiry-form textarea {
	height: 150px;
	resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
	border-color: var(--accent-color);
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.inquiry-form .btn-submit {
	width: 100%;
	height: 56px;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 28px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--transition);
	letter-spacing: 1px;
	margin-top: 10px;
}

.inquiry-form .btn-submit:hover {
	background: var(--accent-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.inquiry-form::after {
	content: '';
	display: block;
	clear: both;
}

@media (max-width: 768px) {
	.inquiry-form .form-group {
		width: 100%;
		margin-right: 0;
	}
}

/* News List Items */
.news-list-item {
	display: flex;
	gap: 30px;
	background: #fff;
	padding: 30px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	margin-bottom: 30px;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.news-list-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent-color);
}

.nli-img {
	width: 260px;
	height: 180px;
	flex-shrink: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.nli-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-list-item:hover .nli-img img {
	transform: scale(1.1);
}

.nli-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.nli-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
}

.nli-title a {
	color: var(--primary-color);
	transition: var(--transition);
}

.nli-title a:hover {
	color: var(--accent-color);
}

.nli-meta {
	display: flex;
	gap: 20px;
	color: var(--text-light);
	font-size: 13px;
	margin-bottom: 15px;
}

.nli-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.nli-desc {
	font-size: 15px;
	color: var(--text-main);
	line-height: 1.6;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nli-more {
	margin-top: auto;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--accent-color);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nli-more:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.news-list-item {
		flex-direction: column;
	}

	.nli-img {
		width: 100%;
		height: 200px;
	}
}

/* Product List Grid */
.product-list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.product-list-grid .pro-item {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.product-list-grid .pro-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

.product-list-grid .pro-item .img-box {
/*	height: 250px;*/
	overflow: hidden;
	position: relative;
}

.product-list-grid .pro-item .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-list-grid .pro-item:hover .img-box img {
	transform: scale(1.1);
}

.product-list-grid .pro-item .text-box {
	padding: 20px;
	text-align: center;
}

.product-list-grid .pro-item h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-list-grid .pro-item p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.5;
	height: 42px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-list-grid .pro-item:hover h4 {
	color: var(--accent-color);
}

@media (max-width: 992px) {
	.product-list-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.product-list-grid {
		grid-template-columns: 1fr;
	}
}

/* Pagination */
.pagebar {
	text-align: center;
	margin-top: 50px;
}

.pagination {
	display: inline-flex;
	gap: 10px;
}

.page-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	min-width: 40px;
	padding: 0 15px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	color: var(--text-main);
	font-weight: 600;
	transition: var(--transition);
}

.page-item:hover,
.page-item.active {
	background: var(--accent-color);
	color: #fff;
	border-color: var(--accent-color);
}

/* Modern Full-Width About Page */
.about-page-container {
	padding-bottom: 80px;
}

/* Section: Company Profile (Creative Side-by-Side) */
.section-profile {
	padding: 100px 0;
	background: #fff;
	overflow: hidden;
}

.profile-wrapper {
	display: flex;
	align-items: flex-start;
	/* Align to top to handle variable text height */
	gap: 80px;
	position: relative;
}

/* Creative Image Styling */
.profile-img {
	flex: 0 0 45%;
	position: sticky;
	/* Keep image in view while scrolling text if needed */
	top: 100px;
	height: 500px;
	z-index: 1;
}

.profile-img::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	border: 2px solid var(--accent-color);
	border-radius: var(--radius-lg);
	z-index: -1;
	transition: transform 0.4s ease;
}

.profile-wrapper:hover .profile-img::before {
	transform: translate(-10px, -10px);
}

.profile-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	display: block;
}

/* Content Styling */
.profile-content {
	flex: 1;
	padding-top: 20px;
	position: relative;
	z-index: 2;
}

.profile-title {
	font-size: 42px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 40px;
	position: relative;
	padding-left: 20px;
	border-left: 5px solid var(--accent-color);
	line-height: 1.2;
}

.profile-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-main);
}

.profile-text p {
	margin-bottom: 25px;
	text-align: justify;
}

/* Decorative Background Element */
.section-profile::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	background: #f8fafc;
	z-index: 0;
}

@media (max-width: 992px) {
	.profile-wrapper {
		flex-direction: column;
		gap: 50px;
	}

	.profile-img {
		flex: none;
		width: 100%;
		height: 350px;
		position: static;
	}

	.section-profile::after {
		width: 100%;
		height: 300px;
		top: auto;
		bottom: 0;
	}
}

/* Section: Advantages */
.section-advantages {
	padding: 80px 0;
	background: #f8fafc;
	position: relative;
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.section-header h3 {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.section-header p {
	color: var(--text-light);
	font-size: 16px;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.adv-card {
	background: #fff;
	padding: 40px 30px;
	border-radius: var(--radius-lg);
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid transparent;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}

.adv-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

.adv-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--bg-body) 0%, #fff 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: var(--accent-color);
	box-shadow: var(--shadow-sm);
	transition: transform 0.4s ease;
}

.adv-card:hover .adv-icon {
	transform: rotateY(180deg);
	background: var(--accent-color);
	color: #fff;
}

.adv-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.adv-card p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
}

/* Section: Products Preview */
.section-products {
	padding: 80px 0;
	background: #fff;
}

.about-pro-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.about-pro-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.about-pro-img {
	height: 300px;
	position: relative;
}

.about-pro-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.about-pro-item:hover .about-pro-img img {
	transform: scale(1.1);
}

.about-pro-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.about-pro-item:hover .about-pro-overlay {
	transform: translateY(0);
}

.about-pro-overlay h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
}

.about-pro-overlay span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.4s ease 0.1s;
}

.about-pro-item:hover .about-pro-overlay span {
	opacity: 1;
}

@media (max-width: 1200px) {
	.advantage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.profile-wrapper {
		flex-direction: column;
		gap: 40px;
	}

	.about-pro-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.advantage-grid {
		grid-template-columns: 1fr;
	}

	.about-pro-grid {
		grid-template-columns: 1fr;
	}
}

/* Page Banner Fix */
.page-banner {
	width: 100%;
	min-width: 100%;
	height: 400px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	/* Remove top margin if header is not fixed or handled elsewhere */
	padding-top: 90px;
	/* Add padding for fixed header instead */
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	/* Dark overlay for better text contrast */
}

.page-banner .category-title {
	position: relative;
	z-index: 2;
	text-align: center;
}

.page-banner .category-title h3 {
	font-size: 48px;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.page-banner {
		height: 250px;
		margin-top: 60px;
		/* Adjust for smaller mobile header if needed */
	}

	.page-banner .category-title h3 {
		font-size: 32px;
	}
}

/* Custom Page Styles - Premium Design */
.section-padding {
	padding: 100px 0;
}

.bg-light {
	background-color: #f8fafc;
}

/* Custom Intro */
.intro-content {
	display: flex;
	align-items: center;
	gap: 80px;
	margin-top: 60px;
}

.intro-text {
	flex: 1;
}

.intro-text p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text-main);
	margin-bottom: 40px;
}

.check-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.check-list li {
	position: relative;
	padding-left: 35px;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 16px;
}

.check-list li::before {
	content: '✔';
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background: rgba(249, 115, 22, 0.1);
	color: var(--accent-color);
	border-radius: 50%;
	text-align: center;
	line-height: 24px;
	font-size: 12px;
	font-weight: 800;
}

.intro-image {
	flex: 1;
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: 20px 20px 0 rgba(15, 23, 42, 0.05);
	/* Subtle offset */
}

.intro-image img {
	width: 100%;
	display: block;
	border-radius: var(--radius-lg);
	transition: transform 0.5s ease;
	box-shadow: var(--shadow-lg);
}

.intro-image:hover img {
	transform: scale(1.02);
}

/* Custom Process */
.process-steps {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin-top: 60px;
	position: relative;
}

/* Connecting Line */
.process-steps::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 50px;
	right: 50px;
	height: 2px;
	background: #e2e8f0;
	z-index: 0;
}

.step-item {
	flex: 1;
	background: #fff;
	padding: 40px 20px;
	border-radius: var(--radius-lg);
	text-align: center;
	position: relative;
	z-index: 1;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
	border: 1px solid transparent;
}

.step-item:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent-color);
}

.step-num {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	line-height: 40px;
	font-weight: 700;
	margin: 0 auto 20px;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 5px #fff;
	/* White ring to break line */
	transition: background 0.3s ease;
}

.step-item:hover .step-num {
	background: var(--accent-color);
}

.step-icon {
	font-size: 48px;
	margin-bottom: 20px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-item h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-weight: 700;
}

.step-item p {
	font-size: 14px;
	color: var(--text-light);
	line-height: 1.6;
}

/* Custom Capabilities */
.cap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.cap-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.4s ease;
	position: relative;
	top: 0;
}

.cap-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	top: -10px;
}

.cap-img {
	height: 240px;
	overflow: hidden;
	position: relative;
}

.cap-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.cap-card:hover .cap-img img {
	transform: scale(1.1);
}

.cap-img::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	opacity: 0.6;
}

.cap-info {
	padding: 30px;
}

.cap-info h4 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-weight: 700;
}

.cap-info p {
	font-size: 15px;
	color: var(--text-light);
	line-height: 1.7;
}

/* Custom CTA */
.custom-cta {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	padding: 100px 0;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

/* Abstract Background Shapes */
.custom-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.custom-cta::after {
	content: '';
	position: absolute;
	bottom: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	color: #fff;
	font-size: 42px;
	margin-bottom: 25px;
	font-weight: 800;
}

.cta-content p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: #fff;
	padding: 18px 50px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
	background: #fff;
	color: var(--accent-color);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
	.intro-content {
		flex-direction: column;
		gap: 40px;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.process-steps::before {
		display: none;
		/* Hide line on tablet */
	}

	.process-steps {
		flex-wrap: wrap;
		justify-content: center;
	}

	.step-item {
		flex: 0 0 45%;
		margin-bottom: 20px;
	}

	.cap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.step-item {
		flex: 0 0 100%;
	}

	.cap-grid {
		grid-template-columns: 1fr;
	}

	.cta-content h2 {
		font-size: 32px;
	}
}