/* 视频分类Tab导航样式 */
.lsd-video-tabs-section {
	background: #ffffff;
}
.pc-gov-banner {
  height: 300px !important;
}
/* 视频内容选项卡样式 */
.lsd-video-content-tabs-section {
	background: #ffffff;
}
.lsd-video-content-tabs-section-wrapper {
  background: #F9FAFB;
}
.lsd-video-content-tabs {
	display: flex;
	align-items: center;
}

.lsd-video-content-tab-item {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 500;
	color: #6B7280;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.lsd-video-content-tab-item:hover {
	color: #0069EA;
}

.lsd-video-content-tab-item.active {
	color: #0069EA;
	border-bottom-color: #0069EA;
}

/* 视频内容面板 */
.lsd-video-content-pane {
	display: none;
}

.lsd-video-content-pane.active {
	display: block;
}

.lsd-video-content-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lsd-video-content-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.lsd-video-content-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.lsd-video-content-card:hover .lsd-video-content-title {
	color: #0069EA;
}

.lsd-video-content-card:hover .lsd-video-content-desc {
	color: #5EA6FF;
}

.lsd-video-content-card:hover .lsd-video-content-date {
	color: #5EA6FF;
}

.lsd-video-content-card:hover .lsd-video-content-date .icon-calender {
	color: #5EA6FF;
}

.lsd-video-content-thumb {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	background: #f3f4f6;
}

.lsd-video-content-thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lsd-video-content-card:hover .lsd-video-content-thumb img {
	transform: scale(1.05);
}

.lsd-video-content-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.lsd-video-content-play:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.lsd-video-content-play svg,
.lsd-video-play-icon {
	width: 40px;
	height: 40px;
	color: #ffffff;
}

.lsd-video-content-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	padding: 16px 16px 8px;
	margin: 0;
}

.lsd-video-content-desc {
	font-size: 14px;
	color: #6b7280;
	padding: 0 16px 8px;
	margin: 0;
	line-height: 1.5;
	flex: 1;
}

.lsd-video-content-date {
	font-size: 12px;
	color: #9ca3af;
	padding: 0 16px 16px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

.lsd-video-content-date .icon-calender {
	font-size: 14px;
	color: #9ca3af;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
	.lsd-video-content-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.lsd-video-content-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lsd-video-content-tab-item {
		padding: 12px 20px;
		font-size: 14px;
		flex-shrink: 0;
	}

	.lsd-video-content-grid {
		grid-template-columns: 1fr;
	}

	.lsd-video-content-play {
		width: 48px;
		height: 48px;
	}

	.lsd-video-content-play svg {
		width: 20px;
		height: 20px;
	}
}

.lsd-video-tabs {
	display: flex;
	align-items: center;
	gap: 0;
	border-bottom: 1px solid #E5E7EB;
}

.lsd-video-tab-item {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 500;
	color: #6B7280;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.lsd-video-tab-item:hover {
	color: #0069EA;
}

.lsd-video-tab-item.active {
	color: #0069EA;
	font-weight: 600;
	border-bottom-color: #0069EA;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
	.lsd-video-tabs {
		justify-content: center;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lsd-video-tab-item {
		padding: 12px 20px;
		font-size: 14px;
		flex-shrink: 0;
	}
}

/* 产品演示视频布局样式 */
.lsd-video-product-layout {
	display: flex;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
}

/* 左侧模块列表 */
.lsd-video-module-sidebar {
	width: 240px;
	flex-shrink: 0;
	background: #ffffff;
	padding: 20px;
	border-radius: 6px;
	margin-right: 20px;
	border: 1px solid #e5e7eb;
}

.lsd-video-module-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 16px 0;
}

.lsd-video-module-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lsd-video-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-module-item:hover {
	background: #f3f4f6;
	color: #0069EA;
}

.lsd-video-module-item.active {
	background: #eff6ff;
	color: #0069EA;
}

.lsd-video-module-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lsd-video-module-icon svg {
	width: 100%;
	height: 100%;
}

.lsd-video-module-text {
	font-size: 14px;
	font-weight: 500;
}

/* 右侧视频播放区域 */
.lsd-video-player-area {
	flex: 1;
	padding: 0px 24px 24px 0;
}

.lsd-video-player-header {
	margin-bottom: 16px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.lsd-video-player-header-left {
	flex: 1;
}

.lsd-video-player-title {
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 8px 0;
}

.lsd-video-player-desc {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.lsd-video-player-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	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-player-container {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	/* background: #1f2937; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.lsd-video-player-container video {
	width: 100%;
}


.lsd-video-player-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lsd-video-player-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
}

.lsd-video-player-overlay:hover {
	background: rgba(0, 0, 0, 0.2);
}

.lsd-video-player-play-btn {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.lsd-video-player-play-btn:hover {
	transform: scale(1.1);
	background: #ffffff;
}

.lsd-video-player-play-btn svg {
	width: 32px;
	height: 32px;
	color: #0069EA;
	margin-left: 4px;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
	.lsd-video-product-layout {
		flex-direction: column;
	}
  .lsd-video-content-panes {
		padding-top: 0 !important;
	}
	.lsd-video-content-pane {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 15px;
	}

	.lsd-video-module-list {
		flex-direction: row;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lsd-video-module-item {
		flex-shrink: 0;
	}

	.lsd-video-player-area {
		padding: 15px 0 0 0px;
	}
}

@media screen and (max-width: 768px) {
	.lsd-video-product-layout {
		flex-direction: column;
	}

	.lsd-video-module-sidebar {
		width: 100%;
		padding: 15px 0;
		border: none;
		margin-right: 0;
	}

	.lsd-video-module-list {
		flex-direction: row;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.lsd-video-module-item {
		flex-shrink: 0;
	}

	.lsd-video-player-area {
		/* padding: 0 15px; */
	}

	.lsd-video-player-header {
		flex-direction: column;
		gap: 12px;
	}

	.lsd-video-player-header-left {
		width: 100%;
	}

	.lsd-video-player-tags {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.lsd-video-player-play-btn {
		width: 60px;
		height: 60px;
	}

	.lsd-video-player-play-btn svg {
		width: 24px;
		height: 24px;
	}

	.lsd-video-player-title {
		font-size: 14px;
	}
}


@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .lsd-video-content-panes {
	  padding-top: 60px !important;
  }
  .lsd-empower-system-datagov {
	  padding-top: 60px !important;
  }
}