.product-module {
	margin-bottom: 30px;
}
/* 左图右文 */
.left-img-text .image, 
.right-img-text .image {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    align-items: center;
}

.left-img-text .text, 
.right-img-text .text {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 图片样式 */
.left-img-text .image img,
.right-img-text .image img {
	width: 100%;
	height: auto;
	display: block;
}

.left-img-text,.right-img-text {
	display: flex;
	width: 100%;
	margin: 10px 0;
	gap: 10px;
	align-items: stretch;
 /* 高度和内容撑满 */
	word-break: break-word;
}

.mce-menu-item.mce-menu-item-help {
	display: none;
}

/* 2宫格样式 */
.waimaojia_grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

/* 3宫格 (1x3) 样式 */
.waimaojia_grid-3 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
}

/* 4宫格 (2x2) 样式 */
.waimaojia_grid-4 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 10px;
}
/* 4宫格 (1x4) 样式 */
.waimaojia_grid-1x4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.waimaojia_grid-item {
	text-align: center;
	word-break: break-word;
	font-size: 16px;
}

.waimaojia_grid-item img {
	width: 100%;
	height: auto;
	display: block;
}
/*CTA按钮*/

.cta-btn {
	display: inline-block;
	padding: 15px 30px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: white;
	background: linear-gradient(90deg, #ff7e5f, #feb47b);
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
	background: linear-gradient(90deg, #feb47b, #ff7e5f);
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-btn:focus {
	outline: none;
}

/* FAQ 样式 */

.faq-item {
	margin-bottom: 15px;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin: 0;
	padding-bottom: 10px;
}

.faq-answer {
	font-size: 16px;
	color: #555;
	padding-top: 10px;
	border-top: 1px solid #ddd;
}