/* ==========================================================================
   jwmsuo 行业方案板块 —— 薄层样式（v8.5.2 · 套用模板 A「vanmalock 工业清爽风」）
   --------------------------------------------------------------------------
   策略：复用 brand.css 既有组件类（.section__title / .jwmsuo-feature /
   .jwmsuo-card / .jwmsuo-card__thumb / .jwmsuo-cta / .jwmsuo-grid /
   .jwmsuo-feature__grid / .jwmsuo-tag / .jwmsuo-btn--light 等），
   本文件只补模板 A 专属差异：
     · 浅色面包屑条 + 分隔线
     · Hero 大图叠加标题/概述（品牌橙标签、底部渐变蒙版）
     · 痛点大号描边数字 01/02/03（右上角描边水印徽标）+ 红字短标签
     · 左对齐橙色竖条标题（.jwmsuo-block-title，用于方案概述/应用案例）
     · 架构图居中限宽、细边框、图注居中小字
     · 产品相册图注（.jwmsuo-card__caption）
     · 技术优势 4 列细线编号卡（.jwmsuo-advantages 覆盖 .jwmsuo-feature__grid 为 4 列）
     · 相关推荐 4 列
   所有取值引用 style.css 的 :root 设计令牌，零硬编码色值 / 圆角 / 阴影。
   响应式对齐站点断点 1024 / 768（与 brand.css 一致）。
   ========================================================================== */

/* 模板 A 专属危险色（红字短标签用，其余色值全部复用 --jwmsuo-* 令牌） */
:root { --jwmsuo-danger: #e03e3e; }

/* ---------- ① 面包屑（浅色条，置于 Hero 上方） ---------- */
.jwmsuo-breadcrumb-bar {
	background: var(--jwmsuo-white);
	border-bottom: 1px solid var(--jwmsuo-border);
}
.jwmsuo-breadcrumb-bar .container { padding-top: 14px; padding-bottom: 14px; }
.jwmsuo-breadcrumb-bar .jwmsuo-breadcrumb {
	color: var(--jwmsuo-text-muted);
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.jwmsuo-breadcrumb-bar .jwmsuo-breadcrumb a { color: var(--jwmsuo-text-muted); }
.jwmsuo-breadcrumb-bar .jwmsuo-breadcrumb a:hover { color: var(--jwmsuo-primary); }
.jwmsuo-breadcrumb-bar .jwmsuo-breadcrumb .sep { color: #c9bdb2; }
.jwmsuo-breadcrumb-bar .jwmsuo-breadcrumb .current { color: var(--jwmsuo-primary-dark); font-weight: 600; }

/* ---------- ② Hero（模板 A：大图 + 叠加标题/概述） ---------- */
.jwmsuo-solution__hero { position: relative; }
.jwmsuo-solution__hero-media { position: relative; line-height: 0; }
.jwmsuo-solution__hero-img,
.jwmsuo-solution__hero-ph {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}
.jwmsuo-solution__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(31,45,61,.05) 0%, rgba(31,45,61,.55) 100%);
}
.jwmsuo-solution__hero-inner {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 1.7;
}
.jwmsuo-solution__hero-inner.container { padding-bottom: 30px; color: #fff; }
.jwmsuo-solution__hero-tag {
	display: inline-block;
	background: var(--jwmsuo-primary);
	color: #fff;
	font-size: 13px;
	padding: 4px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
	letter-spacing: .5px;
}
.jwmsuo-solution__hero-title {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: 1px;
	text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.jwmsuo-solution__hero-desc {
	margin-top: 10px;
	max-width: 720px;
	font-size: 15px;
	color: rgba(255,255,255,.92);
}

/* ---------- 区块与分隔线 ---------- */
.jwmsuo-solution__section { padding: 56px 0; }
.jwmsuo-solution__section > .section__title { margin-bottom: 32px; }
.jwmsuo-solution__divider {
	max-width: var(--jwmsuo-container);
	height: 1px;
	background: var(--jwmsuo-border);
	margin: 0 auto;
}

/* 左对齐橙色竖条标题（模板 A .block-title，用于方案概述 / 应用案例） */
.jwmsuo-block-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--jwmsuo-text);
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.jwmsuo-block-title::before {
	content: "";
	width: 6px;
	height: 22px;
	border-radius: 3px;
	background: var(--jwmsuo-primary);
	display: inline-block;
}
.jwmsuo-prose { color: var(--jwmsuo-text-muted); font-size: 15.5px; max-width: 860px; line-height: 1.8; }
.jwmsuo-prose + .jwmsuo-prose { margin-top: 14px; }

/* ---------- ③ 痛点（大号描边数字 01/02/03 卡，套 .jwmsuo-feature 外观） ---------- */
.jwmsuo-pain__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.jwmsuo-pain__point {
	position: relative;
	overflow: hidden;
	text-align: left;            /* 覆盖 .jwmsuo-feature 的居中 */
}
.jwmsuo-pain__num {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	font-style: italic;
	color: var(--jwmsuo-primary-tint);
	-webkit-text-stroke: 1px var(--jwmsuo-primary);
}
.jwmsuo-pain__point h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--jwmsuo-text); }
.jwmsuo-pain__point p { margin: 0; color: var(--jwmsuo-text-muted); font-size: 14.5px; }

/* 红字短标签（保留 .jwmsuo-tag 结构，改红配色，对应模板 A 痛点红标签） */
.jwmsuo-pain__tags { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.jwmsuo-pain__tags .jwmsuo-tag {
	background: #fdecec;
	color: var(--jwmsuo-danger);
	border: 1px solid #f6d6d6;
}

/* ---------- ⑤ 架构图（居中限宽 + 细边框 + 图注居中小字） ---------- */
.jwmsuo-arch { max-width: 860px; margin: 0 auto; }
.jwmsuo-arch__item { margin: 0 0 24px; }
.jwmsuo-arch__item:last-child { margin-bottom: 0; }
.jwmsuo-arch__item .jwmsuo-card__thumb {
	border: 1px solid var(--jwmsuo-border);
	border-radius: var(--jwmsuo-radius-lg);
	background: var(--jwmsuo-white);
	overflow: hidden;
}
.jwmsuo-arch__item figcaption {
	text-align: center;
	font-size: 13px;
	color: var(--jwmsuo-text-muted);
	margin-top: 12px;
}

/* ---------- ⑥ 产品相册（3 列网格 + 图注，复用 .jwmsuo-card / .jwmsuo-card__thumb） ---------- */
.jwmsuo-gallery__item .jwmsuo-card__body { padding: 14px 16px 18px; }
.jwmsuo-gallery__item .jwmsuo-card__title { font-size: 15.5px; font-weight: 700; color: var(--jwmsuo-text); }
.jwmsuo-card__caption { font-size: 13px; color: var(--jwmsuo-text-muted); margin-top: 4px; }

/* ---------- ⑦ 技术优势（4 列细线编号卡网格） ---------- */
.jwmsuo-advantages {
	grid-template-columns: repeat(4, 1fr);   /* 覆盖 .jwmsuo-feature__grid 的 3 列，对齐模板 A 4 优势项 */
	gap: 18px;
}
.jwmsuo-advantage { text-align: center; }   /* 与 .jwmsuo-feature 居中一致 */
.jwmsuo-advantage__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--jwmsuo-primary-tint);
	color: var(--jwmsuo-primary);
	font-size: 20px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 14px;
}
.jwmsuo-advantage h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: var(--jwmsuo-text); }
.jwmsuo-advantage p { margin: 0; color: var(--jwmsuo-text-muted); font-size: 14px; }

/* ---------- ⑨ 相关推荐（4 列，复用 .jwmsuo-grid + solution-card） ---------- */
.jwmsuo-related { grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---------- ⑩ CTA（盒子 / 标题 / 按钮复用 brand.css .jwmsuo-cta，补电话行） ---------- */
.jwmsuo-cta__tel { margin: 16px 0 0; font-size: 15px; color: rgba(255,255,255,.9); }
.jwmsuo-cta__tel b { font-size: 18px; color: #fff; }
.jwmsuo-cta .jwmsuo-btn--light { margin-top: 4px; }

/* ---------- 卡片摘要（solution-card；站点无同名组件，保留） ---------- */
.jwmsuo-card__excerpt { color: var(--jwmsuo-text-muted); font-size: 14px; margin: 0 0 14px; }

/* ---------- 响应式（对齐站点断点 1024 / 768） ---------- */
@media (max-width: 1024px) {
	.jwmsuo-pain__list,
	.jwmsuo-advantages,
	.jwmsuo-related,
	.jwmsuo-gallery { grid-template-columns: repeat(2, 1fr); }
	.jwmsuo-solution__hero-title { font-size: 32px; }
}
@media (max-width: 768px) {
	.jwmsuo-pain__list,
	.jwmsuo-advantages,
	.jwmsuo-related,
	.jwmsuo-gallery { grid-template-columns: 1fr; }
	.jwmsuo-solution__hero-img,
	.jwmsuo-solution__hero-ph { height: 280px; }
	.jwmsuo-solution__hero-title { font-size: 26px; }
	.jwmsuo-pain__num { font-size: 44px; }
	.jwmsuo-solution__section { padding: 40px 0; }
}
