/* 添加交替背景色样式 */
.section {
	transition: background-color 0.5s ease;
}
/* 第1个模块保持原有背景 */
.section01 {
	background-color: transparent !important;
}
/* 第2个模块 - 白色背景 */
.section02 {
	background-color: #fff5e6;
}
/* 第3个模块 - 浅橙色背景 */
.section03 {
	background-color: #fff5e6;
}
/* 第4个模块 - 白色背景 */
.section04 {
	background-color: #fff5e6;
}
/* 第5个模块 - 浅橙色背景 */
.section05:not(.fp-auto-height) {
	background-color: #fff5e6;
}
/* 页脚模块保持原有样式 */
.section05.fp-auto-height {
	background-color: transparent !important;
}
/* 确保文字在两种背景下都清晰可读 */
.section03 .fnt_30,
.section03 .fnt_18,
.section03 .fnt_14,
.section05:not(.fp-auto-height) .fnt_30,
.section05:not(.fp-auto-height) .fnt_16,
.section05:not(.fp-auto-height) .fnt_14 {
	/* color: #333; */
}
/* 调整产品展示框在浅色背景下的样式 */
.section03 .product-box {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}
.section03 .product-box:hover {
	transform: translateY(-5px);
}