/* 北京中道成科技 — 详情页样式（产品/案例/新闻等） */

/* 产品概览区 */
.product-overview {
	margin-bottom: 40px;
}

/* 图片画廊 */
.product-gallery {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 16px;
}
.page-detail .view {
	max-width: 100%;
	position: relative;
}
.page-detail .view .swiper-container {
	border-radius: 6px;
	overflow: hidden;
	background: var(--zdc-light);
}
.page-detail .view .swiper-slide {
	height: 360px;
	max-width: 100%;
	padding: 0;
}
.page-detail .view .swiper-slide img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}
.page-detail .view .arrow-left,
.page-detail .view .arrow-right {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	top: 50%;
	margin-top: -20px;
	background: rgba(255, 255, 255, 0.92) !important;
	border-radius: 50%;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	transition: all 0.3s;
	opacity: 0;
}
.page-detail .product-gallery:hover .view .arrow-left,
.page-detail .product-gallery:hover .view .arrow-right {
	opacity: 1;
}
.page-detail .view .arrow-left {
	left: 12px;
}
.page-detail .view .arrow-right {
	right: 12px;
}
.page-detail .view .arrow-left::after,
.page-detail .view .arrow-right::after {
	font-family: FontAwesome;
	font-size: 16px;
	color: var(--zdc-primary);
}
.page-detail .view .arrow-left::after {
	content: '\f104';
}
.page-detail .view .arrow-right::after {
	content: '\f105';
}
.page-detail .view .arrow-left:hover,
.page-detail .view .arrow-right:hover {
	background: var(--zdc-primary) !important;
}
.page-detail .view .arrow-left:hover::after,
.page-detail .view .arrow-right:hover::after {
	color: #fff;
}

/* 缩略图 */
.page-detail .preview {
	width: 100%;
	left: 0;
	margin-top: 12px !important;
	padding: 0 28px;
}
.page-detail .preview .swiper-slide {
	width: 72px;
	height: 72px;
	border-radius: 4px;
	border: 2px solid transparent;
	transition: border-color 0.3s;
	overflow: hidden;
}
.page-detail .preview .swiper-slide img {
	width: 100%;
	object-fit: cover;
}
.page-detail .preview .active-nav {
	border-color: var(--zdc-primary) !important;
}
.page-detail .preview .arrow-left,
.page-detail .preview .arrow-right {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 72px;
	top: 0;
	background: var(--zdc-light) !important;
	border-radius: 4px;
}
.page-detail .preview .arrow-left {
	left: 0;
}
.page-detail .preview .arrow-right {
	right: 0;
}
.page-detail .preview .arrow-left::after,
.page-detail .preview .arrow-right::after {
	font-family: FontAwesome;
	font-size: 12px;
	color: var(--zdc-primary);
}
.page-detail .preview .arrow-left::after {
	content: '\f104';
}
.page-detail .preview .arrow-right::after {
	content: '\f105';
}

/* 产品信息 */
.product-info {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 28px 32px;
	height: 100%;
}
.product-info .product-tag {
	display: inline-block;
	font-size: 0.786rem;
	color: var(--zdc-gold);
	background: rgba(201, 168, 76, 0.12);
	padding: 4px 12px;
	border-radius: 2px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.product-info .product-title {
	font-size: 1.428rem;
	font-weight: 700;
	color: var(--zdc-dark);
	line-height: 1.5;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e8eef0;
}
.product-info .product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 18px;
}
.product-info .product-meta span {
	font-size: 0.857rem;
	color: var(--zdc-text);
}
.product-info .product-meta i {
	color: var(--zdc-primary);
	margin-right: 6px;
}
.product-info .product-badges {
	margin-bottom: 16px;
}
.product-info .product-badges .badge {
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 2px;
	margin-right: 6px;
}
.product-info .product-summary {
	font-size: 0.929rem;
	color: var(--zdc-text);
	line-height: 1.8;
	margin-bottom: 24px;
	padding: 14px 16px;
	background: var(--zdc-light);
	border-left: 3px solid var(--zdc-primary);
	border-radius: 0 4px 4px 0;
}
.product-info .product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}
.product-info .btn-cta-primary {
	display: inline-block;
	padding: 10px 28px;
	background: var(--zdc-primary);
	color: #fff !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	transition: background 0.3s;
}
.product-info .btn-cta-primary:hover {
	background: var(--zdc-primary-dark);
	text-decoration: none;
}
.product-info .btn-cta-outline {
	display: inline-block;
	padding: 10px 28px;
	border: 2px solid var(--zdc-primary);
	color: var(--zdc-primary) !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	transition: all 0.3s;
}
.product-info .btn-cta-outline:hover {
	background: var(--zdc-primary);
	color: #fff !important;
	text-decoration: none;
}
.product-info .btn-cta-primary i,
.product-info .btn-cta-outline i {
	margin-right: 6px;
}
.product-info .product-wechat {
	display: flex;
	align-items: center;
	padding-top: 20px;
	border-top: 1px dashed #e0e8ec;
}
.product-info .product-wechat img {
	width: 80px;
	height: 80px;
	border-radius: 4px;
	border: 1px solid #e8eef0;
}
.product-info .product-wechat .wechat-text {
	margin-left: 16px;
}
.product-info .product-wechat .wechat-text strong {
	display: block;
	font-size: 0.929rem;
	color: var(--zdc-dark);
	margin-bottom: 4px;
}
.product-info .product-wechat .wechat-text span {
	font-size: 0.786rem;
	color: var(--zdc-text);
}

/* 详情正文 */
.product-content-section {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 32px;
	margin-bottom: 32px;
}
.product-content-section .detail-section-title {
	font-size: 1.142rem;
	font-weight: 700;
	color: var(--zdc-dark);
	padding-bottom: 14px;
	margin-bottom: 24px;
	border-bottom: 2px solid var(--zdc-light);
	position: relative;
}
.product-content-section .detail-section-title i {
	color: var(--zdc-primary);
	margin-right: 8px;
}
.product-content-section .detail-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, var(--zdc-primary), var(--zdc-gold));
}
.page-detail .product-content {
	color: var(--zdc-text);
	line-height: 1.9;
	font-size: 0.929rem;
}
.page-detail .product-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 12px 0;
}
.page-detail .product-content p {
	margin-bottom: 14px;
}
.page-detail .product-content ul,
.page-detail .product-content ol {
	padding-left: 1.5em;
	margin-bottom: 14px;
}
.page-detail .product-content li {
	margin-bottom: 6px;
}
.page-detail .product-content strong,
.page-detail .product-content b {
	color: var(--zdc-dark);
}

/* 上下篇导航 */
.product-nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
}
.product-nav-links .nav-link-item {
	flex: 1;
	min-width: 260px;
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 16px 20px;
	transition: box-shadow 0.3s, transform 0.3s;
}
.product-nav-links .nav-link-item:hover {
	box-shadow: var(--zdc-shadow-hover);
	transform: translateY(-2px);
}
.product-nav-links .nav-link-item .nav-label {
	font-size: 0.786rem;
	color: #9aa8b4;
	margin-bottom: 6px;
}
.product-nav-links .nav-link-item .nav-label i {
	margin-right: 4px;
}
.product-nav-links .nav-link-item a {
	font-size: 0.929rem;
	color: var(--zdc-dark);
	font-weight: 600;
	transition: color 0.3s;
}
.product-nav-links .nav-link-item a:hover {
	color: var(--zdc-primary);
	text-decoration: none;
}
.product-nav-links .nav-link-item.disabled {
	opacity: 0.6;
}
.product-nav-links .nav-link-item.disabled span {
	font-size: 0.929rem;
	color: #9aa8b4;
}

/* 案例详情 */
.page-case-detail .view .swiper-slide {
	height: 380px;
}
.page-case-detail .view .swiper-slide img {
	object-fit: cover;
}
.page-case-detail .product-info .product-tag {
	color: var(--zdc-primary);
	background: rgba(8, 97, 109, 0.1);
}

/* 新闻详情 */
.article-header {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 32px 36px;
	margin-bottom: 28px;
	border-top: 3px solid var(--zdc-primary);
	text-align: center;
}
.article-header .article-tag {
	display: inline-block;
	font-size: 0.786rem;
	color: var(--zdc-gold);
	background: rgba(201, 168, 76, 0.12);
	padding: 4px 14px;
	border-radius: 2px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.article-header .article-title {
	font-size: 1.571rem;
	font-weight: 700;
	color: var(--zdc-dark);
	line-height: 1.6;
	margin-bottom: 18px;
}
.article-header .article-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	font-size: 0.857rem;
	color: var(--zdc-text);
	padding-bottom: 16px;
	border-bottom: 1px solid #e8eef0;
}
.article-header .article-meta i {
	color: var(--zdc-primary);
	margin-right: 6px;
}
.article-header .article-badges .badge {
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 2px;
	margin: 0 3px;
}
.page-detail .article-content {
	color: var(--zdc-text);
	line-height: 2;
	font-size: 0.929rem;
}
.page-detail .article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 12px auto;
	display: block;
}
.page-detail .article-content p {
	margin-bottom: 16px;
}
.page-detail .article-content ul,
.page-detail .article-content ol {
	padding-left: 1.5em;
	margin-bottom: 16px;
}
.page-detail .article-content li {
	margin-bottom: 6px;
}
.page-detail .article-content strong,
.page-detail .article-content b {
	color: var(--zdc-dark);
}
.article-back {
	text-align: center;
	margin-bottom: 20px;
}
.article-back a {
	display: inline-block;
	padding: 10px 30px;
	border: 2px solid var(--zdc-primary);
	color: var(--zdc-primary) !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	transition: all 0.3s;
}
.article-back a:hover {
	background: var(--zdc-primary);
	color: #fff !important;
	text-decoration: none;
}
.article-back a i {
	margin-right: 6px;
}

/* 招聘详情 */
.page-job-detail .article-header {
	border-top-color: var(--zdc-gold);
}
.page-job-detail .article-header .article-tag {
	color: var(--zdc-primary);
	background: rgba(8, 97, 109, 0.1);
}
.job-apply-cta {
	background: linear-gradient(135deg, rgba(8, 97, 109, 0.08) 0%, rgba(201, 168, 76, 0.1) 100%);
	border: 1px solid #e0e8ec;
	border-radius: 8px;
	padding: 28px 32px;
	margin-bottom: 32px;
	text-align: center;
}
.job-apply-cta h4 {
	font-size: 1.142rem;
	font-weight: 700;
	color: var(--zdc-dark);
	margin: 0 0 10px;
}
.job-apply-cta p {
	font-size: 0.929rem;
	color: var(--zdc-text);
	margin: 0 0 18px;
	line-height: 1.7;
}
.job-apply-cta .btn-apply {
	display: inline-block;
	padding: 10px 32px;
	background: var(--zdc-primary);
	color: #fff !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	margin: 0 8px 8px;
	transition: background 0.3s;
}
.job-apply-cta .btn-apply:hover {
	background: var(--zdc-primary-dark);
	text-decoration: none;
}
.job-apply-cta .btn-apply-outline {
	display: inline-block;
	padding: 10px 32px;
	border: 2px solid var(--zdc-primary);
	color: var(--zdc-primary) !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	margin: 0 8px 8px;
	transition: all 0.3s;
}
.job-apply-cta .btn-apply-outline:hover {
	background: var(--zdc-primary);
	color: #fff !important;
	text-decoration: none;
}
.job-apply-cta .btn-apply i,
.job-apply-cta .btn-apply-outline i {
	margin-right: 6px;
}

/* 响应式 */
@media only screen and (max-width: 991px) {
	.product-info {
		margin-top: 8px;
		padding: 22px 20px;
	}
}
@media only screen and (max-width: 767px) {
	.page-detail .view .swiper-slide {
		height: 260px;
	}
	.page-detail .preview {
		display: block !important;
		padding: 0 24px;
	}
	.page-detail .preview .swiper-slide {
		width: 60px;
		height: 60px;
	}
	.page-detail .view .arrow-left,
	.page-detail .view .arrow-right {
		opacity: 1;
	}
	.product-content-section {
		padding: 20px 16px;
	}
	.product-info .product-actions {
		flex-direction: column;
	}
	.product-info .btn-cta-primary,
	.product-info .btn-cta-outline {
		text-align: center;
	}
	.article-header {
		padding: 24px 20px;
	}
	.article-header .article-title {
		font-size: 1.285rem;
	}
	.article-header .article-meta {
		gap: 12px;
	}
	.job-apply-cta {
		padding: 22px 18px;
	}
}
