/**
 * hzaac 内页 sub-header（标题 + 面包屑）
 * 抵消旧壳 float / max-width / div{margin:0 auto} 导致「ProductsHomeProducts」粘连
 */
.sub-header {
	position: relative;
	clear: both;
	overflow: visible;
	height: auto !important;
	min-height: 64px;
	margin: 0 !important;
	padding: 0;
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	border-bottom: none !important;
	box-sizing: border-box;
}

.sub-header::before,
.sub-header::after {
	display: none !important;
	content: none !important;
	background: none !important;
}

.sub-header .inner,
.sub-header .current-title,
.sub-header h2.current-title {
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
}

.sub-header,
.sub-header div,
.sub-header h2,
.sub-header ol,
.sub-header ul,
.sub-header li,
.sub-header span,
.sub-header a,
.sub-header i {
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none;
}

.sub-header .inner {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 24px;
	width: 100%;
	max-width: 1200px;
	min-height: 64px;
	margin: 0 auto !important;
	padding: 14px 20px;
	box-sizing: border-box;
	float: none !important;
}

.sub-header .current-title {
	float: none !important;
	flex: 1 1 auto;
	width: auto !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 0 0 12px;
	height: auto !important;
	line-height: 1.3 !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	color: #0c4d89 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-left: 3px solid #ff6a00;
	box-sizing: border-box;
}

.sub-header .current-title a,
.sub-header .current-title a:hover {
	color: inherit !important;
	text-decoration: none !important;
}

.sub-header .breadcrumbs {
	display: flex !important;
	flex: 0 1 auto;
	float: none !important;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0;
	width: auto !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	height: auto !important;
	line-height: 1.4 !important;
	opacity: 1 !important;
	font-size: 13px;
	color: #6b7785;
	white-space: normal;
	overflow: visible;
	text-overflow: unset;
}

.sub-header .breadcrumbs li {
	display: inline-flex !important;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	float: none !important;
}

.sub-header .breadcrumbs a,
.sub-header .breadcrumbs a:link,
.sub-header .breadcrumbs a:visited {
	color: #5a6570 !important;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.sub-header .breadcrumbs a:hover {
	color: #ff6a00 !important;
}

.sub-header .breadcrumbs .current,
.sub-header .breadcrumbs span.current {
	color: #0c4d89 !important;
	font-weight: 600;
}

.sub-header .breadcrumbs .delimiter,
.sub-header .breadcrumbs > i.delimiter {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 1.1em;
	margin: 0 2px !important;
	padding: 0 6px !important;
	opacity: 1 !important;
	color: #b0b8c2 !important;
	font-style: normal !important;
	font-size: 12px;
	line-height: 1;
}

.sub-header .breadcrumbs .delimiter:after,
.sub-header .breadcrumbs > i.delimiter:after {
	content: "/" !important;
	padding: 0 !important;
	font-family: inherit !important;
	font-style: normal !important;
	opacity: 1 !important;
	color: inherit;
}

@media only screen and (max-width: 768px) {
	.sub-header .inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 16px 16px 14px;
		min-height: 0;
	}

	.sub-header .current-title {
		font-size: 18px !important;
		width: 100%;
		white-space: normal;
	}

	/* 询盘篮：手机端不显示大标题（面包屑已有） */
	body.page-inquiry-basket .sub-header .current-title {
		display: none !important;
	}

	body.page-inquiry-basket .sub-header .inner {
		padding: 10px 16px !important;
		gap: 0 !important;
	}

	.sub-header .breadcrumbs {
		justify-content: flex-start;
		width: 100% !important;
	}
}
