.ne-banner {
	width: 100%;
	background: #000;
	overflow: hidden;
	position: relative;
}

.ne-banner img {
	width: 100%;
	animation: changeScale 1 3s ease-out forwards;
}

.bannerText {
	width: 100%;
	z-index: 9;
	text-align: left;
	position: absolute;
	left: 0;
	font-weight: bold;
	bottom: 5%;
	color: #333;
	/* 	text-shadow: 0 0 8px #555; */
	font-size: 3rem;
	padding-left: 10.125rem;
}

.bannerText span {
	color: #0090a0;
}

.bannerText .pText {
	width: 100%;
	font-size: 1.75rem;
	font-weight: normal;
	padding-top: 0.5rem;
}

.pc-banner {
	display: block;
}

.mobile-banner {
	display: none;
}


/* 联系我们 */
.contact-banner {
	width: 100%;
	background: url("../images/contactBg.jpg") no-repeat;
	background-size: 100% 100%;
	position: relative;
	padding: 8.75rem 10.125rem 0 10.125rem;
	min-height: 53.125rem;
	display: flex;
}


.contact-content {
	position: relative;
	z-index: 2;
	color: #fff;
}

.contact-title {
	font-size: 3.375rem;
	font-weight: bold;
	margin-bottom: 2.6rem;
}


.contact-item {
	font-size: 28px;
	line-height: 3rem;
}


.contact-sub {
	font-size: 28px;
	margin: 30px 0 20px;
}


.icon-box {
	display: flex;
	gap: 24px;
	align-items: center;
	position: relative;
}

.icon-item {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
}

.icon-item .iconfont {
	color: #fff;
	font-size: 46px;
}

.icon-item:nth-child(2) .iconfont {
	color: #fff;
	font-size: 50px;
}

.icon-item:nth-child(4) .iconfont {
	color: #fff;
	font-size: 52px;
}

.icon-item img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.qrcode-pop {
	position: absolute;
	left: 0;
	top: 70px;
	width: 160px;
	height: 160px;
	background: #fff;
	border-radius: 6px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.qrcode-pop img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.icon-item:hover .qrcode-pop {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media(max-width: 768px) {
	.contact-banner {
		min-height: auto;
		background: url(../images/contactBg-1.jpg) no-repeat;
		padding: 100px 4% 160px 4%;
		background-size: 100% 100%;
	}

	.contact-title {
		font-size: 36px;
		margin-bottom: 24px;
	}

	.contact-item {
		font-size: 18px;
	}

	.contact-sub {
		font-size: 18px;
	}

	.icon-item {
		width: 42px;
		height: 42px;
	}

	.icon-item img {
		width: 24px;
		height: 24px;
	}

	.qrcode-pop {
		width: 120px;
		height: 120px;
	}

	.qrcode-pop img {
		width: 100%;
		height: auto;
	}
}

.content-wrap {
	background: #f3f6fb;
	padding: 4.375rem 8.125rem 8.75rem 8.125rem;
}

/* 质量体系 */
.navBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.bread {
	text-align: right;
	font-size: 1.25rem;
	color: #888;
	margin-bottom: 30px;
	position: absolute;
	right: 0;
	top: 0;
}


.sub-nav {
	display: flex;
	gap: 12px;
	margin-bottom: 5.9375rem;
}

.sub-nav-item {
	line-height: 3.125rem;
	padding: 0 35px;
	border-radius: 99px;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.24s;
	color: #333333;
}

.sub-nav-item.active {
	background: #24a0a0;
	color: #fff;
}

.sub-nav-item:not(.active) {
	background: #fff;
	color: #333;
	border: 1px solid #dde7f0;
}

@media (max-width: 768px) {
	.sub-nav-item {
		padding: 5px 20px;
		font-size: 17px;
	}

	.sub-nav {
		margin-bottom: 35px;
	}
}


.page-title {
	text-align: center;
	margin-bottom: 40px;
}

.page-title h2 {
	font-size: 3rem;
	color: #222;
	margin-bottom: 12px;
}

.page-title p {
	font-size: 1.5rem;
	color: #333333;
}

@media (max-width: 768px) {
	.page-title h2 {
		font-size: 26px;
	}

	.page-title p {
		font-size: 18px;
	}
}


.tab-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

@media (max-width: 992px) {
	.tab-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.tab-wrap {
		grid-template-columns: 1fr;
	}
}

.tab-card {
	cursor: pointer;
	transition: 0.5s;
}




.tab-card-img {
	width: 100%;
	object-fit: cover;
	border-radius: 0.9375rem 0.9375rem 0 0;
	overflow: hidden;
}

.tab-card-img img {
	display: block;
	width: 100%;
}

.tab-card-text {
	padding: 1.875rem 2.1875rem;
	min-height: 16.5625rem;
	background: #fff;
	color: #333;
	position: relative;
}

.tab-card.active .tab-card-text {
	background: #0090a0;
	color: #fff;
	position: relative;
	transition-duration: 0.1s;
}

.tab-card-text:after {
	width: 2.625rem;
	height: 2.625rem;
	background: #0090a0;
	position: absolute;
	content: "";
	bottom: -1.3125rem;
	transform: rotate(45deg);
	left: 47%;
	opacity: 0;
}

.tab-card.active .tab-card-text:after {
	opacity: 1;
}

.tab-card-text h3 {
	font-size: 1.625rem;
	margin-bottom: 12px;
	color: #0090a0;
	text-align: center;
}

.tab-card.active h3 {
	color: #fff;
}

.tab-card-text p {
	font-size: 1.25rem;
	line-height: 1.68;
	color: inherit;
}


.tab-content-wrap {
	position: relative;
}

.tab-content-item {
	display: none;
	background: #fff;
	border: 1px solid #b9e0e8;
	border-radius: 6px;
	padding: 2.5rem;
	line-height: 2rem;
	font-size: 1.25rem;
	color: #333;
	transition: opacity 0.3s ease;
}

.tab-content-item.show {
	display: block;
}

.rule-item {
	margin-bottom: 18px;
}

.rule-item:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.tab-content-item {
		padding: 20px 16px;
		font-size: 14px;
	}
}

/* 质量认证 */
.cert_wrap {
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.cert_wrap {
		flex-direction: column;
	}
}


.cert-left-box {
	flex: 0 0 24%;
	background: #2092a8;
	border-radius: 1.5625rem;
	color: #fff;
	padding: 5.625rem 2.8125rem;
}

@media screen and (max-width: 992px) {
	.cert-left-box {
		flex: none;
		width: 100%;
		padding: 40px 24px;
	}
}

.cert-left-box h2 {
	font-size: 44px;
	margin-bottom: 32px;
	font-weight: bold;
}

.cert-left-box p {
	font-size: 1.375rem;
	line-height: 2rem;
}


.cert-right-container {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.cert-right-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 640px) {
	.cert-right-container {
		grid-template-columns: 1fr;
	}
}




.card-img {
	width: 100%;
	object-fit: cover;
	display: block;
	border-radius: 1.5625rem;
}

.card-text {
	padding: 30px 6px;
}

.card-text h3 {
	font-size: 1.875rem;
	text-align: center;
	margin-bottom: 24px;
	color: #222;
}

.card-desc {
	font-size: 1.125rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 24px;
}

.icon-row {
	width: 100%;
}

.icon-row img {
	width: 100%;
	display: block;
}

.text-list li {
	font-size: 1.125rem;
	color: #444;
	line-height: 1.7;
	margin-bottom: 10px;
	list-style: none;
	padding-left: 14px;
	position: relative;
}

.text-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #333;
	font-weight: bold;
}

/* 技术研发 */
.research_item {
	padding-bottom: 9.375rem;
}

.research_item ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.research_item ul li {
	width: 23%;
	overflow: hidden;
	position: relative;
	border-radius: 15px;
	background: #000;
	cursor: pointer;
}

.research_item ul li img {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
	transition-duration: .5s;
}

.research_item ul li:hover img {
	transform: scale(1.1);
	opacity: 0.7;
}

.research_item ul li .dw {
	width: 70%;
	position: absolute;
	left: 15%;
	bottom: 30px;
	border-radius: 3.125rem;
	background: #0090a0;
	color: #fff;
	line-height: 3.875rem;
	font-weight: bold;
	font-size: 1.75rem;
	z-index: 2;
	text-align: center;
	transition-duration: .5s;
}

.research_item ul li:hover .dw {
	bottom: 40px;
}

.research_container {
	max-width: 2200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.advantage-item {
	display: flex;
	align-items: stretch;
	border: 3px solid #2396b3;
	border-radius: 999px;
	overflow: hidden;
	background: #2396b3;
	padding-right: 10px;
}

.advantage-item:nth-child(2),
.advantage-item:nth-child(4) {
	border-color: #00c2bb;
	background: #00c2bb;

}

.item-num {
	width: 160px;
	flex-shrink: 0;
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.item-title {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	font-size: 1.86rem;
	font-weight: bold;
	padding: 0 4.6875rem;
}

.line-split {
	width: 3px;
	flex-shrink: 0;
	background: #2396b3;
	margin: 20px 0;
}

.advantage-item:nth-child(2) .line-split,
.advantage-item:nth-child(4) .line-split {
	background: #00c2bb;
}

.item-text {
	flex: 1;
	padding: 1.5625rem 2.8125rem;
	min-height: 9.0625rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.item-text li {
	width: 100%;
	list-style: none;
	font-size: 1.25rem;
	line-height: 1.875rem;
	color: #222;
	position: relative;
	padding-left: 16px;
}

.item-text li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #222;
}

.item-text li:last-child {
	margin-bottom: 0;
}

.item-right {
	width: calc(100% - 160px);
	background: #fff;
	border-radius: 6.25rem;
	display: flex;
	flex-wrap: wrap;
}

@media (max-width:1200px) {
	.item-num {
		width: 100px;
		font-size: 42px;
	}

	.item-title {
		width: 220px;
		font-size: 24px;
	}

	.item-text {
		padding: 20px 24px;
	}
}

@media (max-width:768px) {
	.advantage-item {
		border-radius: 32px;
		flex-wrap: wrap;
		padding-right: 0;
	}

	.item-num {
		width: 100%;
		height: 60px;
		font-size: 32px;
	}

	.item-right {
		width: 100%;
		background: #fff;
		border-radius: 10px;
		display: flex;
		flex-wrap: wrap;
	}

	.line-split {
		width: calc(100% - 40px);
		height: 3px;
		margin: 0 20px;
	}

	.item-text {
		width: 100%;
		padding: 20px;
	}

	.item-text li {
		font-size: 16px;
		line-height: 32px;
	}

	.item-title {
		width: 100%;
		font-size: 20px;
		padding: 18px 0;
		text-align: center;
		justify-content: center;
	}
}

.res_pagetwo {
	width: 100%;
	padding: 6.25rem 10.125rem;
}

.tech-four-wrap {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.0625rem;
}

@media (max-width: 992px) {
	.tech-four-wrap {
		grid-template-columns: 1fr;
		gap: 30px 0;
	}
}

.tech-four-item {
	display: flex;
	align-items: center;
	gap: 30px;
}

.tech-four-item:nth-child(2),
.tech-four-item:nth-child(4) {
	flex-direction: row-reverse;
}

@media (max-width: 992px) {

	.tech-four-item,
	.tech-four-item:nth-child(2),
	.tech-four-item:nth-child(4) {
		flex-direction: column;
		gap: 24px;
	}
}


.tech-four-text-box {
	width: 50%;
}

.tech-four-item:nth-child(1) .tech-four-text-box,
.tech-four-item:nth-child(3) .tech-four-text-box {
	text-align: right;
}

.tech-four-item:nth-child(2) .tech-four-text-box,
.tech-four-item:nth-child(4) .tech-four-text-box {
	text-align: left;
}

@media (max-width: 992px) {
	.tech-four-text-box {
		flex: none;
		width: 100%;
		text-align: center !important;
	}
}

.tech-four-num {
	font-size: 3.75rem;
	color: #2489b8;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 16px;
}

.tech-four-title {
	font-size: 1.875rem;
	color: #222;
	font-weight: bold;
	margin-bottom: 20px;
}

.tech-four-desc {
	font-size: 1.375rem;
	color: #111111;
	line-height: 2.25rem;
}

.tech-four-img-box {
	flex: 1;
	background: #000;
	overflow: hidden;
}

.tech-four-img-box img {
	width: 100%;
	height: auto;
	display: block;
	transition-duration: .5s;
}

.tech-four-item:hover .tech-four-img-box img {
	transform: scale(1.1);
	opacity: 0.7;
}

.core-tech-wrap {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1200px) {
	.core-tech-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.core-tech-wrap {
		grid-template-columns: 1fr;
	}
}

.core-tech-item {
	padding: 2.5rem 2.8125rem;
	border-right: 1px solid #34a0c3;
	border-bottom: 1px solid #34a0c3;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	cursor: pointer;
}

.core-tech-item:nth-child(3n) {
	border-right: none;
}

.core-tech-item:nth-last-child(-n+3) {
	border-bottom: none;
}

@media screen and (max-width: 1200px) {
	.core-tech-item:nth-child(3n) {
		border-right: 1px solid #34a0c3;
	}

	.core-tech-item:nth-child(2n) {
		border-right: none;
	}

	.core-tech-item:nth-last-child(-n+2) {
		border-bottom: none;
	}
}

@media screen and (max-width: 768px) {
	.core-tech-item {
		border-right: none;
	}

	.core-tech-item:nth-last-child(1) {
		border-bottom: none;
	}
}

.core-tech-icon-box {
	flex: 0 0 100px;
}

.core-tech-icon-box img {
	width: 100%;
	height: auto;
	display: block;
	transition-duration: .5s;
}

.core-tech-item:hover .core-tech-icon-box img {
	animation: icon-bounce 1 0.6s ease-out forwards;
}

.core-tech-text-box {
	flex: 1;
}

.core-tech-title {
	font-size: 2.25rem;
	font-weight: bold;
	color: #222;
	margin-bottom: 16px;
}

.core-tech-desc {
	font-size: 1.375rem;
	color: #333;
	line: height 36px;
	;
}

@media screen and (max-width: 768px) {
	.core-tech-title {
		font-size: 26px;
	}

	.core-tech-desc {
		font-size: 16px;
	}

	.core-tech-icon-box {
		flex: 0 0 70px;
	}
}

.res_pagefour {
	width: 100%;
	padding: 6.25rem 10.125rem;
	margin: 0 auto;
	background: url(../images/resBg.jpg)no-repeat;
	background-size: 100% 100%;
}

.text-box {
	text-align: center;
	margin-bottom: 5rem;
	padding: 0 10px;
}

.text-line1,
.text-line2 {
	font-size: 1.375rem;
	margin-bottom: 5rem;
	opacity: 0.95;
	line-height: 2.25rem;
	color: #fff;
}


.flow-wrap {
	position: relative;
	width: 100%;
}

.flow-line {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ffffff;
	z-index: 1;
}

.row-top,
.row-bottom {
	display: flex;
	justify-content: space-around;
	position: relative;
	z-index: 2;
}

.row-top {
	margin-bottom: 6.25rem;
	padding-right: 10rem;
}

.row-bottom {
	padding-left: 10rem;
}

.circle-item {
	width: 11.75rem;
	height: 11.75rem;
	border-radius: 50%;
	border: 0.9375rem solid rgba(255, 255, 255, 0.3);
	color: #00b8bc;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	padding: 10px;
	position: relative;
}

.circleText {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #03b9bd;
	font-size: 1.875rem;
	background: #fff;
	font-weight: bold;
	transition-duration: .5s;
}

.circle-item.active .circleText {
	background: #00b8bc;
	color: #fff;
}

.circle-item:hover .circleText {
	background: #00b8bc;
	color: #fff;
}

.row-top .circle-item:after {
	width: 0.125rem;
	height: 3.125rem;
	background: #fff;
	position: absolute;
	content: "";
	top: 10.9rem;
}

.row-bottom .circle-item:after {
	width: 0.125rem;
	height: 3.125rem;
	background: #fff;
	position: absolute;
	content: "";
	top: -4rem;
}

@media (max-width: 1024px) {
	.circle-item {
		width: 100px;
		height: 100px;
		font-size: 16px;
	}

	.row-top {
		margin-bottom: 60px;
	}

	.text-line1 {
		font-size: 19px;
	}

	.text-line2 {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.circle-item {
		width: 80px;
		height: 80px;

		border: 5px solid rgba(255, 255, 255, 0.3);
	}

	.circleText {
		font-size: 20px;
		line-height: 30px;
		padding: 10px;
	}

	.row-top {
		margin-bottom: 40px;
	}

	.text-box {
		margin-bottom: 40px;
	}

	.text-line1 {
		font-size: 18px;
		line-height: 34px;
	}

	.text-line2 {
		font-size: 14px;
	}

	.row-bottom .circle-item:after {

		top: -6.6rem;
	}

	.row-top .circle-item:after {
		top: 8.9rem;
	}
}

@media (max-width: 480px) {


	.row-top {
		margin-bottom: 30px;
	}
}

/* 研究方向 */
.yjfxBox {
	width: 100%;
	position: relative;
}

.circle-box {
	width: min(90vw, 58rem);
	height: min(90vw, 58rem);
	margin: 0 auto;
	position: relative;
}

.ring-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.item-card {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	/* width: 180px; */
	animation: float 2s ease-in-out infinite;
}

.item-card:nth-child(2) {
	animation-delay: 0.5s;
}

.item-card:nth-child(3) {
	animation-delay: 0.5s;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

/* 图标圆形 */
.icon-circle {
	width: 87px;
	height: 87px;
	border-radius: 50%;
	background: #28a0a0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 26px;
}

.icon-circle img {
	display: block;
	width: 100%;
}

.item-title {
	font-size: 1.875rem;
	color: #3099aa;
	font-weight: 600;
}

.item-desc {
	font-size: 1.375rem;
	color: #555;
	text-align: center;
	line-height: 2.25rem;
}

.item-1 {
	top: 10%;
	right: 0;
}

.item-2 {
	bottom: 10%;
	right: 0;
}

.item-3 {
	bottom: 10%;
	left: 0;
}

.item-4 {
	top: 10%;
	left: 0;
}

@media (max-width: 992px) {
	.title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.item-card {
		width: 140px;
		gap: 6px;
	}

	.icon-circle {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.item-title {
		font-size: 20px;
	}

	.item-desc {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.yjfxBox {
		position: static;
	}

	.item-card {
		position: static !important;
		width: 100%;
		margin: 0 auto;
	}

	.item-list {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px 20px;
		margin-top: 40px;
	}

	.title {
		font-size: 24px;
		margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.item-list {
		grid-template-columns: 1fr;
	}
}

.yjfx_pagetwo {
	width: 100%;
	padding: 5.9375rem 10.125rem 2rem 10.125rem;
}

.section-block {
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.75rem;
	color: #0099a0;
	text-align: center;
	margin-bottom: 12px;
	font-weight: 600;
}

.section-desc {
	font-size: 1.375rem;
	color: #444;
	text-align: center;
	width: 100%;
	margin: 0 auto 16px;
	line-height: 2.25rem;
}

.card-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.card-item {
	display: flex;
	flex-direction: column;
}

.card-icon {
	text-align: center;
}

.card-icon img {
	display: inline-block;
}

.card-item:hover .card-icon img {
	animation: icon-bounce 1 0.6s ease-out forwards;
}

.card-head {
	width: 100%;
	line-height: 6.375rem;
	text-align: center;
	font-size: 1.875rem;
	color: #fff;
	font-weight: 500;
}

.color-cyan {
	background-color: #00b8bc;
}

.color-blue {
	background-color: #1a7fa8;
}

.card-body {
	background-color: #f4f7fc;
	padding: 2.8125rem 4.2rem;
	min-height: 212px;
}

.card-body p {
	font-size: 1.375rem;
	color: #333;
	line-height: 36px;
}


@media (max-width: 992px) {
	.section-title {
		font-size: 26px;
	}

	.card-icon {
		font-size: 40px;
	}

	.card-head {
		font-size: 22px;
	}

	.card-wrap {
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.card-wrap {
		grid-template-columns: 1fr;
	}

	.section-block {
		margin-bottom: 40px;
	}

	.section-title {
		font-size: 22px;
	}

	.section-desc {
		font-size: 16px;
		line-height: 28px;
	}

	.card-body {
		min-height: auto;
		padding: 30px;
	}
}

.kjfx {
	background: url(../images/mBg.png) no-repeat center 95% #f3f6fb;
	padding: 8rem 10.125rem;
}

.kjfx-item-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2%;
	position: relative;
	z-index: 2;
	margin-top: 5.3125rem;
}

.kjfx-item-card {
	width: 25%;
	position: relative;
	min-height: 18.75rem;
}

.kjfx-item-head-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.kjfx-num-tag {
	width: 6.25rem;
	height: 3.5rem;
	background: url(../images/numBg.png) no-repeat;
	background-size: 100% 100%;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	flex-shrink: 0;
	left: 0;
}

.kjfx-num-line {
	width: 3px;
	height: 13.125rem;
	background: linear-gradient(#188294, rgba(24, 130, 148, 0));
	position: absolute;
	left: 0;
	top: 2.9375rem;
}

.kjfx-text-box {
	flex: 1;
	padding-top: 4.6875rem;
	padding-left: 2.5rem;
}

.kjfx-item-title {
	font-size: 1.875rem;
	color: #222;
	font-weight: 600;
	margin-bottom: 16px;
}

.kjfx-item-text {
	font-size: 1.375rem;
	color: #444;
	line-height: 2.25rem;
}

.kjfx-card-1 {
	margin-top: 5rem;
}

.kjfx-card-2 {
	margin-top: 0;
}

.kjfx-card-3 {
	margin-top: 5rem;
}


@media (max-width: 992px) {
	.kjfx-main-title {
		font-size: 30px;
	}

	.kjfx-item-title {
		font-size: 22px;
	}

	.kjfx-item-wrap {
		flex-direction: column;
		gap: 60px;
	}

	.kjfx-item-card {
		width: 100%;
	}

	.kjfx-card-1,
	.kjfx-card-2,
	.kjfx-card-3 {
		margin-top: 0;
	}

	.kjfx-head-box {
		margin-bottom: 50px;
	}
}

@media (max-width: 576px) {
	.kjfx-main-title {
		font-size: 24px;
	}

	.kjfx-sub-desc {
		font-size: 15px;
	}

	.kjfx-num-tag {
		width: 65px;
		height: 42px;
		font-size: 20px;
	}

	.kjfx-num-tag::after {
		border-width: 21px 18px;
		right: -18px;
	}

	.kjfx-item-title {
		font-size: 20px;
	}

	.kjfx-item-text {
		font-size: 16px;
		line-height: 30px;
	}

	.kjfx-item-head-row {
		gap: 12px;
	}
}

/* 技术方向 */
.jsfxBox {
	width: 100%;
	position: relative;
	margin-bottom: 5.3125rem;
}

.jsfxBox img {
	width: 100%;
	display: block;
}

.jsfxBox .page-title {
	width: 100%;
	position: absolute;
	top: 0;
}

.jsfxBox .page-title p {
	width: 50%;
	margin: 0 auto;
}

.zscqList {
	margin-top: 2.1875rem;
}

.zscqList ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.zscqList ul li {
	overflow: hidden;
}

.zscqList ul li img {
	display: block;
	transition-duration: .5s;
}

.zscqList ul li:hover img {
	transform: scale(1.1);
}

/* 产品中心 */
.product_banner {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.product_banner img {
	width: 100%;
	animation: run 12s linear infinite;
	position: relative;
	z-index: 1;
}

.proSearch {
	width: 57.5rem;
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -25%);
	background: #fff;
	border-radius: 3.125rem;
	height: 4.125rem;
	display: flex;
	justify-content: space-between;
	z-index: 2;
	overflow: hidden;
}

.proSearch input {
	width: 80%;
	outline: none;
	border: none;
	font-size: 20px;
	padding: 0 30px;
}

.proSearch .btn {
	width: 4.125rem;
	height: 4.125rem;
	border-radius: 100%;
	background: #0090a0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.proSearch .btn .iconfont {
	font-size: 30px;
}

.product_warp {
	width: 100%;
	padding: 6.25rem 10.125rem;
}

/* 模块通用标题 */
.module-title {
	font-size: 3.375rem;
	color: #0090a0;
	font-weight: 600;
	margin-bottom: 2.1875rem;
}

/* ========== 1、按产品类型模块 ========== */
.product-type-wrap {
	margin-bottom: 60px;
}

.type-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.type-card {
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* 图标水平翻转动画 */
.type-card:hover .type-icon img {
	transform: scaleX(-1);
	transition-duration: .5s;
}

.type-icon {
	width: 100%;
	min-height: 18.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f5f4;
	border-radius: 10px;
}

.type-icon img {
	width: 13.875rem;
	transition-duration: .5s;
}

.type-name {
	line-height: 5.25rem;
	font-size: 1.875rem;
	color: #333;
}

/* ========== 2、按成分筛选模块 ========== */
.ingredient-wrap {
	margin-bottom: 9.375rem;
}

.ingredient-tag-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 2rem;
}

.ing-tag {
	border-radius: 3.125rem;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 1.5rem;
	line-height: 3.75rem;
	color: #444;
	cursor: pointer;
	transition: all 0.25s ease;
}

.ing-tag:hover {
	background-color: #0693a3;
	color: #fff;
	border-color: #0693a3;
}


.dosage-wrap {
	display: flex;
	gap: 5rem;
	align-items: flex-start;
}

.dosage-title-box {
	flex-shrink: 0;
}

.dosage-list {
	flex: 1;

}

.homePro {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.homePro dl {
	width: 30%;
	margin-bottom: 2rem;
	cursor: pointer;
}

.homePro dl dt {
	width: 100%;
	border-radius: 0.9375rem;
	overflow: hidden;
}

.homePro dl dt img {
	display: block;
	width: 100%;
	transition-duration: .5s;
}

.homePro dl:hover dt img {
	transform: scale(1.1);
}

.homePro dl dd {
	width: 100%;
	text-align: center;
	line-height: 3.75rem;
	font-size: 1.875rem;
}

.homePro dl:hover dd {
	color: #0090a0;
}


@media screen and (max-width: 768px) {

	.type-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.ingredient-tag-list {
		gap: 1rem 1rem;
		grid-template-columns: repeat(3, 1fr);
	}

	.dosage-wrap {
		flex-direction: column;
	}

	.dosage-title-box {
		width: 100%;
	}

	.type-name {
		line-height: 40px;
		font-size: 20px;
	}

	.type-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.product_warp {
		padding: 30px 15px;
	}

	.ing-tag {
		font-size: 16px;
		line-height: 40px;
	}

}

@media screen and (max-width: 480px) {
	.type-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.ingredient-tag-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.dosage-list {
		grid-template-columns: 1fr;
	}

	.module-title {
		font-size: 25px;
	}

	.homePro dl {
		width: 48%;
	}

	.homePro dl dd {
		line-height: 36px;
		font-size: 18px;
	}
}

/* 产品列表 */
.pro-top-tabs {
	display: flex;
	gap: 25px;
	margin-bottom: 2.1875rem;
}

.pro-top-tab-item {
	padding: 0 2.1875rem;
	line-height: 3rem;
	border-radius: 3.125rem;
	background: #fff;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid #d3d3d3;
	font-size: 1.5rem;
}

.pro-top-tab-item.active {
	background: #3099aa;
	border: 1px solid #3099aa;
	color: #fff;
}

.pro-top-tab-item:not(.active):hover {
	background: #3099aa;
	border: 1px solid #3099aa;
	color: #fff;
}

.pro-top-tab-item.active:hover {
	background: #3099aa;
	border: 1px solid #3099aa;
	color: #fff;
}

/* 二级分类容器 */
.pro-second-tabs {
	margin-bottom: 3.125rem;
}

.pro-second-group {
	display: none;
	gap: 16px;
}

.pro-second-group.show {
	display: flex;
}

.pro-second-tab-item {
	color: #333;
	cursor: pointer;
	margin-right: 25px;
	border-bottom: 2px solid transparent;
	transition: all 0.2s ease;
	font-size: 1.25rem;
	line-height: 44px;
}

.pro-second-tab-item.active {
	color: #3099aa;
}

.pro-second-tab-item:not(.active):hover {
	color: #3099aa;

}

.pro-second-tab-item.active:hover {
	color: #3099aa;

}

/*  */
.product-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.8125rem;
	margin-bottom: 3.4375rem;

}


.product-card {
	background: url(../images/proBg.jpg) no-repeat right bottom #fff;
	background-size: 50%;
	border-radius: 18px;
	padding: 26px 20px 20px 20px;
	overflow: hidden;
	position: relative;
	top: 0;
	transition-duration: .5s;
}

.card-img-box {
	height: 17.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.product-card:hover {
	top: -8px;
	box-shadow: 0 0 15px #cceaeb;
}

.card-img-box img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.card-name {
	text-align: center;
	font-size: 1.375rem;
	color: #333;
	line-height: 3.25rem;
	margin-bottom: 5px;
}


.product-detail-wrap {
	max-width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	padding-top: 6.25rem;
	padding-bottom: 5rem;
}


.detail-left {
	background: url(../images/proBg.jpg) no-repeat right bottom #fff;
	background-size: 50%;
	border-radius: 24px;
	padding: 9.375rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 45rem;
	position: relative;
	overflow: hidden;
}

.detail-left img {
	display: inline-block;
	max-width: 100%;
}


.detail-right {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
}

.product-title {
	font-size: 2.25rem;
	color: #222;
	font-weight: 600;
	line-height: 5rem;
}


.module-title01 {
	font-size: 1.625rem;
	color: #222;
	font-weight: bold;
	margin-bottom: 0.9rem;
}

.material-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.material-tag {
	padding: 0 24px;
	background: #fff;
	border-radius: 6px;
	font-size: 1.25rem;
	color: #444;
	line-height: 2.375rem;
	border: 1px solid #eee;
	transition: all 0.2s;
	cursor: default;
}

.material-tag:hover {
	border-color: #48a1b9;
	color: #48a1b9;
}


.info-list {
	display: flex;
	flex-direction: column;
}

.info-item {
	font-size: 1.25rem;
	color: #444;
	line-height: 2.25rem;
}

.info-item strong {
	color: #222;
	min-width: 130px;
	display: inline-block;
}


.eat-icon-box {
	display: flex;
	gap: 40px;
	margin-top: 10px;
}

.eat-item {
	width: 6.25rem;
	height: 6.25rem;
	border-radius: 50%;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 1rem 0;
}

.icon-circle01 {
	width: 3.4375rem;
	height: 2.8125rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: .5s;
}

.eat-item:hover .icon-circle01 {
	transform: rotateY(180deg);
}

.eat-text {
	font-size: 1.125rem;
	color: #0090a0;
	line-height: 1.125rem;
}


@media screen and (max-width: 1024px) {
	.product-detail-wrap {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.product-title {
		font-size: 28px;
	}

	.module-title {
		font-size: 20px;
	}

	.detail-left {
		min-height: 420px;
	}

	.img-group img {
		max-height: 320px;
	}

	.eat-icon-box {
		justify-content: space-around;
	}
}

@media screen and (max-width: 640px) {


	.product-title {
		font-size: 24px;
	}

	.info-item {
		font-size: 16px;
		line-height: 30px;
	}

	.material-tag {
		padding: 6px 18px;
	}

	.eat-icon-box {
		gap: 20px;
		margin-bottom: 30px;
	}

	.icon-circle {
		width: 64px;
		height: 64px;
	}

	.img-group {
		flex-direction: column;
		align-items: center;
	}

	.img-group img {
		max-height: 260px;
	}
}

.moreProduct {
	padding-bottom: 4.3rem !important;
}

.moreProduct .swiper-slide {
	background: url(../images/proBg.jpg) no-repeat right bottom #fff;
	background-size: 50%;
	border-radius: 18px;
	padding: 26px 20px 20px 20px;
	overflow: hidden;
	position: relative;
	top: 0;
	transition-duration: .5s;
}

.moreProduct .swiper-slide img {
	display: initial;
	min-height: 100%;
	transition-duration: .5s;
}

.moreProduct .swiper-slide:hover img {
	transform: scale(0.9);
}

.moreProduct .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	background: #b5d8dc !important;
}

.moreProduct .swiper-pagination-bullet-active {
	background: #0090a0 !important;
}

/* 分页 */
.jianT {
	width: 100%;
	text-align: center;
	margin-top: 2.5rem;
}

.jianT li {

	line-height: 2.625rem;
	height: 2.625rem;
	display: inline-block;
	min-width: 2.625rem;
	margin: 0 4px;
	padding: 0;
}

.jianT li:nth-child(1) a,
.jianT li:last-child a {
	padding: 0 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}


.jianT li a {
	font-size: 1.25rem;
	color: #333;
	display: block
}

.jianT li a:hover {
	text-decoration: none;
	background: #3099aa;
	color: #fff;
	border-radius: 15px 0;
}

.jianT li .on {
	background: #3099aa;
	color: #fff;
	display: block;
	border-radius: 15px 0;
}

.jianT li:first-child a:hover {
	background: none;
}

.jianT li:last-child a:hover {
	background: none;
}

/* 关于我们 */
.about_banner {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.about_banner img {
	width: 100%;
	animation: run 12s linear infinite;
	position: relative;
	z-index: 1;
}

.aboutIntro {
	width: 53%;
	left: 10%;
	top: 33%;
	color: #fff;
	position: absolute;
	z-index: 2;
}

.aboutIntro h2 {
	line-height: 50px;
	margin-bottom: 25px;
	font-size: 3rem;
}

.aboutIntro h3 {
	font-weight: normal;
	font-size: 1.875rem;
	margin-bottom: 10px;
}

.aboutIntro p {
	font-size: 1.375rem;
	line-height: 2.25rem;
}

.enterprise-culture {
	width: 100%;
	padding: 6.25rem 10.125rem;
	margin: 0 auto;
}

.enterprise-culture_title {
	text-align: center;
	font-size: 3rem;
	color: #0898a0;
	margin-bottom: 2.5rem;
}

.enterprise-culture_content {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.enterprise-culture_img-box {
	overflow: hidden;
	background: #000;
	position: relative;
}

.enterprise-culture_img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition-duration: .5s;
	position: relative;
	z-index: 1;
}


.enterprise-culture_img-box:after {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
}

.enterprise-culture_content:hover .enterprise-culture_img-box:after {
	-webkit-animation: shine2 1s;
	animation: shine2 1s;
}


.enterprise-culture_content:hover .enterprise-culture_img-box img {
	transform: scale(1.1);
	opacity: 0.7;
}

@-webkit-keyframes shine2 {
	100% {
		left: 125%;
	}
}

@keyframes shine2 {
	100% {
		left: 125%;
	}
}

.enterprise-culture_text-box {
	background-color: #0898a0;
	color: #ffffff;
	padding: 60px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 48px;
}

.culture-item_title {
	font-size: 2.75rem;
	font-weight: 600;
}

.culture-item_desc {
	font-size: 1.5rem;
	opacity: 0.95;
}


@media screen and (max-width: 1024px) {
	.enterprise-culture_title {
		font-size: 36px;
		margin-bottom: 30px;
	}

	.enterprise-culture_content {
		grid-template-columns: 1fr;
	}

	.enterprise-culture_text-box {
		padding: 40px 30px;
		gap: 36px;
	}

	.culture-item_title {
		font-size: 32px;
	}

	.culture-item_desc {
		font-size: 18px;
	}
}

@media screen and (max-width: 640px) {


	.enterprise-culture_title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.enterprise-culture_text-box {
		padding: 30px 20px;
		gap: 28px;
	}

	.culture-item_title {
		font-size: 26px;
	}

	.culture-item_desc {
		font-size: 16px;
	}
}

/* 透明工厂 */
.transparent-factory {
	width: 100%;
	background: url(../images/aboutBg.jpg)no-repeat;
	background-size: 100% 100%;
	padding: 6.25rem 10.125rem 9.375rem 10.125rem;
}

.transparent-factory .page-title h2 {
	font-size: 3.375rem;
	color: #0090a0;
	padding-bottom: 1.5rem;
}

.factory-card-wrap {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 6.25rem;
}


.factory-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	/* aspect-ratio: 1 / 0.8; */
	cursor: pointer;
}

.factory-card .bg {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 30%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.factory-card_bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition-duration: .5s;
}

.factory-card:hover .factory-card_bg {
	transform: scale(1.1);
}

.factory-card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 144, 160, 0.8);
	opacity: 0;
	transition-duration: .5s;
}

.factory-card:hover::after {
	opacity: 1;
}

.factory-card_text {
	position: absolute;
	width: 100%;
	top: 78%;
	padding: 20px;
	color: #fff;
	z-index: 2;
	transition-duration: .7s;
	display: flex;
	flex-wrap: wrap;
}

.factory-card:hover .factory-card_text {
	bottom: auto;
	top: 15%;
}

.factory-card_icon {
	width: 3.75rem;
	height: 3.75rem;
	margin-bottom: 8px;
	fill: #fff;
}

.factory-card_main {
	line-height: 3.75rem;
	font-size: 1.75rem;
	font-weight: 500;
	padding-left: 0.9375rem;
}

.factory-card_sub {
	width: 100%;
	font-size: 1.375rem;
	margin-top: 10px;
	line-height: 2.25rem;
	opacity: 0;
	display: none;
	transition: opacity 0.3s ease;
	padding-left: 4.68rem;
}

.factory-card:hover .factory-card_sub {
	opacity: 1;
	display: block;
}

.flow-view {
	margin-top: 60px;
}

.flow-view_title {
	text-align: center;
	font-size: 2.25rem;
	color: #222;
	margin-bottom: 15px;
}

.flow-view_tip {
	text-align: center;
	font-size: 1.375rem;
	color: #666;
	margin-bottom: 3.125rem;
}

.flow-view_content {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
}

.homevideo__left {
	width: 53%;
	position: relative;
	background: #f5f7f9;
}

.homevideo__cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.homevideo__play-btn {
	position: absolute;
	left: 80px;
	bottom: 80px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 4px solid #fff;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.homevideo__play-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}

.homevideo__play-btn::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 32px solid #fff;
	margin-left: 6px;
}

.homevideo__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

.homevideo__left.active .homevideo__cover,
.homevideo__left.active .homevideo__play-btn {
	display: none;
}

.homevideo__left.active .homevideo__video {
	display: block;
}


.capacity-table-wrap {
	width: 43%;
	display: flex;
	flex-direction: column;
}

.table-title {
	font-size: 2.25rem;
	color: #222;
	margin-bottom: 1.8rem;
}

.table-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid #bcdcde;
}

.table-row.head {
	background: #0898a0;
	color: #fff;
}

.table-cell {
	padding: 0 10px;
	text-align: center;
	border-right: 1px solid #bcdcde;
	font-size: 1.25rem;
	line-height: 4.375rem;
}

.table-row.head .table-cell {
	font-size: 1.5rem;
	font-weight: bold;
}

.table-cell:last-child {
	border-right: none;
}

.table-row:not(.head):nth-child(even) {
	background: #e0eef0;
}


@media screen and (max-width: 1200px) {
	.factory-card-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.factory-top__title {
		font-size: 32px;
	}


	.factory-card_text {
		padding: 10px;
	}

	.factory-card_text img {
		width: 25px;
		height: 25px;
	}

	.factory-card_main {
		line-height: 25px;
		font-size: 18px;
	}

	.factory-card_sub {
		width: 100%;
		font-size: 16px;
		padding-left: 0;
	}

	.capacity-table-wrap {
		width: 100%;
	}

	.table-cell {
		font-size: 16px;
	}
}

@media screen and (max-width: 480px) {


	.table-cell {
		border-right: none;

	}

	.table-row.head .table-cell:last-child {
		border-bottom: none;
	}

}

/* 企业荣誉 */
.Corporate_Honors {
	width: 100%;
	padding: 4.9375rem 10.125rem;
	background: #0090a0;
}

.Corporate_Honors .page-title h2,
.Corporate_Honors .page-title p {
	color: #fff !important;
}


.honor-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
	justify-content: center;
}

.honor-tag-item {
	padding: 10px 28px;
	border: 1px solid #fff;
	border-radius: 999px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.honor-tag-item:hover {
	background-color: #fff;
	color: #0898a0;
}

.isoswiper {
	margin-bottom: 2.8125rem;
	margin-top: 60px;
}

.isoswiper .swiper-slide {
	height: 13.125rem;
	background: #fff;
	border-radius: 0.9375rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.isoswiper .swiper-slide img {
	width: 80%;
	display: block;
}

/* 领导致辞 */
.leaderBox {
	width: 100%;
	background: url(../images/leaderBg.jpg)no-repeat;
	background-size: 100% 100%;
	padding: 7rem 7.8125rem 11rem 7.8125rem;
	position: relative;
}

.leaderText {
	width: 60%;
}

.leaderText h2 {
	line-height: 3.75rem;
	color: #0090a0;
	font-size: 2.25rem;
	margin-bottom: 2.1875rem;
}

.leaderText .pText {
	font-size: 1.5rem;
	line-height: 2.4rem;
	padding-bottom: 2.1875rem;
}

.leaderPic {
	width: 27.6875rem;
	height: 52.75rem;
	position: absolute;
	right: 13.75rem;
	bottom: 0;
}

.leaderPic img {
	display: block;
	width: 100%;
}

.signature {
	width: 100%;
	display: flex;
	justify-content: right;
	align-items: center;
	font-size: 1.5rem;
}

.signature img {
	margin-left: 15px;
}

.News-swiper .swiper-slide {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #000;
}

.News-swiper .swiper-slide img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
	opacity: 0.7;
	transition-duration: .5s;
}

.News-swiper .swiper-slide .pText {
	width: 80%;
	left: 10%;
	bottom: 1.875rem;
	position: absolute;
	z-index: 2;
	color: #fff;
}

.News-swiper .swiper-slide .pText .title {
	line-height: 2.5rem;
	font-size: 1.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}

.News-swiper .swiper-slide .pText .time {
	display: table;
	margin-top: 15px;
	line-height: 2.25rem;
	background: #0090a0;
	border-radius: 0.3125rem;
	padding: 0 10px;
	font-size: 1.25rem;
}

.News-swiper .swiper-slide:hover img {
	transform: scale(1.1);
	opacity: 0.85;
}

.Corporate_Honors .jianT li a {
	color: #fff;
}

.Corporate_Honors .jianT li .on {
	background: #fff;
	color: #0090a0;
}

.Corporate_Honors .jianT li a:hover {
	background: #fff;
	color: #0090a0;
}

.Corporate_Honors .jianT li:first-child a:hover {
	background: none;
}

.Corporate_Honors .jianT li:last-child a:hover {
	background: none;
}

.Corporate_Honors .jianT {
	margin-top: 4.5rem;
}

/* 定制服务 */
.hero-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-section img {
	animation: run 12s linear infinite;
}

.hero-title {
	width: 100%;
	text-align: center;
	position: absolute;
	z-index: 1;
	font-size: 3.375rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 2.5rem;
	letter-spacing: 0.125rem;
	top: 35%;
}

.hero-title:after {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	opacity: 0.2;
	content: "custom-tailor";
	top: -1.8rem;
	position: absolute;
	left: 0;
	font-size: 3.75rem;
}

/* ===== 服务卡片区域 ===== */
.service-cards {
	width: 100%;
	left: 0;
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0;
	padding: 0 8.5rem;
	top: 55%;
}

.service-card-wrapper {
	width: 12%;
	display: flex;
	align-items: center;
	position: relative;
}

.service-card {
	width: 100%;
	min-height: 14.0625rem;
	background: #2092a8;
	border-radius: 0.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	transition: all 0.3s ease;
	cursor: pointer;
	color: #fff;
}

.service-card:hover {
	transform: translateY(-0.3125rem);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.service-icon {
	width: 3.125rem;
	height: 3.125rem;
	margin-bottom: 0.625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: .5s;
}

.service-card-wrapper:hover .service-icon {
	transform: rotateY(180deg);
}

.service-icon svg {
	width: 100%;
	height: 100%;
}

.service-name {
	font-size: 1.625rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
	text-align: center;
}

.service-desc {
	font-size: 1.125rem;
	text-align: center;
	line-height: 1.85rem;
	position: relative;
}

.s-arrow {
	color: rgba(255, 255, 255, 0.6);
	font-size: 3rem;
	margin: 0 0.5rem;
	font-weight: 300;
	user-select: none;
	position: absolute;
	right: -2.4rem;
}

/* ===== 第二区域 ===== */
.process-section {
	background-color: #f3f6fb;
	padding: 3.75rem 1.25rem;
}

.process-container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 6.25rem;
	align-items: flex-start;
}

/* 左侧流程图 */
.flow-left {
	flex: 1;
	min-width: 0;
	padding-top: 5rem;
}

.flow-header {
	display: flex;
	align-items: center;
	gap: 6.5625rem;
	position: relative;
	padding-left: 3.4375rem;
}

.flow-header-line {
	position: absolute;
	top: 50%;
	left: 15%;
	right: 15%;
	height: 0.125rem;
	background: #1abc9c;
	z-index: 0;
}

.flow-node {
	width: 9.6rem;
	height: 9.6rem;
	border-radius: 50%;
	border: 1px solid #1c8097;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	position: relative;
	z-index: 1;
	padding: 0.625rem;
	position: relative;
}

.flowText {
	width: 100%;
	height: 100%;
	position: relative;
	background: #1c8097;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
}

.flow-node.highlight {
	border: 1px solid #32a2c5;
}

.flow-node.highlight .flowText {
	background: #32a2c5;
}

.flow-vertical-line {
	width: 2px;
	height: 45px;
	background: #8caebc;
	margin-left: 50.5%;
	position: relative;
	margin-bottom: 13px;

}

.flow-vertical-line::after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translateX(-50%);
	width: 11px;
	height: 11px;
	border: 2px solid #8caebc;
	border-radius: 100%;
}

.flow-horizontal-connector {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	margin-bottom: 1.25rem;
}

.connector-main-line {
	position: absolute;
	top: 0;
	left: 12.5%;
	right: 12.5%;
	height: 0.125rem;
	background: #8eb2be;
}

.connector-drop {
	width: 0.125rem;
	height: 1.875rem;
	background: #8eb2be;
	position: relative;
}

.connector-drop::after {
	content: '';
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translateX(-50%);
	width: 11px;
	height: 11px;
	border: 2px solid #8caebc;
	border-radius: 100%;
}

.flow-categories {
	display: flex;
	justify-content: space-between;
	gap: 0.9375rem;
}

.category-column {
	flex: 1;
	text-align: center;
}

.category-title {
	background: #1c8097;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 2.75rem;
	margin-bottom: 2rem;
	letter-spacing: 0.25rem;
	border-radius: 0.625rem;
}

.category-item {
	width: 96%;
	font-size: 1.125rem;
	color: #555;
	line-height: 2.6rem;
	margin: 0.9375rem auto;
	background: #e2e7eb;
}

.category-item:nth-child(3),
.category-item:nth-child(5) {
	background: none;
}

.category-item:last-child {
	border-bottom: none;
}

/* 右侧流程 */
.flow-right {
	flex: 1;
	min-width: 0;
	padding-top: 0.625rem;
}

.timeline {
	position: relative;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	position: relative;
}

.timeline-marker {
	flex-shrink: 0;
	margin-right: 1.25rem;
}

.timeline-label {
	padding: 6px;
	border: 1px solid #bcd8e7;
	color: #fff;
	font-size: 1.375rem;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	position: relative;
	border-radius: 8px;
}

.timeline-label .pText {
	width: 100%;
	height: 100%;
	line-height: 3.375rem;
	background: #d4ebf4;
	color: #299fc3;
	min-width: 10.3125rem;
}

.timeline-connector {
	width: 2px;
	height: 2.1875rem;
	background: #99c7db;
	margin: 0 auto;
	position: relative;
}

.timeline-connector::after {
	content: '';
	position: absolute;
	bottom: -0.8125rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0.6875rem;
	height: 0.6875rem;
	border: 2px solid #99c7db;
	border-radius: 100%;
}

.timeline-content {
	flex: 1;
	padding-top: 0.375rem;
}

.timeline-title-inline {
	font-size: 1.1rem;
	color: #525052;
	line-height: 1.8rem;
}

.line1 {
	width: 5.5rem;
	position: absolute;
	height: 2px;
	background: #91c3d9;
	left: 14rem;
	top: 48%;
}

.line1:after {
	content: '';
	position: absolute;
	left: -13px;
	top: -6px;
	width: 11px;
	height: 11px;
	border: 2px solid #99c7db;
	border-radius: 100%;
}

.line2 {
	width: 24rem;
	position: absolute;
	height: 2px;
	background: #91c3d9;
	right: -4.8rem;
	top: 48%;
}

.line2:after {
	content: '';
	position: absolute;
	right: -13px;
	top: -6px;
	width: 11px;
	height: 11px;
	border: 2px solid #99c7db;
	border-radius: 100%;
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	.hero-title {
		font-size: 1.75rem;
		margin-bottom: 1.875rem;
		top:20%;
	}
	.service-desc {
	    font-size: 16px;}

	.service-cards {
		gap: 0.625rem;
		padding: 0 3%;
		top:30%;
	}

	.service-card-wrapper {
		flex-direction: column;
	}

	.service-card {
		width: 7.5rem;
		height: 8.125rem;
	}

	.arrow {
		transform: rotate(90deg);
		margin: 0.25rem 0;
	}

	.process-container {
		flex-direction: column;
		gap: 2.5rem;
	}

	.flow-header {
		gap: 40px;
		padding-left: 0;

	}

	.flow-node {
		width: 4.5rem;
		height: 4.5rem;
		font-size: 0.75rem;
	}

	.flow-categories {
		gap: 0.5rem;
	}

	.category-title {
		font-size: 18px;
		letter-spacing: 0.125rem;
	}

	.category-item {
		font-size: 16px;
		height: 60px;
		line-height: 22px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.timeline-marker {
		width: 100%;
		margin-right: 0.75rem;
	}

	.timeline-label {
		font-size: 0.75rem;
		padding: 0.375rem 0.5rem;
	}

	.timeline-title-inline {
		font-size: 16px;
		padding-left: 0;
		line-height: 26px;
	}

	.timeline-label .pText {
		font-size: 20px;
	}

	.flow-node {
		width: 130px;
		height: 130px;
		font-size: 20px;
	}

	.flow-left {
		width: 100%;
	}

	.line2 {
		display: none;
	}

	.flow-vertical-line {
		margin-left: 58%;
	}

	.line1 {
		width: 2.2rem;
		left: 11rem;
		top: 48%;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 13px;
	}

	.hero-section {
		padding: 2.5rem 0.75rem 3.125rem;
	}

	.service-card {
		width: 6.5rem;
		height: 7.5rem;
	}



	.flow-categories {
		flex-wrap: wrap;
		gap: 0.625rem;
	}

	/* 	.category-column {
		min-width: calc(50% - 0.3125rem);
	} */

	.timeline-item {
		flex-direction: column;
		margin-bottom: 1rem;
	}

	.timeline-connector {
		display: none;
	}

	.flow-header-line {
		left: 10%;
		right: 10%;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	html {
		font-size: 15px;
	}

/* 	.service-card {
		width: 8rem;
		height: 8.75rem;
	}

	.process-container {
		gap: 2rem;
	} */
}

.detailBox {
	width: 100%;
	padding-top:80px;
}

.detailTitle {
	width: 100%;
	line-height: 3.625rem;
	position: relative;
	font-size: 1.5625rem;
	font-weight: bold;
	margin: 1.25rem 0 1.875rem 0;
	color: #202020;
}

.detailTitle:after {
	width: 20px;
	height: 3px;
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	background: #2570e8;
}

.detailText {
	width: 100%;
	font-size: 1.2rem;
	line-height: 2.2rem;
	color: #717171;
	padding-bottom: 2.1875rem;
}

.detailText img {
	display: inline-block;
	max-width: 100%;
}

.smallTitle {
	color: #2670E8;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 3.25rem;
}
.newsTitle {
	width: 100%;
	border-bottom: 1px solid #ebeef3;
	padding-bottom: 1.875rem;
	margin-bottom: 1.875rem;
}

.newsTitle h1 {
	width: 100%;
	text-align: center;
	font-size: 1.75rem;
	line-height: 2.375rem;
	font-weight: bold;
	margin-bottom: 0.625rem;
}

.newsTitle .bur {
	width: 100%;
	display: flex;
	justify-content: center;
	font-size: 1rem;
	color: #717171;
}

.newsTitle .bur p {
	display: flex;
	align-items: center;
	margin: 0 0.9375rem;
	line-height: 2.25rem;
}
/*  */
@media only screen and (max-width: 1440px) {}

@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1190px) {}

@media only screen and (max-width: 996px) {}

@media only screen and (max-width: 768px) {
	.menu-card {
		width: 100%;
		border-radius: 10px;
		padding: 10px;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}

	.menu-item {
		width: 48%;
		line-height: 40px;
		margin: 0 1%;
	}

	.menu-txt {
		font-size: 18px;
	}

	.content-title {
		font-size: 24px;
	}

	.content-title small {
		font-size: 14px;
	}

	.right-content {
		width: 100%;
	}

	.text-block p {
		line-height: 26px;
		font-size: 16px;
	}

	.text-block img {
		width: 80% !important;
		margin-left: 10% !important;
		margin-bottom: 15px;
		float: inherit !important;
	}

	.environment_list dl {
		width: 100%;
	}

	.environment_list dl dd {
		line-height: 46px;
		font-size: 17px;
	}

	.info-card {
		position: relative;
		top: 0;
		right: 0;
		width: 100%;
		padding: 20px;
		margin-bottom: 20px;
	}

	.company-title {
		font-size: 22px;

		margin-bottom: 10px;
		line-height: 28px;
	}

	.qrcode-box {
		width: 101px;
		position: relative;
		right: 0;
		top: 0;
	}

	.bannerText {
		font-size: 22px;
	}

	.bannerText .pText {
		font-size: 18px;
	}

	.pc-banner {
		display: none;
	}

	.mobile-banner {
		display: block;
	}

	.case-item {
		padding: 15px;
	}

	.case-img {
		width: 100%;
		flex-shrink: 0;
	}

	.case-desc {
		font-size: 16px;
	}

	.news-item {
		padding: 15px;
	}

	.news-img {
		width: 100%;
		flex-shrink: 0;
	}

	.news-desc {
		font-size: 16px;
	}

	.news-content .pText {
		font-size: 16px;
		line-height: 30px;
	}

	.news-content .pText img {
		display: inline-block;
		max-width: inherit;
		width: 100%;
	}

	.page-btn {
		display: flex;
		font-size: 14px;
		align-items: center;
		margin-bottom: 10px;
	}

	.aboutIntro {
		width: 90%;
		left: 5%;
		top: 26%;
	}

	.aboutIntro h2 {
		line-height: 50px;
		margin-bottom: 25px;
		font-size: 26px;
	}

	.aboutIntro h3 {
		font-size: 20px;
	}

	.aboutIntro p {
		font-size: 16px;
		line-height: 26px;
	}

	.about_banner img {
		opacity: 0.6;
	}

	.about_banner {
		background: #000;
	}

	.enterprise-culture {
		padding: 30px 3%;
		overflow: hidden;
	}

	.transparent-factory {
		padding: 30px 3%;
		overflow: hidden;
	}

	.homevideo__left {
		width: 100%;
	}

	.homevideo__play-btn {
		width: 70px;
		height: 70px;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.Corporate_Honors,
	.leaderBox,
	.content-wrap,
	.yjfx_pagetwo,
	.kjfx {
		padding: 30px 3%;
		overflow: hidden;
	}

	.honor-tag-item {
		width: 46%;
	}

	.honor-tag-item {
		width: 48%;
		/* font-size: 16px; */
		padding: 5px 10px;
		line-height: 30px;
	}

	.leaderPic {
		width: 100%;
		height: auto;
		position: relative;
		right: 0;
		bottom: -30px;
	}

	.leaderText {
		width: 100%;
	}

	.bread {
		text-align: left;
		font-size: 16px;
		position: relative;
		right: 0;
		top: 0;
	}

	.cert-left-box h2 {
		font-size: 34px;
		margin-bottom: 20px;

	}

	.card-desc {
		font-size: 16px;
		line-height: 30px;
	}

	.proSearch {
		width: 80%;
		top: 45%;
		height: 4.125rem;
	}

	.ingredient-wrap {
		margin-bottom: 50px;
	}

	.dosage-wrap {
		gap: 1rem;
	}

	.pro-top-tab-item {
		padding: 0 13px;
		font-size: 17px;
	}

	.pro-top-tabs {
		display: flex;
		gap: 20px;
		margin-bottom: 15px;
	}

	.product-container {
		grid-template-columns: repeat(1, 1fr);
	}

	.product-detail-wrap {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.detail-left {
		padding: 40px;
		height: 240px;
	}

	.detail-left img {
		max-width: 70%;
	}

	.research_item ul li {
		width: 48%;
		margin-bottom: 18px;
	}

	.res_pagetwo {
		width: 100%;
		padding: 30px 3%;
	}

	.core-tech-item {
		border-right: none !important;
		border-top: none !important;
		border-left: none !important;
		border-bottom: 1px solid #34a0c3 !important;
	}

	.core-tech-item:nth-child(1) {
		padding-top: 0;
	}

	.core-tech-item:last-child {
		border-bottom: none !important;
	}

	.res_pagefour {
		width: 100%;
		padding: 30px 3%;
	}

	.row-top {
		margin-bottom: 6.25rem;
		padding-right: 0;
	}

	.row-bottom {
		padding-left: 0;
	}

	.card-icon img {
		width: 50px;
	}

	.jsfxBox {
		margin-bottom: 30px;
		padding-top: 100px;
	}

	.jsfxBox .page-title p {
		width: 100%;
		margin: 0 auto;
		padding-top: 20px;
	}

	.zscqList ul {
		grid-template-columns: repeat(2, 1fr);
	}
	.service-card-wrapper {
	    width: 30%;
	    display: flex;
	    align-items: center;
	    position: relative;
	}
	.service-card {
	        width: 100%;
	        height: 7.5rem;
	    }
}