@charset "utf-8";

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	/* font-size: 16px; */
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei",
		sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	color: #1a1a1a;
	/* background-color: #f4f4f2; */
	-webkit-font-smoothing: antialiased;
}



img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}

p {
	text-align: justify;
	/* 两端对齐 */
	text-align-last: left;
	/* 最后一行左对齐（关键） */
}

strong {
	font-weight: 700;
}

b {
	font-weight: 700;
}

::-webkit-scrollbar {
	width: 5px;
}

::-webkit-scrollbar-track {
	background: #f0f1f3;
}

::-webkit-scrollbar-thumb {
	background: #c4c8d0;
	border-radius: 3px;
}

.hgcontainer {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 40px 0 40px;
	/* 	margin-bottom: 60px; */
}

/*    ===========================
	     hgsolu-banner---居中模式
	=========================== */
.hgsolu-banner {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
}

/* ================================
解决方案 hgsolu-banner
=============================== */

.hgsolu-banner-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hgsolu-banner-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #c9a97a;
	margin-bottom: 16px;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-banner-tag.visible {
	opacity: 1;
	transform: none;
}

.hgsolu-banner-tag::before {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: #c9a97a;
}

.hgsolu-banner-title {
	font-size: clamp(26px, 3.8vw, 32px);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.5px;
	line-height: 1.75;
	margin-bottom: 14px;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.75s 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.75s 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: center;
}

.hgsolu-banner-title.visible {
	opacity: 1;
	transform: none;
}

.hgsolu-banner-subtitle {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.4px;
	line-height: 1.8;
	max-width: 520px;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.75s 0.5s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.75s 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-banner-subtitle.visible {
	opacity: 1;
	transform: none;
}

.hgsolu-banner-badges {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	flex-wrap: wrap;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.75s 0.65s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.75s 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-banner-badges.visible {
	opacity: 1;
	transform: none;
}

/* ================================
解决方案 主体区
=============================== */


.hgsolu-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.7px;
	color: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 5px 12px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.06);
}

.hgsolu-badge-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #c9a97a;
}


.hgsolu-page-body {
	/* background: #f4f5f6; */
	padding: 64px 0 64px;
}

.hgsolu-layout {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 48px;
	align-items: start;
}

.hgsolu-product-id {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: #a8885a;
	background: rgba(168, 136, 90, 0.07);
	border: 1px solid rgba(168, 136, 90, 0.22);
	padding: 5px 14px;
	border-radius: 100px;
	margin-bottom: 20px;
}

.hgsolu-article-title {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.6px;
	margin-bottom: 40px;
}

.hgsolu-section {
	margin-bottom: 56px;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-section-tatle {
	border: 1px solid #e2ddd7;
	border-radius: 6px;
	overflow: hidden;
}

.hgsolu-section.visible {
	opacity: 1;
	transform: none;
}

.hgsolu-section-header {
	/* 下横线排法--去掉display: flex */
	/* display: flex;
	align-items: center;
	gap: 14px; */
	margin-bottom: 22px;
}

.hgsolu-section-num {
	font-weight: 500;
	letter-spacing: 1.1px;
	color: #a8885a;
	flex-shrink: 0;
}

.hgsolu-section-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent);
}

.hgsolu-section-title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.2px;
	margin-bottom: 20px;
}

.hgsolu-body-text {
	margin-bottom: 14px;
	/* max-width: 94ch; */
}

/* .hgsolu-em {
	font-weight: 700;
} */

.hgsolu-req-list {
	margin: 18px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hgsolu-req-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.hgsolu-req-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background: rgba(168, 136, 90, 0.07);
	border: 1px solid rgba(168, 136, 90, 0.22);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.hgsolu-req-icon svg {
	width: 13px;
	height: 13px;
	stroke: #a8885a;
	fill: none;
	stroke-width: 2;
}

.hgsolu-req-text {
	font-size: 14px;
	font-weight: 500;
	color: #555555;
}

.hgsolu-req-text strong {
	font-weight: 600;
}

.hgsolu-product-visual {
	position: relative;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	margin: 32px 0;
	aspect-ratio: 16 / 7;
}

.hgsolu-product-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-product-visual:hover img {
	transform: scale(1.03);
}

.hgsolu-product-visual-overlay {
	position: absolute;
	inset: 0;
	/* background: linear-gradient(to right, rgba(10, 12, 18, 0.5) 0%, transparent 60%); */
}

.hgsolu-product-visual-label {
	position: absolute;
	bottom: 18px;
	left: 22px;
	font-size: 11px;
	letter-spacing: 1.1px;
}

.hgsolu-tech-card {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	padding: 22px 22px 20px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.3s ease;
}

.hgsolu-tech-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #a8885a, transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hgsolu-tech-card:hover {
	border-color: rgba(168, 136, 90, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.hgsolu-tech-card:hover::before {
	opacity: 1;
}

.hgsolu-tech-card-num {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.2px;
	color: #a8885a;
	margin-bottom: 10px;
}

.hgsolu-tech-card-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
}

/* .hgsolu-tech-card-body {
	font-weight: 300;
} */

.hgsolu-tech-card-body strong {
	font-weight: 700;
}

/* =================
              客户价值
  ================== */
.soluitem-tech-card-value {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px solid #f0eeeb;
	font-size: 13px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1.5;
}

.soluitem-tech-card-value-icon {
	width: 16px;
	height: 16px;
	margin-top: 1px;
	flex-shrink: 0;
	color: #b89a5e;
}

.hgsolu-sub-list {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hgsolu-sub-list li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 14px;
	color: #5a5f72;
}

.hgsolu-sub-list li::before {
	content: '';
	flex-shrink: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #a8885a;
	margin-top: 8px;
}

.hgsolu-app-table {
	width: 100%;
	border-collapse: collapse;
	/* margin-top: 18px; */
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e2ddd7;
	background-color: #f4f4f2;
}

.hgsolu-app-table thead tr {
	background: #0f1117;
}

.hgsolu-app-table thead th {
	padding: 14px 20px;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

.hgsolu-app-table thead th:first-child {
	color: #c9a97a;
}

.hgsolu-app-table tbody tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	background: #ffffff;
	transition: background 0.2s ease;
}

.hgsolu-app-table tbody tr:last-child {
	border-bottom: none;
}

.hgsolu-app-table tbody tr:hover {
	background: rgba(168, 136, 90, 0.07);
}

.hgsolu-app-table td {
	padding: 16px 20px;
	vertical-align: top;
}

.hgsolu-app-table td:first-child {
	font-weight: 600;
	color: #2c2f3a;
	white-space: nowrap;
	min-width: 160px;
}

.hgsolu-deploy-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 16px;
}

.hgsolu-deploy-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 18px 20px;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 10px;
	transition: border-color 0.25s, box-shadow 0.25s;
}

.hgsolu-deploy-item:hover {
	border-color: rgba(168, 136, 90, 0.28);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.hgsolu-deploy-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	background: linear-gradient(135deg, rgba(168, 136, 90, 0.15), rgba(168, 136, 90, 0.05));
	border: 1px solid rgba(168, 136, 90, 0.22);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hgsolu-deploy-icon svg {
	width: 12px;
	height: 12px;
	stroke: #a8885a;
	fill: none;
	stroke-width: 1.8;
}

.hgsolu-deploy-label {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}

.hgsolu-deploy-desc {
	/* font-size: 16px; */
}

.hgsolu-deploy-desc strong {
	color: #2c2f3a;
	font-weight: 600;
}

.hgsolu-summary-block {
	position: relative;
	background: #0f1117;
	border-radius: 14px;
	padding: 36px 36px 34px;
	overflow: hidden;
	margin-top: 10px;
}

.hgsolu-summary-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #a8885a, transparent 80%);
}

.hgsolu-summary-block::after {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -60px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(168, 136, 90, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.hgsolu-summary-heading {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: #a8885a;
	margin-bottom: 12px;
}

.hgsolu-summary-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.9;
	position: relative;
	z-index: 1;
}

.hgsolu-summary-text strong {
	color: rgba(255, 255, 255, 0.92);
	font-weight: 700;
}

/* =======================
产品核心规格速览
======================= */


.hgsolu-spec-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hgsolu-spec-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 13px;
}

.hgsolu-spec-row:last-child {
	border-bottom: none;
}

.hgsolu-spec-key {
	color: #8a7d6e;
	font-weight: 600;
	flex-shrink: 0;
	/* max-width: 45%; */
	max-width: 90px;
}

.hgsolu-spec-val {
	font-weight: 400;
	font-size: 13px;
	text-align: right;
}

/* 规格下面的报价按键 */
.hgsolu-sidebar-cta {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px 20px;
}

.hgsolu-btn-primary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	background: linear-gradient(135deg, #a8885a, #7a6040);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	cursor: pointer;
	transition: opacity 0.25s, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.25s;
	box-shadow: 0 4px 16px rgba(168, 136, 90, 0.28);
}

.hgsolu-btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(168, 136, 90, 0.36);
}

.hgsolu-btn-primary:active {
	transform: scale(0.98);
}

.hgsolu-btn-primary svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.hgsolu-btn-secondary {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 8px;
	color: #5a5f72;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.25s, color 0.25s, background 0.25s,
		transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hgsolu-btn-secondary:hover {
	border-color: #a8885a;
	color: #7a6040;
	background: rgba(168, 136, 90, 0.07);
	transform: translateY(-2px);
}

.hgsolu-btn-secondary:active {
	transform: scale(0.98);
}

.hgsolu-btn-secondary svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.hgsolu-toc-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 13px;
	color: #9097aa;
	cursor: default;
	transition: color 0.2s;
}

.hgsolu-toc-item:last-child {
	border-bottom: none;
}

.hgsolu-toc-item:hover {
	color: #a8885a;
}

.hgsolu-toc-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.12);
	flex-shrink: 0;
	transition: background 0.2s;
}

.hgsolu-toc-item:hover .hgsolu-toc-dot {
	background: #a8885a;
}


.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1024px) {
	.hgcontainer {
		padding-left: 28px;
		padding-right: 28px;
	}

	.hgsolu-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* .hgsolu-sidebar {
		position: static;
	} */

	.hgsolu-tech-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.hgcontainer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hgsolu-banner {
		height: 280px;
	}

	.hgsolu-banner-title {
		font-size: 20px;
	}

	.hgsolu-page-body {
		padding: 40px 0 60px;
	}

	.hgsolu-tech-grid {
		grid-template-columns: 1fr;
	}

	.hgsolu-app-table {
		/* font-size: 13px; */
	}

	.hgsolu-app-table td,
	.hgsolu-app-table th {
		padding: 12px 14px;
	}

	.hgsolu-summary-block {
		padding: 26px 22px;
	}

	.hgsolu-app-table td:first-child {

		white-space: wrap;
		min-width: 100px;
	}

	.hgsolu-req-list {
		margin: 18px 24px;
		/* gap: 12px; */
	}

	/* .hgsolu-body-text {
	    font-size: 14px;
	    font-weight: 300;
	} */
}

@media (max-width: 480px) {
	.hgsolu-banner {
		height: 240px;
	}

	.hgsolu-banner-content .hgcontainer {
		padding: 32px 20px 0 20px;
	}

	.hgsolu-tech-grid {
		grid-template-columns: 1fr;
	}

	.hgsolu-article-title {
		font-size: 20px;
	}
}


/* ================================
部署配置与选型建议--B--soluitem开头
=============================== */
/* ===== MAIN LAYOUT ===== */
.soluitem-main {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 40px 80px;
}

/* ===== SECTION STYLES ===== */
.soluitem-section {
	margin-bottom: 56px;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-section.visible {
	opacity: 1;
	transform: translateY(0);
}

.soluitem-section-num {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1.1px;
	color: #a8885a;
	text-transform: uppercase;
}

.soluitem-section-title {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.01em;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e8e4de;
}

.soluitem-section-body {
	font-size: 15px;
	color: #4a4540;
	line-height: 1.82;
	font-weight: 400;
}

.soluitem-section-body p+p {
	margin-top: 16px;
}

/* ===== DEPLOY TABLE ===== */
.soluitem-deploy-table {
	width: 100%;
	border-collapse: collapse;
	/* margin-top: 20px; */
	/* font-size: 14px; */
}

.soluitem-deploy-table thead th {
	background: #1a1a1a;
	color: #f0ede8;
	padding: 12px 16px;
	text-align: left;
	font-size: 12px;
	letter-spacing: 0.12em;
	font-weight: 600;
	text-transform: uppercase;
}

.soluitem-deploy-table thead th:first-child {
	border-radius: 4px 0 0 0;
}

.soluitem-deploy-table thead th:last-child {
	border-radius: 0 4px 0 0;
}

.soluitem-deploy-table tbody tr {
	border-bottom: 1px solid #e8e4de;
	transition: background 0.25s ease;
}

.soluitem-deploy-table tbody tr:hover {
	background: rgba(196, 180, 154, 0.08);
}

.soluitem-deploy-table tbody tr:last-child {
	border-bottom: none;
}

.soluitem-deploy-table tbody td {
	/* font-size: 16px;
	font-weight: 600; */
	padding: 14px 16px;
	vertical-align: top;
	line-height: 1.6;
}

.soluitem-deploy-table tbody td:first-child {
	font-size: 16px;
	font-weight: 600;
}

.soluitem-deploy-table tbody td:first-child {
	white-space: nowrap;
	width: 110px;
}

.soluitem-deploy-table-wrap {
	border: 1px solid #e2ddd7;
	border-radius: 6px;
	overflow: hidden;
}

/* ===== REVEAL ANIMATION UTILITY ===== */
.soluitem-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
	.soluitem-main {
		padding: 48px 28px 60px;
	}
}

@media (max-width: 680px) {
	.soluitem-main {
		padding: 40px 20px 48px;
	}

	.soluitem-section-title {
		font-size: 18px;
	}

	.soluitem-deploy-table {
		font-size: 14px;
	}

	.soluitem-deploy-table thead th {
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.08em;
	}

	.soluitem-deploy-table tbody td {
		padding: 10px 12px;
	}

	.soluitem-deploy-table tbody td:first-child {
		white-space: normal;
		width: auto;
		min-width: 60px;
	}
}



/* -----可能感兴趣的方案---soluitem开头 */
/* ===== REVEAL ANIMATION UTILITY ===== */
.soluitem-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== MORE SOLUTIONS SECTION ===== */
.soluitem-more {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 40px 80px;
	border-top: 1px solid #e2ddd7;
}

.soluitem-more-header {
	margin-bottom: 48px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-more-header.visible {
	opacity: 1;
	transform: translateY(0);
}

.soluitem-more-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #8a7d6e;
	margin-bottom: 12px;
}

.soluitem-more-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
}

.soluitem-more-desc {
	font-size: 16px;
}

.soluitem-more-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.soluitem-more-card {
	display: block;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: #1a1a1a;
	text-decoration: none;
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s ease;
}

.soluitem-more-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.soluitem-more-card:hover {
	box-shadow: 0 20px 60px -12px rgba(90, 80, 70, 0.3);
}

.soluitem-more-card-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
	opacity: 0.85;
}

.soluitem-more-card:hover .soluitem-more-card-img {
	transform: scale(1.05);
	opacity: 0.7;
}

.soluitem-more-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 12, 10, 0.82) 0%, rgba(15, 12, 10, 0.2) 55%, transparent 100%);
}

.soluitem-more-card-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 28px 24px;
}

.soluitem-more-card-tag {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #c4b49a;
	margin-bottom: 8px;
}

.soluitem-more-card-title {
	font-size: 17px;
	font-weight: 700;
	color: #f0ede8;
	line-height: 1.35;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.soluitem-more-card-arrow {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: rgba(220, 214, 205, 0.65);
	font-weight: 500;
	letter-spacing: 0.06em;
	transition: gap 0.3s ease, color 0.3s ease;
}

.soluitem-more-card:hover .soluitem-more-card-arrow {
	gap: 13px;
	color: rgba(220, 214, 205, 0.9);
}

.soluitem-more-card-arrow svg {
	width: 14px;
	height: 14px;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-more-card:hover .soluitem-more-card-arrow svg {
	transform: translateX(3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
	.soluitem-more-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.soluitem-more {
		padding: 56px 20px 64px;
	}

	.soluitem-more-title {
		font-size: 20px;
	}

	.soluitem-more-card-img {
		height: 180px;
	}

	.soluitem-more-card-body {
		padding: 22px 20px 18px;
	}

	.soluitem-more-card-title {
		font-size: 15px;
	}
}

/* ===== 核心规格速览板块 REVEAL ANIMATION UTILITY --soluitem开头===== */
.soluitem-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== SIDEBAR CONTAINER ===== */
.soluitem-sidebar {
	width: 100%;
	max-width: 380px;
	position: sticky;
	top: 68px;
}

/* ===== SPEC CARD ===== */
.soluitem-spec-card {
	background: #ffffff;
	border: 1px solid #e2ddd7;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 24px -4px rgba(90, 80, 70, 0.10);
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.soluitem-spec-card.visible {
	opacity: 1;
	transform: translateY(0);
}

.soluitem-spec-card-head {
	background: #1a1a1a;
	padding: 18px 20px;
	position: relative;
}

.soluitem-spec-card-head::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #8a7d6e, #c4b49a);
}

.soluitem-spec-card-model {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: #c4b49a;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.soluitem-spec-card-name {
	font-size: 14px;
	font-weight: 600;
	color: #f0ede8;
	line-height: 1.35;
}

.soluitem-spec-table {
	width: 100%;
	border-collapse: collapse;
}

.soluitem-spec-table tr {
	border-bottom: 1px solid #f0ede8;
	transition: background 0.2s ease;
}

.soluitem-spec-table tr:last-child {
	border-bottom: none;
}

.soluitem-spec-table tr:hover {
	background: rgba(196, 180, 154, 0.06);
}

.soluitem-spec-table td {
	padding: 12px 20px;
	font-size: 13px;
	vertical-align: top;
	line-height: 1.5;
}

.soluitem-spec-table td:first-child {
	color: #8a7d6e;
	font-weight: 600;
	width: 90px;
	white-space: nowrap;
}

.soluitem-spec-table td:last-child {
	color: #2a2520;
}

/* ===== SIDEBAR BADGE ===== */
.soluitem-sidebar-badge {
	margin-top: 16px;
	padding: 14px 18px;
	background: linear-gradient(135deg, rgba(138, 125, 110, 0.08), rgba(196, 180, 154, 0.12));
	border: 1px solid rgba(196, 180, 154, 0.3);
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.soluitem-sidebar-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #8a7d6e;
	flex-shrink: 0;
	animation: soluitem-pulse-dot 2.5s ease-in-out infinite;
}

@keyframes soluitem-pulse-dot {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.5;
		transform: scale(0.75);
	}
}

.soluitem-sidebar-badge-text {
	font-size: 12px;
	color: #6b5d4f;
	line-height: 1.5;
	font-weight: 500;
}

/* ===== STAT PILLS ===== */
.soluitem-stat-row {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.soluitem-stat-pill {
	background: #f5f4f2;
	border: 1px solid #e2ddd7;
	border-radius: 6px;
	padding: 14px 12px;
	text-align: center;
	transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.soluitem-stat-pill:hover {
	box-shadow: 0 6px 20px -6px rgba(90, 80, 70, 0.12);
	transform: translateY(-2px);
}

.soluitem-stat-value {
	font-size: 19px;
	font-weight: 800;
	color: #1a1a1a;
	letter-spacing: -0.03em;
	line-height: 1;
	margin-bottom: 5px;
}

.soluitem-stat-label {
	font-size: 11px;
	color: #8a7d6e;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 680px) {
	.soluitem-sidebar {
		max-width: 100%;
		position: static;
	}

	.soluitem-stat-row {
		grid-template-columns: 1fr 1fr;
	}

	.soluitem-spec-table td {
		padding: 10px 14px;
		font-size: 12px;
	}

	.soluitem-spec-table td:first-child {
		width: 72px;
		white-space: normal;
	}

	/* body {
		padding: 24px 16px 48px;
	} */
}

@media (max-width: 400px) {
	.soluitem-stat-row {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.soluitem-stat-pill {
		padding: 12px 10px;
	}

	.soluitem-stat-value {
		font-size: 17px;
	}

	.soluitem-stat-label {
		font-size: 10px;
	}

	.soluitem-spec-card-head {
		padding: 14px 16px;
	}

	.soluitem-spec-card-model {
		font-size: 11px;
	}

	.soluitem-spec-card-name {
		font-size: 13px;
	}
}

/* @media (max-width: 768px) {
	body {
		font-size: 15px;
	}

}

@media (max-width: 400px) {
	body {
		font-size: 15px;
	}
} */