/* 详情页顶部大图 */
.detail-banner {
	width: 100%;
	min-width: 1400px;
	height: 400px;
	overflow: hidden;
}

.detail-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 右侧固定悬浮按钮组 */
.side-actions {
	position: fixed;
	top: 70%;
	right: 24px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 20px;
	z-index: 999;
}

.side-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: #1A8FC4;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
	transition: all 0.25s ease;
	padding: 0;
}

.side-btn:hover {
	background: #0877A8;
	transform: scale(1.08);
	box-shadow: 0 6px 18px rgba(8, 119, 168, 0.20);
}

.side-btn:active {
	transform: scale(0.95);
}

.side-btn svg {
	width: 22px;
	height: 22px;
}

.breadcrumb .container span {
	display: inline-block;
}


/* 正文区域 */
.detail-main {
	padding: 60px 0;
	min-width: 1400px;
}

.detail-main .container {
	padding: 0;
}
	/* 标题 */
	.detail-title {
		font-size: 38px;
		color: var(--pri);
		text-align: center;
		margin-bottom: 50px;
		font-weight: 600;
	}

/* 元信息 */
.info-meta {
	display: flex;
	justify-content: center;
	gap: 100px;
	padding-bottom: 24px;
	margin-bottom: 30px;
}

.info-meta .meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	color: var(--pri6);
}

.info-meta .meta-item img {
	width: 18px;
	height: 18px;
}


/* 视频区域 */
.video-section {
	margin-bottom: 50px;
}

.video-wrap {
	width: 100%;
	height: auto;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	background: #000;
}

.video-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	z-index: 2;
}

.video-wrap:hover .video-play {
	transform: translate(-50%, -50%) scale(1.1);
}

.video-play.hidden {
	display: none;
}

.video-play img {
	width: 60px;
	height: 60px;
	margin-left: 5px;
}

/* 富文本内容 */
.rich-text {
	background: #fff;
	border-radius: 12px;
}

.rich-text img {
/*	width: 100%;
	display: block;
	border-radius: 8px;*/
}