.gov-pc-text-desc-h2 {
  color: #1F2937;
  font-weight: bold;
}

/* ==================== 社区版下载模块 ==================== */

/* 社区版下载模块 - 主容器 */
.lsd-free-download-section {
	background-color: #FFFFFF;
}

/* 社区版下载模块 - 内容容器（左右分栏布局） */
.lsd-free-download-container {
	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: center;
}

/* 社区版下载模块 - 左侧产品图片区域 */
.lsd-free-download-image {
	max-width: 600px;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
}

.lsd-free-download-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition: all 0.5s ease;
}

/* 社区版下载模块 - 图片悬停放大效果 */
.lsd-free-download-image:hover img {
	transform: scale(1.05);
}

/* 社区版下载模块 - 右侧产品信息区域 */
.lsd-free-download-info {
	flex: 1;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* 社区版下载模块 - 产品标题 */
.lsd-free-download-title {
	font-size: 28px;
	font-weight: bold;
	color: #111827;
	margin: 0;
}

/* 社区版下载模块 - 版本标签 */
.lsd-free-download-version {
	font-size: 16px;
	color: #0069EA;
	font-weight: 500;
}

/* 社区版下载模块 - 产品描述 */
.lsd-free-download-desc {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.8;
	margin: 8px 0;
}

/* 社区版下载模块 - 下载按钮 */
.lsd-free-download-btn {
	width: 140px;
	height: 46px;
	background-color: #0069EA;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 500;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	margin-top: 8px;
}

.lsd-free-download-btn:hover {
	background-color: #0052B8;
}

/* 社区版下载模块 - 移动端适配 */
@media screen and (max-width: 768px) {
	.lsd-free-download-container {
		flex-direction: column;
		gap: 24px;
	}

	.lsd-free-download-image {
		flex: none;
		max-width: 100%;
		width: 100%;
	}

	.lsd-free-download-info {
		max-width: 100%;
		align-items: center;
		text-align: center;
	}

	.lsd-free-download-title {
		font-size: 20px;
	}

	.lsd-free-download-version {
		font-size: 14px;
	}

	.lsd-free-download-desc {
		font-size: 14px;
	}

	.lsd-free-download-btn {
		width: 100%;
		max-width: 200px;
		height: 44px;
		font-size: 14px;
	}
}

/* ==================== 社区版下载模块结束 ==================== */

/* ==================== 双栏CTA模块 ==================== */

/* 双栏CTA模块 - 主容器 */
.lsd-quality-cta-section {
	background-color: #FFFFFF;
}

/* 双栏CTA模块 - 内容容器 */
.lsd-quality-cta-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background-color: #FFFFFF;
	border-radius: 12px;
}

/* 双栏CTA模块 - 左侧区域 */
.lsd-quality-cta-left,
.lsd-quality-cta-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 60px 40px;
}

/* 双栏CTA模块 - 中间分割线 */
.lsd-quality-cta-divider {
	width: 1px;
	height: 160px;
	background-color: #E5E7EB;
}

/* 双栏CTA模块 - 标题 */
.lsd-quality-cta-title {
	font-size: 28px;
	font-weight: bold;
	color: #111827;
	margin: 0 0 12px 0;
}

/* 双栏CTA模块 - 描述文字 */
.lsd-quality-cta-desc {
	font-size: 15px;
	color: #6B7280;
	margin: 0 0 32px 0;
}

/* 双栏CTA模块 - 按钮组 */
.lsd-quality-cta-buttons {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* 双栏CTA模块 - 主要按钮（蓝色） */
.lsd-quality-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 32px;
	background-color: #0069EA;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.lsd-quality-cta-btn-primary:hover {
	background-color: #0052B8;
	color: #FFFFFF !important;
}

/* 双栏CTA模块 - 次要按钮（白色边框） */
.lsd-quality-cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	background-color: #FFFFFF;
	color: #0069EA;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid #0069EA;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lsd-quality-cta-btn-secondary:hover {
	background-color: #F0F7FF;
}

/* 双栏CTA模块 - 图标 */
.lsd-quality-cta-icon {
	width: 18px;
	height: 18px;
}

/* 双栏CTA模块 - 移动端适配 */
@media screen and (max-width: 768px) {
	.lsd-quality-cta-container {
		flex-direction: column;
	}

	.lsd-quality-cta-left,
	.lsd-quality-cta-right {
		padding: 32px 20px;
		width: 100%;
	}

	.lsd-quality-cta-divider {
		width: 80%;
		height: 1px;
	}

	.lsd-quality-cta-title {
		font-size: 22px;
	}

	.lsd-quality-cta-desc {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.lsd-quality-cta-buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.lsd-quality-cta-btn-primary,
	.lsd-quality-cta-btn-secondary {
		width: 100%;
		max-width: 280px;
	}
}

/* ==================== 双栏CTA模块结束 ==================== */