/* 北京中道成科技 — 列表页通用样式（产品/案例等） */
:root {
	--zdc-primary: #08616d;
	--zdc-primary-dark: #054a54;
	--zdc-primary-light: #0a7a88;
	--zdc-gold: #c9a84c;
	--zdc-gold-light: #dfc06a;
	--zdc-dark: #1a2b3c;
	--zdc-text: #4a5a6a;
	--zdc-light: #f5f9fa;
	--zdc-shadow: 0 6px 24px rgba(8, 97, 109, 0.1);
	--zdc-shadow-hover: 0 12px 36px rgba(8, 97, 109, 0.18);
}

/* 导航 — 由 site-header.css 统一处理 */

/* 页头横幅 */
.page-list .jumbotron {
	position: relative;
	margin-bottom: 0 !important;
	padding: 56px 0 !important;
	background-position: center !important;
	background-size: cover !important;
	border: none;
}
.page-list .jumbotron::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(120deg, rgba(5, 74, 84, 0.78) 0%, rgba(8, 97, 109, 0.55) 100%);
}
.page-list .jumbotron .container {
	position: relative;
	z-index: 1;
}
.page-list .jumbotron h1 {
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 8px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.page-list .jumbotron p {
	opacity: 0.9;
	letter-spacing: 1px;
	margin: 0;
}

/* 主内容区 */
.page-list .pages {
	padding-top: 32px;
	padding-bottom: 60px;
}

/* 面包屑 */
.page-list .position {
	text-align: left !important;
	font-size: 0.857rem;
	color: var(--zdc-text);
	background: var(--zdc-light);
	padding: 10px 16px;
	border-radius: 4px;
	border-left: 3px solid var(--zdc-primary);
	margin-bottom: 28px !important;
}
.page-list .position a {
	color: var(--zdc-primary);
}
.page-list .position a:hover {
	color: var(--zdc-primary-dark);
}

/* 工具栏 */
.list-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e8eef0;
}
.list-toolbar .list-intro {
	font-size: 0.929rem;
	color: var(--zdc-text);
	margin: 0;
}
.list-toolbar .list-intro strong {
	color: var(--zdc-primary);
}
.list-search {
	display: flex;
	align-items: center;
}
.list-search .form-control {
	border: 1px solid #d0dde0;
	border-radius: 4px 0 0 4px;
	height: 38px;
	font-size: 0.929rem;
	min-width: 200px;
	border-right: none;
}
.list-search .form-control:focus {
	border-color: var(--zdc-primary);
	box-shadow: none;
}
.list-search .btn-search {
	background: var(--zdc-primary);
	color: #fff;
	border: 1px solid var(--zdc-primary);
	border-radius: 0 4px 4px 0;
	height: 38px;
	padding: 0 18px;
	font-size: 0.929rem;
	transition: background 0.3s;
}
.list-search .btn-search:hover {
	background: var(--zdc-primary-dark);
	border-color: var(--zdc-primary-dark);
	color: #fff;
}

/* 产品卡片 */
.product-card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--zdc-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--zdc-shadow-hover);
}
.product-card .card-img-150 {
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}
.product-card .card-img-150 img {
	transition: transform 0.5s ease;
	width: 100%;
}
.product-card:hover .card-img-150 img {
	transform: scale(1.06);
}
.product-card .card-img-150::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--zdc-primary), var(--zdc-gold));
	transform: scaleX(0);
	transition: transform 0.35s ease;
}
.product-card:hover .card-img-150::after {
	transform: scaleX(1);
}
.product-card .card-body {
	padding: 18px 20px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.product-card .card-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}
.product-card .card-title a {
	color: var(--zdc-dark);
	transition: color 0.3s;
}
.product-card .card-title a:hover {
	color: var(--zdc-primary);
}
.product-card .card-desc {
	font-size: 0.857rem;
	color: var(--zdc-text);
	line-height: 1.65;
	margin-bottom: 12px;
	flex: 1;
}
.product-card .card-tags {
	margin-bottom: 14px;
}
.product-card .badge {
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 2px;
	font-weight: 500;
	margin-right: 4px;
}
.product-card .card-link {
	font-size: 0.857rem;
	color: var(--zdc-primary);
	font-weight: 600;
	transition: color 0.3s;
}
.product-card .card-link i {
	margin-left: 4px;
	transition: transform 0.3s;
}
.product-card .card-link:hover {
	color: var(--zdc-primary-dark);
	text-decoration: none;
}
.product-card .card-link:hover i {
	transform: translateX(4px);
}

/* 分页 */
.page-list .pagination .page-link {
	color: var(--zdc-primary);
	border-color: #d0dde0;
	padding: 8px 14px;
	font-size: 0.929rem;
	transition: all 0.3s;
}
.page-list .pagination .page-link:hover {
	background: var(--zdc-light);
	border-color: var(--zdc-primary);
	color: var(--zdc-primary-dark);
}
.page-list .pagination a.page-link:last-of-type,
.page-list .pagination a.page-link[href$="1"],
.page-list .pagination a.page-link[href*="pageNumber=1"] {
	/* fallback */
}
.page-list .pagination a.page-link:not([href="javascript:;"]):hover {
	background: var(--zdc-primary);
	color: #fff;
	border-color: var(--zdc-primary);
}
.page-list .pagination a.page-link[href="javascript:;"] {
	background: var(--zdc-primary);
	color: #fff;
	border-color: var(--zdc-primary);
	cursor: default;
}

/* 空状态 */
.list-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--zdc-text);
}
.list-empty i {
	font-size: 48px;
	color: #c0cdd2;
	margin-bottom: 16px;
}

/* 案例卡片 */
.case-card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--zdc-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.case-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--zdc-shadow-hover);
}
.case-card .case-img {
	position: relative;
	overflow: hidden;
	height: 200px;
}
.case-card .case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.case-card:hover .case-img img {
	transform: scale(1.08);
}
.case-card .case-img::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background: linear-gradient(transparent, rgba(5, 74, 84, 0.55));
	opacity: 0;
	transition: opacity 0.35s;
}
.case-card:hover .case-img::after {
	opacity: 1;
}
.case-card .case-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px 16px;
	color: #fff;
	font-size: 0.786rem;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.35s;
	z-index: 1;
}
.case-card:hover .case-overlay {
	opacity: 1;
	transform: translateY(0);
}
.case-card .case-body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.case-card .case-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}
.case-card .case-title a {
	color: var(--zdc-dark);
	transition: color 0.3s;
}
.case-card .case-title a:hover {
	color: var(--zdc-primary);
	text-decoration: none;
}
.case-card .case-desc {
	font-size: 0.857rem;
	color: var(--zdc-text);
	line-height: 1.6;
	margin-bottom: 12px;
	flex: 1;
}
.case-card .case-link {
	font-size: 0.857rem;
	color: var(--zdc-primary);
	font-weight: 600;
}
.case-card .case-link i {
	margin-left: 4px;
	transition: transform 0.3s;
}
.case-card .case-link:hover {
	color: var(--zdc-primary-dark);
	text-decoration: none;
}
.case-card:hover .case-link i {
	transform: translateX(4px);
}

/* 新闻列表 */
.news-list-page {
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--zdc-shadow);
	padding: 4px 28px;
	border-top: 3px solid var(--zdc-primary);
}
.news-list-page .news-item {
	display: flex;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid #edf2f4;
	transition: background 0.3s;
}
.news-list-page .news-item:last-child {
	border-bottom: none;
}
.news-list-page .news-item:hover {
	background: rgba(8, 97, 109, 0.03);
	margin: 0 -14px;
	padding-left: 14px;
	padding-right: 14px;
	border-radius: 4px;
}
.news-list-page .news-date {
	flex-shrink: 0;
	width: 68px;
	text-align: center;
	margin-right: 22px;
	padding: 6px 0;
	background: var(--zdc-light);
	border-radius: 4px;
}
.news-list-page .news-date .day {
	display: block;
	font-size: 1.571rem;
	font-weight: 700;
	color: var(--zdc-primary);
	line-height: 1.1;
}
.news-list-page .news-date .month {
	display: block;
	font-size: 0.786rem;
	color: var(--zdc-text);
	margin-top: 2px;
}
.news-list-page .news-body {
	flex: 1;
	min-width: 0;
}
.news-list-page .news-body h5 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.5;
}
.news-list-page .news-body h5 a {
	color: var(--zdc-dark);
	transition: color 0.3s;
}
.news-list-page .news-body h5 a:hover {
	color: var(--zdc-primary);
	text-decoration: none;
}
.news-list-page .news-excerpt {
	font-size: 0.857rem;
	color: var(--zdc-text);
	line-height: 1.65;
	margin: 0 0 8px;
}
.news-list-page .news-tags .badge {
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 2px;
	margin-right: 4px;
}
.news-list-page .news-read {
	font-size: 0.786rem;
	color: var(--zdc-primary);
	font-weight: 600;
	white-space: nowrap;
	margin-top: 4px;
}
.news-list-page .news-read i {
	margin-left: 4px;
	transition: transform 0.3s;
}
.news-list-page .news-item:hover .news-read i {
	transform: translateX(3px);
}

/* 招聘列表 */
.job-list-page {
	margin-bottom: 8px;
}
.job-card {
	border: none;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--zdc-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.job-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--zdc-shadow-hover);
}
.job-card .job-card-head {
	display: flex;
	align-items: center;
	padding: 20px 22px 16px;
	border-bottom: 1px solid #edf2f4;
	background: linear-gradient(135deg, rgba(8, 97, 109, 0.06) 0%, rgba(201, 168, 76, 0.05) 100%);
}
.job-card .job-card-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--zdc-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.285rem;
	margin-right: 16px;
}
.job-card .job-card-title {
	flex: 1;
	min-width: 0;
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--zdc-dark);
	line-height: 1.4;
}
.job-card .job-card-body {
	padding: 18px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.job-card .job-card-desc {
	font-size: 0.857rem;
	color: var(--zdc-text);
	line-height: 1.7;
	margin: 0 0 16px;
	flex: 1;
}
.job-card .job-card-meta {
	font-size: 0.786rem;
	color: #9aa8b4;
	margin-bottom: 14px;
}
.job-card .job-card-meta i {
	color: var(--zdc-primary);
	margin-right: 6px;
}
.job-card .job-card-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.857rem;
	color: var(--zdc-primary);
	font-weight: 600;
	transition: color 0.3s;
}
.job-card .job-card-link i {
	margin-left: 6px;
	transition: transform 0.3s;
}
.job-card .job-card-link:hover {
	color: var(--zdc-primary-dark);
	text-decoration: none;
}
.job-card:hover .job-card-link i {
	transform: translateX(4px);
}
.job-join-banner {
	background: linear-gradient(135deg, var(--zdc-primary-dark) 0%, var(--zdc-primary) 55%, var(--zdc-primary-light) 100%);
	border-radius: 8px;
	padding: 32px 36px;
	margin-top: 36px;
	color: #fff;
	box-shadow: var(--zdc-shadow);
}
.job-join-banner h3 {
	font-size: 1.285rem;
	font-weight: 700;
	margin: 0 0 10px;
}
.job-join-banner p {
	font-size: 0.929rem;
	opacity: 0.9;
	margin: 0 0 18px;
	line-height: 1.7;
}
.job-join-banner .btn-join {
	display: inline-block;
	padding: 10px 28px;
	background: var(--zdc-gold);
	color: var(--zdc-dark) !important;
	border-radius: 4px;
	font-size: 0.929rem;
	font-weight: 600;
	transition: background 0.3s;
}
.job-join-banner .btn-join:hover {
	background: var(--zdc-gold-light);
	text-decoration: none;
}
.job-join-banner .btn-join i {
	margin-right: 6px;
}

/* 响应式 */
@media only screen and (max-width: 767px) {
	.page-list .jumbotron {
		padding: 40px 0 !important;
	}
	.list-toolbar {
		flex-direction: column;
		align-items: stretch;
	}
	.list-toolbar .list-intro {
		margin-bottom: 14px;
		text-align: center;
	}
	.list-search .form-control {
		min-width: 0;
		flex: 1;
	}
	.page-list .position {
		font-size: 0.786rem;
	}
	.news-list-page {
		padding: 4px 16px;
	}
	.news-list-page .news-date {
		width: 56px;
		margin-right: 14px;
	}
	.news-list-page .news-date .day {
		font-size: 1.285rem;
	}
	.job-join-banner {
		padding: 24px 20px;
		text-align: center;
	}
	.job-card .job-card-head {
		padding: 16px 18px 14px;
	}
	.job-card .job-card-body {
		padding: 16px 18px;
	}
}
