/* 全局重置与弹性布局基础设置 */
* {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	/* 关键：让 padding 和 border 不会撑大盒子 */
}

/* 
 * 设置根字体大小为16px，为rem单位提供基准。
 * 1rem = 16px
*/
html {
	font-size: 16px;
}

body {
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	/* 统一设置默认字体 */
	/* max-width: 1600px; */
	/* 限制最大宽度，防止在超宽屏上无限拉伸 */
	margin: 0 auto;
	/* 在超宽屏上居中显示 */
}

/* 整体页眉容器 */
.site-header {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	width: 100%;
	position: relative;
	z-index: 1000;
}

/* 内容居中并使用Flexbox布局 */
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100vw;
	/* 宽度撑满 */
	margin: 0 auto;
	/* padding: 15px 40px; -> (15/1600)*100 = 0.9375vw, (40/1600)*100 = 2.5vw */
	padding: 0.9375vw 2.5vw;
}

/* 左侧Logo区域 */
.header-logo-area a {
	text-decoration: none;
}

.header-logo-area .main-logo {
	/* height: 45px; -> (45/1600)*100 = 2.8125vw */
	height: 2.8125vw;
	width: auto;
	display: block;
	min-height: 30px;
	/* 限制最小高度，防止在手机上过小 */
}

.header-logo-area .logo-tagline {
	/* font-size: 12px; -> clamp(min, preferred, max) */
	font-size: clamp(0.6rem, 0.75vw, 0.75rem);
	color: #0077c8;
	/* margin-top: 5px; -> (5/1600)*100 = 0.3125vw */
	margin-top: 0.3125vw;
}

/* 右侧区域容器 */
.header-right-area {
	display: flex;
	align-items: center;
}

/* 主导航菜单 */
.main-nav {
	display: flex;
	/* gap: 40px; -> (40/1600)*100 = 2.5vw */
	gap: 2.5vw;
}

.main-nav .nav-link {
	position: relative;
	text-decoration: none;
	color: #333;
	/* font-size: clamp(0.6rem, 1vw, 1rem); */
	font-size: 16px;
	font-weight: 600;
	/* padding: 10px 0; -> (10/16)=0.625rem */
	padding: 0.625rem 0;
	/* 使用rem让padding与字体大小关联 */
	transition: color 0.2s;
}

.main-nav .nav-link:hover {
	color: #0077c8;
}

/* 导航项上方的蓝色线条 */
.main-nav .nav-link::before {
	content: '';
	position: absolute;
	/* top: -17px; -> (17/16)= -1.0625rem */
	top: -1.0625rem;
	left: 0;
	width: 100%;
	height: 3px;
	/* 保留px，边框不应缩放 */
	background-color: #0077c8;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

/* 仅在鼠标悬停时显示线条 */
.main-nav .nav-link:hover::before {
	transform: scaleX(1);
}

/* 搜索和语言功能按钮区域 */
.header-actions {
	display: flex;
	/* margin-left: 50px; -> (50/1600)*100 = 3.125vw */
	margin-left: 1.5vw;
}

.action-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* padding: 20px 25px; -> (20/1600)*100=1.25vw, (25/1600)*100=1.5625vw */
	padding: 1.25vw 1vw;
	text-decoration: none;
	color: #333;
	background-color: #fff;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.action-btn i {
	/* font-size: 18px; -> clamp(1rem, 1.125vw, 1.125rem) */
	/* font-size: clamp(0.5rem, 1vw, 1rem); */
	font-size: 15px;
	/* margin-bottom: 5px; -> (5/1600)*100 = 0.3125vw */
	margin-bottom: 0.3125vw;
	color: #0077c8;
}

.action-btn span {
	/* font-size: 12px; -> clamp(0.6rem, 0.75vw, 0.75rem) */
	/* font-size: clamp(0.6rem,0.75vw, 0.75rem); */
	font-size: 11.9px;
	font-weight: 600;
}

.action-btn:hover {
	background-color: #0077c8;
	color: #fff;
}

.action-btn:hover i{
	color: white;
}

/* 隐藏的搜索框样式 */
.search-bar-container {
	background-color: #f8f9fa;
	/* padding: 15px 40px; -> (15/1600)*100 = 0.9375vw, (40/1600)*100 = 2.5vw */
	padding: 0.9375vw 2.5vw;
	border-bottom: 1px solid #e0e0e0;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	text-align: center;
}

.search-bar-container input {
	/* width: 300px; -> (300/1600)*100 = 18.75vw */
	width: 18.75vw;
	min-width: 200px;
	/* padding: 8px 12px; -> 使用rem */
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	/* 保留px */
	/* margin-right: 10px; -> (10/1600)*100 = 0.625vw */
	margin-right: 0.625vw;
}

.search-bar-container button {
	/* padding: 8px 20px; -> 使用rem */
	padding: 0.5rem 1.25rem;
	border: none;
	background-color: #0077c8;
	color: white;
	border-radius: 4px;
	cursor: pointer;
}

/* --- 汉堡菜单 --- */
.hamburger-menu {
	display: none;
	/* 默认隐藏 */
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1010;
	padding: 0;
}

.hamburger-menu .bar {
	display: block;
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 5px auto;
	transition: all 0.3s ease-in-out;
}

#mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

/* 下拉菜单中隐藏的about us */
#hidePerson {
	/* min-width: 1200px; -> 75vw */
	min-width: 75vw;
	width: 100%;
	margin: 0 auto;
	background-color: white;
}

#downPersonBack {
	background-color: #F7F7F7;
}

#hidePersonBackBack,
#hideGoodsBackBack,
#hideServiceBackBack,
#hideCooperationBackBack,
#hideAboutBackBack {
	background-image: url('img/maskpop.png');
	background-repeat: repeat;
	width: 100%;
	background-size: 100%;
	position: absolute;
	/* height: 3691px; -> 这是一个非常大的值，可能用于遮罩，保留为100vh可以撑满视口 */
	height: 100vh;
	display: none;
	z-index: 999;
	/* min-width: 1423px; -> 88.9vw */
	min-width: 88.9vw;
	position: absolute;
	/* top: 100px; -> (100/1600)*100 = 6.25vw */
	/* top: 6.25vw; */
}

#hidePersonBack,
#hideGoodsBack,
#hideServiceBack,
#hideCooperationBack,
#hideAboutBack {
	background-color: white;
}

/* --- 下拉菜单布局 (最终精确版本) --- */
.container {
	display: flex;
	align-items: flex-start;
	/* gap: 35px; -> 2.1875vw */
	gap: 2.1875vw;
	/* padding: 50px 60px; -> 3.125vw 3.75vw */
	padding: 3.125vw 3.75vw;
	/* height: 400px; -> 25vw */
	height: 25vw;
	min-height: 320px;
}

.left-section img {
	/* width: 320px; -> 20vw */
	width: 20vw;
	height: auto;
	display: block;
}

.middle-section,
.right-section {
	display: flex;
	flex-direction: column;
	/* width: 250px; -> 15.625vw */
	width: 15.625vw;
	flex-shrink: 0;
}

#menu1 .menu-link {
	position: relative;
	cursor: pointer;
	/* padding: 16px 0; -> 1rem 0 */
	padding: 1rem 0;
	color: grey;
	border-bottom: 2px solid transparent;
	display: flex;
	align-items: center;
	transition: all 0.2s ease-in-out;
	font-size: 0.8vw;
}

#menu1 .menu-link::after {
	font-weight: bold;
	visibility: hidden;
}

#menu1 .menu-link>span:first-child {
	position: absolute;
	left: 0;
	/* top: 16px; -> 1rem */
	top: 1rem;
	font-size: 0.8vw;
}

#menu1 .menu-link .iconfont {
	margin-left: auto;
	margin-right: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease-in-out;
	font-size: 0.8vw;
}

#menu1 .menu-link.hover {
	color: black;
	border-bottom-color: #007bff;
}

#menu1 .menu-link.hover>span:first-child {
	font-weight: bold;
	font-size: 0.8vw;
}

#menu1 .menu-link.hover .iconfont {
	visibility: visible;
	opacity: 1;
	font-size: 0.8vw;
}

.right-section .nav-item {
	/* padding: 16px 0; -> 1rem 0 */
	padding: 1rem 0;
	cursor: pointer;
	color: #666;
	border-bottom: 1px solid #e0e0e0;
	font-size: 0.8vw;
}

.right-section>div {
	display: none;
}

#hideProfile {
	display: block;
}

.vertical-line-1 {
	width: 1px;
	background-color: #e0e0e0;
	align-self: stretch;
}

/* 下拉菜单中隐藏的商用产品及方案 */
.product-dropdown-container {
	background-color: white;
	width: 10%;
	/* margin-left: 600px; -> 37.5vw */
	margin-left: 58.5vw;
	/* top: 10px; -> 0.625vw */
	top: 0.625vw;
	/* padding: 30px 30px; -> 1.875vw */
	padding: 1.875vw;
}

.product-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	/* grid-template-columns: 1fr 1fr; */
	/* column-gap: 20px; -> 1.25vw */
	column-gap: 1.25vw;
	/* row-gap: 20px; -> 1.25vw */
	row-gap: 1.25vw;
}

.product-link-list li a {
	text-decoration: none;
	/* font-size: 16px; -> clamp(0.8rem, 1vw, 1rem) */
	font-size: clamp(0.8rem, 1vw, 1rem);
	color: #555;
	transition: color 0.2s ease;
}

.product-link-list li a:hover {
	color: #0077c8;
}

/*
================================================================
    第一个轮播图 Section
================================================================
*/
.banner2 img {
	width: 100%;
	height: 100%;
	transition: all 2s;
}

.banner2 {
	margin: 0 auto;
	width: 100%;
	position: relative;
	transition: all 2s;
}

.ImgList {
	list-style: none;
	/* height: 520px; -> 32.5vw */
	height: 32.5vw;
	/* min-height: 300px; */
	/* max-height: 520px; */
	width: 100%;
	transition: all 2s;
	position: relative;
}

.ImgList img {
	width: 100%;
	height: 100%;
	transition: all 2s;
	object-fit: cover;
}

.ImgList li {
	float: left;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 2s;
}

.ImgListLi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.8s ease;
	display: block !important;
}

.ImgListLi:first-child {
	opacity: 1;
}

.imagecontent {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	width: 80%;
	/* max-width: 1000px; -> 62.5vw */
	/* max-width: 62.5vw; */
}

.imagecontent h1 {
	/* font-size: 2.5em; -> 使用clamp */
	font-size: clamp(1.5rem, 3vw, 5.8rem);
	margin-bottom: 0.625vw;
	/* 10px / 1600 */
	transform: skewX(-10deg);
	line-height: 1.2;
}

.imagecontent p {
	/* font-size: 1.2em; -> 使用clamp */
	font-size: clamp(0.9rem, 1.5vw, 5.2rem);
	margin-bottom: 1.25vw;
	/* 20px / 1600 */
	font-weight: 300;
	line-height: 1.5;
}

.imagecontent .button {
	display: inline-block;
	/* padding: 10px 40px; -> 0.625rem 2.5rem */
	padding: 1rem 5rem;
	background-color: #0089D3;
	color: white;
	text-decoration: none;
	border: none;
	transform: skewX(-40deg);
	transform-origin: left bottom;
	cursor: pointer;
	transition: background-color 0.3s;
	position: relative;
	overflow: visible;
}

.button span {
	display: block;
	transform: skewX(40deg);
}

.imagecontent .button {
	position: relative;
	overflow: hidden;
	transition: color 0.4s ease-out;
}

.imagecontent .button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0056b3;
	transform: skewX(-40deg);
	transform-origin: left bottom;
	translate: -101% 0;
	z-index: 0;
	transition: translate 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imagecontent .button span {
	font-size: clamp(0.9rem, 1.5vw, 1.8rem);
	position: relative;
	z-index: 1;
}

.imagecontent .button:hover::after {
	translate: 0 0;
}

.leftBtn,
.rightBtn {
	/* width: 40px; -> 2.5vw */
	width: 2.5vw;
	/* height: 80px; -> 5vw */
	height: 5vw;
	position: absolute;
	top: 50%;
	/* margin-top: -34.5px; -> -2.156vw (height/2) */
	margin-top: -2.5vw;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0);
	/* font-size: 50px; -> 3.125vw */
	font-size: 3.125vw;
	line-height: 5vw;
	text-align: center;
	color: white;
	/* Changed from red to white for better visibility */
	cursor: pointer;
	display: none;
}

.leftBtn {
	left: 0;
}

.rightBtn {
	right: 0;
}


.leftBtn:hover,
.rightBtn:hover {
	background-color: rgba(0, 0, 0, 0.3);
}

.imglistU {
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1.25vw;
	/* 20px / 1600 */
	z-index: 20;
	display: flex;
	gap: 0.625vw;
	/* 10px / 1600 */
}

.imglistT:hover {
	background-color: #dfdcd9;
}

.imglistU a {
	float: left;
	/* height: 4px; */
	height: 0.25vw;
	/* width: 100px; -> 6.25vw */
	width: 6.25vw;
	opacity: 0.5;
	background-color: rgb(224, 225, 226);
}

.imglistu a:hover {
	background-color: black;
}

/*
================================================================
    product introduction Section
================================================================
*/
.product-intro-section {
	/* width: 75%; */
	/* font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; */
	background-color: #ffffff;
	margin: 0;
	padding: 4vw 1vw;
	/* max-width: 1100px; */
	margin: 0 auto;
}

.intro-header {
	width: 55%;
	margin: 0 auto;
	display: flex;
	/* gap: 30px; */
	margin-bottom: 2vw;
}

.intro-title {
	flex: 0 0 25%;
}

.intro-title h2 {
	/* font-size: 36px; */
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: #212529;
}

.intro-description {
	flex: 1;
}

.intro-description p {
	font-size: clamp(0.5rem, 1vw, 1rem);
	line-height: 1.5;
	color: #6c757d;
	margin: 0;
}

.staggered-slider-container {
	position: relative;
	width: 100%;
	height: 30vw;
	overflow: hidden;
}

.slider-track {
	display: flex;
	align-items: center;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide {
	flex-shrink: 0;
	width: 40%;
	/* height: 70%; */
	/* Adjust height to allow for vertical movement */
	margin: 0 2vw;
	position: relative;
	overflow: hidden;
	/* border-radius: 8px; */
	/* opacity: 0.5; */
	/* transform: scale(0.8); */
	/* transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease; */
}

/* ★★★ CORE CHANGE: Vertical Staggering ★★★ */
/* Position odd slides (1st, 3rd, etc.) lower */
.slide:nth-child(odd) {
	transform: translateY(25%);
}

/* Position even slides (2nd, 4th, etc.) higher */
.slide:nth-child(even) {
	transform: translateY(-25%);
}

/* Active slide is centered and full size */
.slide.active {
	margin-right: 5vw;
	opacity: 1;
	transform: translateY(0);
	/* Reset vertical translation */
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.slide-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 20px;
	color: white;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.slide-caption h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 5px;
}

.slide-caption p {
	font-size: 14px;
	color: #e9ecef;
	margin: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.slide.active .slide-caption p {
	opacity: 1;
}

.slider-navigation {
	position: absolute;
	bottom: 0.1vw;
	right: 44%;
	transform: translateX(120px);
	display: flex;
	z-index: 10;
}

.nav-arrow {
	width: 5vw;
	height: 5vw;
	background-color: #0089D3;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transform: skewX(-20deg);
	transition: background-color 0.3s ease;
}

.nav-arrow:hover {
	background-color: #006B92;
}

.nav-arrow.prev-arrow {
	margin-right: -12px;
	z-index: 1;
}

.nav-arrow.next-arrow {
	margin-top: -1.2vw;
	z-index: 2;
}

.nav-arrow span {
	display: inline-block;
	transform: skewX(20deg);
	color: white;
	font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight: bold;
}

/* Decorative lines */
.staggered-slider-container::before,
.staggered-slider-container::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	border: 1px solid #dee2e6;
	border-radius: 50%;
	z-index: -1;
}

.staggered-slider-container::before {
	top: -100px;
	left: 5%;
	border-color: transparent transparent #dee2e6 transparent;
	transform: rotate(-45deg);
}

.staggered-slider-container::after {
	top: -50px;
	right: 5%;
	border-color: #dee2e6 transparent transparent transparent;
	transform: rotate(15deg);
}

/* Responsive Design */
@media (max-width: 768px) {
	.intro-header {
		flex-direction: column;
	}

	.staggered-slider-container {
		height: 350px;
	}

	.slider-navigation {
		transform: translateX(50%);
		right: 50%;
	}
}

/*
================================================================
    Research and Development Story Section
================================================================
*/

/* 整体容器 */
.advantages-section {
	display: flex;
	/* max-width: 1100px; */
	width: 100%;
	background-color: #ffffff;
	padding: 50px;
	box-sizing: border-box;
	/* gap: 5vw; */
	border-radius: 8px;

	font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	background-color: #f8f9fa;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	/* min-height: 100vh; */
	margin: 0;
	padding: 8vw 20vw 10vw 20vw;
	box-sizing: border-box;
	position: relative;
	/* 确保 z-index 生效 */
	z-index: 2;
	/* 提高堆叠顺序，确保在遮罩层之上 */
}

/* 左侧内容区 */
.advantages-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.advantages-content h1 {
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
	color: #2c3e50;
	margin-top: 0;
	margin-bottom: 2vw;
}

/* 单个优势项的容器 */
.advantage-item {
	width: 26vw;
	display: flex;
	align-items: flex-start;
	background-color: #ffffff;
	padding: 1vw;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 91, 234, 0.08);
	margin-bottom: 2vw;
	cursor: pointer;
	/* 添加指针手势，提示用户可以交互 */
	transition: transform 0.2s ease-out;
	/* 添加轻微的悬浮效果 */
}

.advantage-item:hover {
	transform: translateY(-5px);
	/* 鼠标悬停时向上移动 */
}

.advantage-item:last-child {
	margin-bottom: 0;
}

/* 图标容器 */
.icon-container {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	margin-right: 20px;
	transition: background-color 0.3s ease;
	/* 为颜色变化添加过渡 */
}

.icon-container span {
	color: white;
	font-size: clamp(1.5rem, 3vw, 3rem);
	font-weight: bold;
}

/* 激活状态的图标 (深蓝色) */
.icon-container.active {
	background-color: #0d6efd;
}

/* 非激活状态的图标 (浅蓝色) */
.icon-container.inactive {
	background-color: #d1e7ff;
}

/* 文本内容区 */
.text-content h3 {
	font-size: clamp(0.9rem, 1.4vw, 1.4rem);
	/* margin-bottom: 30px; -> 1.875vw */
	/* margin-bottom: 2.3vw; */
	font-weight: 600;
	color: #34495e;
	margin-top: 0;
	margin-bottom: 0.2vw;
}

.text-content ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.text-content ul li {
	font-size: clamp(0.5rem, 1vw, 1rem);
	color: #555;
	line-height: 2;
	padding-left: 15px;
	position: relative;
}

.text-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 5px;
	height: 5px;
	background-color: #888;
	border-radius: 50%;
}

/* 右侧图片区 */
.advantages-image {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advantages-image img {
	width: 72%;
	height: auto;
	/* max-height: 500px; */
	object-fit: cover;
	border-radius: 8px;
	/* 核心：为图片变化添加淡入淡出效果 */
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

/* research */
.content-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - 80px);
	/* 减去body的上下padding */

	font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
	color: #ffffff;
	margin: 0;
	padding: 40px 20px;
	box-sizing: border-box;

	/* --- 核心修改：设置背景图片 --- */
	/* 重要：请将下面的URL替换为您自己的背景图片路径 */
	background-image: url('../image/研发故事（仪表）-08.jpg');
	background-size: cover;
	/* 使图片完全覆盖背景区域 */
	background-position: center;
	/* 将图片置于中心 */
	/* background-attachment: fixed; */
	/* 固定背景，内容滚动时背景不动 */
	background-repeat: no-repeat;
	/* 防止图片平铺 */

	position: relative;
	/* 为遮罩层提供定位上下文 */
	/* z-index: 0; */
}

.content-wrapper::before {
	content: '';
	position: fixed;
	/* 固定定位，覆盖整个视口 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(0, 0, 0, 0.65); */
	/* 65% 透明度的黑色遮罩 */
	z-index: -1;
	/* 将遮罩放在内容后面，背景图前面 */
}

/* 整体容器 */
.story-section {
	/* max-width: 1200px; */
	width: 100%;
}

/* 顶部标题区域 */
.story-header {
	text-align: center;
	margin-bottom: 80px;
}

.story-header h1 {
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
	margin: 2vw 0 1vw;
}

.story-header p {
	font-size: clamp(0.5rem, 0.9vw, 0.9rem);
	color: #dcdcdc;
	/* 略微调亮副标题颜色以增加对比度 */
}

/* 主内容容器（时间轴 + 图片） */
.story-content {
	display: flex;
	gap: 40px;
	align-items: center;
	padding: 0 10vw;
}

/* 左侧时间轴容器 */
.timeline-container {
	flex: 1;
	position: relative;
	padding: 5vw 0;
	margin-right: 30vw;
}

/* 垂直线 */
.timeline-container::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 5.2vw;
	bottom: 8vw;
	width: 2px;
	background-color: rgba(255, 255, 255, 0.25);
	/* 调整线条颜色以适应背景 */
}

/* 单个时间轴项目 */
.timeline-item {
	position: relative;
	width: 100%;
	margin-bottom: 50px;
}

.timeline-item:last-of-type {
	text-align: center;
	margin-bottom: 0;
}

/* 时间轴上的圆点标记 */
.timeline-marker {
	position: absolute;
	left: 50%;
	top: 5px;
	transform: translateX(-50%);
	width: 0.8vw;
	height: 0.8vw;
	background-color: #1a1a1a;
	/* 标记背景 */
	border: 5px solid #00A3E0;
	/* 标记边框颜色 */
	border-radius: 50%;
	z-index: 1;
}

.final-marker .timeline-marker {
	width: 1.5vw;
	height: 1.5vw;
	font-size: 1.2vw;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00A3E0;
}

/* 时间轴内容 */
.timeline-content {
	position: relative;
	width: calc(50% - 40px);
}

.timeline-item:nth-child(odd) .timeline-content {
	left: 0;
	text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
	left: calc(50% + 40px);
	text-align: left;
}

.timeline-content h3 {
	font-size: clamp(1rem, 2.4vw, 2.4rem);
	font-weight: initial;
	margin: 0 0 0.3vw;
	color: #ffffff;
}

.timeline-content p {
	font-size: clamp(0.5rem, 1vw, 1rem);
	color: #cccccc;
	margin: 0;
	line-height: 1.6;
}

.timeline-more-text {
	/* 	position: relative;
	width: calc(50% - 40px);
	font-size: clamp(1rem, 2vw, 2rem);
	color: #cccccc;
	margin-top: 15px;
	left: 0;
	text-align: right; */

	/* 覆盖旧的定位规则 */
	position: relative;
	display: inline-block;
	/* 允许居中 */
	width: auto;
	/* 宽度自适应 */
	left: auto;
	/* 清除 left 属性 */
	text-align: center;
	/* 文本居中 */

	/* 垂直定位在 "+" 标记下方 */
	margin-top: 3.5vw;
	/* 调整与上方 "+" 的间距 */

	/* 字体样式 */
	font-size: clamp(0.5rem, 1vw, 1rem);
	color: #cccccc;
}

/* 右侧图片容器 */
.image-container {
	flex: 1.2;
}

.image-container img {
	width: 100%;
	height: auto;
	display: block;
}

/*
================================================================
    Product Series Section
================================================================
*/
.product-series-section {
	width: 59%;
	margin: 0 auto;
	padding: 4vw 1vw;
	font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

.product-series-section .section-title {
	text-align: center;
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	margin-bottom: 2.3vw;
	font-weight: 700;
	color: #1c1e21;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5vw;
	margin-bottom: 4vw;
}

.product-card {
	background-color: #f8f9fa;
	border: 1px solid #e4e6e8;
	border-radius: 8px;
	text-align: center;
	padding: 2vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card.hidden {
    display: none !important;
}

.product-image-container {
	padding: 15px;
	border-radius: 6px;
	margin-bottom: 20px;
	aspect-ratio: 4 / 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-image-container img {
	width: 10vw;
	height: 7vw;
	object-fit: contain;
}

.product-title {
	font-size: clamp(0.7rem, 1.4vw, 1.4rem);
	font-weight: 700;
	margin: 0 0 2vw;
	color: #333;
	transition: color 0.3s ease;
}

.detail-btn {
	display: inline-block;
	background-color: #ced4da;
	color: #495057;
	text-decoration: none;
	width: 50%;
	margin: 0 auto;
	padding: 0.8vw;
	border-radius: 5px;
	font-size: clamp(0.5rem, 1vw, 1rem);
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.detail-btn:hover {
	background-color: #0089D3;
	color: #ffffff;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.pagination a {
	text-decoration: none;
	color: #495057;
	background-color: #ffffff;
	border: 1px solid #dee2e6;
	padding: 0.5vw 1vw;
	border-radius: 4px;
	font-size: clamp(0.5rem, 0.7vw, 0.7rem);
	font-weight: 600;
	transition: background-color 0.2s, color 0.2s;
}

.pagination a:hover {
	background-color: #e9ecef;
}

.pagination a.active {
	background-color: #0089D3;
	color: #ffffff;
	border-color: #0089D3;
	cursor: default;
}

.pagination a.active:hover {
	background-color: #0089D3;
}

/* ================================================================
		    Industry Solution Cases Section
	================================================================ */
/* Main container for the section */
.solution-cases-section {
	background-color: #f0f2f5;
	width: 100%;
}

.solution-cases-section .cases-content {
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	background-color: #f0f2f5;
	/* Light gray background for the whole page */
	/* margin: 0; */
	width: 60%;
	padding: 4vw 1vw;
	color: #1c1e21;
	/* max-width: 900px; */
	margin: 0 auto;
}

/* Header area containing title and main "Learn more" button */
.solution-cases-section .section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2vw;
}

.solution-cases-section .section-title {
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
}

.solution-cases-section .learn-more-main {
	background-color: #0089D3;
	color: white;
	text-decoration: none;
	padding: 0.8vw 1vw;
	border-radius: 4px;
	font-size: clamp(0.6rem, 1.2vw, 1.2rem);
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.solution-cases-section .learn-more-main:hover {
	background-color: #fff;
	color: #0089D3;
}

/* The grid that holds all the solution case cards */
.solution-cases-section .solution-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* Creates two equal-width columns */
	gap: 0.5vw;
	/* Space between the cards */
}

/* Individual solution card */
.solution-cases-section .solution-card {
	background-color: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	padding: 1vw;
	display: flex;
	align-items: center;
	gap: 1vw;
	transition: box-shadow 0.3s ease;
	transition: background-color 0.3s ease;
}

/* .solution-cases-section .solution-card:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
} */

/* Image container within the card */
.solution-cases-section .card-image {
	flex-shrink: 0;
	height: 9vw;
	width: 12vw;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.solution-cases-section .card-image img {
	/* 	max-width: 100%;
	max-height: 100%; */
	width: 80%;
	object-fit: contain;
}

/* Text content within the card */
.solution-cases-section .card-content {
	height: 9vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	/* Align content to the left */
}

.solution-cases-section .card-title {
	font-size: clamp(0.7rem, 1.4vw, 1.4rem);
	font-weight: 600;
	margin: 0.8vw 0 0;
	line-height: 1.4;
}

.solution-cases-section .learn-more-card {
	background-color: #0089D3;
	color: white;
	margin-bottom: 0.8vw;
	text-decoration: none;
	padding: 0.6vw 1vw;
	border-radius: 4px;
	font-size: clamp(0.5rem, 0.7vw, 0.7rem);
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.solution-cases-section .learn-more-card:hover {
	background-color: #fff;
	color: #0089D3;
}

/* ★★★ Special styles for the highlighted card ★★★ */
/* .solution-card:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
} */

.solution-card:has(.learn-more-card:hover) {
	background-color: #0089D3;
	/* Change parent background to blue */
	color: white;
	/* Change parent text color to white */
}

/* Make sure the title also becomes white */
.solution-card:has(.learn-more-card:hover) .card-title {
	color: white;
}

/* ================================================================
		    Setup and Suppot Section
	================================================================ */
/* Main container for the section */
.video-gallery-section {
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	/* background-color: #f8f9fa; */
	/* Light gray page background */
	margin: 0;
	width: 60%;
	padding: 4vw 1vw;
	color: #333;
	/* max-width: 960px; */
	margin: 0 auto;
}

/* Section title */
.video-gallery-section .section-title {
	text-align: center;
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
	color: #212529;
	margin-bottom: 2vw;
}

/* Grid container for the video cards */
.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* Creates a 3-column grid */
	gap: 1vw;
	/* Space between the cards */
}

/* Individual video card */
.video-card {
	background-color: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	overflow: hidden;
	/* Ensures the image corners are rounded */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Container for the thumbnail and play button */
.video-thumbnail-container {
	position: relative;
	cursor: pointer;
}

.video-thumbnail-container img {
	display: block;
	width: 100%;
	height: auto;
}

/* The play button overlay */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3vw;
	height: 3vw;
	background-color: #0089D3;
	/* Blue with slight transparency */
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

/* The white triangle (play icon) inside the button */
.play-button::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.6vw 0 0.6vw 1vw;
	border-color: transparent transparent transparent #ffffff;
	margin-left: 0.3vw;
	/* Nudge to the right for better centering */
}

/* Hover effect for the play button */
.video-thumbnail-container:hover .play-button {
	transform: translate(-50%, -50%) scale(1.1);
	/* Make it slightly larger */
	/* background-color: rgba(0, 123, 255, 1); */
	/* Make it fully opaque */
}

/* Text content area below the video */
.video-content {
	padding: 1vw;
}

.video-title {
	font-size: clamp(0.9rem, 1.6vw, 1.6rem);
	font-weight: 700;
	margin: 0 0 0.5vw;
}

.video-subtitle {
	font-size: clamp(0.5rem, 1vw, 1rem);
	color: #868e96;
	margin: 0;
}

/*
================================================================
    Why choose us Section
================================================================
*/
/* Main container for the whole section */
.why-choose-us {
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	background-color: #f0f2f5;
	margin: 0;
	padding: 4vw 1vw;
	/* max-width: 900px; */
	margin: 0 auto;
}

.why-choose-us .section-title {
	text-align: center;
	font-weight: 700;
	color: #212529;
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	margin-bottom: 2vw;
}

/* Tab navigation container */
.tabs-nav {
	display: flex;
	justify-content: center;
	gap: 5vw;
	position: relative;
	padding-bottom: 2vw;
	/* margin-bottom: 40px; */
}

/* Gray line running underneath the tabs */
.tabs-nav::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* height: 1px; */
	background-color: #dee2e6;
}

/* Individual tab button */
.tab-btn {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-family: inherit;
}

.tab-icon {
	width: 3vw;
	height: 3vw;
	border-radius: 50%;
	border: 1px solid #ced4da;
	background-color: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #868e96;
	font-size: 24px;
	transition: all 0.3s ease;
}

.tab-label {
	font-size: clamp(0.5rem, 1vw, 1rem);
	font-weight: 500;
	color: #6c757d;
	position: relative;
	transition: color 0.3s ease;
}

/* The small blue line under the active label */
.tab-label::after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 100%;
	height: 3px;
	background-color: #0089D3;
	transition: transform 0.3s ease;
}

/* Active state styles */
.tab-btn.active .tab-icon {
	background-color: #0089D3;
	border-color: #0089D3;
	color: #ffffff;
}

.tab-btn.active .tab-label {
	color: #0089D3;
	/* font-size: clamp(1.5rem, 2vw, 2rem); */
}

.tab-btn.active .tab-label::after {
	/* font-size: clamp(1.5rem, 2vw, 2rem);; */
	transform: translateX(-50%) scaleX(1);
}

.why-choose-us .fas {
	font-size: clamp(0.8rem, 1.5vw, 1.5rem);
}

/* Tab content area */
.tabs-content {
	background-color: #ffffff;
	/* padding: 30px; */
	margin: 0 auto;
	border-radius: 8px;
	width: 60%;
	/* margin: 0 auto; */
}

/* A single content panel */
.tab-panel {
	display: none;
	/* Hide all panels by default */
	align-items: center;
	gap: 5vw;
	animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
	display: flex;
	/* Show the active panel */
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Left side: Image slider */
.panel-image-slider {
	flex: 1;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 6px;
}

.slider-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.slider-image.active {
	opacity: 1;
}

/* Right side: Text content */
.panel-text-content {
	padding-right: 3vw;
	flex: 1;
}

.panel-title {
	/* font-size: 22px; */
	font-size: clamp(0.8rem, 1.6vw, 1.6rem);
	font-weight: 700;
	margin: 0 0 2vw;
}

.panel-description {
	font-size: clamp(0.5rem, 1vw, 1rem);
	line-height: 1.6;
	color: #6c757d;
	margin-bottom: 4vw;
}

.slider-nav {
	display: flex;
	gap: 0.5vw;
}

.slider-arrow {
	width: 2.5vw;
	height: 2.5vw;
	border-radius: 50%;
	border: 1px solid #dee2e6;
	background-color: #f8f9fa;
	color: #0089D3;
	font-size: clamp(1rem, 2vw, 2rem);
	/* font-weight: 700; */
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.2s, border-color 0.2s;
}

.slider-arrow:hover {
	background-color: #e9ecef;
	border-color: #ced4da;
}

/*
================================================================
    Common problem Section
================================================================
*/
/* Main container for the whole component */
.faq-section {
	/* font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; */
	background-color: #f0f2f5;
	/* Light gray page background */
	margin: 0;
	/* padding: 50px 20px; */
	/* max-width: 800px; */
	margin: 0 auto;
}

/* Header with background image */
.faq-header {
	height: 13vw;
	position: relative;
	padding: 3vw 20vw;
	background-image: url('../image/首图-地磅-04.jpg');
	/* <<< REPLACE WITH YOUR IMAGE */
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	color: white;
	z-index: 1;
}

/* Dark overlay for text readability */
.faq-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	z-index: -1;
}

.faq-title {
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	font-weight: 700;
	margin: 0;
}

/* White content area for the accordion */
.faq-content {
	width: 60%;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 2vw;
	margin-top: -3.5vw;
	/* This makes it overlap the header */
	position: relative;
	z-index: 2;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Container for all accordion items */
.accordion {
	display: flex;
	flex-direction: column;
}

/* Individual accordion item (<details> element) */
.accordion-item {
	border-bottom: 1px solid #e9ecef;
}

.accordion-item:last-of-type {
	border-bottom: none;
}

/* The clickable question part (<summary> element) */
.accordion-header {
	display: flex;
	align-items: center;
	gap: 1vw;
	padding: 1.5vw 0;
	cursor: pointer;
	list-style: none;
	/* Removes the default arrow */
}

/* .accordion-header::-webkit-details-marker {
	display: none;
} */

.question-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background-color: #0089D3;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: bold;
	border-radius: 3px;
}

.toggle-icon .fas {
	/* font-size: clamp(1rem, 2vw, 2rem); */
}

.question-text {
	font-size: clamp(0.65rem, 1.3vw, 1.3rem);
	flex-grow: 1;
	font-weight: 600;
	color: #212529;
}

.toggle-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #e9ecef;
	color: #adb5bd;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* The answer panel */
.accordion-content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
	padding: 0 0 1vw 1.8vw;
	margin: 0;
	font-size: clamp(0.5rem, 1vw, 1rem);
	color: #868e96;
	line-height: 5;
}



.accordion-item.active .toggle-icon {
	background-color: #0089D3;
	color: white;
	transform: rotate(180deg);
}

/* Learn more button at the bottom */
.faq-footer {
	text-align: center;
	margin-top: 2vw;
	padding-bottom: 4vw;
}

.learn-more-btn {
	display: inline-block;
	background-color: #0089D3;
	color: white;
	text-decoration: none;
	padding: 0.8vw 1vw;
	border-radius: 5px;
	font-size: clamp(0.5rem, 1.2vw, 1.2rem);
	font-weight: 500;
	transition: background-color 0.3s;
}

.learn-more-btn:hover {
	background-color: #fff;
	color: #0089D3;
}

/*
================================================================
    Contact Us Section
================================================================
*/
.contact-section {
	/* padding: 50px 0; -> 3.125vw 0 */
	padding: 8vw 0;
	font-family: Arial, sans-serif;
}

.contact-container {
	/* max-width: 1200px; -> 75vw */
	width: 60%;
	max-width: 75vw;
	margin: 0 auto;
	/* padding: 0 20px; -> 0 1.25vw */
	/* padding: 0 1.25vw; */
}

.contact-title {
	/* text-align: center;
	font-size: clamp(1.8rem, 2.25vw, 2.25rem);
	font-weight: 600;
	margin-bottom: 3.125vw; */

	/* font-size: 2.2rem; -> clamp */
	font-size: clamp(1.5rem, 3.2vw, 3.2rem);
	color: #3C4043;
	text-align: center;
	font-weight: 600;
	/* margin: 0 0 30px 0; -> 1.875vw */
	margin: 0 0 3.125vw 0;
}

.contact-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* gap: 60px; -> 3.75vw */
	gap: 3.75vw;
	align-items: flex-start;
}

.contact-info-column {
	display: flex;
	flex-direction: column;
	/* gap: 30px; -> 1.875vw */
	gap: 1.875vw;
}

.info-grid {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.info-item,
.address-item {
	display: flex;
	align-items: flex-start;
	/* gap: 15px; -> 0.9375vw */
	gap: 0.9375vw;
}

.info-icon {
	flex-shrink: 0;
	/* width: 44px; height: 44px; -> 2.75vw */
	width: 2.75vw;
	height: 2.75vw;
	min-width: 36px;
	min-height: 36px;
	border-radius: 50%;
	border: 1px solid #555;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1rem, 2vw, 2rem);
}

.info-text .info-label {
	display: block;
	font-size: clamp(0.5rem, 0.9vw, 0.9rem);
	font-weight: 600;
	margin-bottom: 0.3125vw;
	/* 5px */
}

.info-text .info-data {
	font-size: clamp(0.5rem, 1vw, 1rem);
	margin: 0;
	line-height: 1.6;
}

.fa-solid, .fas {
	font-size: clamp(0.5rem, 1vw, 1rem);
}

.vertical-divider {
	width: 1px;
	background-color: #444;
}

.map-container {
	width: 100%;
	/* height: 250px; -> 15.625vw */
	height: 9vw;
	/* min-height: 200px; */
	border-radius: 4px;
	overflow: hidden;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: 0;
}

.contact-form-column form {
	display: flex;
	flex-direction: column;
	/* gap: 20px; -> 1.25vw */
	gap: 1.25vw;
}

.form-row {
	display: flex;
	gap: 1.25vw;
}

.form-group {
	position: relative;
	width: 100%;
}

.form-group input,
.form-group textarea {
	width: 100%;
	/* padding: 12px 15px; -> 0.75rem 0.9375rem */
	padding: 1rem 2rem;
	background-color: #F1F2F2;
	border: none;
	border-radius: 4px;
	/* font-size: clamp(0.8rem, 1.3vw, 1.3rem); */
	font-size: 14px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
}

.submit-btn {
	width: 100%;
	padding: 1rem;
	background-color: #f4f4f4;
	color: black;
	border: none;
	border-radius: 4px;
	font-size: clamp(0.5rem, 0.9vw, 0.9rem);
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-btn:hover {
	color: white;
	background-color: #0077c8;
}

/*
================================================================
    footer Section
================================================================
*/
.site-footer {
	background-color: #212121;
	color: #a9a9a9;
	/* padding: 40px 0; -> 2.5vw 0 */
	padding: 2.5vw 0;
}

.footer-container {
	/* max-width: 1200px; -> 75vw */
	max-width: 75vw;
	margin: 0 auto;
	padding: 0 1.25vw;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* margin-bottom: 25px; -> 1.5625vw */
	margin-bottom: 1.5625vw;
}

.footer-logo img {
	/* max-height: 80px; -> 5vw */
	/* max-height: 5vw; */
	height: 5vw;
	min-height: 50px;
}

.social-icons {
	display: flex;
	/* gap: 12px; -> 0.75vw */
	gap: 0.75vw;
}

.social-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	/* width: 40px; height: 40px; -> 2.5vw */
	width: 3vw;
	height: 3vw;
	min-width: 32px;
	min-height: 32px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-icon i {
	font-size: clamp(0.8rem, 1.5vw, 1.5rem);
}

.social-icon:hover {
	color: white;
	background-color: #00A3E0;
	border-color: #00A3E0;
}

.footer-divider {
	border: 0;
	height: 1px;
	background-color: #424242;
	/* margin-bottom: 30px; -> 1.875vw */
	margin-bottom: 1.875vw;
}

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	/* gap: 40px; -> 2.5vw */
	gap: 2.5vw;
}

.footer-column h3 {
	color: #ffffff;
	font-size: clamp(0.8rem, 1.12vw, 1.12rem);
	font-weight: 600;
	margin-top: 0;
	/* margin-bottom: 20px; -> 1.25vw */
	margin-bottom: 1.25vw;
}

.link-list,
.link-list-double {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 2.2;
}

.link-list a,
.link-list-double a {
	color: #a9a9a9;
	text-decoration: none;
	transition: color 0.3s ease;
	/* font-size: clamp(0.75rem, 1.6vw, 1.6rem); */
	font-size: 14px;
}

.link-list a:hover,
.link-list-double a:hover {
	color: #ffffff;
}

.link-list-double {
	column-count: 2;
	/* column-gap: 20px; -> 1.25vw */
	column-gap: 1.25vw;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* gap: 8px; -> 0.5vw */
	gap: 0.5vw;
}

.gallery-grid img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	transition: opacity 0.3s ease;
}

.gallery-grid a:hover img {
	opacity: 0.8;
}

.main-nav .nav-link:active {
	color: #0077c8;
}

.action-btn:active {
	background-color: #0077c8;
	color: #fff;
}

#menu1 .menu-link.active {
	color: black;
	border-bottom-color: #007bff;
}

#menu1 .menu-link.active>span:first-child {
	font-weight: bold;
	font-size: 0.8vw;
}

#menu1 .menu-link.active .iconfont {
	visibility: visible;
	opacity: 1;
	font-size: 0.8vw;
}

.stat-item:active {
	background-color: #0089D3;
	color: white;
}

.stat-item:active .stat-title,
.stat-item:active .stat-value {
	color: white;
}

.container-4 a.learn-more:active {
	background-color: #0089D3;
	color: white;
	border: 1px solid #0089D3;
	transform: translateY(-2px);
}

.wrapper-22 .l-constrained-6 a.learn-more:active {
	/* background-color: #ffffff; */
	background-color: #0089D3;
	color: white;
	border: 1px solid #0089D3;
	transform: translateY(-2px);
}

.submit-btn:active {
	color: white;
	background-color: #0077c8;
}

.social-icon:active {
	color: white;
	background-color: #00A3E0;
	border-color: #00A3E0;
}

.link-list a:active,
.link-list-double a:active {
	color: #ffffff;
}

/* 默认隐藏移动端专属结构和遮罩层 */
.mobile-nav-wrapper,
#mobile-menu-overlay {
	display: none;
}

/* 当屏幕宽度小于等于 1024px 时，应用以下所有样式 */
@media (max-width: 1024px) {

	/* 1. 强制隐藏所有桌面版导航元素和复杂的下拉菜单 */
	.header-right-area .desktop-nav-only,
	#hidePersonBackBack,
	#hideGoodsBackBack {
		display: none !important;
	}

	/* 2. 显示移动版结构 */
	.mobile-nav-wrapper {
		display: flex;
		height: 100%;
		width: 500%;
		/* 足够容纳5个面板 */
		position: absolute;
		top: 0;
		left: 0;
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	}

	.hamburger-menu {
		display: block !important;
		/* 强制显示汉堡按钮 */
		/* 新增或确认以下属性 */
		position: relative;
		/* 为动画提供定位上下文 */
		z-index: 1001;
		/* 确保在菜单面板之上 */
	}

	body.menu-open #mobile-menu-overlay {
		display: block;
	}

	body.menu-open {
		overflow: hidden;
	}

	/* ★★★ 关键修改 1：为横线添加过渡动画 ★★★ */
	.hamburger-menu .bar {
		display: block;
		width: 25px;
		height: 3px;
		background-color: #333;
		margin: 5px auto;
		/* 添加平滑的过渡效果 */
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
	}

	/* ★★★ 关键修改 2：添加汉堡菜单激活时的 "X" 动画 ★★★ */
	/* 当菜单打开时 (body有.menu-open类) */
	body.menu-open .hamburger-menu .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
		/* 第一根线向下移动并旋转45度 */
	}

	body.menu-open .hamburger-menu .bar:nth-child(2) {
		opacity: 0;
		/* 第二根线（中间的）淡出消失 */
	}

	body.menu-open .hamburger-menu .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
		/* 第三根线向上移动并旋转-45度 */
	}

	/* 3. ★★★ 关键修复 ★★★: 重定义 .header-right-area 为滑出式面板 */
	.header-right-area {
		display: block !important;
		position: fixed !important;
		top: 0 !important;
		right: -280px !important;
		width: 280px !important;
		height: 100% !important;
		padding: 0 !important;
		transform: none !important;
		transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
		overflow-x: hidden !important;
		z-index: 1000;
		background-color: #fff;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	body.menu-open .header-right-area {
		right: 0 !important;
	}

	/* 4. 定义每个菜单面板的样式 */
	.mobile-nav-level {
		width: 280px;
		height: 100%;
		flex-shrink: 0;
		padding: 70px 25px 30px;
		display: flex;
		flex-direction: column;
		overflow-y: auto;
		background-color: #fff;
	}

	/* 5. 通过JS添加的类来控制滑动 */
	.header-right-area.level-2-active .mobile-nav-wrapper {
		transform: translateX(-280px);
	}

	.header-right-area.level-3-active .mobile-nav-wrapper {
		transform: translateX(-560px);
	}

	/* 6. 统一面板内元素的样式 */
	#main-menu-panel .main-nav-mobile {
		flex-grow: 1;
	}

	.main-nav-mobile .nav-link,
	.mobile-nav-level .submenu-link,
	.header-actions-mobile .action-btn,
	.mobile-nav-level .submenu-back-btn {
		display: flex;
		align-items: center;
		padding: 16px 0;
		text-decoration: none;
		color: #333;
		font-size: 1.1rem;
		border-bottom: 1px solid #f0f0f0;
	}

	.main-nav-mobile .nav-link:last-of-type {
		border-bottom: none;
	}

	.nav-link.has-submenu .fa-chevron-right {
		margin-left: auto;
		color: #ccc;
		font-size: 0.9rem;
	}

	/* 7. 子菜单和手风琴样式 */
	.submenu-back-btn {
		color: #0077c8;
		font-weight: bold;
		border-bottom: none;
	}

	.submenu-back-btn .fa-chevron-left {
		margin-right: 10px;
	}

	.submenu-title {
		font-size: 1.4rem;
		padding: 15px 0;
		border-bottom: 1px solid #eee;
		margin-bottom: 10px;
	}

	.submenu-link.has-submenu-1 .fa-chevron-down {
		margin-left: auto;
		color: #ccc;
		font-size: 0.9rem;
		transition: transform 0.3s ease;
	}

	.submenu-link.has-submenu-1.active .fa-chevron-down {
		transform: rotate(180deg);
	}

	.mobile-submenu {
		width: 100%;
		padding-left: 20px;
		background-color: #f8f8f8;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
	}

	.mobile-submenu.active {
		max-height: 500px;
	}

	.submenu-link-1 {
		display: block;
		padding: 12px 0;
		color: #555;
		text-decoration: none;
		font-size: 1rem;
		border-bottom: 1px solid #eee;
	}

	.submenu-link-1:last-child {
		border-bottom: none;
	}

	/* 8. 移动端功能按钮样式 */
	.header-actions-mobile {
		margin-top: auto;
		padding-top: 20px;
		border-top: 1px solid #eee;
	}

	.header-actions-mobile .action-btn i {
		font-size: 1rem;
		width: 20px;
		text-align: center;
		margin-right: 8px;
	}
}

/* ============================= */
/* 移动端响应式样式*/
/* ============================= */
/* Responsive Design */
/* For tablets, switch to 2 columns */
@media (max-width: 768px) {
	.video-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* For mobile phones, switch to 1 column */
@media (max-width: 576px) {
	.video-grid {
		grid-template-columns: 1fr;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.tabs-nav {
		gap: 15px;
	}

	.tab-panel {
		flex-direction: column;
	}
}

@media (max-width: 1024px) {

	/* 调整轮播图高度 */
	.banner2,
	.ImgList {
		/* height: 60vh; */
		min-height: 350px;
	}

	.imagecontent h1 {
		font-size: clamp(1.8rem, 2.5vw, 2.5rem);
		margin-bottom: 3vw;
	}

	.imagecontent p {
		/* font-size: clamp(1rem, 4vw, 1.2rem); */
		font-size: 1rem;
		margin-bottom: 3vw;
	}

	.imagecontent .button {
		padding: 0.5rem 2rem;
	}

	.partner-logos img {
		width: 60%;
	}

	/* product introduction */
	.intro-header {
		flex-direction: column;
	}

	.staggered-slider-container {
		height: 40vw;
	}

	/* “联系我们”区域 */
	.contact-content-wrapper {
		grid-template-columns: 1fr;
	}

	.info-grid {
		flex-direction: column;
		gap: 0.5rem;
	}

	.contact-info-column {
		gap: 1rem;
	}

	.map-container {
		height: 40vw;
	}

	.form-row {
		flex-direction: column;
	}

	/* “页脚”区域垂直堆叠 */
	.footer-main {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.footer-top {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.link-list-double {
		column-count: 1;
	}

	.social-icons {
		gap: 2vw;
	}

	.social-icon {
		width: 9vw;
		height: 9vw;
	}

	.advantages-section {
		flex-direction: column;
		padding: 30px;
		gap: 40px;
	}

	.advantages-content h1 {
		/* font-size: 36px; */
		text-align: center;
	}

	.advantage-item {
		width: 100%;
	}

	/* research and development story */
	.story-content {
		flex-direction: column;
		padding: 0;
	}

	.timeline-container {
		margin-right: 0;
	}

	/* product series */
	.product-series-section {
		width: 80%;
	}

	.product-grid {
		display: flex;
		flex-direction: column;
	}

	.product-image-container {
		aspect-ratio: 0;
	}

	/* industry solution cases */
	.solution-grid {
		grid-template-columns: 1fr;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.solution-cases-section .cases-content {
		width: 80%;
	}

	.solution-cases-section .solution-grid {
		display: flex;
		flex-direction: column;
		gap: 1vw;
	}

	.solution-cases-section .solution-card {
		padding: 2vw;
		height: 35vw;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.solution-cases-section .card-image {
		width: 25vw;
	}

	.solution-cases-section .card-title {
		text-align: center;
	}

	.solution-cases-section .learn-more-card {
		margin: 0 auto;
	}

	/* setup and support */
	.video-gallery-section {
		width: 80%;
	}

	.video-grid {
		display: flex;
		flex-direction: column;
	}

	/* why choose us */
	.tabs-nav {
		padding-top: 5vw;
		padding-bottom: 8vw;
	}

	.tabs-content {
		width: 80%;
	}

	.tab-panel.actve {
		/* flex-direction: column; */
	}

	.slider-arrow {
		width: 6vw;
		height: 6vw;
	}
	.tab-icon{
		width: 6vw;
		height: 6vw;
	}

	/*
	 * =========================================================
	 *  新功能：将激活的 Tab 面板内容改为垂直布局
	 * =========================================================
	 *  将此代码块添加到您的 CSS 文件末尾，它将覆盖原有的桌面端样式，
	 *  而不会影响移动端。
	 */

	/* 1. 改变主容器的 Flex 方向 */
	.tab-panel.active {
		/* 从默认的 'row' (水平) 改为 'column' (垂直) */
		flex-direction: column;

		/* 将子项在交叉轴（现在是水平方向）上居中对齐 */
		align-items: center;

		/* 调整垂直间距，可以根据需要修改这个值 */
		gap: 40px;
	}

	/* 2. 调整图片滑块的尺寸和 Flex 行为 */
	.panel-image-slider {
		/* 移除 flex: 1，防止它在垂直方向上被不自然地拉伸 */
		flex: none;

		/* 为其设置一个具体的宽度，使其能够在父容器中居中 */
		/* 这里的 80% 是一个示例，您可以根据最终视觉效果调整为 70% 或 90% 等 */
		width: 80%;

		/* 添加一个最大宽度，防止在超宽屏幕上图片区域变得过大 */
		max-width: 600px;
	}

	/* 3. 调整文本内容的尺寸和 Flex 行为 */
	.panel-text-content {
		/* 同样移除 flex: 1 */
		flex: none;

		/* 设置与图片区相同的宽度，以保持视觉上的对齐 */
		width: 80%;
		max-width: 600px;
		/* 同样设置最大宽度 */

		/* 移除原有的右侧内边距，因为它现在位于图片下方，不再需要这个边距 */
		padding-right: 0;

		/* (可选) 让文本也居中，以匹配整体居中的布局，视觉效果更好 */
		text-align: center;
	}

	/* 4. (可选) 如果希望文本区的左右箭头也跟着居中显示 */
	.panel-text-content .slider-nav {
		justify-content: center;
		/* 让箭头在它们的容器里居中 */
	}

	/* common problem */
	.faq-content {
		width: 80%;
	}

	.faq-header {
		height: 18vw;
	}

	/* core advantages */
	/* 	.advantages-image {
		opacity: 1;
	} */
}

/* product introduction */
/* --- 移动端响应式样式 --- */
/* 当屏幕宽度小于或等于 768px 时应用以下样式 */
@media (max-width: 768px) {

	/* 1. 调整整体布局和间距 */
	.product-intro-section {
		padding: 8vw 5vw;
		/* 调整内边距 */
	}

	.intro-header {
		width: 100%;
		/* 宽度占满 */
		flex-direction: column;
		/* 主轴改为垂直方向 */
		gap: 15px;
		/* 设置垂直间距 */
		margin-bottom: 5vw;
	}

	.intro-title,
	.intro-description {
		flex: none;
		/* 取消flex-grow/shrink设置 */
		text-align: center;
		/* 文本居中显示 */
	}

	/* 2. 调整轮播图容器和轨道 */
	.staggered-slider-container {
		/* 增加高度以适应移动端比例 */
		height: 60vw;
	}

	/* 3. 调整幻灯片样式 */
	.slide {
		width: 100%;
		/* 每张幻灯片占满轨道宽度 */
		margin: 0;
		/* 移除外边距 */
	}

	/* ★★★ 核心改动：重置交错效果 ★★★ */
	.slide:nth-child(odd),
	.slide:nth-child(even) {
		transform: translateY(0);
		/* 移除所有垂直位移 */
	}

	/* 确保当前幻灯片也没有位移和特殊边距 */
	.slide.active {
		transform: translateY(0);
		margin-right: 0;
	}

	/* 4. 调整箭头导航 */
	.slider-navigation {
		bottom: 50%;
		/* 移动到垂直居中的位置 */
		transform: translateY(50%);
		width: 100%;
		display: flex;
		justify-content: space-between;
		/* 重置桌面端的位置 */
		right: auto;
		left: 0;
	}

	.nav-arrow {
		width: 10vw;
		height: 10vw;
		/* 将其变成圆形 */
		border-radius: 50%;
		transform: skewX(0deg);
		/* 移除倾斜效果 */
		background-color: rgba(0, 137, 211, 0.5);
		/* 使用半透明背景 */
	}

	.nav-arrow.prev-arrow,
	.nav-arrow.next-arrow {
		margin: 0 10px;
		/* 增加一些边距 */
		z-index: 10;
	}

	.nav-arrow span {
		transform: skewX(0deg);
		/* 移除倾斜效果 */
	}

	/* 5. 新增：导航点样式 */
	.slider-dots {
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 8px;
		z-index: 10;
	}

	.dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background-color: #ccc;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

	.dot.active {
		background-color: #0089D3;
	}
}
