*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
 --bg-dark: #fff;
 --bg-mid: #111827;
 --bg-card: #1a1f2e;
 --bg-card-hover: #222a3e;
 --primary: #00d4ff;
 --primary-dark: #0077ff;
 --accent: #00f0ff;
 --text-primary: #f0f4ff;
 --text-secondary: #333;
 --text-muted: #f5f5f5;
 --border-color: #2a3450;
/* --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.15);*/
 --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.25)
 --radius-sm: 6px;
 --radius-md: 10px;
 --radius-lg: 16px;
 --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 --font-display: 'Space Grotesk', var(--font-sans);
 --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-sans);
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: var(--accent);
}
img {
	max-width: 100%;
	display: block;
}
ul {
	list-style: none;
}
    ::-webkit-scrollbar {
width: 6px;
}
    ::-webkit-scrollbar-track {
background: var(--bg-dark);
}
    ::-webkit-scrollbar-thumb {
background: var(--border-color);
border-radius: 3px;
}
    ::-webkit-scrollbar-thumb:hover {
background: var(--text-muted);
}
/* 容器宽度1400px */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--text-primary), var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1rem;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.section-padding {
	padding: 80px 0;
}
 @media (max-width: 768px) {
.section-padding {
	padding: 50px 0;
}
}
#particle-canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
	opacity: 0.4;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: rgba(10, 14, 26, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(42, 52, 80, 0.5);
	transition: var(--transition);
}
.header.scrolled {
	background: rgba(10, 14, 26, 0.95);
	box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}
.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-primary);
	letter-spacing: -0.5px;
}
.logo-icon {
	width: 36px;
	height: 36px;
	/*background: linear-gradient(135deg, var(--primary-dark), var(--primary));*/
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo span {
	color: var(--primary);
}
.nav-list {
	display: flex;
	gap: 32px;
}
.nav-list a {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	position: relative;
	padding: 4px 0;
}
.nav-list a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}
.nav-list a:hover, .nav-list a.active {
	color: var(--text-primary);
}
.nav-list a:hover::after, .nav-list a.active::after {
	width: 100%;
}
/* 移动端菜单按钮固定右侧 */
.nav-toggle {
	display: none;
	background: none;
	border: 1px solid rgba(255,255,255,0.2);
	color: var(--text-primary);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 4px;
	margin-left: auto;
}
 @media (max-width: 768px) {
.nav-toggle {
	display: block;
	order: 2;
}
.header-inner {
	flex-wrap: wrap;
}
.nav-list {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	flex-direction: column;
	background: rgba(10, 14, 26, 0.98);
	backdrop-filter: blur(12px);
	padding: 20px 24px;
	gap: 16px;
	transform: translateY(-120%);
	opacity: 0;
	transition: var(--transition);
	border-bottom: 1px solid var(--border-color);
	order: 3;
}
.nav-list.open {
	transform: translateY(0);
	opacity: 1;
}
.nav-list a {
	font-size: 1rem;
	padding: 8px 0;
}
}
/* 轮播样式 */
.swiper-banner {
	margin-top: 70px;
	position: relative;
	z-index: 10;
	height: clamp(400px, 60vh, 800px);
	overflow: hidden;
}
.swiper {
	width: 100%;
	height: 100%;
}
.swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}
.swiper-slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 0 20px;
}
.swiper-slide-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #ffffff 0%, var(--primary) 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.swiper-slide-desc {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--text-primary);
	margin-bottom: 2rem;
	text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.swiper-slide-btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 4px 20px rgba(0, 119, 255, 0.3);
}
.swiper-slide-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 119, 255, 0.5);
	color: #fff;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--text-secondary);
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background: var(--primary);
	width: 30px;
	border-radius: 6px;
	transition: width 0.3s ease;
}
.swiper-button-prev, .swiper-button-next {
	color: var(--primary);
	opacity: 0.8;
	transition: var(--transition);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
	opacity: 1;
	transform: scale(1.1);
}
 @media (max-width: 768px) {
.swiper-banner {
	height: clamp(300px, 50vh, 500px);
}
.swiper-button-prev, .swiper-button-next {
	display: none;
}
}
/* 行业应用板块 主色调浅色背景 */
.industry-wrap {
	
}
.industry-wrap .section-title {

}
.industry-wrap .section-subtitle {
	color: #779bbf;
}
.industry-card-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}
.industry-card {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	background: #fff;
}
.card-img-box {
	width: 100%;
	height: 360px;
	position: relative;
	overflow: hidden;
}
.card-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.industry-card:hover .card-img-box img {
	transform: scale(1.12);
}
.card-mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
	padding: 30px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
	opacity: 1;
	transition: opacity 0.5s ease;
}
.industry-card:hover .card-mask {
	opacity: 1;
}
.card-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
}
.card-desc {
	font-size: 14px;
	line-height: 1.7;
	color: #eee;
}
 @media (max-width: 1200px) {
.industry-card-list {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 768px) {
.industry-card-list {
	grid-template-columns: 1fr;
}
.card-img-box {
	height: 280px;
}
}
/* ========== 关于我们板块样式 ========== */
.about-section {	
}
.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.about-title {
	font-size: 42px;
	font-weight: 700;
	color: #111;
	margin-bottom: 12px;
}
.about-sub {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
}
.about-desc p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 25px;
}
.about-more {
	display: inline-block;
	font-size: 16px;
	color: #222;
	text-decoration: none;
	margin-bottom: 40px;
}
.about-more:hover {
	color: var(--primary);
}
.about-data-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.data-item {
	text-align: center;
}
.data-item i {
	font-size: 32px;
	color: #222;
	margin-bottom: 12px;
}
.data-num {
	font-size: 36px;
	font-weight: 700;
	color: #111;
	margin-bottom: 6px;
}
.data-text {
	font-size: 15px;
	color: #555;
}
.about-img-box {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
.about-img-box img {
	width: 100%;
	height: auto;
	transition: all 0.6s ease;
}
.about-img-box:hover img {
	transform: scale(1.08);
}
 @media (max-width: 1200px) {
.about-row {
	gap: 35px;
}
.about-title {
	font-size: 34px;
}
.data-num {
	font-size: 30px;
}
}
 @media (max-width: 768px) {
.about-row {
	grid-template-columns: 1fr;
}
.about-title {
	font-size: 28px;
}
.about-data-list {
	gap: 15px;
}
.data-num {
	font-size: 26px;
}
.about-section {
	padding: 50px 0;
}
}
.hero {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 70px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 20px 80px;
	margin-top: -1px;
}
.hero-content {
	max-width: 800px;
	position: relative;
	z-index: 2;
}
.hero-badge {
	display: inline-block;
	padding: 6px 18px;
	border: 1px solid var(--primary);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--primary);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
	background: rgba(0, 212, 255, 0.08);
}
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-desc {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto 36px;
	line-height: 1.8;
}
.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
	transition: var(--transition);
	font-family: var(--font-sans);
}
.btn-primary {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #fff;
	box-shadow: 0 4px 20px rgba(0, 119, 255, 0.3);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 119, 255, 0.5);
	color: #fff;
}
.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}
.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(0, 212, 255, 0.05);
}
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: 0.75rem;
	letter-spacing: 1px;
	animation: float 2s ease-in-out infinite;
}
.scroll-indicator i {
	font-size: 1.2rem;
}
 @keyframes float {
 0%, 100% {
 transform: translateX(-50%) translateY(0);
}
 50% {
transform: translateX(-50%) translateY(8px);
}
}
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.tech-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 32px 24px;
	text-align: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}
.tech-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, var(--primary), transparent, transparent);
	opacity: 0;
	transition: var(--transition);
	z-index: 0;
}
.tech-card:hover::before {
	opacity: 0.3;
}
.tech-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-glow);
	border-color: var(--primary);
}
.tech-card > * {
	position: relative;
	z-index: 1;
}
.tech-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, rgba(0, 119, 255, 0.15), rgba(0, 212, 255, 0.1));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: var(--primary);
}
.tech-card h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.tech-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.stat-item {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 28px 16px;
	text-align: center;
	transition: var(--transition);
}
.stat-item:hover {
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
	transform: translateY(-4px);
}
.stat-number {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}
.stat-unit {
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-secondary);
	margin-left: 4px;
}
.stat-label {
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-top: 8px;
	letter-spacing: 0.5px;
}
 @media (max-width: 768px) {
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.stat-item {
	padding: 20px 12px;
}
}
 @media (max-width: 480px) {
.stats-grid {
	grid-template-columns: 1fr 1fr;
}
}
.partners-wrapper {
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}
.partners-track {
	display: flex;
	gap: 30px;
	width: max-content;
	animation: scrollPartners 100s linear infinite;
}
.partners-track:hover {
	animation-play-state: paused;
}
.partner-logo {
	flex-shrink: 0;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	background: var(--bg-card);
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-color);
	color: var(--text-muted);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 1px;
	transition: var(--transition);
	min-width: 140px;
}
.partner-logo:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: #f5f5f5;
}
.partner-logo img {
	height: 100%;
}
@keyframes scrollPartners {
 0% {
transform: translateX(0);
}
 100% {
transform: translateX(-50%);
}
}
.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}
.news-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}
.news-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}
.news-date {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.news-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.5;
}
.news-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
	flex: 1;
	margin-bottom: 16px;
}
.news-link {
	font-weight: 500;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--primary);
}
.news-link i {
	font-size: 0.75rem;
	transition: var(--transition);
}
.news-link:hover i {
	transform: translateX(4px);
}


.list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 24px;
}
@media (max-width: 768px) {
	.list-grid {
		display: grid;
		grid-template-columns: none;
		gap: 24px;
	}
}
.list-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
}
.list-card:hover {
	transform: translateY(-4px);
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
}
.list-date {
	color: var(--text-muted);
	font-size: 0.8rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.list-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.5;
}
.list-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.7;
	flex: 1;
	margin-bottom: 16px;
}
.list-link {
	font-weight: 500;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--primary);
}
.list-link i {
	font-size: 0.75rem;
	transition: var(--transition);
}
.list-link:hover i {
	transform: translateX(4px);
}

.more i {
	font-size: 0.75rem;
	transition: var(--transition);
}
.more:hover i {
	transform: translateX(4px);
}
.footer {
	background: var(--bg-mid);
	/*border-top: 1px solid var(--border-color);*/
	padding: 60px 0 0;
	position: relative;
	z-index: 1;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}
.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-top: 16px;
	max-width: 320px;
}
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: var(--transition);
}
.footer-social a:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
.footer-col h4 {
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col ul li a {
	color: var(--text-secondary);
	font-size: 0.85rem;
}
.footer-col ul li a:hover {
	color: var(--primary);
}
/* 底部分割线全屏通栏 */
.footer-bottom {
	width: 100%;
	border-top: 1px solid var(--border-color);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--text-muted);
	font-size: 0.8rem;
	padding-inline: 20px;
}
.footer-brand .ewm{
	margin: auto;
	width: 110px;
}
 @media (max-width: 768px) {
.footer-grid {
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.footer-brand {
	grid-column: 1 / -1;
}
.footer-bottom {
	flex-direction: column;
	text-align: center;
}
}
 @media (max-width: 480px) {
.footer-grid {
	grid-template-columns: 1fr;
}
}
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}
.fade-in-up:nth-child(2) {
	transition-delay: 0.1s;
}
.fade-in-up:nth-child(3) {
	transition-delay: 0.2s;
}
.fade-in-up:nth-child(4) {
	transition-delay: 0.3s;
}
.glow-divider {
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-dark), var(--primary));
	border-radius: 2px;
	margin: 0 auto 16px;
}
 @media (max-width: 768px) {
.hero {
	padding: 60px 16px 60px;
}
.hero-buttons .btn {
	width: 100%;
	justify-content: center;
}
.tech-grid {
	grid-template-columns: 1fr;
}
.news-grid {
	grid-template-columns: 1fr;
}
}
.inner-banner {
	margin-top: 70px;
	width: 100%;
	height: 320px;
	display: flex;
	align-items: center;
	padding-left: calc((100% - 1400px) / 2 + 20px);
	position: relative;
}
.inner-banner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 14, 26, 0.65);
}
.banner-title {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, #ffffff, var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}
 @media (max-width: 768px) {
.inner-banner {
	height: 220px;
	padding-left: 20px;
}
.banner-title {
	font-size: 28px;
}
}
/* 面包屑 + 分类标签 */
.bread-nav-wrap{
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
}
.bread-nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.breadcrumb {
	font-size: 14px;
	color: var(--text-muted);
}
.breadcrumb a {
	color: var(--text-muted);
}
.breadcrumb span {
	margin: 0 8px;
}
.news-tab a {
	font-size: 16px;
	margin-left: 24px;
	color: var(--text-muted);
}
.news-tab a.active {
	color: var(--primary);
}

/* 联系我们主体区域 */
.contact-section {
	padding: 80px 0;
}
.section-head {
	margin-bottom: 50px;
}
.section-tag {
	display: inline-block;
	padding: 6px 20px;
	border: 1px solid var(--primary);
	border-radius: 30px;
	color: var(--primary);
	font-size: 14px;
	margin-bottom: 16px;
}
.section-head h2 {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}
.section-desc {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 600px;
	margin: auto;
}
.contact-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
/* 左侧联系方式卡片 */
.contact-left {
	display: flex;
	flex-direction: column;
	gap: 19px;
}
.contact-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 21px 26px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: var(--transition);
}
.contact-card:hover {
	border-color: var(--primary);
	box-shadow: 0 0 25px rgba(0,212,255,0.18);
	transform: translateY(-4px);
}
.contact-icon {
	width: 46px;
	height: 46px;
	border-radius: var(--radius-md);
	background: rgba(0,212,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 20px;
	flex-shrink: 0;
}
.contact-info h4 {
	font-size: 18px;
	color: #fff;
	margin-bottom: 8px;
}
.contact-info p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
}
/* 右侧留言表单 */
.contact-form-wrap {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 30px;
	transition: var(--transition);
}
.contact-form-wrap:hover {
	border-color: var(--primary);
	box-shadow: 0 0 25px rgba(0,212,255,0.18);
}
.contact-form-wrap h3 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 24px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
.form-item {
	margin-bottom: 20px;
}
.form-item label {
	display: block;
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 8px;
}
.form-item label span {
	color: #ff5555;
}
.form-input, .form-textarea {
	width: 100%;
	height: 46px;
	background: var(--bg-dark);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	padding: 0 16px;
	color: var(--text-primary);
	font-size: 15px;
	transition: var(--transition);
}
.form-input:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--primary);
}
.form-textarea {
	height: 160px;
	padding: 16px;
	resize: none;
}
.submit-btn {
	width: 100%;
	height: 50px;
	border: none;
	border-radius: var(--radius-md);
	background: linear-gradient(90deg, var(--primary-dark), var(--primary));
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}
.submit-btn:hover {
	box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
/* 百度地图板块 */
.map-section {
	padding: 0 0 80px;
}
#baidu-map {
	width: 100%;
	height: 450px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
}

    /* 响应式 */
@media (max-width: 992px) {
.contact-row {
	grid-template-columns: 1fr;
}
.form-row {
	grid-template-columns: 1fr;
}
}
 @media (max-width: 768px) {
.section-head h2 {
	font-size: 32px;
}
}
.news-tab a {
	font-size: 16px;
	margin-left: 24px;
}
.news-tab a.active {
	color: var(--primary);
}
 @media (max-width: 768px) {
.bread-nav-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
}
.news-tab {
	margin-top: 8px;
}
.news-tab a {
	margin-left: 0;
	margin-right: 24px;
}
}
/* 新闻列表 */
.news-list-wrap {
	padding: 60px 0;
}
.news-item {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 36px;
	padding: 32px;
	margin-bottom: 32px;
	background: var(--bg-card);
	border: 1px solid transparent;
	border-radius: var(--radius-lg);
	transition: var(--transition);
}
/* 卡片hover发光动效 */
.news-item:hover {
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
	transform: translateY(-4px);
}
.news-img-box {
	border-radius: var(--radius-md);
	overflow: hidden;
}
.news-img-box img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	transition: all 0.6s ease;
}
.news-item:hover .news-img-box img {
	transform: scale(1.08);
}
.news-text .news-date {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.news-text h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--text-primary);
}
.news-text p {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 20px;
}
.news-more {
	font-size: 15px;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.news-more:hover {
	color: var(--accent);
}
.news-more i {
	transition: var(--transition);
}
.news-more:hover i {
	transform: translateX(4px);
}
 @media (max-width: 1200px) {
.news-item {
	grid-template-columns: 300px 1fr;
	gap: 24px;
}
.news-img-box img {
	height: 200px;
}
}
 @media (max-width: 768px) {
.news-item {
	grid-template-columns: 1fr;
}
.news-img-box img {
	height: 220px;
}
.news-text h3 {
	font-size: 18px;
}
}
/* 分页样式 */
.page-wrap .pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}
.page-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	color: var(--text-secondary);
}
.page-item a.active {
	background: var(--primary-dark);
	border-color: var(--primary);
	color: #fff;
}
.page-item a:hover:not(.active) {
	border-color: var(--primary);
	color: var(--primary);
}
/* 详情主体区域 */
.detail-wrap {
	padding: 60px 0;
}
.detail-main {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 40px;
	border: 1px solid transparent;
	transition: var(--transition);
}
.detail-main:hover {
	border-color: var(--primary);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}
.detail-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.detail-meta {
	display: flex;
	gap: 30px;
	font-size: 15px;
	color: var(--text-muted);
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 20px;
}
.detail-meta i {
	margin-right: 6px;
	color: var(--primary);
}
/* 正文 */
.detail-content p {
	font-size: 16px;
	line-height: 2;
	color: var(--text-secondary);
	margin-bottom: 20px;
}
.detail-content img {
	width: 100%;
	border-radius: var(--radius-md);
	margin: 24px 0;
}
/* 上下翻页 */
.page-switch {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--border-color);
}
.switch-item a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-secondary);
}
.switch-item a:hover {
	color: var(--primary);
}
/* 相关推荐 */
.recommend-wrap {
	margin-top: 60px;
}
.recommend-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}
.recommend-title::before {
	content: '';
	width: 4px;
	height: 24px;
	background: var(--primary);
	margin-right: 12px;
}
.recommend-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.recommend-item {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid transparent;
	transition: var(--transition);
}
.recommend-item:hover {
	border-color: var(--primary);
	box-shadow: 0 0 25px rgba(0, 212, 255, 0.18);
	transform: translateY(-4px);
}
.rec-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
}
.rec-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s ease;
}
.recommend-item:hover .rec-img img {
	transform: scale(1.08);
}
.rec-text {
	padding: 20px;
}
.rec-text h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
	color: var(--text-primary);
}
.rec-date {
	font-size: 13px;
	color: var(--text-muted);
}
    /* 响应式 */
@media (max-width: 1200px) {
.recommend-list {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 768px) {
.detail-title {
	font-size: 24px;
}
.detail-main {
	padding: 24px;
}
.detail-meta {
	flex-wrap: wrap;
	gap: 15;
}
.recommend-list {
	grid-template-columns: 1fr;
}
.page-switch {
	flex-direction: column;
	gap: 20;
}
}
/* 企业简介板块 */
.about-section {
	padding: 80px 0;
}
.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.about-left h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #00f0ff, var(--primary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.about-sub {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 30px;
}
.about-desc p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 25px;
}
.about-more {
	font-size: 16px;
	color: var(--primary);
}
.about-data-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.data-item {
	text-align: center;
}
.data-item i {
	font-size: 32px;
	color: var(--primary);
	margin-bottom: 12px;
}
.data-num {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 6px;
}
.data-text {
	font-size: 15px;
	color: var(--text-muted);
}
.about-img-box {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-color);
}
.about-img-box img {
	width: 100%;
	transition: all 0.6s ease;
}
.about-img-box:hover img {
	transform: scale(1.08);
	box-shadow: 0 0 30px rgba(0,212,255,0.2);
}
 @media (max-width: 768px) {
.about-row {
	grid-template-columns: 1fr;
}
.about-left h2 {
	font-size: 28px;
}
.about-data-list {
	grid-template-columns: repeat(3, 1fr);
}
.data-num {
	font-size: 26px;
}
}
/* 发展历程 时间轴【严格匹配示例：竖线居中、圆点垂直居中卡片中点、左右交替布局、文字与竖线预留间距】 */
.timeline-section {
	padding: 80px 0;
}
.section-head {
	text-align: center;
	margin-bottom: 60px;
}
.section-tag {
	display: inline-block;
	padding: 6px 20px;
	border: 1px solid var(--primary);
	border-radius: 30px;
	color: var(--primary);
	font-size: 14px;
	margin-bottom: 16px;
}
.section-head h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #333;
	margin-bottom: 12px;
}
.timeline-wrap {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}
/* 中间垂直中轴线 */
.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--primary), rgba(0,212,255,0.1));
	transform: translateX(-50%);
	z-index: 1;
}
.timeline-item {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	margin-bottom: 60px;
	justify-content: center; 
	align-items: center;
}
/* 左侧卡片：右对齐，距离中轴线60px安全间距 */
.timeline-item:nth-child(odd) .timeline-content {
	grid-column: 1 / 2;
	padding-right: 60px;
	margin-right: 25px;
}
/* 右侧卡片：左对齐，距离中轴线60px安全间距 */
.timeline-item:nth-child(even) .timeline-content {
	grid-column: 3 / 4;
	padding-left: 60px;
	margin-left: 25px;
}
/* 中轴线圆点图标：垂直居中，精准对齐左右卡片垂直中点 */
.timeline-dot {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--primary-dark), var(--primary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	box-shadow: 0 0 20px rgba(0,212,255,0.3);
	z-index: 2;
}
.timeline-content {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 24px 30px;
	transition: var(--transition);
}
.timeline-content:hover {
	border-color: var(--primary);
	box-shadow: 0 0 25px rgba(0,212,255,0.2);
	transform: translateY(-4px);
}
.timeline-year {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}
.timeline-title {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
}
.timeline-text {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.7;
}
@media (max-width: 768px) {
.section-head h2 {
	font-size: 32px;
}
.timeline-item{
	gap: 0!important;
	margin-bottom: 25px;
}
.timeline-line {
	display: none;
	left: 30px;
}
.timeline-dot{
	display: none;
}
.timeline-item {
	grid-template-columns: auto 1fr;
	gap: 30px;
}
.timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content {
	grid-column: 2;
	padding: 15px;
	text-align: left;
	margin: 0 ;
}
}
/* 荣誉资质轮播 */
.honor-section {
	padding: 80px 0;
}
.honor-swiper {
	padding: 20px 0 70px;
}
.honor-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
}
.honor-card:hover {
	border-color: var(--primary);
	box-shadow: 0 0 25px rgba(0,212,255,0.18);
	transform: translateY(-4px);
}
.honor-img {
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.honor-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.6s ease;
}
.honor-card:hover .honor-img img {
	transform: scale(1.08);
}
.honor-text {
	padding: 20px;
	text-align: center;
}
.honor-text h4 {
	font-size: 16px;
	color: #fff;
	font-weight: 600;
}
/* 轮播按钮样式 */
.honor-swiper .swiper-button-prev, .honor-swiper .swiper-button-next {
	width: 44px;
	height: 44px;
	background: rgba(0,212,255,0.2);
	border-radius: 50%;
	color: var(--primary);
}
.honor-swiper .swiper-pagination-bullet-active {
	background: var(--primary);
}

.ellipsis {
  white-space: nowrap;     
  overflow: hidden;        
  text-overflow: ellipsis; 
}
.layui-layer-dialog .layui-layer-content{
	color: #000;
}

/* 核心：一行3列产品网格 */
.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}
/* 平板2列、手机1列自适应 */
@media (max-width: 1200px) {
.product-grid {
	grid-template-columns: repeat(2, 1fr);
}
}
 @media (max-width: 768px) {
.product-grid {
	grid-template-columns: 1fr;
}
}
/* ========== 产品卡片 + 旋转边框动画 ========== */
.product-item {
	position: relative;
	padding: 2px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
/* 循环旋转渐变边框 */
.product-item::before {
	content: '';
	position: absolute;
	inset: -2px;
	background: linear-gradient(45deg, var(--primary), transparent, var(--primary-dark), transparent);
	background-size: 400% 400%;
	opacity: 0;
	z-index: 1;
	animation: rotateBorder 4s linear infinite;
	transition: opacity 0.3s ease;
}
.product-item:hover::before {
	opacity: 1;
}
 @keyframes rotateBorder {
 0% {
background-position: 0% 50%;
}
 100% {
background-position: 400% 50%;
}
}
/* 卡片内容容器 */
.product-card {
	position: relative;
	z-index: 2;
	background: var(--bg-card);
	border-radius: calc(var(--radius-lg) - 2px);
	padding: 32px 28px;
	transition: var(--transition);
	height: 100%;
}
.product-item:hover .product-card {
	transform: translateY(0px);
	box-shadow: 0 0 30px rgba(0,212,255,0.22);
}
.product-icon {
	width: 70px;
	height: 70px;
	background: rgba(0,212,255,0.12);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: var(--primary);
	margin-bottom: 22px;
}
.product-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 14px;
	color: #fff;
}
.product-desc {
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.75;
	margin-bottom: 20px;
}
.product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-size: 15px;
	font-weight: 500;
}
.product-link i {
	transition: transform 0.3s ease;
}
.product-link:hover i {
	transform: translateX(6px);
}
.bg-dark2{
	background: rgb(245, 245, 245, 0.95);
}

.stat-item, .tech-card, .news-card, .timeline-content, .honor-card, .product-card, .news-item, .partner-logo, .contact-card, .contact-form-wrap, .detail-main, .recommend-item{
	background: #fff;
	border: 1px solid #00d4ff;
}

.nav-list a, .footer-brand p, .footer-col ul li a, .tech-card p, .partner-logo, .news-text p, .contact-info p, switch-item a{
	color: #fff;
}
.breadcrumb a, .breadcrumb span, .news-tab a, .recommend-title, .stat-label, .tech-card h3, .tech-card p, .news-card h3, .news-date, .timeline-title, .honor-text h4, .product-title, .news-text h3, .news-text p, .contact-info h4, .contact-info p, .contact-form-wrap h3, .detail-title, .rec-text h4{
	color:#333;
}
.product-card{
	border: 1px solid #00d4ff;
}
.partner-logo{
	border: 1px solid #00d4ff;
	color:#333;
}
.detail-meta{
	color: gray;
}
.rec-date{
	color:#333;
}
.detail-main{
	color:#333;
}


