:root {
 --primary: #0A1628;
 --primary-dark: #050D18;
 --primary-light: #112240;
 --accent: #D93025;
 --accent-light: #EA4335;
 --accent-dark: #C2251B;
 --steel: #4A5568;
 --steel-light: #718096;
 --steel-dark: #2D3748;
 --gray: #A0AEC0;
 --light-gray: #F7FAFC;
 --white: #FFFFFF;
 --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	/* font-family: 'Noto Sans SC', sans-serif; */
	line-height: 1.6;
	color: var(--steel-dark);
	overflow-x: hidden;
	background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
	/* font-family: 'Noto Serif SC', serif; */
	font-weight: 500;
}
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--transition);/* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px); */
}
header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}
.logo {
	display: flex;
	align-items: center;
	gap: 18px;
}
.logo img {
	height: 60px;
	width: auto;
}
.logo-text {
	display: flex;
	flex-direction: column;
}
.logo-title {
	color: #000000;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 4px;
}
.logo-subtitle {
	color: #666666;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 2px;
}
header.scrolled .logo-title {
	color: #000000;
}
header.scrolled .logo-subtitle {
	color: #666666;
}
nav {
	display: flex;
	align-items: center;
}
nav ul {
	display: flex;
	gap: 55px;
	list-style: none;
}
nav a {
	color: #333333;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	transition: var(--transition-fast);
	padding: 10px 0;
	letter-spacing: 1px;
}
nav a:hover {
	color: var(--accent);
}
nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--accent);
	transition: var(--transition-fast);
	border-radius: 2px;
}
nav a:hover::after {
	width: 100%;
}
nav a.active {
	color: var(--accent);
}
nav a.active::after {
	width: 100%;
}
header.scrolled nav a {
	color: #333333;
}
header.scrolled nav a:hover, header.scrolled nav a.active {
	color: var(--accent);
}
header.scrolled .lang-item {
	color: var(--primary);
}
header.scrolled .lang-item.active {
	background: var(--accent);
	color: var(--white);
}
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 100;
}
/* 语言切换 */
.lang-switch {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: 25px;
	flex-shrink: 0;
}
.lang-item {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--primary);
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 4px;
	transition: var(--transition);
	cursor: pointer;
}
.lang-item:hover {
	color: var(--accent);
}
.lang-item.active {
	background: var(--accent);
	color: var(--white);
	font-weight: 600;
}
.lang-sep {
	font-size: 13px;
	color: #bbb;
}
.mobile-menu-btn span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--primary);
	margin: 6px 0;
	transition: var(--transition-fast);
	border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-6px, 7px);
}
.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(45deg) translate(-6px, -7px);
}
.slider {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
	position: relative;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}
.slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 100%);
} */

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.05) 100%);
	z-index: 1;
}
.slide-content {
	position: relative;
	z-index: 2;
	/* max-width: 1200px; */
	text-align: left;
	/* padding-left: 8%; */
	padding-top: 230px;
	max-width: 1300px;
	margin: 0 auto;
}
.slide-tagline {
	font-size: 14px;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: #333333;
	margin-bottom: 24px;
	font-weight: 500;
	animation: fadeInUp 0.8s ease 0.2s both;
}
.slide-title {
	font-size: 60px;
	line-height: 1.15;
	color: #000000;
	margin-bottom: 28px;
	animation: fadeInUp 0.8s ease 0.4s both;
}
.slide-title span {
	color: var(--accent);
}
.slide-description {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 45px;
	animation: fadeInUp 0.8s ease 0.6s both;
}
.slide-buttons {
	display: flex;
	gap: 24px;
	animation: fadeInUp 0.8s ease 0.8s both;
}
.slider-arrows {
	position: absolute;
	top: 50%;
	left: 40px;
	right: 40px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	z-index: 10;
}
.slider-arrow {
	width: 56px;
	height: 56px;
	background: rgba(0, 0, 0, 0);
	border: 1px solid rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}
.slider-arrow:hover {
	background: rgba(217, 48, 37, 0.85);
	border-color: var(--accent);
	transform: scale(1.1);
	fill: var(--white);
}
.slider-arrow svg {
	width: 24px;
	height: 24px;/* fill: var(--white); */
}
.slider-dots {
	position: absolute;
	bottom: 45px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 18px;
	z-index: 10;
}
.slider-dot {
	width: 14px;
	height: 14px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}
.slider-dot.active {
	background: rgba(217, 48, 37, 0.9);
	width: 40px;
	border-radius: 7px;
}
.slider-dot:hover {
	background: rgba(255, 255, 255, 0.6);
}
.slider-dot.active:hover {
	background: var(--accent);
}
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(40px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
.btn-primary {
	display: inline-block;
	padding: 18px 48px;
	background: var(--accent);
	color: var(--white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	transition: var(--transition);
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}
.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: var(--transition);
}
.btn-primary:hover::before {
	left: 100%;
}
.btn-primary:hover {
	background: var(--accent-light);
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(217, 48, 37, 0.4);
}
.btn-secondary {
	display: inline-block;
	padding: 18px 48px;
	background: transparent;
	color: #333333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	transition: var(--transition);
	letter-spacing: 1px;
	border: 2px solid #333333;
}
.btn-secondary:hover {
	background: #333333;
	border-color: #333333;
	color: var(--white);
	transform: translateY(-4px);
}
.section {
	padding: 70px 0;
}
.section-header {
	text-align: center;
	margin-bottom: 40px;
}
.section-label {
	font-size: 12px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--accent);
	/* margin-bottom: 16px; */
	font-weight: 600;
}
.section-title {
	font-size: 44px;
	color: var(--primary);
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}
.section-divider {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	margin: 0 auto 24px;
	border-radius: 2px;
}
.section-desc {
	font-size: 16px;
	color: var(--steel);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
}
.about {
	background: rgba(245, 245, 245, 0.5);
	position: relative;
	overflow: hidden;
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	padding: 60px 0px 0px 0px;
}
.about-text-area {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.about-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 2px;
}
.about-title {
	font-size: 42px;
	color: var(--primary);
	line-height: 1.3;
	font-weight: 700;
	margin: 0;
}
.about-desc {
	font-size: 17px;
	color: var(--steel);
	line-height: 2;
	margin: 0;
	text-align: justify;
}
.about-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.feature-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.feature-check {
	width: 24px;
	height: 24px;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
	flex-shrink: 0;
}
.feature-text {
	font-size: 16px;
	color: var(--primary);
	font-weight: 500;
}
.about-buttons {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.btn-about-primary {
	padding: 12px 48px;
	background: var(--accent);
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	border: 2px solid var(--accent);
	border-radius: 30px;
}
.btn-about-primary:hover {
	background: transparent;
	color: var(--accent);
}
.btn-about-secondary {
	padding: 12px 48px;
	background: transparent;
	color: var(--primary);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	border: 2px solid var(--primary);
	border-radius: 30px;
}
.btn-about-secondary:hover {
	background: var(--primary);
	color: var(--white);
}
.about-image-area {
	position: relative;
}
.about-image-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	height: 420px;
}
.about-image-item {
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(10, 22, 40, 0.08);
	transition: var(--transition);
}
.about-image-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(10, 22, 40, 0.15);
}
.about-image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.about-image-item:hover img {
	transform: scale(1.05);
}
.about-image-item-1 {
	grid-row: span 2;
}
.stats {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}
.stats::before {
	content: '';
	position: absolute;
	top: -200px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}
.stats::after {
	content: '';
	position: absolute;
	bottom: -150px;
	right: -80px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 2;
}
.stat-card {
	text-align: center;
	padding: 40px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: var(--transition);
}
.stat-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-8px);
	border-color: rgba(217, 48, 37, 0.3);
}
.stat-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, rgba(217, 48, 37, 0.2), rgba(217, 48, 37, 0.05));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.stat-card:hover .stat-icon {
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	transform: scale(1.1);
}
.stat-icon svg {
	width: 36px;
	height: 36px;
	fill: var(--accent);
	transition: var(--transition);
}
.stat-card:hover .stat-icon svg {
	fill: var(--white);
}
.stat-value {
	font-size: 52px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
	line-height: 1.2;
}
.stat-label {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1px;
}
.partners {
	background: var(--light-gray);
	position: relative;
	overflow: hidden;
}
.partners::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 48, 37, 0.15), transparent);
}
.partners-slider {
	position: relative;
	padding: 20px 0;
}
.partners-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: var(--white);
	border: 1px solid rgba(10, 22, 40, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	z-index: 10;
	box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
}
.partners-arrow:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: translateY(-50%) scale(1.1);
}
.partners-arrow svg {
	width: 20px;
	height: 20px;
	fill: var(--steel);
	transition: var(--transition);
}
.partners-arrow:hover svg {
	fill: var(--white);
}
.partners-arrow.prev {
	left: -25px;
}
.partners-arrow.next {
	right: -25px;
}
.partners-track {
	display: flex;
	overflow: hidden;
}
.partners-list {
	display: flex;
	gap: 25px;
	transition: transform 0.5s ease;
}
.partner-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	width: calc(16.666% - 21px);
	background: var(--white);
	border-radius: 12px;
	transition: var(--transition);
	cursor: pointer;
	border: 1px solid rgba(10, 22, 40, 0.06);
	padding: 15px;
}
.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(10, 22, 40, 0.08);
	border-color: rgba(217, 48, 37, 0.15);
}
.partner-item img {
	max-width: 90%;
	max-height: 70px;
	object-fit: contain;
	opacity: 0.6;
	transition: var(--transition);
}
.partner-item:hover img {
	opacity: 1;
}
.products {
	background: var(--white);
	position: relative;
	overflow: hidden;
}
.products::before {
	content: '';
	position: absolute;
	top: -300px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.04) 0%, transparent 70%);
	border-radius: 50%;
}
.product-categories {
	display: flex;
	flex-wrap: nowrap;
	gap: 15px;
	justify-content: flex-start;
	margin-bottom: 50px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(10, 22, 40, 0.06);
	overflow-x: auto;
	scrollbar-width: none;
}
 .product-categories::-webkit-scrollbar {
 display: none;
}
.category-btn {
	display: inline-block;
	padding: 12px 28px;
	background: transparent;
	border: 2px solid rgba(10, 22, 40, 0.1);
	color: var(--primary);
	font-size: 15px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	outline: none;
}
.category-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.category-btn.active {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--white);
}
.products-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 18px;
}
.product-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	transition: var(--transition);
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(10, 22, 40, 0.05);
	position: relative;
	border: 1px solid rgba(10, 22, 40, 0.04);
}
.product-card-large {
	grid-column: span 1;
	grid-row: span 2;
}
.product-card-large .product-image {
	height: 420px;
}
.product-card-large .product-info {
	padding: 30px;
}
.product-card-large .product-info h4 {
	font-size: 24px;
}
.product-card-large .product-info p {
	font-size: 15px;
	min-height: 70px;
}
.product-card-large .product-link {
	padding: 12px 26px;
	font-size: 14px;
}
.product-card:not(.product-card-large) .product-image {
	height: 180px;
}
.product-card:not(.product-card-large) .product-info {
	padding: 20px;
}
.product-card:not(.product-card-large) .product-info h4 {
	font-size: 15px;
	margin-bottom: 8px;
	margin-top: 12px;
}
.product-card:not(.product-card-large) .product-info p {
	font-size: 13px;
	margin-bottom: 16px;
	min-height: auto;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card:not(.product-card-large) .product-link {
	padding: 6px 14px;
	font-size: 12px;
}
.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: var(--accent);
	opacity: 0;
	transition: var(--transition);
}
.product-card:hover::before {
	opacity: 1;
}
.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}
.product-image {
	height: 220px;
	overflow: hidden;
	position: relative;
}
.product-card-large .product-image {
	height: 320px;
}
.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.product-card:hover .product-image img {
	transform: scale(1.06);
}
.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(10, 22, 40, 0.05) 0%, rgba(10, 22, 40, 0) 100%);
	opacity: 0;
	transition: var(--transition);
}
.product-card:hover .product-overlay {
	opacity: 1;
}
.product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--accent);
	color: var(--white);
	padding: 8px 18px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	z-index: 2;
}
.product-card-large .product-badge {
	padding: 10px 22px;
	font-size: 12px;
}
.product-info {
	padding: 28px;
	position: relative;
}
.product-card-large .product-info {
	padding: 35px;
}
.product-info::after {
	content: '';
	position: absolute;
	top: 0;
	left: 28px;
	right: 28px;
	height: 1px;
	background: rgba(10, 22, 40, 0.05);
}
.product-card-large .product-info::after {
	left: 35px;
	right: 35px;
}
.product-info h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 12px;
	transition: var(--transition);
	line-height: 1.45;
	font-weight: 600;
	margin-top: 15px;
}
.product-card-large .product-info h4 {
	font-size: 24px;
	margin-bottom: 18px;
}
.product-card:hover .product-info h4 {
	color: var(--accent);
}
.product-info p {
	font-size: 14px;
	color: var(--steel);
	line-height: 1.8;
	margin-bottom: 20px;
	min-height: 60px;
}
.product-card-large .product-info p {
	font-size: 16px;
	margin-bottom: 28px;
	min-height: 80px;
}
.product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	padding: 8px 18px;
	border-radius: 6px;
	background: rgba(217, 48, 37, 0.05);
}
.product-card-large .product-link {
	padding: 12px 24px;
	font-size: 15px;
}
.product-link:hover {
	gap: 16px;
	background: var(--accent);
	color: var(--white);
}
.product-link::after {
	content: '→';
	font-size: 14px;
	transition: var(--transition);
}
.product-card:hover .product-link::after {
	transform: translateX(4px);
}
.industry {
	position: relative;
	overflow: hidden;
	min-height: 600px;
}
.industry-bg-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.industry-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.industry-bg.active {
	opacity: 1;
}
.industry-bg-0 {
	/* background: linear-gradient(135deg, rgba(217, 48, 37, 0.9), rgba(180, 30, 25, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
	background-image: url(../images/application1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.industry-bg-1 {
	/* background: linear-gradient(135deg, rgba(46, 134, 222, 0.9), rgba(30, 100, 180, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
	background-image: url(../images/application2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.industry-bg-2 {
	/* background: linear-gradient(135deg, rgba(64, 196, 128, 0.9), rgba(40, 160, 100, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
	background-image: url(../images/application3.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.industry-bg-3 {
	/* background: linear-gradient(135deg, rgba(160, 96, 232, 0.9), rgba(120, 60, 200, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
	background-image: url(../images/application4.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.industry-bg-4 {
	/* background: linear-gradient(135deg, rgba(255, 180, 0, 0.9), rgba(220, 140, 0, 0.85)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
	background-image: url(../images/application5.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.industry .section-header {
	position: relative;
	z-index: 2;
}
.industry .section-label {
	color: rgba(255, 255, 255, 0.7);
}
.industry .section-title {
	color: var(--white);
}
.industry .section-desc {
	color: rgba(255, 255, 255, 0.8);
}
.industry-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
	position: relative;
	z-index: 2;
}
.industry-list {
	display: flex;
	/* flex-direction: column; */
	gap: 15px;/* width: 280px; */
}
.industry-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 25px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	cursor: pointer;
	transition: var(--transition);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.industry-item:hover, .industry-item.active {
	background: rgba(255, 255, 255, 0.25);
	transform: translateX(10px);
}
.industry-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: var(--transition);
}
.industry-item:hover .industry-icon, .industry-item.active .industry-icon {
	background: var(--white);
}
.industry-icon svg {
	width: 24px;
	height: 24px;
	fill: rgba(255, 255, 255, 0.9);
	transition: var(--transition);
}
.industry-item:hover .industry-icon svg, .industry-item.active .industry-icon svg {
	fill: var(--primary);
}
.industry-text {
	flex: 1;
}
.industry-item h4 {
	font-size: 16px;
	color: var(--white);
	font-weight: 600;
	margin-bottom: 4px;
	transition: var(--transition);
}
.industry-en {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.industry-detail {
	flex: 1;
	margin-left: 60px;
}
.industry-detail-content {
	padding: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.industry-detail-content h3 {
	font-size: 32px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.industry-detail-content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.9;
	margin-bottom: 30px;
}
.industry-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	background: var(--white);
	color: var(--primary);
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: var(--transition);
}
.industry-link:hover {
	gap: 18px;
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.news {
	background: var(--light-gray);
	position: relative;
}
.news::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 48, 37, 0.2), transparent);
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.news-card {
	background: var(--white);
	border-radius: 24px;
	overflow: hidden;
	transition: var(--transition);
	cursor: pointer;
	box-shadow: 0 8px 35px rgba(10, 22, 40, 0.06);
	position: relative;
}
.news-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	opacity: 0;
	transition: var(--transition);
}
.news-card:hover::before {
	opacity: 1;
}
.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 55px rgba(10, 22, 40, 0.12);
}
.news-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}
.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.news-card:hover .news-image img {
	transform: scale(1.08);
}
.news-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.3));
}
.news-date {
	position: absolute;
	bottom: 20px;
	left: 25px;
	background: var(--accent);
	color: var(--white);
	padding: 8px 20px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(217, 48, 37, 0.3);
}
.news-content {
	padding: 35px;
	position: relative;
}
.news-content::after {
	content: '';
	position: absolute;
	top: 0;
	left: 35px;
	right: 35px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 48, 37, 0.12), transparent);
}
.news-content h4 {
	font-size: 22px;
	color: var(--primary);
	margin-bottom: 20px;
	line-height: 1.5;
	transition: var(--transition);
	font-weight: 600;
	margin-top: 20px;
}
.news-card:hover .news-content h4 {
	color: var(--accent);
}
.news-content p {
	font-size: 15px;
	color: var(--steel);
	line-height: 1.85;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 25px;
}
.news-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--accent);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
	padding: 10px 22px;
	border-radius: 8px;
	background: rgba(217, 48, 37, 0.05);
}
.news-link:hover {
	gap: 20px;
	background: var(--accent);
	color: var(--white);
}
.news-link::after {
	content: '→';
	font-size: 16px;
}
.news-card:hover .news-link::after {
	transform: translateX(5px);
}
.contact {
	background: var(--white);
	position: relative;
	overflow: hidden;
}
.contact::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.05) 0%, transparent 70%);
	border-radius: 50%;
}
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	position: relative;
	z-index: 2;
}
.contact-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	align-content: start;
}
.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px 25px;
	background: var(--white);
	border-radius: 20px;
	transition: var(--transition);
	box-shadow: 0 8px 35px rgba(10, 22, 40, 0.06);
	border: 2px solid rgba(10, 22, 40, 0.05);
	position: relative;
}
.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	border-radius: 2px;
	opacity: 0;
	transition: var(--transition);
}
.contact-card:hover::before {
	opacity: 1;
}
.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 55px rgba(10, 22, 40, 0.1);
	border-color: rgba(217, 48, 37, 0.15);
}
.contact-icon {
	width: 85px;
	height: 85px;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.05), rgba(10, 22, 40, 0.02));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: var(--transition);
	border: 2px solid rgba(10, 22, 40, 0.08);
	margin-bottom: 25px;
}
.contact-card:hover .contact-icon {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.1);
}
.contact-icon svg {
	width: 36px;
	height: 36px;
	fill: var(--primary);
	transition: var(--transition);
}
.contact-card:hover .contact-icon svg {
	fill: var(--white);
}
.contact-text h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 15px;
	font-weight: 600;
	letter-spacing: 1px;
}
.contact-text p {
	font-size: 14px;
	color: var(--steel);
	line-height: 1.85;
}
.contact-text a {
	color: var(--steel);
	text-decoration: none;
	transition: var(--transition);
}
.contact-text a:hover {
	color: var(--accent);
}
.contact-form-wrapper {
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.1) 0%, rgba(5, 13, 24, 0.2) 100%);
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 25px 80px rgba(10, 22, 40, 0.35);
	position: relative;
	overflow: hidden;
}
.contact-form-wrapper::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}
.contact-form-wrapper h3 {
	font-size: 30px;
	/* color: var(--white); */
	margin-bottom: 40px;
	font-weight: 600;
	position: relative;
	z-index: 2;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.form-group {
	margin-bottom: 28px;
	position: relative;
	z-index: 2;
}
.form-group label {
	display: block;
	font-size: 14px;
	/* color: rgba(255, 255, 255, 0.6); */
	margin-bottom: 14px;
	font-weight: 500;
	letter-spacing: 1px;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 10px 26px;
	background: rgba(0, 0, 0, 0.06);
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	/* color: var(--white); */
	font-size: 15px;
	transition: var(--transition);
	outline: none;
	font-family: 'Noto Sans SC', sans-serif;
}
.form-group input:focus, .form-group textarea:focus {
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.1);
}
.form-group textarea {
	resize: none;
	height: 93px;
}
 .form-group ::placeholder {
 color: rgba(0, 0, 0, 0.3);
}
.btn-submit {
	width: 100%;
	background: var(--accent);
	color: var(--white);
	border: none;
	cursor: pointer;
	padding: 22px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition);
	letter-spacing: 2px;
	margin-top: 15px;
	position: relative;
	z-index: 2;
}
.btn-submit:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
	box-shadow: 0 18px 45px rgba(217, 48, 37, 0.4);
}
footer {
	background: var(--primary);
	position: relative;
	overflow: hidden;
}
.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-top {
	padding: 100px 0;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
}
.footer-brand {
	padding-right: 40px;
	position: relative;
}
.footer-brand::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}
.footer-logo img {
	height: 55px;
	width: auto;
}
.footer-logo-text {
	display: flex;
	flex-direction: column;
}
.footer-logo-title {
	color: var(--white);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 4px;
}
.footer-logo-subtitle {
	color: rgba(255, 255, 255, 0.4);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-top: 5px;
}
.footer-brand p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 2;
}
.footer-links h4 {
	font-size: 17px;
	color: var(--white);
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--accent);
	display: inline-block;
	font-weight: 600;
	letter-spacing: 1px;
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	margin-bottom: 8px;
}
.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;/* gap: 8px;
    padding-left: 0; */
}
.footer-links a::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	/* opacity: 0; */
	margin-right: 12px;
	transition: var(--transition);
}
.footer-links a:hover {
	color: var(--white);
	padding-left: 12px;
}
.footer-links a:hover::before {
	opacity: 1;
}
.footer-contact h4 {
	font-size: 17px;
	color: var(--white);
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--accent);
	display: inline-block;
	font-weight: 600;
	letter-spacing: 1px;
}
.contact-item {
	display: flex;
	align-items: center;
	/* gap: 12px; */
	margin-bottom: 12px;
}
.contact-icon-small {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	flex-shrink: 0;
}
.contact-icon-small svg {
	width: 16px;
	height: 16px;
	fill: var(--accent);
}
.footer-contact span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}
.footer-contact a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: var(--transition);
}
.footer-contact a:hover {
	color: var(--accent);
}
.footer-bottom {
	padding: 35px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	position: relative;
}
.footer-bottom::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 25%;
	right: 25%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 48, 37, 0.3), transparent);
}
.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 1px;
}
/* ===== 内页 Banner ===== */
.page-banner {
	position: relative;
	height: 420px;
	margin-top: 100px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.page-banner-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.05);
	animation: bannerZoom 20s ease-in-out infinite alternate;
}
 @keyframes bannerZoom {
 from {
transform: scale(1.05);
}
to {
	transform: scale(1.15);
}
}
.page-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.65) 0%, rgba(5, 13, 24, 0.45) 100%);
}
.page-banner-content {
	position: relative;
	z-index: 2;
	/* display: flex; */
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
	padding-bottom: 20px;
}
.page-banner-text {
	color: var(--white);
	text-align: center;
}
.page-banner-label {
	font-size: 14px;
	color: var(--accent-light);
	letter-spacing: 6px;
	margin-bottom: 18px;
	font-weight: 600;
}
.page-banner-title {
	font-size: 52px;
	font-weight: 700;
	letter-spacing: 4px;
	margin-bottom: 18px;
	line-height: 1.2;
}
.page-banner-desc {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 1px;
	max-width: 600px;
}
.breadcrumb {
	/* display: flex;
    align-items: center; */
	gap: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
}
.breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-fast);
}
.breadcrumb a:hover {
	color: var(--accent-light);
}
.breadcrumb-sep {
	color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-current {
	color: var(--white);
}
/* ===== 公司简介页 ===== */
.about-page {
	padding: 100px 0;
}
.about-page-content {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 70px;
	align-items: center;
}
.about-page-images {
	position: relative;
}
.about-page-main-img {
	position: relative;
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}
.about-page-main-img img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	transition: transform 0.8s ease;
}
.about-page-main-img:hover img {
	transform: scale(1.05);
}
.about-page-exp {
	position: absolute;
	right: -30px;
	bottom: -30px;
	background: var(--accent);
	color: var(--white);
	padding: 28px 36px;
	border-radius: 8px;
	box-shadow: 0 15px 35px rgba(217, 48, 37, 0.4);
	display: flex;
	align-items: center;
	gap: 18px;
}
.exp-number {
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: flex-start;
}
.exp-plus {
	font-size: 28px;
	margin-top: 4px;
}
.exp-text {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 1px;
}
.about-page-sub-imgs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-top: 15px;
}
.about-page-sub-img {
	border-radius: 6px;
	overflow: hidden;
	height: 130px;
}
.about-page-sub-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.about-page-sub-img:hover img {
	transform: scale(1.1);
}
.about-page-text {
	padding-left: 10px;
}
.about-page .section-label {
	font-size: 14px;
	color: var(--accent);
	letter-spacing: 5px;
	font-weight: 600;
	margin-bottom: 18px;
}
.about-page-title {
	font-size: 36px;
	color: var(--primary);
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.3;
}
.about-page-divider {
	width: 60px;
	height: 3px;
	background: var(--accent);
	margin: 22px 0 28px;
	border-radius: 2px;
}
.about-page-desc {
	font-size: 15px;
	line-height: 1.9;
	color: var(--steel);
	margin-bottom: 18px;
	text-align: justify;
}
.about-page-list {
	list-style: none;
	margin: 25px 0 32px;
}
.about-page-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--steel-dark);
	margin-bottom: 12px;
}
.check-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	font-size: 13px;
	flex-shrink: 0;
}
.about-page-buttons {
	display: flex;
	gap: 18px;
}
/* ===== 统计区(内页) ===== */
.stats-page {
	padding: 70px 0;
}
/* ===== 企业文化 ===== */
.culture {
	padding: 100px 0;
	background: var(--light-gray);
	position: relative;
}
.culture-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}
.culture-card {
	background: var(--white);
	padding: 45px 30px;
	border-radius: 8px;
	text-align: center;
	transition: var(--transition);
	border-top: 3px solid transparent;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}
.culture-card:hover {
	transform: translateY(-8px);
	border-top-color: var(--accent);
	box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
}
.culture-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.culture-card:hover .culture-icon {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
.culture-icon svg {
	width: 32px;
	height: 32px;
	fill: var(--white);
}
.culture-card h3 {
	font-size: 20px;
	color: var(--primary);
	margin-bottom: 15px;
	letter-spacing: 1px;
}
.culture-card p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--steel);
}
/* ===== 发展历程 ===== */
.timeline {
	padding: 100px 0;
}
.timeline-wrapper {
	position: relative;
	margin-top: 60px;
	padding: 40px 0;
}
.timeline-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	background: linear-gradient(180deg, transparent 0%, var(--accent) 15%, var(--accent) 85%, transparent 100%);
}
.timeline-items {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.timeline-item {
	position: relative;
	width: 50%;
	padding: 0 50px;
}
.timeline-item:nth-child(odd) {
	margin-left: 0;
	text-align: right;
}
.timeline-item:nth-child(even) {
	margin-left: 50%;
}
.timeline-dot {
	position: absolute;
	top: 8px;
	width: 16px;
	height: 16px;
	background: var(--white);
	border: 3px solid var(--accent);
	border-radius: 50%;
	z-index: 2;
	transition: var(--transition);
}
.timeline-item:nth-child(odd) .timeline-dot {
	right: -8px;
}
.timeline-item:nth-child(even) .timeline-dot {
	left: -8px;
}
.timeline-item:hover .timeline-dot {
	background: var(--accent);
	transform: scale(1.25);
	box-shadow: 0 0 0 6px rgba(217, 48, 37, 0.15);
}
.timeline-content {
	background: var(--white);
	padding: 28px 32px;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	transition: var(--transition);
	border-left: 3px solid var(--accent);
}
.timeline-item:nth-child(odd) .timeline-content {
	border-left: none;
	border-right: 3px solid var(--accent);
}
.timeline-item:hover .timeline-content {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(10, 22, 40, 0.12);
}
.timeline-year {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
	letter-spacing: 1px;
}
.timeline-content h4 {
	font-size: 18px;
	color: var(--primary);
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.timeline-content p {
	font-size: 14px;
	line-height: 1.8;
	color: var(--steel);
}
/* ===== 联系我们页面 ===== */
.contact-page {
	padding: 100px 0 80px;
	background: var(--light-gray);
}
.contact-page-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	margin-top: 60px;
}
.contact-info-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-content: start;
}
.info-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 28px 24px;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
	border: 1px solid rgba(10, 22, 40, 0.05);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, var(--accent), var(--primary));
	transition: height 0.3s ease;
}
.info-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 45px rgba(10, 22, 40, 0.1);
	border-color: rgba(217, 48, 37, 0.15);
}
.info-card:hover::before {
	height: 100%;
}
.info-card-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.05), rgba(217, 48, 37, 0.05));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	border: 1.5px solid rgba(10, 22, 40, 0.08);
}
.info-card:hover .info-card-icon {
	background: var(--accent);
	border-color: var(--accent);
	transform: scale(1.05);
}
.info-card-icon svg {
	width: 26px;
	height: 26px;
	fill: var(--primary);
	transition: var(--transition);
}
.info-card:hover .info-card-icon svg {
	fill: var(--white);
}
.info-card-body h3 {
	font-size: 17px;
	color: var(--primary);
	margin-bottom: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.info-card-body p {
	font-size: 13.5px;
	color: var(--steel);
	line-height: 1.75;
	margin-bottom: 6px;
	word-break: break-all;
}
.info-card-body p:last-child {
	margin-bottom: 0;
}
.info-card-body p strong {
	color: var(--primary);
	font-weight: 600;
}
.info-card-body a {
	color: var(--steel);
	text-decoration: none;
	transition: var(--transition);
}
.info-card-body a:hover {
	color: var(--accent);
}
/* 联系表单补充样式 */
.form-subtitle {
	font-size: 14px;
	/* color: rgba(255, 255, 255, 0.55); */
	line-height: 1.8;
	margin-bottom: 32px;
	position: relative;
	z-index: 2;
}
.required {
	color: var(--accent);
	margin-left: 2px;
	font-weight: 700;
}
.contact-form-wrapper h3 {
	margin-bottom: 12px;
}
/* 百度地图区域 */
.contact-map {
	padding: 80px 0 100px;
	background: var(--white);
}
.map-wrapper {
	margin-top: 50px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
	border: 3px solid var(--white);
	background: var(--light-gray);
	position: relative;
	line-height: 0;
}
.map-wrapper iframe, .map-wrapper img {
	display: block;
	width: 100%;
	height: 500px;
	border: none;
}
.map-actions {
	margin-top: 30px;
	text-align: center;
}
.map-actions .btn-about-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.map-actions .btn-about-primary::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background: var(--white);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
}
/* ===== 资讯列表页 ===== */
.news-list-page {
	padding: 70px 0 100px;
	background: var(--light-gray);
}
/* 分类标签 */
.news-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 50px;
}
.news-tab {
	display: inline-block;
	padding: 10px 32px;
	background: var(--white);
	color: var(--steel);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 30px;
	transition: var(--transition);
	border: 1.5px solid rgba(10, 22, 40, 0.08);
	letter-spacing: 0.5px;
}
.news-tab:hover {
	color: var(--accent);
	border-color: var(--accent);
	transform: translateY(-2px);
}
.news-tab.active {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
	box-shadow: 0 6px 18px rgba(217, 48, 37, 0.3);
}
/* 头条新闻 */
.news-featured {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
	margin-bottom: 50px;
	position: relative;
}
.news-featured-image {
	position: relative;
	overflow: hidden;
	min-height: 320px;
}
.news-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.news-featured:hover .news-featured-image img {
	transform: scale(1.05);
}
.news-featured-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--accent);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	padding: 5px 16px;
	border-radius: 20px;
	letter-spacing: 1px;
	z-index: 2;
}
.news-featured-content {
	padding: 45px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.news-featured-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}
.news-cat-badge {
	display: inline-block;
	padding: 4px 14px;
	background: rgba(217, 48, 37, 0.1);
	color: var(--accent);
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	letter-spacing: 0.5px;
}
.news-cat-badge.cat-company {
	background: rgba(10, 22, 40, 0.08);
	color: var(--primary);
}
.news-cat-badge.cat-industry {
	background: rgba(40, 160, 100, 0.1);
	color: #28a05c;
}
.news-featured-date {
	font-size: 14px;
	color: var(--steel);
}
.news-featured-title {
	font-size: 26px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 18px;
	line-height: 1.4;
	transition: var(--transition);
}
.news-featured:hover .news-featured-title {
	color: var(--accent);
}
.news-featured-desc {
	font-size: 15px;
	color: var(--steel);
	line-height: 1.85;
	margin-bottom: 28px;
}
/* 新闻列表 */
.news-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.news-list-item {
	display: grid;
	grid-template-columns: 280px 1fr;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
	transition: var(--transition);
	position: relative;
}
.news-list-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--accent);
	transform: scaleY(0);
	transition: transform 0.3s ease;
	transform-origin: top;
}
.news-list-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 45px rgba(10, 22, 40, 0.12);
}
.news-list-item:hover::before {
	transform: scaleY(1);
}
.news-list-image {
	position: relative;
	overflow: hidden;
}
.news-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.news-list-item:hover .news-list-image img {
	transform: scale(1.08);
}
.news-list-date {
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	color: var(--white);
	padding: 10px 18px;
	border-radius: 0 12px 0 0;
	text-align: center;
	line-height: 1.2;
	z-index: 2;
}
.date-day {
	display: block;
	font-size: 24px;
	font-weight: 700;
}
.date-month {
	display: block;
	font-size: 12px;
	opacity: 0.9;
}
.news-list-body {
	padding: 32px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.news-list-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.news-list-info {
	font-size: 13px;
	color: var(--steel);
}
.news-list-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 14px;
	line-height: 1.5;
}
.news-list-title a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}
.news-list-item:hover .news-list-title a {
	color: var(--accent);
}
.news-list-desc {
	font-size: 14px;
	color: var(--steel);
	line-height: 1.85;
	margin-bottom: 18px;
}
.news-list-more {
	font-size: 14px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	align-self: flex-start;
}
.news-list-more:hover {
	letter-spacing: 1px;
}
/* 分页 */
.pagination {
	margin-top: 60px;
}
.pages {
	text-align: center;
}
.showpage {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 15px;
	line-height: 1;
}
/* 链接页码（含 首页/上一页/下一页/末页/数字页码） */
.showpage a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: var(--white);
	color: var(--primary);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: 10px;
	border: 1.5px solid rgba(10, 22, 40, 0.08);
	transition: var(--transition);
}
.showpage a:hover {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
	transform: translateY(-2px);
}
/* 当前页 */
.showpage .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background: var(--accent);
	color: var(--white);
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	border: 1.5px solid var(--accent);
	cursor: default;
}
/* ===== 新闻详情页 ===== */
.article-page {
	padding: 70px 0 80px;
	background: var(--light-gray);
}
.article-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}
/* 文章主体 */
.article-main {
	background: var(--white);
	border-radius: 16px;
	padding: 45px 50px;
	box-shadow: 0 8px 35px rgba(10, 22, 40, 0.05);
}
.article-header {
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(10, 22, 40, 0.06);
	margin-bottom: 30px;
}
.article-header .news-cat-badge {
	margin-bottom: 16px;
}
.article-title {
	font-size: 28px;
	color: var(--primary);
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 18px;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.article-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--steel);
}
.article-meta-item svg {
	width: 17px;
	height: 17px;
	fill: var(--steel);
}
/* 文章封面 */
.article-cover {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 35px;
}
.article-cover img {
	width: 100%;
	display: block;
}
/* 文章正文 */
.article-content {
	font-size: 16px;
	color: #333;
	line-height: 2;
}
.article-lead {
	font-size: 17px;
	color: var(--primary);
	line-height: 1.9;
	padding: 20px 24px;
	background: rgba(217, 48, 37, 0.04);
	border-left: 4px solid var(--accent);
	border-radius: 0 8px 8px 0;
	margin-bottom: 30px;
}
.article-content h2 {
	font-size: 22px;
	color: var(--primary);
	font-weight: 700;
	margin: 35px 0 18px;
	padding-left: 14px;
	border-left: 4px solid var(--accent);
	line-height: 1.4;
}
.article-content p {
	margin-bottom: 18px;
}
.article-content strong {
	color: var(--primary);
	font-weight: 600;
}
.article-content blockquote {
	background: linear-gradient(135deg, rgba(217, 48, 37, 0.06), rgba(217, 48, 37, 0.02));
	border-left: 4px solid var(--accent);
	padding: 18px 24px;
	margin: 25px 0;
	border-radius: 0 8px 8px 0;
	color: var(--primary);
	font-size: 15px;
	line-height: 1.8;
}
.article-image-block {
	margin: 30px 0;
	text-align: center;
}
.article-image-block img {
	width: 100%;
	border-radius: 10px;
}
.article-image-caption {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: var(--steel);
}
.article-list {
	margin: 18px 0 25px;
	padding-left: 0;
	list-style: none;
}
.article-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	line-height: 1.85;
}
.article-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 2px;
	transform: rotate(45deg);
}
/* 标签与分享栏 */
.article-footer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 25px 0;
	margin-top: 35px;
	border-top: 1px solid rgba(10, 22, 40, 0.06);
	border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}
.article-tags {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.article-tag {
	display: inline-block;
	padding: 5px 16px;
	background: rgba(10, 22, 40, 0.04);
	color: var(--steel);
	font-size: 13px;
	border-radius: 20px;
	transition: var(--transition);
}
.article-tag:hover {
	background: var(--accent);
	color: var(--white);
}
.article-share {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--steel);
}
.share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(10, 22, 40, 0.04);
	border-radius: 50%;
	transition: var(--transition);
}
.share-link svg {
	width: 18px;
	height: 18px;
	fill: var(--primary);
	transition: var(--transition);
}
.share-link:hover {
	background: var(--accent);
	transform: translateY(-2px);
}
.share-link:hover svg {
	fill: var(--white);
}
/* 上下篇导航 */
.article-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}
.article-nav-item {
	padding: 22px 24px;
	background: rgba(10, 22, 40, 0.02);
	border-radius: 12px;
	border: 1px solid rgba(10, 22, 40, 0.04);
	transition: var(--transition);
}
.article-nav-item:hover {
	background: rgba(217, 48, 37, 0.03);
	border-color: rgba(217, 48, 37, 0.1);
}
.article-nav-next {
	text-align: right;
}
.article-nav-label {
	display: block;
	font-size: 13px;
	color: var(--steel);
	margin-bottom: 8px;
}
.article-nav-item a {
	font-size: 15px;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}
.article-nav-item a:hover {
	color: var(--accent);
}
.article-nav-empty {
	font-size: 14px;
	color: rgba(10, 22, 40, 0.25);
}
/* 侧边栏 */
.article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.sidebar-block {
	background: var(--white);
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
}
.sidebar-title {
	font-size: 18px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(10, 22, 40, 0.06);
	position: relative;
}
.sidebar-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 45px;
	height: 2px;
	background: var(--accent);
}
/* 热门列表 */
.sidebar-hot-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px dashed rgba(10, 22, 40, 0.05);
}
.sidebar-hot-list li:last-child {
	border-bottom: none;
}
.hot-rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	min-width: 22px;
	background: rgba(10, 22, 40, 0.06);
	color: var(--steel);
	font-size: 13px;
	font-weight: 700;
	border-radius: 5px;
	margin-top: 1px;
}
.hot-rank.rank-1 {
	background: var(--accent);
	color: var(--white);
}
.hot-rank.rank-2 {
	background: rgba(217, 48, 37, 0.65);
	color: var(--white);
}
.hot-rank.rank-3 {
	background: rgba(217, 48, 37, 0.35);
	color: var(--white);
}
.sidebar-hot-list a {
	font-size: 14px;
	color: var(--primary);
	text-decoration: none;
	line-height: 1.6;
	transition: var(--transition);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sidebar-hot-list a:hover {
	color: var(--accent);
}
/* 分类列表 */
.sidebar-cat-list li {
	border-bottom: 1px dashed rgba(10, 22, 40, 0.05);
}
.sidebar-cat-list li:last-child {
	border-bottom: none;
}
.sidebar-cat-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	font-size: 15px;
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}
.sidebar-cat-list a:hover {
	color: var(--accent);
	padding-left: 8px;
}
.sidebar-cat-list span {
	font-size: 13px;
	color: var(--steel);
	background: rgba(10, 22, 40, 0.04);
	padding: 2px 10px;
	border-radius: 10px;
}
/* 侧边CTA */
.sidebar-cta {
	background: linear-gradient(135deg, var(--primary) 0%, #1a2a4a 100%);
	border-radius: 12px;
	padding: 30px 24px;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.sidebar-cta::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}
.sidebar-cta h3 {
	color: var(--white);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	position: relative;
}
.sidebar-cta p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 22px;
	position: relative;
}
.sidebar-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 18px;
	background: var(--accent);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	transition: var(--transition);
	position: relative;
}
.sidebar-cta-btn svg {
	width: 18px;
	height: 18px;
	fill: var(--white);
}
.sidebar-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(217, 48, 37, 0.4);
}
/* 相关资讯 */
.article-related {
	padding: 80px 0 100px;
	background: var(--white);
}
/* ===== 客户案例页 ===== */
.cases-page {
	padding: 70px 0 80px;
	background: var(--light-gray);
}
/* 案例网格 */
.case-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
/* 案例卡片 */
.case-card {
	background: var(--white);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.06);
	transition: var(--transition);
}
.case-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 45px rgba(10, 22, 40, 0.12);
}
.case-image {
	position: relative;
	width: 100%;
	padding-top: 66%;
	overflow: hidden;
}
.case-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.case-card:hover .case-image img {
	transform: scale(1.08);
}
/* 悬停遮罩 */
.case-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(217, 48, 37, 0.75) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	opacity: 0;
	transition: opacity 0.35s ease;
}
.case-card:hover .case-overlay {
	opacity: 1;
}
.case-overlay-content {
	text-align: center;
	color: var(--white);
	transform: translateY(15px);
	transition: transform 0.4s ease;
}
.case-card:hover .case-overlay-content {
	transform: translateY(0);
}
.case-tag {
	display: inline-block;
	padding: 4px 14px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	font-size: 13px;
	border-radius: 15px;
	margin-bottom: 14px;
}
.case-overlay-content h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.5;
}
.case-overlay-content p {
	font-size: 14px;
	line-height: 1.7;
	opacity: 0.9;
	margin-bottom: 20px;
}
.case-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	background: var(--white);
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 25px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
}
.case-view-btn svg {
	width: 18px;
	height: 18px;
	fill: var(--accent);
	transition: var(--transition);
}
.case-view-btn:hover {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.05);
}
.case-view-btn:hover svg {
	fill: var(--white);
}
/* 案例信息 */
.case-info {
	padding: 22px 24px 26px;
}
.case-cat {
	display: inline-block;
	font-size: 13px;
	color: var(--accent);
	font-weight: 600;
	margin-bottom: 8px;
}
.case-info h4 {
	font-size: 17px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 6px;
	line-height: 1.5;
}
.case-info p {
	font-size: 14px;
	color: var(--steel);
	margin: 0;
}
/* 统计区 */
.cases-stats-section {
	padding: 70px 0;
	background: linear-gradient(135deg, var(--primary) 0%, #1a2a4a 100%);
	position: relative;
	overflow: hidden;
}
.cases-stats-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.3) 0%, transparent 70%);
	border-radius: 50%;
}
.cases-stats-section::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(217, 48, 37, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}
.stat-item {
	text-align: center;
	color: var(--white);
}
.stat-number {
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	color: var(--white);
	margin-bottom: 10px;
	font-family: 'Arial', sans-serif;
}
.stat-number span {
	font-size: 32px;
	color: var(--accent);
	margin-left: 2px;
}
.stat-label {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 400;
}
/* CTA */
.cases-cta-section {
	padding: 80px 0;
	background: var(--white);
}
.cases-cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 50px 55px;
	background: linear-gradient(135deg, rgba(217, 48, 37, 0.04) 0%, rgba(10, 22, 40, 0.02) 100%);
	border-radius: 20px;
	border: 1px solid rgba(10, 22, 40, 0.06);
}
.cta-text h2 {
	font-size: 28px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 10px;
}
.cta-text p {
	font-size: 16px;
	color: var(--steel);
}
.cta-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: var(--accent);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	transition: var(--transition);
}
.cta-btn-primary svg {
	width: 18px;
	height: 18px;
	fill: var(--white);
}
.cta-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(217, 48, 37, 0.4);
}
.cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	padding: 14px 32px;
	background: var(--white);
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	border: 1.5px solid rgba(10, 22, 40, 0.12);
	transition: var(--transition);
}
.cta-btn-secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
}
/* 灯箱 */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	padding: 60px;
}
.lightbox.active {
	display: flex;
}
.lightbox-img {
	max-width: 90%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white);
	font-size: 15px;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 8px 24px;
	border-radius: 20px;
}
.lightbox-close {
	position: absolute;
	top: 25px;
	right: 35px;
	color: var(--white);
	font-size: 42px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
	transition: var(--transition);
}
.lightbox-close:hover {
	color: var(--accent);
	transform: rotate(90deg);
}
.lightbox-prev, .lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: var(--white);
	font-size: 48px;
	font-weight: 300;
	cursor: pointer;
	padding: 20px;
	transition: var(--transition);
	user-select: none;
}
.lightbox-prev {
	left: 30px;
}
.lightbox-next {
	right: 30px;
}
.lightbox-prev:hover, .lightbox-next:hover {
	color: var(--accent);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}
/* ===== 产品列表页 ===== */
.products-list-page {
	padding: 70px 0 80px;
	background: var(--light-gray);
}
.products-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 30px;
	align-items: start;
}
/* 左侧分类 */
.products-sidebar {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.sidebar-cat-block {
	background: var(--white);
	border-radius: 12px;
	padding: 28px 0;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
	overflow: hidden;
}
.sidebar-cat-block .sidebar-title {
	padding: 0 24px 15px;
	margin-bottom: 0;
}
.prod-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.prod-cat-list li {
	border-top: 1px solid rgba(10, 22, 40, 0.04);
}
.prod-cat-list a {
	display: block;
	padding: 13px 24px;
	font-size: 15px;
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
	position: relative;
}
.prod-cat-list a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--accent);
	transform: scaleY(0);
	transition: transform 0.25s ease;
}
.prod-cat-list a:hover {
	background: rgba(217, 48, 37, 0.03);
	color: var(--accent);
	padding-left: 30px;
}
.prod-cat-list a:hover::before {
	transform: scaleY(1);
}
.prod-cat-list a.active {
	background: rgba(217, 48, 37, 0.05);
	color: var(--accent);
	font-weight: 600;
	padding-left: 30px;
}
.prod-cat-list a.active::before {
	transform: scaleY(1);
}
/* 右侧主内容 */
.products-main {
	background: var(--white);
	border-radius: 12px;
	padding: 35px;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
}
.products-main-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 22px;
	margin-bottom: 30px;
	border-bottom: 2px solid rgba(10, 22, 40, 0.05);
	position: relative;
}
.products-main-header::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--accent);
}
.products-main-header h2 {
	font-size: 22px;
	color: var(--primary);
	font-weight: 700;
}
.products-count {
	font-size: 14px;
	color: var(--steel);
}
/* 产品网格 */
.products-main .products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.products-main .product-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(10, 22, 40, 0.06);
	transition: var(--transition);
}
.products-main .product-card:hover {
	border-color: rgba(217, 48, 37, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(10, 22, 40, 0.1);
}
.products-main .product-image {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
	background: var(--light-gray);
}
.products-main .product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.products-main .product-card:hover .product-image img {
	transform: scale(1.08);
}
.products-main .product-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 22, 40, 0.4) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.products-main .product-card:hover .product-overlay {
	opacity: 1;
}
.products-main .product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 12px;
	background: var(--accent);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	border-radius: 12px;
	z-index: 1;
}
.products-main .product-info {
	padding: 18px 20px 22px;
}
.products-main .product-info h4 {
	font-size: 16px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.5;
}
.products-main .product-info p {
	font-size: 13px;
	color: var(--steel);
	line-height: 1.7;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.products-main .product-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}
.products-main .product-link::after {
	content: '\2192';
	transition: transform 0.25s ease;
}
.products-main .product-link:hover {
	opacity: 0.8;
	color:#fff;
}
.products-main .product-link:hover::after {
	transform: translateX(4px);
}
/* 分页 */
.products-main .pagination {
	margin-top: 40px;
}
/* ===== 产品详情页 ===== */
.product-detail-main {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
/* 产品信息区 */
.product-info-section {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 40px;
	background: var(--white);
	border-radius: 12px;
	padding: 35px;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
}
/* 画廊 */
.product-gallery {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.gallery-main {
	position: relative;
	width: 100%;
	padding-top: 100%;
	background: var(--light-gray);
	border-radius: 10px;
	overflow: hidden;
	border:1px solid #ccc;
}
.gallery-main img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
}
.gallery-thumbs .thumb {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition);
	background: var(--light-gray);
}
.gallery-thumbs .thumb:hover {
	border-color: rgba(217, 48, 37, 0.3);
}
.gallery-thumbs .thumb.active {
	border-color: var(--accent);
}
/* 产品信息 */
.product-info-details {
	display: flex;
	flex-direction: column;
}
.product-info-cat {
	display: inline-block;
	padding: 4px 14px;
	background: rgba(217, 48, 37, 0.08);
	color: var(--accent);
	font-size: 13px;
	font-weight: 600;
	border-radius: 4px;
	margin-bottom: 16px;
	align-self: flex-start;
}
.product-info-title {
	font-size: 26px;
	color: var(--primary);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px;
}
.product-info-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 24px;
}
/* 技术规格 */
.product-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
	padding: 20px;
	background: var(--light-gray);
	border-radius: 10px;
	margin-bottom: 24px;
}
.spec-item {
	display: flex;
	align-items: center;
	gap: 8px;
}
.spec-label {
	font-size: 13px;
	color: var(--steel);
	min-width: 75px;
}
.spec-value {
	font-size: 15px;
	color: var(--primary);
	font-weight: 600;
}
/* 操作按钮 */
.product-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}
.action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 32px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 30px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
}
.action-btn svg {
	width: 18px;
	height: 18px;
}
.action-primary {
	background: var(--accent);
	color: var(--white);
}
.action-primary svg {
	fill: var(--white);
}
.action-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(217, 48, 37, 0.4);
}
.action-secondary {
	background: var(--white);
	color: var(--primary);
	border: 1.5px solid rgba(10, 22, 40, 0.12);
}
.action-secondary:hover {
	border-color: var(--accent);
	color: var(--accent);
}
/* 元信息 */
.product-meta {
	display: flex;
	gap: 25px;
	padding-top: 18px;
	border-top: 1px solid rgba(10, 22, 40, 0.06);
	font-size: 13px;
	color: var(--steel);
}
/* Tab 切换 */
.product-tabs {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
}
.tabs-header {
	display: flex;
	border-bottom: 2px solid rgba(10, 22, 40, 0.06);
	background: var(--light-gray);
}
.tab-btn {
	flex: 1;
	padding: 16px 20px;
	background: transparent;
	color: var(--primary);
	font-size: 15px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	font-family: inherit;
}
.tab-btn:hover {
	color: var(--accent);
	background: rgba(217, 48, 37, 0.03);
}
.tab-btn.active {
	color: var(--accent);
	font-weight: 600;
	background: var(--white);
}
.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--accent);
}
.tab-content {
	display: none;
	padding: 35px 40px;
	font-size: 15px;
	color: #333;
	line-height: 1.85;
}
.tab-content.active {
	display: block;
}
.tab-content h3 {
	font-size: 19px;
	color: var(--primary);
	font-weight: 700;
	margin: 20px 0 12px;
	padding-left: 12px;
	border-left: 3px solid var(--accent);
}
.tab-content h3:first-child {
	margin-top: 0;
}
.tab-content p {
	margin-bottom: 12px;
}
/* 特点列表 */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 15px;
}
.feature-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
	line-height: 1.8;
}
.feature-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 2px;
	transform: rotate(45deg);
}
/* 参数表 */
.spec-table-wrapper {
	overflow-x: auto;
	margin-top: 10px;
}
.spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.spec-table th {
	background: var(--primary);
	color: var(--white);
	padding: 14px 18px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
}
.spec-table td {
	padding: 12px 18px;
	border-bottom: 1px solid rgba(10, 22, 40, 0.06);
	color: #333;
}
.spec-table tbody tr:hover {
	background: rgba(217, 48, 37, 0.03);
}
/* 应用领域 - 图片卡片 */
.app-image-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	margin-top: 15px;
}
.app-image-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 3 / 4;
}
.app-image-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}
.app-image-card:hover .app-image-bg {
	transform: scale(1.1);
}
.app-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.2) 50%, transparent 100%);
	transition: background 0.35s ease;
}
.app-image-card:hover .app-image-overlay {
	background: linear-gradient(to top, rgba(217, 48, 37, 0.8) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%);
}
.app-image-text {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 18px 16px;
	color: var(--white);
	z-index: 1;
}
.app-image-text h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 5px;
}
.app-image-text p {
	font-size: 13px;
	line-height: 1.6;
	opacity: 0.85;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, opacity 0.35s ease;
}
.app-image-card:hover .app-image-text p {
	max-height: 60px;
	opacity: 1;
}
/* 相关产品 */
.related-products {
	background: var(--white);
	border-radius: 12px;
	padding: 35px;
	box-shadow: 0 6px 25px rgba(10, 22, 40, 0.05);
}
.related-title {
	font-size: 20px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(10, 22, 40, 0.05);
	position: relative;
}
.related-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--accent);
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.related-card {
	border: 1px solid rgba(10, 22, 40, 0.06);
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
	background: var(--white);
}
.related-card:hover {
	border-color: rgba(217, 48, 37, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(10, 22, 40, 0.1);
}
.related-image {
	width: 100%;
	padding-top: 75%;
	position: relative;
	background: var(--light-gray);
	overflow: hidden;
}
.related-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.related-card:hover .related-image img {
	transform: scale(1.08);
}
.related-info {
	padding: 14px 16px 18px;
}
.related-info h4 {
	font-size: 15px;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.related-info p {
	font-size: 13px;
	color: var(--steel);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* ===== 资质荣誉 ===== */
.honors {
	padding: 100px 0;
	background: var(--light-gray);
}
.honors-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 50px;
}
.honor-card {
	background: var(--white);
	padding: 40px 25px;
	border-radius: 8px;
	text-align: center;
	position: relative;
	transition: var(--transition);
	overflow: hidden;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}
.honor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), var(--accent-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}
.honor-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}
.honor-card:hover::before {
	transform: scaleX(1);
}
.honor-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, rgba(217, 48, 37, 0.1) 0%, rgba(234, 67, 53, 0.1) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.honor-card:hover .honor-icon {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}
.honor-icon svg {
	width: 28px;
	height: 28px;
	fill: var(--accent);
	transition: var(--transition);
}
.honor-card:hover .honor-icon svg {
	fill: var(--white);
}
.honor-year {
	font-size: 14px;
	color: var(--accent);
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.honor-card h4 {
	font-size: 16px;
	color: var(--primary);
	line-height: 1.5;
	margin-bottom: 8px;
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.honor-card p {
	font-size: 13px;
	color: var(--steel-light);
	margin-bottom: 15px;
}
.honor-tag {
	display: inline-block;
	padding: 4px 14px;
	background: rgba(10, 22, 40, 0.06);
	color: var(--primary);
	font-size: 12px;
	border-radius: 12px;
	letter-spacing: 1px;
}
/* ===== 工厂展示 ===== */
.factory-showcase {
	padding: 100px 0;
}
.factory-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 220px;
	gap: 20px;
	margin-top: 50px;
}
.factory-item {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
}
.factory-item-large {
	grid-row: span 2;
	grid-column: span 1;
}
.factory-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.factory-item:hover img {
	transform: scale(1.1);
}
.factory-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	opacity: 0;
	transition: var(--transition);
}
.factory-item:hover .factory-overlay {
	opacity: 1;
}
.factory-overlay h4 {
	color: var(--white);
	font-size: 18px;
	margin-bottom: 8px;
	letter-spacing: 1px;
	transform: translateY(15px);
	transition: var(--transition);
}
.factory-overlay p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	line-height: 1.6;
	transform: translateY(15px);
	transition: var(--transition) 0.1s;
}
.factory-item:hover .factory-overlay h4, .factory-item:hover .factory-overlay p {
	transform: translateY(0);
}
 @media (max-width: 1200px) {
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.partner-item {
	width: calc(33.333% - 17px);
}
.about-content {
	grid-template-columns: 1fr;
	gap: 60px;
}
.products-grid {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 20px;
}
.product-card-large {
	grid-column: span 2;
	grid-row: span 1;
}
.product-card-large .product-image {
	height: 280px;
}
.product-card:not(.product-card-large) .product-image {
	height: 150px;
}
.industry-content {
	flex-direction: column;
	gap: 30px;
}
.industry-list {
	width: 100%;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.industry-item {
	width: calc(48% - 8px);
	justify-content: center;
}
.industry-detail {
	margin-left: 0;
}
.industry-detail-content {
	padding: 30px;
}
.news-grid {
	grid-template-columns: repeat(2, 1fr);
}
.contact-content {
	grid-template-columns: 1fr;
}
.footer-content {
	grid-template-columns: repeat(2, 1fr);
}
.slide-title {
	font-size: 42px;
}
.slide-description {
	font-size: 16px;
}
.about-page-content {
	grid-template-columns: 1fr;
	gap: 50px;
}
.about-page-exp {
	right: 20px;
	bottom: -20px;
	padding: 20px 26px;
}
.culture-grid {
	grid-template-columns: repeat(2, 1fr);
}
.honors-grid {
	grid-template-columns: repeat(2, 1fr);
}
.factory-grid {
	grid-template-columns: repeat(2, 1fr);
}
.factory-item-large {
	grid-row: span 1;
}
.page-banner-title {
	font-size: 42px;
}
/* Contact Page */
.contact-page-grid {
	grid-template-columns: 1fr;
	gap: 50px;
}
.contact-info-list {
	grid-template-columns: repeat(2, 1fr);
}
.map-wrapper iframe,  .map-wrapper img {
	height: 420px;
}
}
 @media (max-width: 992px) {
nav ul {
	gap: 30px;
}
.container {
	max-width: 100%;
}
.about-content {
	gap: 50px;
}
.culture-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.culture-card {
	padding: 35px 25px;
}
}
 @media (max-width: 768px) {
.container {
	padding: 0 18px;
}
/* ===== Header ===== */
.header-content {
	padding: 15px 0;
}
.logo {
	gap: 12px;
}
.logo img {
	height: 44px;
}
.logo-title {
	font-size: 17px;
	letter-spacing: 2px;
}
.logo-subtitle {
	font-size: 9px;
	letter-spacing: 1px;
}
nav ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--white);
	flex-direction: column;
	padding: 20px 18px 30px;
	gap: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}
nav ul.active {
	display: flex;
}
nav a {
	font-size: 15px;
	padding: 14px 6px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	letter-spacing: 0.5px;
}
nav a::after {
	display: none;
}
nav a.active {
	color: var(--accent);
}
.mobile-menu-btn {
	display: block;
	padding: 8px;
}
/* 语言切换 - 移动端 */
.lang-switch {
	margin-left: 0;
	order: 1;
	gap: 4px;
}
.lang-item {
	font-size: 13px;
	padding: 4px 8px;
}
.mobile-menu-btn {
	order: 2;
}
/* 语言切换在移动端菜单展开时隐藏 */
nav ul.active ~ .lang-switch {
	display: none;
}
/* ===== Hero Slider ===== */
.slider {
	height: 560px;
	min-height: 480px;
	max-height: 650px;
}
 @supports (height: 100dvh) {
 .slider {
 height: calc(100dvh - 70px);
}
}
.slide-bg {
	background-position: center center;
	background-size: 100% 100%;
}
.slide-overlay {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.05) 100%);
}
.slide-content {
	padding-top: 100px;
	padding-left: 18px;
	padding-right: 18px;
	max-width: 100%;
	text-align: left;
}
.slide-title {
	font-size: 32px;
	line-height: 1.25;
	margin-bottom: 20px;
}
.slide-description {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 100%;
}
.slide-description br {
	display: none;
}
.slide-buttons {
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}
.btn-primary,  .btn-secondary {
	padding: 13px 32px;
	font-size: 14px;
	text-align: center;
}
.slider-arrows {
	top: auto;
	bottom: 150px;
	left: 18px;
	right: 18px;
	transform: none;
}
.slider-arrow {
	width: 42px;
	height: 42px;
}
.slider-arrow svg {
	width: 18px;
	height: 18px;
}
.slider-dots {
	bottom: 30px;
	gap: 10px;
}
.slider-dot {
	width: 10px;
	height: 10px;
}
.slider-dot.active {
	width: 28px;
}
/* ===== Section Common ===== */
.section {
	padding: 50px 0;
}
.section-header {
	margin-bottom: 30px;
}
.section-title {
	font-size: 28px;
	margin-bottom: 14px;
}
.section-divider {
	width: 60px;
	margin-bottom: 18px;
}
.section-desc {
	font-size: 14px;
	line-height: 1.7;
}
/* ===== About ===== */
.about-content {
	grid-template-columns: 1fr;
	gap: 40px;
	padding-top: 30px;
}
.about-text-area {
	gap: 18px;
}
.about-label {
	font-size: 12px;
	letter-spacing: 1.5px;
}
.about-title {
	font-size: 26px;
	line-height: 1.35;
}
.about-desc {
	font-size: 14px;
	line-height: 1.85;
}
.about-buttons {
	flex-direction: row;
	gap: 12px;
	margin-top: 10px;
}
.btn-about-primary,  .btn-about-secondary {
	padding: 11px 26px;
	font-size: 13px;
	flex: 1;
	text-align: center;
}
.about-image-grid {
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	height: auto;
}
.about-image-item-1 {
	grid-column: span 2;
	height: 200px;
}
.about-image-item-2,  .about-image-item-3 {
	height: 130px;
}
/* ===== Stats ===== */
.stats {
	padding: 50px 0;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}
.stat-card {
	padding: 28px 12px;
	border-radius: 14px;
}
.stat-icon {
	width: 52px;
	height: 52px;
	margin: 0px 0px 16px 0px;
	border-radius: 12px;
}
.stat-icon svg {
	width: 26px;
	height: 26px;
}
.stat-value {
	font-size: 30px;
	margin-bottom: 8px;
}
.stat-label {
	font-size: 12px;
	letter-spacing: 0.5px;
}
/* ===== Products ===== */
.product-categories {
	gap: 10px;
	margin-bottom: 30px;
	padding: 15px 0;
}
.category-btn {
	padding: 9px 18px;
	font-size: 13px;
	white-space: nowrap;
}
.products-grid {
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	gap: 18px;
}
.product-card-large {
	grid-column: span 1;
	grid-row: span 1;
}
.product-card-large .product-image {
	height: 220px;
}
.product-card-large .product-info {
	padding: 22px;
}
.product-card-large .product-info h4 {
	font-size: 19px;
}
.product-card-large .product-info p {
	font-size: 13px;
	min-height: auto;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card:not(.product-card-large) {
	display: grid;
	grid-template-columns: 130px 1fr;
}
.product-card:not(.product-card-large) .product-image {
	height: 100%;
	min-height: 140px;
}
.product-card:not(.product-card-large) .product-info {
	padding: 16px;
}
.product-card:not(.product-card-large) .product-info::after {
	display: none;
}
.product-card:not(.product-card-large) .product-info h4 {
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 6px;
}
.product-card:not(.product-card-large) .product-info p {
	font-size: 12px;
	margin-bottom: 10px;
	-webkit-line-clamp: 2;
}
.product-card:not(.product-card-large) .product-link {
	padding: 5px 12px;
	font-size: 11px;
}
/* ===== Industry ===== */
.industry {
	min-height: auto;
	padding: 50px 0;
}
.industry-content {
	flex-direction: column;
	gap: 16px;
	padding: 25px 0;
}
.industry-list {
	width: 100%;
	flex-direction: column;
	gap: 10px;
}
.industry-item {
	width: 100%;
	padding: 14px 18px;
	justify-content: flex-start;
	gap: 16px;
	transform: none !important;
}
.industry-item:hover,  .industry-item.active {
	transform: none !important;
}
.industry-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
}
.industry-icon svg {
	width: 20px;
	height: 20px;
}
.industry-item h4 {
	font-size: 15px;
}
.industry-en {
	font-size: 9px;
}
/* ===== News ===== */
.news-grid {
	grid-template-columns: 1fr;
	gap: 25px;
}
.news-image {
	height: 200px;
}
.news-content {
	padding: 25px 22px;
}
.news-content::after {
	left: 22px;
	right: 22px;
}
.news-content h4 {
	font-size: 18px;
	margin-bottom: 14px;
	margin-top: 14px;
}
.news-content p {
	font-size: 13px;
	margin-bottom: 18px;
}
.news-date {
	bottom: 15px;
	left: 18px;
	padding: 6px 14px;
	font-size: 12px;
}
/* ===== Partners ===== */
.partner-item {
	width: calc(50% - 12px);
	height: 75px;
}
.partners-arrow {
	width: 38px;
	height: 38px;
}
.partners-arrow.prev {
	left: -10px;
}
.partners-arrow.next {
	right: -10px;
}
/* ===== Contact ===== */
.contact-content {
	gap: 35px;
}
.contact-info {
	grid-template-columns: 1fr;
	gap: 16px;
}
.contact-card {
	flex-direction: row;
	text-align: left;
	padding: 22px 20px;
	gap: 18px;
	align-items: center;
}
.contact-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 0;
	flex-shrink: 0;
}
.contact-icon svg {
	width: 26px;
	height: 26px;
}
.contact-text {
	flex: 1;
}
.contact-text h4 {
	font-size: 16px;
	margin-bottom: 6px;
}
.contact-text p {
	font-size: 13px;
	line-height: 1.7;
}
.contact-form-wrapper {
	padding: 25px 20px;
	border-radius: 16px;
}
.contact-form-wrapper h3 {
	font-size: 22px;
	margin-bottom: 25px;
}
.form-row {
	grid-template-columns: 1fr;
	gap: 0;
}
.form-group {
	margin-bottom: 18px;
}
.form-group label {
	font-size: 13px;
	margin-bottom: 8px;
}
.form-group input,  .form-group textarea {
	padding: 10px 16px;
	font-size: 14px;
}
.form-group textarea {
	height: 90px;
}
.btn-submit {
	padding: 16px;
	font-size: 15px;
	letter-spacing: 1px;
	margin-top: 5px;
}
/* ===== Footer ===== */
.footer-top {
	padding: 50px 0;
}
.footer-content {
	grid-template-columns: 1fr;
	gap: 35px;
}
.footer-brand {
	padding-right: 0;
}
.footer-brand::after {
	display: none;
}
.footer-logo {
	gap: 14px;
	margin-bottom: 20px;
}
.footer-logo img {
	height: 45px;
}
.footer-logo-title {
	font-size: 19px;
}
.footer-brand p {
	font-size: 13px;
	line-height: 1.85;
}
.footer-links h4,  .footer-contact h4 {
	font-size: 15px;
	margin-bottom: 18px;
	padding-bottom: 10px;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a,  .footer-contact span {
	font-size: 13px;
}
.footer-bottom {
	padding: 22px 0;
}
.footer-bottom p {
	font-size: 12px;
}
/* ===== Page Banner ===== */
.page-banner {
	height: 280px;
	margin-top: 70px;
}
.page-banner-bg {
	transform: scale(1);
	animation: none;
}
.page-banner-overlay {
	background: linear-gradient(180deg, rgba(10, 22, 40, 0.45) 0%, rgba(5, 13, 24, 0.35) 100%);
}
.page-banner-content {
	padding-bottom: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 14px;
}
.page-banner-text {
	text-align: center;
}
.page-banner-label {
	font-size: 12px;
	letter-spacing: 4px;
	margin-bottom: 12px;
}
.page-banner-title {
	font-size: 30px;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
.page-banner-desc {
	font-size: 13px;
	max-width: 90%;
	margin: 0 auto;
}
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
}
/* ===== About Page ===== */
.about-page {
	padding: 50px 0;
}
.about-page-content {
	gap: 40px;
}
.about-page .section-label {
	font-size: 12px;
	letter-spacing: 3px;
	margin-bottom: 12px;
}
.about-page-title {
	font-size: 24px;
	letter-spacing: 1px;
}
.about-page-divider {
	width: 50px;
	margin: 16px 0 22px;
}
.about-page-desc {
	font-size: 14px;
	line-height: 1.85;
	margin-bottom: 14px;
}
.about-page-list li {
	font-size: 13px;
	margin-bottom: 10px;
	gap: 10px;
}
.about-page-main-img img {
	height: 240px;
}
.about-page-exp {
	right: 15px;
	bottom: -20px;
	padding: 16px 20px;
	gap: 12px;
	border-radius: 6px;
}
.exp-number {
	font-size: 32px;
}
.exp-plus {
	font-size: 18px;
}
.exp-text {
	font-size: 12px;
	line-height: 1.4;
}
.about-page-sub-imgs {
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 30px;
}
.about-page-sub-img {
	height: 110px;
}
.about-page-buttons {
	flex-direction: row;
	gap: 12px;
}
/* ===== Stats Page ===== */
.stats-page {
	padding: 50px 0;
}
/* ===== Culture ===== */
.culture {
	padding: 50px 0;
}
.culture-grid {
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 30px;
}
.culture-card {
	padding: 32px 22px;
}
.culture-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
}
.culture-icon svg {
	width: 28px;
	height: 28px;
}
.culture-card h3 {
	font-size: 18px;
	margin-bottom: 12px;
}
.culture-card p {
	font-size: 13px;
	line-height: 1.75;
}
/* ===== Timeline ===== */
.timeline {
	padding: 50px 0;
}
.timeline-wrapper {
	margin-top: 30px;
	padding: 20px 0;
}
.timeline-items {
	gap: 25px;
}
.timeline-line {
	left: 16px;
}
.timeline-item {
	width: 100%;
	padding: 0 0 0 45px;
	text-align: left !important;
	margin-left: 0 !important;
}
.timeline-item:nth-child(odd) .timeline-dot,  .timeline-item:nth-child(even) .timeline-dot {
	left: 8px;
	right: auto;
	width: 14px;
	height: 14px;
	top: 6px;
}
.timeline-item:nth-child(odd) .timeline-content {
	border-right: none;
	border-left: 3px solid var(--accent);
}
.timeline-content {
	padding: 20px 22px;
}
.timeline-year {
	font-size: 22px;
	margin-bottom: 6px;
}
.timeline-content h4 {
	font-size: 16px;
	margin-bottom: 8px;
}
.timeline-content p {
	font-size: 13px;
	line-height: 1.7;
}
.honors-grid,  .factory-grid {
	grid-template-columns: 1fr;
}
/* ===== Contact Page ===== */
.contact-page {
	padding: 50px 0 40px;
}
.contact-page-grid {
	grid-template-columns: 1fr;
	gap: 35px;
	margin-top: 40px;
}
.contact-info-list {
	grid-template-columns: 1fr;
	gap: 16px;
}
.info-card {
	padding: 20px 18px;
	gap: 16px;
	border-radius: 14px;
}
.info-card-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 12px;
}
.info-card-icon svg {
	width: 22px;
	height: 22px;
}
.info-card-body h3 {
	font-size: 16px;
	margin-bottom: 10px;
}
.info-card-body p {
	font-size: 13px;
	line-height: 1.7;
}
.form-subtitle {
	font-size: 13px;
	margin-bottom: 24px;
}
.contact-map {
	padding: 40px 0 50px;
}
.map-wrapper {
	margin-top: 35px;
	border-radius: 14px;
}
.map-wrapper iframe,  .map-wrapper img {
	height: 340px;
}
.map-actions {
	margin-top: 22px;
}
/* ===== News List Page ===== */
.news-list-page {
	padding: 50px 0 80px;
}
.news-featured {
	grid-template-columns: 1fr;
}
.news-featured-image {
	min-height: 250px;
}
.news-featured-content {
	padding: 32px 28px;
}
.news-featured-title {
	font-size: 22px;
}
.news-list-item {
	grid-template-columns: 220px 1fr;
}
.news-list-body {
	padding: 24px 26px;
}
.news-list-title {
	font-size: 18px;
}
/* ===== Article Detail Page ===== */
.article-page {
	padding: 40px 0 50px;
}
.article-layout {
	grid-template-columns: 1fr;
	gap: 30px;
}
.article-main {
	padding: 30px 24px;
}
.article-title {
	font-size: 22px;
}
.article-meta {
	gap: 16px;
}
.article-meta-item {
	font-size: 13px;
}
.article-content {
	font-size: 15px;
}
.article-lead {
	font-size: 15px;
	padding: 16px 18px;
}
.article-content h2 {
	font-size: 19px;
}
.article-related {
	padding: 50px 0 60px;
}
/* ===== Products List Page ===== */
.products-list-page {
	padding: 40px 0 50px;
}
.products-layout {
	grid-template-columns: 1fr;
	gap: 25px;
}
.products-sidebar {
	flex-direction: row;
	gap: 20px;
}
.sidebar-cat-block {
	flex: 1;
	padding: 22px 0;
}
.sidebar-cta {
	flex: 0 0 240px;
}
.prod-cat-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.prod-cat-list li {
	border-top: none;
	border-left: 1px solid rgba(10, 22, 40, 0.04);
}
.prod-cat-list a {
	padding: 10px 16px;
	font-size: 14px;
}
.prod-cat-list a:hover,  .prod-cat-list a.active {
	padding-left: 16px;
}
.products-main {
	padding: 25px 22px;
}
.products-main-header h2 {
	font-size: 19px;
}
.products-main .products-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
/* ===== Cases Page ===== */
.cases-page {
	padding: 40px 0 50px;
}
.case-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.case-info {
	padding: 18px 18px 20px;
}
.case-info h4 {
	font-size: 15px;
}
.case-overlay-content h3 {
	font-size: 16px;
}
.case-overlay-content p {
	font-size: 13px;
}
.cases-stats-section {
	padding: 50px 0;
}
.stats-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.stat-number {
	font-size: 40px;
}
.stat-number span {
	font-size: 24px;
}
.cases-cta-section {
	padding: 50px 0;
}
.cases-cta-card {
	flex-direction: column;
	text-align: center;
	padding: 35px 25px;
	gap: 25px;
}
.cta-text h2 {
	font-size: 22px;
}
.cta-actions {
	justify-content: center;
}
.lightbox {
	padding: 20px;
}
.lightbox-prev {
	left: 10px;
}
.lightbox-next {
	right: 10px;
}
/* ===== Product Detail Page ===== */
.product-info-section {
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 25px 22px;
}
.product-info-title {
	font-size: 22px;
}
.product-specs {
	gap: 12px 16px;
	padding: 16px;
}
.product-actions {
	flex-wrap: wrap;
}
.tab-content {
	padding: 25px 22px;
}
.app-image-grid {
	grid-template-columns: repeat(3, 1fr);
}
.related-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}
.related-products {
	padding: 25px 22px;
}
}
 @media (max-width: 480px) {
.container {
	padding: 0 15px;
}
.logo {
	gap: 8px;
}
.logo img {
	height: 38px;
}
.logo-title {
	font-size: 15px;
	letter-spacing: 1.5px;
}
.logo-subtitle {
	font-size: 8px;
}
/* 语言切换 - 小屏 */
.lang-switch {
	gap: 3px;
}
.lang-item {
	font-size: 12px;
	padding: 3px 6px;
}
/* Hero */
.slider {
	height: 380px;
	min-height: 380px;
}
 @supports (height: 100dvh) {
 .slider {
 height: calc(100dvh - 70px);
 max-height: 380px;
}
}
.slide-content {
	padding-top: 85px;
	padding-left: 15px;
	padding-right: 15px;
}
.slide-title {
	font-size: 26px;
	margin-bottom: 16px;
}
.slide-title span {
	display: inline-block;
}
.slide-description {
	font-size: 13px;
	margin-bottom: 28px;
}
.btn-primary,  .btn-secondary {
	padding: 11px 26px;
	font-size: 13px;
}
/* Section */
.section {
	padding: 40px 0;
}
.section-title {
	font-size: 24px;
}
/* Stats - 1 column on very small screens */
.stats-grid {
	grid-template-columns: 1fr;
	gap: 12px;
}
.stat-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	padding: 20px 18px;
	gap: 16px;
}
.stat-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 0;
	flex-shrink: 0;
}
.stat-icon svg {
	width: 24px;
	height: 24px;
}
.stat-value {
	font-size: 28px;
	margin-bottom: 2px;
}
.stat-label {
	font-size: 12px;
}
/* About */
.about-title {
	font-size: 22px;
}
.about-image-item-1 {
	height: 170px;
}
.about-image-item-2,  .about-image-item-3 {
	height: 110px;
}
.about-buttons {
	flex-direction: column;
	gap: 10px;
}
/* Products */
.product-card:not(.product-card-large) {
	grid-template-columns: 110px 1fr;
}
.product-card-large .product-image {
	height: 180px;
}
/* News */
.news-content {
	padding: 20px 18px;
}
.news-content::after {
	left: 18px;
	right: 18px;
}
.news-content h4 {
	font-size: 16px;
}
/* Contact */
.contact-card {
	padding: 18px 16px;
	gap: 14px;
}
.contact-icon {
	width: 52px;
	height: 52px;
}
.contact-form-wrapper {
	padding: 22px 16px;
}
/* Footer */
.footer-top {
	padding: 40px 0;
}
.footer-logo img {
	height: 40px;
}
/* About page */
.about-page-exp {
	right: 12px;
	bottom: -15px;
	padding: 14px 16px;
}
.exp-number {
	font-size: 28px;
}
.about-page-title {
	font-size: 22px;
}
.about-page-buttons {
	flex-direction: column;
	gap: 10px;
}
.about-page-buttons .btn-about-primary,  .about-page-buttons .btn-about-secondary {
	text-align: center;
}
/* Page Banner */
.page-banner {
	height: 220px;
	margin-top: 80px;
}
.page-banner-title {
	font-size: 24px;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}
.page-banner-label {
	font-size: 11px;
	letter-spacing: 3px;
	margin-bottom: 8px;
}
.page-banner-desc {
	font-size: 12px;
}
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
}
.industry-item h4 {
	font-size: 14px;
}
/* Contact Page */
.info-card {
	padding: 18px 16px;
	gap: 14px;
}
.info-card-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
}
.info-card-icon svg {
	width: 20px;
	height: 20px;
}
.info-card-body h3 {
	font-size: 15px;
	margin-bottom: 8px;
}
.info-card-body p {
	font-size: 12.5px;
	line-height: 1.7;
}
.map-wrapper iframe,  .map-wrapper img {
	height: 280px;
}
/* News List Page */
.news-list-page {
	padding: 40px 0 60px;
}
.news-tabs {
	gap: 8px;
	margin-bottom: 30px;
}
.news-tab {
	padding: 8px 20px;
	font-size: 13px;
}
.news-featured {
	grid-template-columns: 1fr;
}
.news-featured-image {
	min-height: 220px;
}
.news-featured-content {
	padding: 28px 22px;
}
.news-featured-title {
	font-size: 20px;
	margin-bottom: 14px;
}
.news-featured-desc {
	font-size: 14px;
	margin-bottom: 22px;
}
.news-list-item {
	grid-template-columns: 140px 1fr;
}
.news-list-body {
	padding: 18px 16px;
}
.news-list-title {
	font-size: 16px;
	margin-bottom: 10px;
}
.news-list-desc {
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.date-day {
	font-size: 18px;
}
.date-month {
	font-size: 10px;
}
.news-list-date {
	padding: 6px 12px;
}
.pagination {
	margin-top: 40px;
}
.showpage {
	gap: 5px;
	font-size: 13px;
}
.showpage a,  .showpage .current {
	min-width: 38px;
	height: 38px;
	font-size: 13px;
	padding: 0 12px;
}
/* Article Detail Page */
.article-main {
	padding: 22px 18px;
}
.article-title {
	font-size: 19px;
}
.article-meta {
	gap: 12px;
}
.article-content {
	font-size: 14.5px;
	line-height: 1.9;
}
.article-lead {
	font-size: 14.5px;
}
.article-content h2 {
	font-size: 17px;
}
.article-nav {
	grid-template-columns: 1fr;
}
.article-nav-next {
	text-align: left;
}
.article-footer-bar {
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.sidebar-block {
	padding: 22px 18px;
}
/* Products List Page */
.products-sidebar {
	flex-direction: column;
}
.sidebar-cta {
	flex: none;
}
.prod-cat-list {
	flex-direction: column;
}
.prod-cat-list li {
	border-left: none;
	border-top: 1px solid rgba(10, 22, 40, 0.04);
}
.prod-cat-list a:hover,  .prod-cat-list a.active {
	padding-left: 24px;
}
.products-main {
	padding: 20px 16px;
}
.products-main .products-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}
.products-main-header {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
/* Cases Page */
.case-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}
.case-info {
	padding: 16px;
}
.case-info h4 {
	font-size: 15px;
}
.case-overlay-content h3 {
	font-size: 15px;
}
.case-overlay-content p {
	font-size: 12px;
	margin-bottom: 14px;
}
.case-view-btn {
	padding: 8px 18px;
	font-size: 13px;
}
.stats-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}
.stat-number {
	font-size: 36px;
}
.stat-label {
	font-size: 14px;
}
.cases-cta-card {
	padding: 28px 18px;
}
.cta-text h2 {
	font-size: 20px;
}
.cta-text p {
	font-size: 14px;
}
.cta-actions {
	flex-direction: column;
	width: 100%;
}
.cta-btn-primary,  .cta-btn-secondary {
	width: 100%;
	justify-content: center;
}
/* Product Detail Page */
.product-info-section {
	padding: 20px 16px;
	gap: 25px;
}
.gallery-thumbs {
	grid-template-columns: repeat(4, 1fr);
}
.app-image-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.app-image-text h4 {
	font-size: 15px;
}
.app-image-text p {
	font-size: 12px;
}
.product-info-title {
	font-size: 20px;
}
.product-info-desc {
	font-size: 14px;
}
.product-specs {
	grid-template-columns: 1fr;
	gap: 10px;
	padding: 14px;
}
.product-actions {
	flex-direction: column;
}
.action-btn {
	width: 100%;
}
.product-meta {
	flex-direction: column;
	gap: 8px;
}
.tabs-header {
	flex-wrap: wrap;
}
.tab-btn {
	font-size: 13px;
	padding: 12px 10px;
	flex: 1 1 33.33%;
}
.tab-content {
	padding: 20px 16px;
	font-size: 14px;
}
.tab-content h3 {
	font-size: 17px;
}
.spec-table {
	font-size: 13px;
}
.spec-table th,  .spec-table td {
	padding: 10px 12px;
}
.related-grid {
	grid-template-columns: 1fr;
}
.related-products {
	padding: 20px 16px;
}
}
