/* 视频详情页样式 */

/* 面包屑导航 */
.lsd-video-breadcrumb {
    padding: 0 0 16px 0;
    font-size: 14px;
    color: #6B7280;
}

.lsd-video-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s;
}
.videos-lsd-detail h1 {
    font-size: 24px;
    text-align: center;
}
.lsd-video-product-icon svg {
    color: #0069EA !important;
    width: 18px !important;
}
.lsd-video-breadcrumb a:hover {
    color: #0069EA;
}

.lsd-video-breadcrumb .separator {
    margin: 0 8px;
    color: #9CA3AF;
}

.lsd-video-breadcrumb .current {
    color: #1F2937;
    font-weight: 500;
}

/* 页面标题 */
.lsd-video-page-title {
    font-size: 20px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 16px;
}

/* 详情页主布局 */
.lsd-video-detail-container {
    display: flex;
    gap: 24px;
}

/* 左侧主内容区 */
.lsd-video-detail-main {
    flex: 1;
    min-width: 0;
}

/* 视频播放器区域 */
.lsd-video-player-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.lsd-video-player-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* 视频标签区域 */
.lsd-video-tags {
    background: #F0F7FF;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.lsd-video-tag-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.lsd-video-tag-row:last-child {
    margin-bottom: 0;
}

.lsd-video-tag-label {
    font-size: 14px;
    color: #4B5563;
    white-space: nowrap;
}

.lsd-video-tag-link {
    color: #0069EA;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lsd-video-tag-link:hover {
}

.lsd-video-tag-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lsd-video-tag-item {
    background: #0069EA15;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 13px;
    transition: all 0.3s;
}



/* 视频描述区域 */
.lsd-video-description {
    margin-bottom: 32px;
}

.lsd-video-desc-title {
    font-size: 16px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 12px;
}

.lsd-video-desc-content {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
}

.lsd-video-desc-content p {
    margin-bottom: 12px;
}

.lsd-video-desc-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.lsd-video-desc-content li {
    margin-bottom: 8px;
}

/* 步骤列表 */
.lsd-video-steps {
    margin-bottom: 32px;
}

.lsd-video-steps-title {
    font-size: 16px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 12px;
}

.lsd-video-steps-list {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
}

.lsd-video-steps-list ol {
    margin: 0;
    padding-left: 20px;
}

.lsd-video-steps-list li {
    margin-bottom: 8px;
}

/* 常见问题 */
.lsd-video-faq {
    margin-bottom: 32px;
}

.lsd-video-faq-title {
    font-size: 16px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 16px;
}

.lsd-video-faq-item {
    margin-bottom: 16px;
}

.lsd-video-faq-question {
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
    margin-bottom: 8px;
}

.lsd-video-faq-answer {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* 右侧边栏 */
.lsd-video-detail-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* 边栏卡片 */
.lsd-video-sidebar-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.lsd-video-sidebar-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 12px;
}

.lsd-video-sidebar-card-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 12px;
}

.lsd-video-sidebar-card-link {
    color: #0069EA;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lsd-video-sidebar-card-link:hover {
    text-decoration: underline;
}

/* 产品列表 */
.lsd-video-product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lsd-video-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
		background: #ffffff;
    border-radius: 6px;
    transition: background 0.3s;
    cursor: pointer;
}

.lsd-video-product-item:hover {
    background: #F0F7FF;
}

.lsd-video-product-icon {
    width: 32px;
    height: 32px;
    background: #F0F7FF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0069EA;
    font-size: 16px;
}

.lsd-video-product-name {
    font-size: 14px;
    color: #1F2937;
}

/* 赋能体系整体区域 */
.lsd-video-empower-section {
    background: #F9FAFB;
}

.lsd-video-empower-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* 赋能体系卡片 */
.lsd-video-empower-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
}

.lsd-video-empower-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 4px;
}

.lsd-video-empower-card-desc {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 8px;
}

.lsd-video-empower-card-link {
    color: #0069EA;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lsd-video-empower-card-link:hover {
    text-decoration: underline;
}
.lsd-video-faq-item:last-child {
    margin-bottom: 0;
}
.lsd-video-faq:last-child {
    margin-bottom: 0;
}

/* 视频简介和内容样式 */
.videos-item-spjj {
    margin-top: 24px;
}

.videos-item-spjj .lsd-video-items-content-title,
.videos-item-spnr .lsd-video-items-content-title {
    height: auto;
    margin-bottom: 16px;
}

.videos-item-spjj .lsd-video-items-content-title h2,
.videos-item-spnr .lsd-video-items-content-title h2 {
    color: #1F2937;
    font-size: 16px;
    font-weight: bold;
}

.videos-item-spjj .videos-item-spjj-remark {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.8;
    text-indent: 2em;
}

.videos-item-spnr {
    margin-top: 32px;
}

.videos-item-spnr-remark {
    padding: 0;
}

.videos-item-spnr-remark-dl-nr {
    color: #4B5563;
    font-size: 14px;
    line-height: 1.8;
    text-indent: 2em;
    margin-bottom: 16px;
}

.videos-item-spnr-remark-dl-nr-center {
    text-align: center;
    margin: 24px 0;
}

.videos-item-spnr-remark-dl-nr-img {
    margin: 0 auto;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
}

.videos-item-spnr-remark-dl-nr-imgms {
    margin-top: 12px;
    font-size: 13px;
    color: #6B7280;
    text-align: center;
}

.is-big-show-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.img-box-show {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: bottom 0.3s ease;
}
.lsd-top-10 {
    padding-top: 30px;
}
.videos-item-spnr-remark-dl-nr-center:last-child,
.videos-item-spnr-remark-dl-nr:last-child {
	margin-bottom: 0;
}
.videos-item-spnr-remark-dl-nr-left {
	text-align: left !important;
	text-indent: 0em !important;
}
#myVideo,.lsd-video-player-wrapper video {
	width: 100%;
	max-height: 528px;
}
.strong-span {
  font-weight: bold;
}
/* 照片遮罩层 */
.img-box-show {
	position: absolute;
	-webkit-transition: all .3s;
	transition: all .3s;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px;
	background: rgba(0, 0, 0, .5);
	-webkit-box-orient: vertical;
	cursor: pointer;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-image: url('/images/about/png/fd.png');
	background-size: 20px;
	background-repeat: no-repeat;
  background-position: center; /* 图片居中显示 */
}
.is-big-show-img:hover .img-box-show {
    bottom: 0;
}
/* 响应式适配 */
@media screen and (max-width: 1024px) {
    .lsd-video-detail-container {
        flex-direction: column;
				margin-bottom: 0;
    }

    .lsd-video-detail-sidebar {
        width: 100%;
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .videos-lsd-detail h1 {
        font-size: 18px;
        text-align: center;
}
    .lsd-video-breadcrumb {
        font-size: 12px;
        padding: 0 0 12px 0;
    }

    .lsd-video-page-title {
        font-size: 16px;
    }

    .lsd-video-tag-row {
        flex-wrap: wrap;
    }

    .lsd-video-tag-label {
        font-size: 12px;
    }

    .videos-item-spjj .lsd-video-items-content-title h2,
    .videos-item-spnr .lsd-video-items-content-title h2 {
        font-size: 16px;
    }

    .videos-item-spjj .videos-item-spjj-remark,
    .videos-item-spnr-remark-dl-nr {
        font-size: 13px;
        line-height: 1.6;
    }

    .videos-item-spnr-remark-dl-nr-img {
        width: 100%;
    }

    .lsd-video-tag-item {
        font-size: 12px;
        padding: 3px 8px;
    }

    .lsd-video-sidebar-card {
        padding: 16px;
    }

    .lsd-video-empower-card {
        padding: 12px;
    }
}
