#img_header {
	position: relative;
	/* 设置一个相对定位 */
	max-height: 400px; /* 限制最大高度 */
	overflow: hidden; /* 隐藏超出部分 */
}

/* 背景图片样式优化 */
#img_header > img:first-of-type {
	width: 100%;
	height: 100%;
	object-fit: cover; /* 保持比例覆盖容器 */
	object-position: center; /* 居中显示 */
}

.img_content {
	color: white;
	width: 100%;
	left: 0;
	top: 40%;
	position: absolute;
}

.product_content {
	top: 33%;
}

.img_content .img_msg,
.product_buttom {
	width: 1380px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.img_content .tip_1,
.img_content .tip_2,
.img_content .tip_title {
	font-size: 40px;
}

.img_content .tip_3,
.img_content .tip_content {
	font-size: 18px;
	white-space: pre-wrap;
}

.img_content .tip_content {
	margin-top: 50px;
}

.product_content .tip_content {
	margin-top: 30px;
}

.product_buttom {
	display: flex;
	margin-top: 55px;
}

.product_buttom .detail_left {
	margin-right: 20px;

}

.product_buttom .detail_left a {
	color: #fff;
	background-color: transparent;
	border: 1px solid #fff;
}

/* 视频样式 - 保持适中大小 */
.header_video {
	position: absolute;
	right: 12%;
	top: 50%;
	transform: translateY(-50%);
	width: 38%;
	height: auto;
	aspect-ratio: 16/9;
	border-radius: 20px;
	max-width: 500px;
	border: none;
	outline: none;
}

/* 图片样式 - 显示更大 */
.header_img_icon {
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	width: 45%;
	height: auto;
	border-radius: 20px;
	max-width: 650px;
}

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

	.img_content .img_msg,
	.product_buttom {
		width: 900px;
	}

	.img_content .tip_1,
	.img_content .tip_2,
	.img_content .tip_title {
		font-size: 32px;
	}

	.img_content .tip_3,
	.img_content .tip_content {
		font-size: 18px;
	}

	.product_buttom {
		margin-top: 30px;
	}

	.product_content {
		top: 29%;
	}

	/* 视频 - 适中尺寸 */
	.header_video {
		right: 8%;
		width: 40%;
		max-width: 450px;
	}

	/* 图片 - 较大尺寸 */
	.header_img_icon {
		right: 5%;
		width: 48%;
		max-width: 600px;
	}
}

/* 更小屏幕的响应式调整 */
@media only screen and (max-width: 1200px) {
	.img_content .img_msg,
	.product_buttom {
		width: 700px;
	}

	.img_content .tip_1,
	.img_content .tip_2,
	.img_content .tip_title {
		font-size: 28px;
	}

	.img_content .tip_3,
	.img_content .tip_content {
		font-size: 16px;
	}

	.header_video {
		right: 5%;
		width: 42%;
		max-width: 400px;
	}

	.header_img_icon {
		right: 3%;
		width: 50%;
		max-width: 550px;
	}
}

@media only screen and (max-width: 992px) {
	.img_content .img_msg,
	.product_buttom {
		width: 550px;
	}

	.img_content .tip_1,
	.img_content .tip_2,
	.img_content .tip_title {
		font-size: 24px;
	}

	.img_content .tip_3,
	.img_content .tip_content {
		font-size: 14px;
	}

	.product_buttom {
		margin-top: 20px;
	}

	.header_video {
		right: 3%;
		width: 45%;
		max-width: 360px;
	}

	.header_img_icon {
		right: 2%;
		width: 52%;
		max-width: 480px;
	}
}

@media only screen and (max-width: 768px) {
	.img_content .img_msg,
	.product_buttom {
		width: 90%;
		padding: 0 20px;
	}

	.img_content .tip_1,
	.img_content .tip_2,
	.img_content .tip_title {
		font-size: 22px;
	}

	.img_content .tip_3,
	.img_content .tip_content {
		font-size: 14px;
	}

	.product_content {
		top: 20%;
	}

	/* 小屏幕下改为垂直布局 */
	.header_video,
	.header_img_icon {
		position: relative;
		right: auto;
		top: auto;
		transform: none;
		width: 90%;
		max-width: 100%;
		margin: 30px auto 0;
		display: block;
	}

	.img_content {
		position: relative;
		top: auto;
		padding: 40px 0;
	}
}