/* 海报 */
.baichuan-banner-slider {
	position: relative;
	min-width: 100%;
	overflow: hidden;
	background-color: #fff;
}

.baichuan-slides-container {
	position: relative;
	width: 100%;
	min-height: 850px;
	display: flex;
}

.baichuan-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.baichuan-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.baichuan-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.baichuan-slide.has-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.baichuan-slide-content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	min-height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.baichuan-slide-content .align-left {
	align-items: flex-start;
	text-align: left;
}

.baichuan-slide-content .align-right {
	align-items: flex-end;
	text-align: right;
}

.baichuan-slide-content .align-center {
	align-items: center;
	text-align: center;
}

.baichuan-slide-content .align-center .flex-start,
.baichuan-slide-content .align-left .flex-start {
	padding-top: 10vh;
	justify-content: flex-start;
}

.baichuan-slide-content .align-left .flex-start {
	padding-top: 20vh;
}

.baichuan-slide-content-inner {
	max-width: 100%;
	margin: 0;
}

.baichuan-slide-heading {
	font-size: 56px;
	font-weight: 1000;
	line-height: 1.5em;
	color: #0957a8;
	margin: 0;
	margin-bottom:.5vw;
	text-transform:capitalize;
}

.baichuan-slide-heading em{
	font-style:normal;
}

.baichuan-slide-content .align-center .flex-start .baichuan-slide-heading {
	font-size: 54px;
	font-weight: 1000;
	color: #ffffff;
}

.baichuan-slide-content .align-left .flex-start .baichuan-slide-heading {
	font-size: 140px;
	font-weight: 1000;
	color: #d32038;
	font-style: italic;
}

.baichuan-slide-content .align-left .flex-start .baichuan-slide-heading span {
	font-size: 105px;
	color: #063379;
	text-transform: capitalize;
}

.baichuan-slide3 .baichuan-slide-content .align-center .flex-start .baichuan-slide-heading {
	font-size: 40px;
	color: #333333;
}

.baichuan-slide-text {
	font-size: 26px;
	line-height: 1.75;
	color: #6f6f6f;
	font-weight:600;
}

.baichuan-slide-text.fwn{
	font-weight:normal;
}

.baichuan-slide-text.fwn.fs21{
	font-size:21px;
}

.baichuan-slide-text em{
	font-weight:700;
	font-style: normal;
	color:var(--theme-palette-color-1);
}

.baichuan-slide-content .align-center .flex-start .baichuan-slide-text p {
	font-size: 24px;
	font-weight: 300;
	line-height: 1.5em;
}

.baichuan-slide-content .align-left .flex-start .baichuan-slide-text span {
	display: inline-block;
	padding: 0 35px;
	margin-bottom: 35px;
	font-size: 60px;
	color: #ffffff;
	line-height: 1.3;
	font-weight: 700;
	background-color: #d32038;
}

.baichuan-slide-content .align-left .flex-start .baichuan-slide-text p {
	font-size: 36px;
	color: #063379;
	line-height: 1.3;
	font-weight: 700;
}

.baichuan-slide-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 1em 1.71em;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	color: #ffffff !important;
	border: solid 1px var(--theme-palette-color-1) !important;
	background: linear-gradient(90deg, var(--theme-palette-color-1) 50%, var(--theme-palette-color-1) 50%);
	background-size: 204% 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
	transition: all 0.45s ease;
}

.baichuan-slide-button svg {
	width: 14px;
	height: 14px;
	stroke: #ffffff;
	stroke-width: 2;
	fill: none;
	transition: transform 0.3s;
}

.baichuan-slide-button:hover {
	background-position: 100% 0;
	color: #ffffff !important;
	border-color: var(--theme-palette-color-1) !important;
}

.baichuan-slide-button:hover svg {
	transform: translateX(4px);
}

.baichuan-slider-footer {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 3;
	pointer-events: none;
}

.baichuan-slider-footer-content {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	pointer-events: auto;
}

.baichuan-slider-pagination {
	display: flex;
	align-items: center;
	gap: 20px;
}

.baichuan-slider-progress {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
}

.baichuan-slider-progress .current {
	font-weight: 600;
}

.baichuan-slider-dots {
	display: flex;
	gap: 15px;
}

.baichuan-slider-dot {
	width: 48px;
	height: 4px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: 0.3s;
}

.baichuan-slider-dot.active {
	border-bottom: 4px solid var(--theme-palette-color-1);
}

.baichuan-slider-nav {
	display: flex;
	gap: 12px;
}

.baichuan-slider-nav button {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 15px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.baichuan-slider-nav button:hover {
	background: var(--theme-palette-color-1);
}

.baichuan-slider-nav button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
	stroke-width: 2;
	fill: none;
}

.baichuan-slider-nav button:hover svg {
	stroke: #fff;
}

@media (max-width: 1200px) {

	.baichuan-slide-heading,
	.baichuan-slide-content .align-center .flex-start .baichuan-slide-heading,
	.baichuan-slide-content .align-left .flex-start .baichuan-slide-heading,
	.baichuan-slide3 .baichuan-slide-content .align-center .flex-start .baichuan-slide-heading {
		font-size: 82px;
	}

	.baichuan-slide-content .align-center .flex-start .baichuan-slide-text p {
		font-size: 36px;
	}

	.baichuan-slide-content -inner {
		max-width: 100%;
	}

	.baichuan-slides-container {
		min-height: 700px;
	}
}


@media (max-width: 991px) {

	.baichuan-slide-heading,
	.baichuan-slide-content .align-center .flex-start .baichuan-slide-heading,
	.baichuan-slide-content .align-left .flex-start .baichuan-slide-heading,
	.baichuan-slide3 .baichuan-slide-content .align-center .flex-start .baichuan-slide-heading {
		font-size: 62px;
	}

	.baichuan-slide-content .align-center .flex-start .baichuan-slide-text p {
		font-size: 26px;
	}
}

@media (max-width: 768px) {
	.baichuan-slides-container {
		min-height: 500px;
	}

	.baichuan-slide-heading,
	.baichuan-slide-content .align-center .flex-start .baichuan-slide-heading,
	.baichuan-slide-content .align-left .flex-start .baichuan-slide-heading,
	.baichuan-slide3 .baichuan-slide-content .align-center .flex-start .baichuan-slide-heading {
		font-size: 42px;
	}

	.baichuan-slide-content .align-center .flex-start .baichuan-slide-text p {
		font-size: 20px;
	}
}

@media (max-width: 660px) {

	.baichuan-slide-content .align-center .flex-start {
		padding-top: 0;
	}

	.baichuan-slide-content .align-left .flex-start {
		padding-top: 10vh;
	}

	.baichuan-slide-content .align-left,
	.baichuan-slide-content .align-right {
		align-items: center;
		text-align: center;
	}

	.baichuan-slide-content -inner {
		max-width: 100%;
		margin: 40px 0 0 0;
		text-align: center !important;
	}

	.baichuan-slide-heading {
		font-size: 28px;
	}

	.baichuan-slider-footer-content {
		justify-content: space-between;
		flex-wrap: nowrap;
		bottom: 20px;
		gap: 10px;
	}

	.baichuan-slider-pagination {
		gap: 10px;
	}

	.baichuan-slider-progress {
		font-size: 14px;
	}

	.baichuan-slider-dot {
		width: 24px;
	}

	.baichuan-slider-nav button {
		width: 36px;
		height: 36px;
		border-radius: 8px;
	}

	.baichuan-slider-nav button svg {
		width: 18px;
		height: 18px;
	}
}

/* odm oem */
:root {
	--baichuan-ab-light-purple: var(--theme-palette-color-1);
	--baichuan-ab-text-dark: #111111;
	--baichuan-ab-text-gray: #555555;
	--baichuan-ab-bg-light: #f8f9fa;
	--baichuan-ab-white: #ffffff;
	--baichuan-ab-radius-sm: 4px;
	--baichuan-ab-radius-md: 12px;
	--baichuan-ab-radius-lg: 24px;
	--baichuan-ab-transition: all 0.3s ease;
}

.baichuan-ab-oem {
	padding: 100px 0;
}

.baichuan-ab-oem-box {
	background-color: var(--baichuan-ab-light-purple);
	border-radius: var(--baichuan-ab-radius-lg);
	padding: 80px;
	display: flex;
	align-items: center;
	gap: 60px;
	color: var(--baichuan-ab-white);
}

.baichuan-ab-oem-text {
	flex: 1;
}

.baichuan-ab-oem-text h2 {
	color: var(--baichuan-ab-white);
	font-size: 42px;
	margin-bottom: 16px;
}

.baichuan-ab-oem-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 40px 0;
}

.baichuan-ab-oem-feature h4 {
	color: var(--baichuan-ab-white);
	font-size: 16px;
	margin-bottom: 8px;
	line-height:1.5;
}

.baichuan-ab-oem-feature p {
	font-size: 14px;
	opacity: 0.8;
}

.baichuan-ab-oem-image {
	flex: 1;
	border-radius: var(--baichuan-ab-radius-md);
	overflow: hidden;
}

.baichuan-ab-oem-image img {
	transition: all .3s;
}

.baichuan-ab-oem-image img:hover {
	transform: scale(1.05);
}

.baichuan-ab-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 35px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	color: #ffffff;
}

.baichuan-ab-btn-outline {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.baichuan-ab-btn-outline:hover {
	background-color: #fff;
	color: var(--theme-palette-color-1);
}

.baichuan-ab-btn-light {
	background-color: #fff;
	color: var(--theme-palette-color-1);
	border: 2px solid #fff;
}

.baichuan-ab-btn-light:hover {
	background-color: #f0f0f0;
}

.project-four__list li {
	position: relative;
	display: block;
	/* float: left;  注意：在 flex 容器中 float 是失效的，留着也没事，但不起作用 */
	padding: 0 12px;

	/* 👇 新增以下两行 👇 */
	width: 25vw;
	/* 给定一个明确的宽度，你可以根据你的设计图修改，比如 300px 或 25vw */
	flex-shrink: 0;
	/* 关键：防止在 flex-wrap: nowrap 状态下被强行挤压变窄 */
}


*[class*="rect-"] {
	position: relative;
	display: block;
	width: 100%;
	height: 0;
	overflow: hidden;
}

*[class*="rect-"] ._full {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	*height: auto;
	object-fit: cover;
}

.project-four__single-img *[class*="pic"] {
	overflow: hidden;
}

.project-four__single-img *[class*="pic"]>img {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-ms-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.project-four__single-img :hover *[class*="pic"]>img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.rect-60 {
	padding-bottom: 60%;
}


/* 首页产品 */
.ind_pro .owl-carousel .owl-item img {
	padding: 2vw;
	overflow: hidden;
}

/* 内页关于我们 */
.ny_about {
	padding-bottom: 60px;
}

.ny_about .sec-title__title {
	font-size: 32px;
	line-height: 1.5;
	color: var(--cleanin-base);
}

/* 内页产品 */
.entry-header h1.page-title {
	color: #ffffff;
	text-transform: capitalize;
}

.products .product h2 a {
	font-size: 20px;
	color: #353535;
}

.products .product:hover h2 a,
.products .product:hover .ct-woo-card-actions a {
	color: var(--theme-link-hover-color);
}

[data-products=type-2] .ct-woo-card-actions>* {
	font-size: 18px;
	color: #353535;
	text-transform: capitalize;
}

/* 产品侧边栏 */
.ct-sidebar h3.widget-title {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.3;
	color: #000;
	padding-bottom: 15px;
	border-bottom: 1px solid #F2F2F2;
	margin-bottom: 16px;
}

.ct-sidebar h3.widget-title::after {
	position: absolute;
	content: "";
	display: block;
	width: 72px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: var(--theme-link-hover-color)
}

.menu-productr-center-container .widget-menu li a {
	position: relative;
	display: block;
	padding: 16px 42px 12px 12px;
	margin-bottom: 15px;
	font-size: 18px;
	line-height: 1.5;
	color: #353535;
	border-bottom: 1px solid #F2F2F2;
	border-radius: 8px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, .05);
}

.menu-productr-center-container .widget-menu li.current-menu-item a {
	color: #ffffff;
	background-color: var(--cleanin-base);
}

.menu-productr-center-container .widget-menu li:hover a {
	color: #ffffff;
	background-color: var(--cleanin-base);
}

.product_list_widget .product-title {
	font-size: 16px;
	line-height: 1.5;
	color: #353535;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product_list_widget li:hover .product-title {
	color: var(--theme-link-hover-color)
}

.entry-summary .product_title {
	color: var(--theme-palette-color-3);
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li.reviews_tab {
	display: none;
}

.woocommerce-Tabs-panel td,
.woocommerce-Tabs-panel th {
	/*  padding: 15px 12px; */
	border: 1px solid #dadbdd !important;
	vertical-align: middle;
	font-size: 16px;
	color: #353535;
	text-align: center
}

.woocommerce-Tabs-panel td p,
.woocommerce-Tabs-panel th p {
	padding-bottom: 0;
	margin-bottom: 0 !important
}

.woocommerce-Tabs-panel table {
	width: 100%;
	border-collapse: collapse;
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	overflow-x: auto;
}

.woocommerce-Tabs-panel table td {
	border-left: 1px solid #dadbdd;
	border-top: 1px solid #dadbdd !important
}

.woocommerce-Tabs-panel table tr:first-child {
	background-color: var(--theme-palette-color-1)
}

.woocommerce-Tabs-panel table tr:first-child td,
.woocommerce-Tabs-panel table tr:first-child td p {
	color: #fff
}

.woocommerce-Tabs-panel {
	font-size: 16px;
	color: #353535;
	line-height: 30px;
	margin-bottom: 30px
}

.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel span {
	font-size: 16px;
	color: #353535;
	line-height: 28px
}

.woocommerce-Tabs-panel strong {
	font-weight: 700
}

.woocommerce-Tabs-panel img {
	max-width: 100%
}

.woocommerce-Tabs-panel a {
	color: #353535
}

.woocommerce-Tabs-panel h1,
.woocommerce-Tabs-panel h2,
.woocommerce-Tabs-panel h3,
.woocommerce-Tabs-panel h4,
.woocommerce-Tabs-panel h5 {
	font-weight: 700
}

.woocommerce-Tabs-panel h1 {
	font-size: 36px;
	margin-bottom: 20px
}

.woocommerce-Tabs-panel h2 {
	position: relative;
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	padding-top: 10px;
	border-bottom-width: 0;
	border-bottom-style: solid;
	background-color: #f5f5f5;
	margin-top: 20px;
	box-shadow: #bbb 0 0 5px;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 1000;
	padding-left: 55px;
	border-radius: 5px;
	color: var(--theme-palette-color-1)
}

.woocommerce-Tabs-panel h2::before {
	content: '';
	position: absolute;
	top: 7px;
	left: 10px;
	width: 35px;
	height: 35px;
	background: #fff0 url('/wp-content/uploads/2026/05/ny_pro_ico.webp') no-repeat center/cover
}

.woocommerce-Tabs-panel h3 {
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 400;
	color: #353535
}

.woocommerce-Tabs-panel h4 {
	font-size: 18px;
	margin-bottom: 15px
}

.woocommerce-Tabs-panel h5 {
	font-size: 14px;
	margin-bottom: 10px
}

.woocommerce-Tabs-panel h6 {
	font-size: 12px;
	margin-bottom: 10px
}

.woocommerce-Tabs-panel ul li,
.woocommerce-Tabs-panel ol li {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important
}

.woocommerce-Tabs-panel ul li p,
.woocommerce-Tabs-panel ol li p {
	padding-bottom: 0;
	margin-bottom: 3px !important
}

.woocommerce-Tabs-panel ul,
.woocommerce-Tabs-panel ol {
	margin-bottom: 15px
}

.woocommerce-Tabs-panel sub {
	vertical-align: sub;
	font-size: 16px
}

.woocommerce-Tabs-panel sup {
	vertical-align: super;
	font-size: 16px
}

.woocommerce-Tabs-panel img {
	display: inline-block;
	margin: 20px 0
}

@media (max-width: 768px) {

	.woocommerce-Tabs-panel td,
	.woocommerce-Tabs-panel th {
		padding: 6px 5px !important;
		line-height: 20px
	}

	.woocommerce-Tabs-panel p,
	.woocommerce-Tabs-panel span {
		font-size: 13px !important;
		line-height: 24px !important
	}

	.woocommerce-Tabs-panel img {
		display: inline-block;
		margin: 12px 0
	}
}

.related.products img {
	aspect-ratio: 1 / 1 !important;
}

.products .product {
	padding: 15px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	border-radius: 10px;
}

.products figure .ct-media-container img {
	transition: all .3s;
}

.products figure .ct-media-container:hover img {
	transform: scale(1.05);
}

.products .ct-woo-card-actions {
	display: none;
}

.products .woocommerce-loop-product__title,
.products .entry-meta {
	text-align: center
}

.products .woocommerce-loop-product__title a {
	font-size: 20px;
	color: #1f1f1f;
}

.products .woocommerce-loop-product__title a:hover {
	color: var(--cleanin-black);
}

.products .entry-meta li a {
	color: #1f1f1f;
}

/* 新闻 */
.post h2.entry-title {
	font-size: 20px;
	line-height: 1.5;
	height: 1.5em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.post h2.entry-title a {
	color: #353535;
}

.post:hover h2.entry-title a {
	color: var(--theme-link-hover-color)
}

.post .entry-excerpt p {
	line-height: 1.5;
	height: 4.5em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

#baichuan-sidebar-toc {
	position: sticky;
	top: 120px;
	background-color: rgba(242, 247, 246, 0.62);
	padding: 25px;
	border-radius: 16px;
	border: 1px solid #ccc;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgb(0 0 0 / .02);
	z-index: 10
}

.baichuan-toc-header {
	font-size: 18px;
	font-weight: 700;
	color: #8ec245;
	margin: 0 0 15px 0;
	padding-bottom: 15px;
	border-bottom: 1px solid #ccc
}

.baichuan-toc-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.baichuan-toc-list li {
	margin-bottom: 12px
}

.baichuan-toc-link {
	color: #353535;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.5;
	display: block;
	transition: all 0.3s ease;
	border-left: 2px solid #fff0;
	padding-left: 12px
}

.baichuan-toc-link:hover {
	color: #8ec245
}

.baichuan-toc-link.active {
	color: #8ec245;
	font-weight: 600;
	border-left-color: #8ec245
}

#block-21 .fluentform {
	padding: 60px 50px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgb(0 0 0 / .05);

}

@media (min-width: 992px) {

	#sidebar~[role="main"],
	[role="main"]~#sidebar {
		flex: 1 !important
	}
}

#block-7 .wp-block-group ul li a.wp-block-latest-posts__post-title {
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ct-related-posts-container .ct-module-title {
	margin-bottom: 2vw;
}

.ct-related-posts .related-entry-title {
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ct-related-posts .related-entry-title a {
	color: #353535;
	font-size: 16px;
}

.ct-related-posts .ct-related-posts-items article:hover .related-entry-title a {
	color: var(--cleanin-base);
}

/* 联系我们 */
.baichuan-contact-section {
	margin: 90px auto;
	min-width: 100%
}

.baichuan-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px
}

.baichuan-contact-info {
	position: relative;
	padding: 60px 0;
	background-image: url('/wp-content/uploads/2026/05/bg-contacts.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border-radius: 25px;
	z-index: 1
}

.baichuan-contact-title,
.baichuan-contact-description,
.baichuan-contact-item h4,
.baichuan-contact-item p,
.baichuan-contact-item a,
.baichuan-social-title {
	text-shadow: 0 0 3px rgb(0 0 0 / .08)
}

.baichuan-contact-title {
	font-size: 48px;
	font-weight: 500;
	line-height: 1.2em;
	letter-spacing: -.03em;
	text-transform: uppercase;
	color: #111;
	margin-bottom: 24px
}

.baichuan-contact-description {
	font-size: 18px;
	line-height: 1.6667em;
	color: #333;
	margin-bottom: 40px
}

.baichuan-contact-details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px
}

.baichuan-contact-item h4 {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	margin-bottom: 12px
}

.baichuan-contact-item p,
.baichuan-contact-item a {
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	text-decoration: none
}

.baichuan-contact-item a {
	border-bottom: 1px solid #fff0;
	transition: border-color 0.3s
}

.baichuan-contact-item a:hover {
	border-bottom-color: var(--theme-link-hover-color)
}

.baichuan-social-title {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	margin-bottom: 16px
}

.baichuan-social-icons {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap
}

.baichuan-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgb(255 255 255 / .8);
	border-radius: 50%;
	transition: background 0.3s, transform 0.2s
}

.baichuan-social-icons a svg {
	width: 18px;
	height: 18px;
	fill: #111;
	transition: fill 0.3s
}

.baichuan-social-icons a:hover {
	background: var(--theme-link-hover-color);
	transform: translateY(-2px)
}

.baichuan-social-icons a:hover svg {
	fill: #fff
}

.baichuan-contact-form {
	padding: 60px 50px;
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgb(0 0 0 / .05)
}

.baichuan-form-title {
	font-size: 32px;
	font-weight: 600;
	color: #111;
	margin-bottom: 30px;
	letter-spacing: -.02em
}

.baichuan-contact-form .fluentform .ff-el-group {
	margin-bottom: 20px
}


@media (max-width: 1020px) {

	.baichuan-contact-info,
	.baichuan-contact-form {
		padding: 40px 30px
	}

	.baichuan-contact-title {
		font-size: 36px
	}
}

@media (max-width: 840px) {
	.baichuan-contact-grid {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.baichuan-contact-details-grid {
		gap: 20px
	}
}

@media (max-width: 660px) {

	.baichuan-contact-info,
	.baichuan-contact-form {
		padding: 30px 20px
	}

	.baichuan-contact-title {
		font-size: 28px
	}

	.baichuan-contact-details-grid {
		grid-template-columns: 1fr;
		gap: 25px
	}

	.baichuan-contact-info {
		background-size: contain
	}
}

/* 解决方案 */
.ny-solu .entry-header h1.page-title {
	color: #353535
}
/* ==========================================================================
   应用领域 - 目录表格风产品展示 (无空格子版)
   ========================================================================== */

.app-related-products-wrapper {
    margin-top: 40px;
}

.related-section-title {
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

/* 表格网格容器：移除容器边框，只控制排版 */
.product-grid-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* padding 留出 1px 空间，防止卡片的负边距被裁切 */
    padding-top: 1px;
    padding-left: 1px;
}

/* 产品卡片：自带完整边框，利用负边距完美拼接 */
.b2b-product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5; /* 每个卡片都有完整的边框 */
    margin-top: -1px;  /* 向上偏移 1px，抵消上下双重边框 */
    margin-left: -1px; /* 向左偏移 1px，抵消左右双重边框 */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.b2b-product-card .card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-wrap {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-content {
    background-color: #8cc63f; 
    padding: 12px 10px;
    text-align: center;
    margin-top: auto;
    min-height: 45px;
    transition: background-color 0.4s ease;
}

.product-title {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: normal;
    line-height: 1.5;
}

/* ==========================================================================
   Hover 动画 (自然渐变)
   ========================================================================== */

.b2b-product-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 2; /* 提高层级，让边框和阴影覆盖在旁边的格子上 */
}

.b2b-product-card:hover .card-img-wrap img {
    transform: scale(1.08); 
}

.b2b-product-card:hover .card-content {
    background-color: #7ab334; 
}

/* ==========================================================================
   响应式适配
   ========================================================================== */

@media (max-width: 1024px) {
    .product-grid-table { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .product-grid-table { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .card-img-wrap { padding: 10px; }
    .card-content { padding: 8px 5px; }
    .product-title { font-size: 13px; }
}

/* 自定义分页样式 */
.custom-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	/* 按钮之间的间距 */
}

.custom-pagination ul li a,
.custom-pagination ul li span.current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 15px;
	background-color: #f5f5f5;
	/* 默认背景色 */
	color: #333;
	font-weight: 500;
	text-decoration: none;
	border-radius: 4px;
	/* 微圆角，符合现代B2B感 */
	transition: all 0.3s ease;
	/* 自然渐变过渡效果 */
}

/* 鼠标悬停效果 */
.custom-pagination ul li a:hover {
	background-color: #0056b3;
	/* 替换为您网站的主色调 */
	color: #ffffff;
	box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

/* 当前所在页面的样式 */
.custom-pagination ul li span.current {
	background-color: #0056b3;
	/* 替换为您网站的主色调 */
	color: #ffffff;
	cursor: default;
}

/* 上一页/下一页文字样式 */
.custom-pagination ul li a.prev,
.custom-pagination ul li a.next {
	background-color: transparent;
	border: 1px solid #e0e0e0;
}

.custom-pagination ul li a.prev:hover,
.custom-pagination ul li a.next:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}

/* QA */
.qs-section {
	padding-bottom: 60px;
	text-align: center;
}

.qs-title {
	display: block;
	margin-bottom: 2vw !important;
	color: var(--cleanin-base);
	font-size: 42px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.qs-intro {
	color: #353535;
	font-size: 16px;
	line-height: 1.6;
	max-width: 80%;
	margin: 0 auto;
}

.qs-tree {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.qs-main-node {
	margin-top: 3vw;
	background-color: var(--cleanin-base);
	color: #fff;
	padding: 12px 60px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 26px;
	position: relative;
	margin-bottom: 30px;
}

/* 垂直连接线 */
.qs-main-node::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 30px;
	background-color: #ccc;
}

.qs-branches-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	position: relative;
	width: 100%;
	flex-wrap: wrap;
	/* 移动端适配 */
}

/* 水平连接线 */
.qs-branches-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	/* 根据5个元素的宽度微调 */
	right: 10%;
	height: 1px;
	background-color: #ccc;
	z-index: 1;
}

@media (max-width: 992px) {
	.qs-branches-container::before {
		display: none;
	}

	/* 移动端隐藏横线 */
	.qs-main-node::after {
		display: none;
	}
}

.qs-branch {
	flex: 1;
	min-width: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	padding-top: 30px;
	z-index: 2;
}

/* 子节点垂直连接线 */
.qs-branch::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 30px;
	background-color: #ccc;
}

@media (max-width: 992px) {
	.qs-branch::before {
		display: none;
	}

	.qs-branch {
		padding-top: 10px;
		margin-bottom: 20px;
	}
}

.qs-box {
	background-color: var(--cleanin-base);
	color: #fff;
	padding: 12px 10px;
	border-radius: 4px;
	font-size: 20px;
	font-weight: bold;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 15px;
	position: relative;
	transition: all .3s;
}

.qs-box:hover {
	background-color: #0056b3;
}

/* 盒子下方的小圆点和短线 */
.qs-box::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 15px;
	background-color: #ccc;
}

/* =========================================
   优化后的子节点内容排版 (卡片式流程设计)
   ========================================= */

.qs-desc {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px; /* 缩小 gap，因为卡片自带 padding，整体视觉更紧凑 */
	padding: 0 10px;
	width: 100%;
	box-sizing: border-box;
}

/* 卡片式设计 */
.qs-item {
	background-color: #fcfcfc;
	border: 1px solid #eaeaea;
	border-radius: 6px;
	padding: 15px;
	width: 100%;
	box-sizing: border-box;
	text-align: center; /* 长段落左对齐，提升阅读体验 */
	transition: all 0.3s ease;
	position: relative;
}

/* 卡片悬浮效果：轻微上浮 + 边框变色 + 阴影 */
.qs-item:hover {
	transform: translateY(-2px);
	border-color: var(--cleanin-base); /* 使用你的主题色 */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
}

/* 卡片标题 */
.qs-item strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--cleanin-base); /* 标题呼应主题色 */
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dashed #e0e0e0; /* 增加虚线分隔线，增强层次 */
	line-height: 1.3;
}

/* 卡片正文 */
.qs-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	text-align:left;
	color: #555555;
}

/* 优化箭头样式：使其看起来像连接线上的节点 */
.qs-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #bbbbbb;
	font-size: 14px;
	height: 20px;
	line-height: 1;
	margin: 2px 0;
	transition: color 0.3s;
}

/* 当鼠标悬浮在整个分支时，箭头颜色加深 */
.qs-branch:hover .qs-arrow {
	color: var(--cleanin-base);
	opacity: 0.7;
}


/* 底部 */
.menu-foot_menu_nav-container ul li a {
	color: #353535;
	font-size: 18px;
}

.menu-foot_menu_nav-container ul li a:hover {
	color: var(--cleanin-base);
}

#block-27 dl {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	/* 新增：控制几个联系方式列表项之间的上下间距 */
}

#block-27 dl dd {
	color: #353535;
	display: flex;
	/* 新增：使用 flex 布局，让图标和文字完美分块并排 */
	align-items: flex-start;
	/* 新增：让图标和右侧文字整体垂直居中 */
	margin: 0;
}

#block-27 dl dd i {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	/* 修改：从 50px 改为 8px，变成第二图的圆角矩形 */
	background-color: var(--cleanin-base);
	flex-shrink: 0;
	/* 新增：非常重要！防止右侧地址文字过长换行时，把左侧图标挤压变形 */
}

#block-27 dl dd i svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	/* 建议：原为 30px，稍微调小一点在圆角矩形中留白更好看，可根据实际情况微调 */
	height: 30px;
	transform: translate(-50%, -50%);
}

#block-27 dl dd span {
	/* 删除了原有的 display: inline-block; */
	padding-left: 15px;
	/* 修改：因为父级用了 flex，这里只需要设置图标和文字的间距即可，原为 45px */
	line-height: 1.6;
	/* 新增：稍微增加行高，让多行地址文字看起来更整洁自然 */
}