/* 数据治理方法论 - 查看产品演示链接 */
.product-method-header {
	position: relative;
}
.lsd-method-demo-link {
	position: absolute;
	top: 65px;
	right: 0;
	font-size: 14px;
	color: #0069EA;
	/* text-decoration: none; */
	/* padding: 6px 16px;
	border: 1px solid #0069EA; */
	border-radius: 20px;
	transition: all 0.2s ease;
}
.lsd-method-demo-link:hover {
	/* background-color: #EBF5FF; */
    text-decoration: 1px underline;
}

@media screen and (max-width: 768px) {
	.lsd-method-demo-link {
		position: static;
		display: inline-block;
		margin-top: 12px;
		font-size: 13px;
	}
}

/* 产品展示 - 查看产品演示链接（标题行内联） */
.product-showcase-content-title {
	display: flex;
	align-items: end;
	gap: 12px;
}
.lsd-showcase-demo-link {
	font-size: 14px;
	color: #0069EA;
	/* text-decoration: none; */
	/* padding: 4px 12px; */
	/* border: 1px solid #0069EA; */
    padding-bottom: 4px;
	border-radius: 20px;
	transition: all 0.2s ease;
	white-space: nowrap;
	/* text-decoration: 1px underline; */
	font-weight: normal;
}
.lsd-showcase-demo-link:hover {
    text-decoration: 1px underline;
}

@media screen and (max-width: 768px) {
	.lsd-showcase-demo-link {
		font-size: 12px;
		padding: 3px 10px;
	}
}
/* 加了模块调整对应的颜色 */
.product-showcase-section,.lsd-honor  {
	background: #ffffff;
}
.product-architecture-section {
	background: #ffffff;
}
.product-architecture-section, .lsd-customer-cases, .lsd-empower {
	background: #F8FAFC;
}
/* 相关视频模块 */
.lsd-video-demo-section {
	background: #ffffff;
}

.lsd-video-demo-layout {
	display: flex;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
}

/* 左侧模块列表 */
.lsd-video-demo-sidebar {
	width: 240px;
	flex-shrink: 0;
	background: #ffffff;
	padding: 20px;
	border-radius: 6px;
	margin-right: 20px;
	border: 1px solid #e5e7eb;
}

.lsd-video-demo-sidebar-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 16px 0;
}

.lsd-video-demo-module-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lsd-video-demo-module-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #6b7280;
	text-decoration: none;
}

.lsd-video-demo-module-item:hover {
	background: #f3f4f6;
	color: #0069EA;
}

.lsd-video-demo-module-item.active {
	background: #eff6ff;
	color: #0069EA;
}

.lsd-video-demo-module-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsd-video-demo-module-text {
	font-size: 14px;
	font-weight: 500;
}

/* 右侧视频播放区域 */
.lsd-video-demo-player-area {
	flex: 1;
	padding: 0px 24px 24px 0;
}

.lsd-video-demo-player-header {
	margin-bottom: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.lsd-video-demo-player-header-left {
	flex: 1;
}

.lsd-video-player-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	flex-shrink: 0;
}

.lsd-video-player-tag-label {
	color: #9ca3af;
}

.lsd-video-player-tag {
	color: #0069EA;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.3s ease;
}

.lsd-video-player-tag:hover {
	color: #0052cc;
}

.lsd-video-player-tag.active {
	font-weight: 600;
}

.lsd-video-player-tag-divider {
	color: #e5e7eb;
	margin: 0 4px;
}

.lsd-video-demo-player-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 8px 0;
}

.lsd-video-demo-player-desc {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.lsd-video-demo-player-container {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lsd-video-demo-player-container video {
	width: 100%;
	display: block;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
	.lsd-video-demo-layout {
		flex-direction: column;
	}

	.lsd-video-demo-sidebar {
		width: 100%;
		margin-right: 0;
		border: none;
		padding: 15px 0;
	}

	.lsd-video-demo-module-list {
		flex-direction: row;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lsd-video-demo-module-item {
		flex-shrink: 0;
	}

	.lsd-video-demo-player-area {
		padding: 15px 0 0 0;
	}
}

@media screen and (max-width: 768px) {
	.lsd-video-demo-player-header {
		flex-direction: column;
		gap: 12px;
	}

	.lsd-video-demo-player-title {
		font-size: 14px;
	}
}