/* 解决问题 */
#submenu-solution {
	display: none;
	/*margin: 0 auto;
	 水平居中容器 */
	padding: 0 30px;
	/* 左右预留边距，避免内容贴边 */
}

.header-item {
	width: 100%;
	height: 100%;
	/*margin: 0 auto;
	 水平居中容器 */
}

.header-submenu {
	display: flex;
	/* 启用 flex 布局 */
	/*justify-content: center;
	 子元素水平居中 
	margin: 0 auto;*/
	align-items: flex-start;
	/* 顶部对齐，避免内容被拉伸 */
	padding: 0px 15px;
}

.header-solution {
	/* 移除 float: left 和固定 width: 70%，由 flex 分配宽度 */
	padding: 30px 0px;
	/* 调整内边距，避免内容偏移 */
	/* margin: 0 0 0 70px; */
	/* 清除默认外边距 */
	/* 保留 flex: 3 用于分配宽度比例 */
	float: left;
}

.header-solution2 {
	/* 移除 float: right */
	padding: 30px 50px;
	/* 调整内边距，与左侧保持一致 
	margin: 0 auto;*/
	/* 清除默认外边距 */
	/* 保留 flex: 1 用于分配宽度比例 */
	float: left;
}

.solution-links li{
	line-height: 20px;
	height: 20px;
}

.solution-content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 15px;
}

.solution-content-list {
	/* width: calc(25% - 10px); */
	text-align: center;
}

.solution-content-list img {
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
}

.solution-content-list a {
	font-size: 14px;
	color: #000;
}

/* 产品中心 */
#submenu-product {
	display: none;
	width: 100%;	
}

.product-card {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	padding: 30px 15px;
}

.product-card-content {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
}

.product-card-matter {
	display: flex;
	gap: 10px;
}

.product-card-matter img {
	width: 80px;
	border-radius: 8px;

}

/* 行业应用 */
#submenu-industry {
	display: none;
	width: 100%;
	padding: 0 30px;
}

#submenu-industry li {
	display: block;
	justify-content: center;
}


.industry-card {
	width: 300px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 10px;
}


.industry-card-content {
	width: 240px;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	height: 130px;
	margin-top: 10px;
}

.industry-card-content img {
	height: 130px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
}

.industry-card-matter {
	float: left;
	margin: 0 auto;
	margin-bottom: 30px;
}

.industry-card-matter1 {
	float: left;
	margin: 0 auto;
	width: 240px;
	display: flex;
}

.resource-section {
	margin-left: 50px;
}