/* ==================== 龙石数据治理赋能体系模块样式 ==================== */
/* 用于：导航下拉菜单中的赋能体系展示 */

/* 赋能体系列表容器 */
.lsd-empowerment-list {
	display: flex;
	gap: 15px;
}

/* 赋能体系单项 */
.lsd-empowerment-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	transition: transform 0.2s;
}

.lsd-empowerment-item:hover {
	transform: translateY(-2px);
}

/* 赋能体系图标 */
.lsd-empowerment-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsd-empowerment-icon svg {
	width: 24px;
	height: 24px;
}

/* 赋能体系标题 */
.lsd-empowerment-title {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
}

/* 赋能体系描述 */
.lsd-empowerment-desc {
	font-size: 14px;
	color: #6B7280;
	white-space: nowrap;
}

/* ==================== 图标颜色 ==================== */
.lsd-icon-blue {
	color: #0069EA;
}

.lsd-icon-green {
	color: #10B981;
}

.lsd-icon-orange {
	color: #F59E0B;
}

.lsd-icon-purple {
	color: #8B5CF6;
}

/* ==================== 背景色 ==================== */
.lsd-bg-blue-light {
	background-color: rgba(0, 105, 234, 0.08);
}

.lsd-bg-green-light {
	background-color: rgba(16, 185, 129, 0.08);
}

.lsd-bg-orange-light {
	background-color: rgba(245, 158, 11, 0.08);
}

.lsd-bg-purple-light {
	background-color: rgba(139, 92, 246, 0.08);
}

/* ==================== 龙石数据治理赋能体系样式 - datagov页面专用 ==================== */

.lsd-empower-system-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid #E5E7EB;
	border-radius: 10px;
	overflow: hidden;
}

.lsd-empower-system-card {
	position: relative;
	height: 280px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	border-right: 1px solid #E5E7EB;
}

.lsd-empower-system-card:last-child {
	border-right: none;
}

.lsd-empower-system-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.5s ease;
}

.lsd-empower-system-card:hover .lsd-empower-system-bg {
	transform: scale(1.1);
}

.lsd-empower-system-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
	z-index: 1;
}

.lsd-empower-system-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.lsd-empower-system-title,
.lsd-empower-system-desc,
.lsd-empower-system-btn,
.lsd-empower-system-btns {
	position: relative;
	z-index: 2;
}

.lsd-empower-system-title {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
}

.lsd-empower-system-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

.lsd-empower-system-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 6px;
	color: #FFFFFF;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 8px;
	align-self: flex-start;
}

.lsd-empower-system-btn:hover {
	background: rgba(255,255,255,0.1);
	border-color: #FFFFFF;
}

.lsd-empower-system-btn svg {
	width: 14px;
	height: 14px;
}

.lsd-empower-system-btns {
	display: flex;
	gap: 12px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.lsd-empower-system-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	background: #0069EA;
	border-radius: 6px;
	color: #FFFFFF;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lsd-empower-system-btn-primary:hover {
	background: #0052cc;
}

.lsd-empower-system-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 10px 16px;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 6px;
	color: #FFFFFF;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lsd-empower-system-btn-outline:hover {
	background: rgba(255,255,255,0.1);
	border-color: #FFFFFF;
}

/* 平板端适配 */
@media screen and (max-width: 1024px) {
	.lsd-empower-system-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lsd-empower-system-card:nth-child(2) {
		border-right: none;
	}

	.lsd-empower-system-card:nth-child(1),
	.lsd-empower-system-card:nth-child(2) {
		border-bottom: 1px solid #E5E7EB;
	}
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
	.lsd-empower-system-grid {
		border-radius: 12px;
		/* padding: 0 15px; */
		gap: 0;
	}

	.lsd-empower-system-title {
		font-size: 16px;
	}

	.lsd-empower-system-card {
		height: 240px;
		border-right: none;
		border-bottom: 1px solid #E5E7EB;
	}

	.lsd-empower-system-card:last-child {
		border-bottom: 1px solid #E5E7EB;
	}
}
