﻿
/*通用类*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans SC";
	/*font-weight: 400 !important;*/
	outline: none;
}

body {
	margin: 0 auto;
	font-size: 14px;
	font-family: 'Noto Sans SC', PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, sans-serif;
	background: #fff;
	text-align: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
	zoom: 80%;
}

h1,
h2,
h3 {}

img {
	border: none;
}

a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none !important;
}

a:hover {
	color: #009693;
}

ul {
	list-style-type: none;
}

em {
	font-style: normal;
}

.lt {
	float: left;
}

.rt {
	float: right;
}

input.sub,
label {
	border: none;
	cursor: pointer;
}

input,
textarea {
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	outline: none;
}

table {
	border-collapse: collapse;
}

table td,
table th {
	padding: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #ccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #ccc;
}

div.clear {
	font: 0px Arial;
	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 增强版清除浮动 */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}


/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 顶部栏 */
.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 1001;
	background: rgba(0, 0, 0, 0.2);
	transition: opacity 0.3s ease;
}

.top-bar .container {
	height: 50px;
	line-height: 50px;
}

.top-bar-left {
	float: left;
	font-size: 16px;
	color: #fff;
}

.top-bar-right {
	float: right;
	font-size: 16px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 30px;
	height: 50px;
}

.top-bar-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: #fff;
}

.top-bar-item img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
	height: 115px;
}

.header.scrolled {
	top: 0;
}

.header:hover,
.header.scrolled,
.header.mega-open {
	background: #fff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* hover / 滚动时导航文字变深色 */
.header:hover .nav-link,
.header.scrolled .nav-link,
.header.mega-open .nav-link {
	color: #333;
}

/* hover / 滚动时替换 logo 图片 */
.logo-dark {
	display: none;
}

.header:hover .logo-white,
.header.scrolled .logo-white,
.header.mega-open .logo-white {
	display: none;
}

.header:hover .logo-dark,
.header.scrolled .logo-dark,
.header.mega-open .logo-dark {
	display: inline;
}

/* hover / 滚动时替换搜索图标 */
.header:hover .search-btn,
.header.scrolled .search-btn,
.header.mega-open .search-btn {
	background-image: url('../images/sousuo1.png');
}

/* hover / 滚动时替换语言图标 */
.header:hover .language-current img,
.header.scrolled .language-current img,
.header.mega-open .language-current img {
	content: url('../images/yuyan1.png');
}



.logo {
	float: left;
	display: inline-block;
	margin-top: 30px;
}

.logo img {
	height: 55px;
	vertical-align: middle;
}

/* PC端导航样式 */
.nav-pc {
	float: right;
	margin-left: 30px;
}

.nav-item {
	position: relative;
	margin: 0 15px;
	float: left;
	height: 115px;
	line-height: 115px;
}

.nav-link {
	color: #333;
	text-decoration: none;
	font-size: 20px;

	padding: 10px 0;
	position: relative;
	transition: color 0.3s ease;
	color: #FFF;
}

.nav-link:hover {
	color: #26A69A !important;
}
.nav-link:focus{
	color:#fff;
}
.nav-item-active .nav-link {
	color: #26A69A !important;
}

.nav-item-active .nav-link::after {
	width: 100%;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #26A69A;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu-item {
	list-style: none;
}

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 8px 20px;
	transition: all 0.3s ease;
}

.sub-menu-link:hover {
	background-color: #f5f5f5;
	color: #2e4e9e;
}

/* 移动端菜单按钮 */
.menu-toggle {
	float: right;
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
	margin-left: 15px;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
	top: 10px;
}

.menu-toggle span:nth-child(4) {
	top: 20px;
}

/* 移动端导航样式 */
.nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 400px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1000;
	overflow-y: auto;
	padding: 70px 0 30px;
}

.nav-mobile.active {
	right: 0;
}

.nav-mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #009693;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

/* 移动端菜单行布局 */
.mobile-menu-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

/* 移动端展开按钮样式 */
.mobile-expand-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #009693;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 4px;
}

.nav-mobile-link {
	display: block;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	width: calc(100% - 50px);
}

.nav-mobile-link.has-children::after {
	content: "";
}

.nav-mobile-link.active.has-children::after {
	content: "";
}

.nav-mobile-sublist {
	display: none;
	list-style: none;
	background-color: #f9f9f9;
}

.nav-mobile-sublist.active {
	display: block;
}

.nav-mobile-subitem {
	border-top: 1px solid #eee;
}

.nav-mobile-sublink {
	display: block;
	padding: 12px 20px 12px 40px;
	color: #666;
	text-decoration: none;
}

/* 遮罩层 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 20px;
	color: #999;
	cursor: pointer;
	margin-left: auto;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/* 搜索按钮样式 */
.sousuo {
	position: relative;
	margin-left: 30px;
	float: right;
	margin-top: 47px;
}

.search-icon {
	width: 21px;
	height: 21px;
	cursor: pointer;
	margin-right: 10px;

}

.search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/sousuo.png') no-repeat center;
	background-size: contain;
}

.search-form {
	display: none;
}

/* ===== Mega Menu ===== */
.mega-menu {
	position: fixed;
	top: 165px;
	/* 50px top-bar + 115px header */
	left: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999;
	border-top: 1px solid #f5f5f5;
	height: 330px;
}
.mega-menu::after{
	display: block;
	content: "";
	width: 720px;
	height: 118px;
	background: url(../images/nav.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index:-1;
}
/*.nav-item:hover .mega-menu {
	opacity: 1;
	visibility: visible;
}*/

.mega-menu-open {
	opacity: 1 !important;
	visibility: visible !important;
}

/* 滚动后 header 上移 50px，mega-menu 也跟着调整 */
.header.scrolled~* .mega-menu,
.header.scrolled .mega-menu {
	top: 115px;
}

.mega-inner {
	display: flex;
	gap: 80px;
	align-items: flex-start;
	height: 330px;
}

/* 左侧 */
.mega-left {
	flex: 0 0 38%;
	padding-right: 100px;
	border-right: 1px solid #e8e8e8;
	height: 330px;
}

.mega-title {
	font-size: 40px;

	color: #222;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.mega-desc {
	font-size: 16px;
	color: #888;
	line-height: 1.8;
	margin-bottom: 10px;
	text-align: left;
}

.mega-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 25px;

	color: #5d6060;
	padding-bottom: 6px;
	border-bottom: 2px solid #26A69A;
	transition: color 0.2s;
	line-height: 1.6;
}

.mega-more:hover {
	color: #5d6060;
}

/* 右侧 */
.mega-right {
	flex: 1;
	padding-top: 22px;
}

.mega-list {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.mega-list li {}

.mega-list li:last-child {
	border-bottom: none;
}

.mega-list li a {
	display: block;
	padding: 10px 0;
	font-size: 20px;
	color: #333;

	transition: color 0.2s, padding-left 0.2s;
	line-height: 1.5;
}

.mega-list li a:hover {
	color: #26A69A;
	padding-left: 6px;
}

.mega-list li.active a {
	color: #26A69A;


}

.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 170px;
	background: #fff;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 60px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-100%);
	transition: opacity 0.3s ease, transform 0.3s ease;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.search-overlay.active {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.search-overlay-inner {
	display: flex;
	align-items: center;
	gap: 16px;
}

.search-overlay-icon {
	display: block;
	width: 20px;
	height: 20px;
	background: url('../images/sousuo.png') no-repeat center;
	background-size: contain;
	flex-shrink: 0;
	opacity: 0.5;
}

.search-overlay-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 16px;
	color: #333;
	background: transparent;
	font-family: inherit;
}

.search-overlay-input::placeholder {
	color: #aaa;
	font-size: 16px;
}

.search-overlay-close {
	font-size: 22px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	flex-shrink: 0;
	transition: color 0.2s;
}

.search-overlay-close:hover {
	color: #333;
}

.search-overlay-line {
	width: 100%;
	height: 1px;
	background: #e0e0e0;
	margin-top: 16px;
}

/* 语言切换样式 */
.yuyan_tab {
	position: relative;
	margin-left: 0px;
	z-index: 1001;
	float: right;
	margin-top: 40px;
}

.language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 6px 12px;
	border-radius: 4px;
	transition: all 0.3s ease;
	gap: 6px;
}

.language-current img {
	width: 22px;
	height: auto;
}

.language-list {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 140px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	padding: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: all 0.25s ease;
}

/* 顶部小三角 */
.language-list::before {
	content: '';
	position: absolute;
	top: -6px;
	right: 18px;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: rotate(45deg);
	box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

.yuyan_tab:hover .language-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-list li {
	list-style: none;
}

.language-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	color: #333;
	font-size: 14px;

	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.language-list li a:hover {
	background: #f4f4f4;
	color: #26A69A;
}

.language-list li a img {
	width: 22px;
	height: auto;
	border-radius: 2px;
}

/* 移动端搜索和语言切换 */
.mobile-functions {
	padding: 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
}

.mobile-search {
	position: relative;
	flex: 1;
	margin-right: 15px;
}

.mobile-search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.mobile-search-btn {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../images/search.svg') no-repeat center;
	background-size: contain;
	filter: brightness(0) saturate(100%);
}

.mobile-search-form {
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 15px;
	display: none;
	z-index: 1001;
}

.mobile-search-form.active {
	display: flex;
}

.mobile-search-form input {
	flex: 1;
	height: 36px;
	border: 1px solid #e0e0e0;
	border-radius: 4px 0 0 4px;
	padding: 0 10px;
}

.mobile-search-form button {
	height: 36px;
	background: #2e4e9e;
	color: #fff;
	border: none;
	border-radius: 0 4px 4px 0;
	padding: 0 15px;
	cursor: pointer;
}

.mobile-search-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 16px;
	color: #999;
	cursor: pointer;
}

.mobile-language {
	position: relative;
}

.mobile-language-current {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.mobile-language-current img {
	width: 20px;
	height: auto;
	margin-right: 5px;
}

.mobile-language-list {
	position: absolute;
	top: 40px;
	right: 0;
	min-width: 120px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	padding: 5px 0;
	display: none;
	z-index: 1001;
}

.mobile-language-list.active {
	display: block;
}

.mobile-language-list li {
	list-style: none;
}

.mobile-language-list li a {
	display: flex;
	align-items: center;
	padding: 8px 15px;
	color: #333;
	text-decoration: none;
	transition: all 0.3s ease;
}

.mobile-language-list li a:hover {
	background: #f5f5f5;
}

.mobile-language-list li a img {
	width: 20px;
	height: auto;
	margin-right: 10px;
}


@media only screen and (max-width: 1400px) {
	.nav-item {
		margin: 0 10px;
	}

	.nav-link {
		font-size: 16px;
	}
}

@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
	}

	.nav-item {
		margin: 0 8px;
	}

	.nav-link {
		font-size: 12px;
	}

	.sousuo {
		margin-left: 15px;
	}

	.yuyan_tab {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 1000px) {
	.header-container {
		max-width: 720px;
	}

	.nav-item {
		margin: 0 5px;
	}

	.nav-link {
		font-size: 14px;
	}

	.sousuo {
		margin-left: 10px;
	}

	.yuyan_tab {
		margin-left: 10px;
	}

	.language-current span {
		display: none;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-container {
		padding: 10px 15px;
	}

	.logo img {
		height: 30px;
	}

	/* 手机端 header 固定白色背景 */
	.header {
		background: #fff !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
		height: 60px;
	}

	.nav-item {
		height: 60px;
		line-height: 60px;
	}

	/* 手机端固定显示深色 logo */
	.logo-white {
		display: none !important;
	}

	.logo-dark {
		display: inline !important;
	}

	/* logo 垂直居中 */
	.logo {
		margin-top: 0;
		height: 60px;
		display: flex;
		align-items: center;
	}

	.logo img {
		height: 32px;
	}

	/* menu-toggle 垂直居中，更大点击区域 */
	.menu-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 36px;
		height: 36px;
		margin-top: 12px;
		border-radius: 4px;
		background: transparent;
		transition: background 0.2s;
	}

	.menu-toggle:hover {
		background: rgba(0, 141, 130, 0.08);
	}

	.menu-toggle span {
		background: #009693;
		border-radius: 2px;
		position: absolute;
	}

	.menu-toggle span:nth-child(1) {
		top: 8px;
	}

	.menu-toggle span:nth-child(2),
	.menu-toggle span:nth-child(3) {
		top: 17px;
	}

	.menu-toggle span:nth-child(4) {
		top: 26px;
	}

	.sousuo {
		margin-right: 15px;
		margin-top: 3px;
	}

	.yuyan_tab {
		display: none;
	}

	.search-btn {
		display: none;
	}

	.mobile-search-form {
		width: 140%;
	}

	.mobile-search-form button {
		font-size: 10px;
	}

	.mobile-functions {
		border: none;
	}

	.menu-toggle {
		margin-left: 0px;
	}

	.sousuo {
		display: none;
	}
}


/* ===== Banner ===== */
.banner-section {
	position: relative;
	overflow: hidden;
}

.banner-slide {
	position: relative;
	width: 100%;
	height: 920px;
	overflow: hidden;
}

.banner-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 视频 slide */
.banner-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 视频 slide 高度继承 banner-slide */

.banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* 左侧竖排装饰文字图片 */
.banner-bg-text {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 80%;
	display: flex;
	align-items: flex-end;
	z-index: 1;
	pointer-events: none;
}
.banner-bg-textr{
	position: absolute;
	right: 20px;
	bottom: 20px;
	height: 80%;
	display: flex;
	align-items: flex-end;
	z-index: 1;
	pointer-events: none;
}
@media only screen and (max-width: 750px) {
	.banner-bg-textr{
		display:none;
	}
}
.banner-bg-text img {
	height: 100%;
	width: auto;
	object-fit: contain;
	object-position: left center;
}

/* 内容区 */
.banner-slide .container {
	position: relative;
	z-index: 2;
	width:90%;
}

.banner-content {
	width: 100%;
	text-align: center;
}

.banner-title, .banner-title-cn {
	font-size: 4.7rem;
	font-weight: bold !important;
	color: #fff;
	line-height: 2;
	margin-bottom: 40px;
	letter-spacing: 0px;
	text-transform: uppercase;
	margin-top: 160px;
}
.banner-title-cn{
	font-size: 7rem;
	letter-spacing: 10px;
}
.banner-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	margin-top: 67px;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	padding: 8px 24px;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	transition: color 0.3s ease, border-color 0.3s ease;
	z-index: 0;
}

.banner-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #26A69A;
	transition: width 0.35s ease;
	z-index: -1;
}

.banner-link:hover {
	color: #fff;
	border-color: #26A69A;
}

.banner-link:hover::before {
	width: 100%;
}

/* 分页器 */
.banner-swiper .swiper-pagination {
	display: none;
}

.banner-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active {
	background: #fff;
	width: 28px;
	border-radius: 5px;
}

/* 滚动后 header 上移，banner 跟着调整 */
.header.scrolled~.banner-section {
	margin-top: 115px;
}

/* ===== fp_box_1 About Us ===== */
.fp_box_1 {
	padding: 50px 0 0 0;
	background: #f7fdfd;
	;
	overflow: hidden;
	position: relative;
}

/* 绿色高亮块：伪元素从 fp1-highlight 顶部一直延伸到 fp_box_1 底部 */
.fp1-highlight {
	position: relative;
	padding: 28px 32px;
	padding-left: 50px;
}

.fp1-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: -500px;
	/* 足够大的值，被 fp_box_1 的 overflow:hidden 裁掉 */
	left: 0;
	right: calc(-50vw + 50%);
	background: #33b9ae;
	z-index: 0;
}

.fp1-inner {
	position: relative;
}

/* 左边图片区 */
.fp1-left {
	float: left;
	width: 50%;
}

.fp1-left>img {
	width: 100%;
	display: block;
}

/* 右边文字区 */
.fp1-right {
	float: left;
	width: 50%;
	box-sizing: border-box;
}

/* 四个切换按钮：绝对定位在 fp1-inner 底部，从左图左边开始 */
.fp1-tabs {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	z-index: 2;
}
.fp1-tabs .fp1-tabalink{
	width: 215px;
	height: 66px;
	line-height: 66px;
	border: none;
	background: #fff;
	color: #333;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	text-align:center;
}
.fp1-tab {
	width: 286px;
	height: 66px;
	border: none;
	background: #fff;
	color: #009693;
	font-size: 20px;

	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	position: relative;
}
.fp1-tab::after {
	content: "";
	position: absolute;
	right: 0;
	top: 3px;
	bottom: 3px;
	width: 1px;
	background: #e8e8e8;
}
.fp1-tab:last-child {
	border-right: none;
}
.fp1-tab:hover {
	color: #000;
}
.fp1-tab.active {
	background: #009693;
	color: #fff;
}
.fp1-tab.active::after {
	display: none;
}
/* 右边文字区 */
.fp1-right {
	flex: 1;

	flex-direction: column;
	justify-content: center;
	padding-bottom: 0;
}

.fp1-title {
	font-size: 64px;
	color: #009693;
	margin: 0 0 24px 0;
	letter-spacing: 1px;
	padding-left: 50px;
	line-height:50px;
}

.fp1-pane {
	display: none;
}

.fp1-pane.active {
	display: flex;
	flex-direction: column;
}

.fp1-desc {
	font-size: 20px;
	color: #555;
	line-height: 38px;
	margin-bottom: 28px;
	text-align: left;
	padding-left: 50px;
	text-align: justify;
}

/* 绿色高亮块：伪元素背景向右撑到浏览器边缘，文字保持在原位 */
.fp1-highlight p {
	position: relative;
	z-index: 1;
	font-size: 20px;
	color: #fff;
	line-height: 1.7;
	text-align: justify;
}

/* ===== fp_box_1 响应式 ===== */

/* 1400px */
@media only screen and (max-width: 1400px) {
	.fp1-left>img {
		height:800px;
	}
	.fp1-title {
		font-size: 52px;
	}

	.fp1-desc {
		font-size: 18px;
	}

	.fp1-highlight p {
		font-size: 18px;
	}

	.fp1-tab {
		width: 180px;
		font-size: 16px;
	}
	.fp1-tabs .fp1-tabalink{
		width: 180px;
		font-size: 16px;
	}
}

/* 1200px */
@media only screen and (max-width: 1200px) {
	.fp1-left>img {
		height:732px;
	}
	.fp1-title {
		font-size: 42px;
		padding-left: 30px;
	}

	.fp1-desc {
		font-size: 16px;
		padding-left: 30px;
	}

	.fp1-highlight {
		padding-left: 30px;
	}

	.fp1-highlight p {
		font-size: 15px;
	}

	.fp1-tab {
		width: 150px;
		height: 56px;
		font-size: 14px;
	}
	.fp1-tabs .fp1-tabalink{
		width: 150px;
		height: 56px;
		line-height: 56px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 991px) {
	.fp1-left>img {
		height:860px;
	}
}

/* 750px 手机端 */
@media only screen and (max-width: 750px) {
	.fp_box_1 {
		padding: 40px 0 0 0;
	}

	.fp1-left {
		float: none;
		width: 100%;
	}
	.fp1-left>img {
		height:250px;
	}

	.fp1-right {
		float: none;
		width: 100%;
	}

	.fp1-title {
		font-size: 32px;
		padding-left: 15px;
		margin-top: 24px;
	}

	.fp1-desc {
		font-size: 14px;
		padding-left: 15px;
	}

	.fp1-highlight {
		padding: 20px 15px;
	}

	.fp1-highlight p {
		font-size: 14px;
	}

	.fp1-tabs {
		position: static;
		transform: none;
		width: 100%;
	}

	.fp1-tab {
		flex: 1;
		width: auto;
		height: 50px;
		font-size: 12px;
	}
	.fp1-tabs .fp1-tabalink{
		flex: 1;
		width: auto;
		height: 50px;
		line-height: 50px;
		font-size: 12px;
	}

	.fp1-inner {
		padding-bottom: 0;
	}
}

/* ===== Banner 响应式 ===== */
@media only screen and (min-width: 1600px) {
	.banner-title {
		font-size: 5rem;
	}
}
/* 1400px */
@media only screen and (max-width: 1400px) {
	.banner-slide {
		height: 750px;
	}

	.banner-title {
		font-size: 4rem;
	}
	.banner-title-cn{
		font-size: 5.6rem;
	}
}

/* 1200px */
@media only screen and (max-width: 1200px) {
	.banner-slide {
		height: 600px;
	}

	.banner-title {
		font-size: 2.6rem;
	}
	.banner-title-cn{
		font-size: 4.2rem;
	}

	.banner-link {
		font-size: 14px;
		padding: 7px 20px;
	}

	.banner-bg-text {
		height: 65%;
	}
}
@media only screen and (max-width: 991px) {
	.banner-title {
		font-size: 1.9rem;
	}
	.banner-title-cn{
		font-size: 3.1rem;
	}
}
/* 750px 手机端 */
@media only screen and (max-width: 750px) {
	.banner-section {
		margin-top: 60px;
	}

	.banner-slide {
		height: 240px;
	}

	.banner-title, .banner-title-cn {
		font-size: 18px;
		line-height: 1.4;
		margin-bottom: 10px;
		margin-top:0;
	}

	.banner-link {
		font-size: 12px;
		padding: 6px 16px;
		letter-spacing: 0;
		margin-top: 30px;
	}

	.banner-bg-text {
		height: 50%;
	}

	.banner-swiper .swiper-pagination {
		bottom: 15px;
	}

	.top-bar {
		display: none;
	}

	.header {
		top: 0;
	}
}

/* ===== 手机端菜单底部搜索+语言 ===== */
.mobile-functions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-top: 1px solid #eee;
	gap: 16px;
}

.mobile-search-inline {
	flex: 1;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.mobile-search-inline input {
	flex: 1;
	height: 38px;
	border: none;
	padding: 0 12px;
	font-size: 14px;
	outline: none;
	background: transparent;
	width:100%;
}

.mobile-search-inline button {
	width: 40px;
	height: 38px;
	border: none;
	background: #f5f5f5;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mobile-search-inline button img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.mobile-lang-inline {
	display: flex;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}

.mobile-lang-btn {
	padding: 8px 14px;
	font-size: 13px;

	color: #555;
	background: #fff;
	border-right: 1px solid #ddd;
	transition: all 0.2s;
}

.mobile-lang-btn:last-child {
	border-right: none;
}

.mobile-lang-btn.active,
.mobile-lang-btn:hover {
	background: #009693;
	color: #fff;
}

/* 手机端菜单联系信息 */
.mobile-contact-info {
	padding: 16px 20px;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mobile-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #555;
}

.mobile-contact-item img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}

/* ===== fp_box_2 Core Competitiveness ===== */
.fp_box_2 {
	position: relative;
	overflow: hidden;
	height: 790px;
}

/* 背景图 */
.fp2-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.fp2-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 内容区 */
.fp_box_2 .container {
	position: relative;
	z-index: 1;
	padding-top: 60px;
	padding-bottom: 208px;
	height: 100%;
}


.fp2-main-title {
	font-size: 64px;
	margin-top: 0px;
	color: #fff;
	margin-bottom: 12px;
	letter-spacing: 1px;
	font-weight: 300;
}

.fp2-pane {
	display: none;
}

.fp2-pane.active {
	display: block;
}

.fp2-sub-title {
	font-size: 32px;
	color: #fff;
	margin-bottom: 20px;
	padding-bottom: 25px;
	position: relative;
	font-weight: 700;
}

.fp2-sub-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 2px;
	background: #fff;
}

.fp2-desc {
	font-size: 20px;
	color: rgba(255, 255, 255, 1);
	line-height: 38px;
	margin-bottom: 30px;
	max-width: 80%;
	text-align: left;
	height: 230px;
}

.fp2-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 20px;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	padding-bottom: 4px;
	transition: border-color 0.3s;
	margin: 30px 0;
}
.fp2-link img{
	filter: brightness(0) invert(1);
}
.fp2-link:hover {
	border-color: #fff;
	color: #fff;
}

/* 底部四个切换按钮 */
.fp2-tabs {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 2;
}

.fp2-tab {
	flex: 0 0 25%;
	width: 25%;
	height: 188px;
	padding: 20px 10px;
	border: none;
	background: rgba(100, 180, 200, 0.35);
	color: #fff;
	font-size: 20px;

	cursor: pointer;
	transition: background 0.3s ease;
	font-family: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fp2-tab:last-child {
	border-right: none;
}

.fp2-tab img {
	width: auto;
	max-width: 60px;
	object-fit: contain;
}

.fp2-tab:hover {
	background: #3cb8ae;
}

.fp2-tab.active {
	background: #3cb8ae;
}

/* ===== fp_box_2 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.fp_box_2 {
		height: 700px;
	}

	.fp2-main-title {
		font-size: 52px;
	}

	.fp2-sub-title {
		font-size: 26px;
	}

	.fp2-desc {
		font-size: 17px;
		height:200px;
	}

	.fp2-link {
		font-size: 17px;
	}

	.fp2-tab {
		height: 160px;
		font-size: 14px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_box_2 {
		height: 640px;
	}

	.fp2-main-title {
		font-size: 42px;
	}

	.fp2-sub-title {
		font-size: 22px;
	}

	.fp2-desc {
		font-size: 15px;
		line-height: 30px;
		max-width:100%;
	}

	.fp2-link {
		font-size: 15px;
	}

	.fp2-content {
		max-width: 70%;
	}

	.fp2-tab {
		height: 140px;
		font-size: 13px;
	}

	.fp_box_2 .container {
		padding-bottom: 160px;
	}
}
@media only screen and (max-width: 991px) {
	.fp2-desc {
		font-size: 14px;
		line-height: 22px;
		max-width:100%;
		height:160px;
	}
}
@media only screen and (max-width: 750px) {
	.fp_box_2 {
		height: 630px;
	}

	.fp2-main-title {
		font-size: clamp(24px, 6vw, 42px);
	}

	.fp2-sub-title {
		font-size: 18px;
	}

	.fp2-desc {
		font-size: 14px;
	}

	.fp2-link {
		font-size: 14px;
	}

	.fp2-content {
		max-width: 100%;
	}

	.fp_box_2 .container {
		padding-top: 30px;
		padding-bottom: 120px;
		height: auto;
	}

	.fp2-tab {
		height: 100px;
		font-size: 12px;
		gap: 6px;
	}

	.fp2-tab img {
		max-width: 36px;
	}
}

/* ===== fp_box_3 Corporate Sustainability ===== */
.fp_box_3 {
	padding: 80px 0;
	background: #f7fdfd;
	;
}

.fp3-inner {
	position: relative;
}

/* 左边三张图片 */
.fp3-left {
	float: left;
	width: 55%;
	display: flex;
	gap: 10px;
}

.fp3-card {
	width: calc(33.33% - 7px);
	height: 600px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 0;
	flex-shrink: 0;
}

.fp3-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.fp3-card.active::after {
	opacity: 0;
}

.fp3-card.active {
	/* 无描边 */
}

.fp3-card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fp3-card-letter {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-height: 40%;
	object-fit: contain;
	pointer-events: none;
	z-index: 999999;
}

.fp3-card-label {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	font-size: 26px;

}

.fp3-card-label img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

/* 右边文字 */
.fp3-right {
	float: right;
	width: 40%;
}

.fp3-title {
	font-size: 64px;

	color: #009693;
	margin-bottom: 16px;
	line-height: 1.1;
	letter-spacing: 1px;
}

.fp3-pane {
	display: none;
}

.fp3-pane.active {
	display: block;
}

.fp3-sub-title {
	font-size: 32px;

	color: #009693;
	margin-bottom: 12px;
	padding-bottom: 12px;
	position: relative;
}

.fp3-sub-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 2px;
	background: #009693;
}

.fp3-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: justify;
	height:250px;
}

.fp3-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 20px;
	color: #009693;

	border-bottom: 1px solid #009693;
	padding-bottom: 4px;
	transition: opacity 0.3s;
}

.fp3-link:hover {
	opacity: 1;
	color: #009693;
}

/* 箭头 */
.fp3-arrows {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.fp3-arrow {
	width: 44px;
	height: 44px;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: opacity 0.3s;
}

.fp3-arrow:hover {
	opacity: 0.7;
}

.fp3-arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ===== fp_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.fp3-card {
		height: 500px;
	}

	.fp3-title {
		font-size: 52px;
	}

	.fp3-sub-title {
		font-size: 26px;
	}

	.fp3-desc {
		font-size: 17px;
		height:210px;
	}

	.fp3-link {
		font-size: 17px;
	}

	.fp3-card-label {
		font-size: 24px;
	}

	.fp3-card-label img {
		width: 26px;
		height: 26px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp3-left {
		width: 50%;
	}

	.fp3-right {
		width: 45%;
	}

	.fp3-card {
		height: 420px;
	}

	.fp3-title {
		font-size: 42px;
	}

	.fp3-sub-title {
		font-size: 22px;
	}

	.fp3-desc {
		font-size: 15px;
		height:180px;
	}

	.fp3-link {
		font-size: 15px;
	}

	.fp3-card-label {
		font-size: 18px;
	}

	.fp3-card-label img {
		width: 22px;
		height: 22px;
	}
}
@media only screen and (max-width: 991px) {
	.fp3-desc {
		height:230px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_3 {
		padding: 40px 0;
	}

	.fp3-left {
		float: none;
		width: 100%;
		margin-bottom: 30px;
	}

	.fp3-right {
		float: none;
		width: 100%;
	}

	.fp3-card {
		width: calc(33.33% - 7px);
		height: 260px;
	}

	.fp3-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.fp3-sub-title {
		font-size: 20px;
	}

	.fp3-desc {
		font-size: 14px;
		height:200px;
	}

	.fp3-link {
		font-size: 14px;
	}

	.fp3-card-label {
		font-size: 14px;
		bottom: 10px;
	}

	.fp3-card-label img {
		width: 16px;
		height: 16px;
	}

	.fp2-desc {
		max-width: 100%;
		line-height: 1.6;
	}

	.fp_box_2 {
		margin-top: 30px;
	}
}

/* ===== fp_box_4 Exhibitions ===== */
.fp_box_4 {
	padding: 0px 0 80px;
	background: #f7fdfd;
	;

}

.fp4-title {
	font-size: 64px;

	color: #009693;
	margin-bottom: 40px;
	letter-spacing: 1px;
}

/* 轮播容器 */
.fp4-swiper {
	overflow: hidden;
	width: 100%;
}

.fp4-swiper .swiper-slide {
	height: auto;
}

/* 卡片 */
.fp4-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
}

.fp4-img {
	display: block;
	width: 100%;
	overflow: hidden;
}

.fp4-img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.fp4-card:hover .fp4-img img {
	transform: scale(1.05);
}

.fp4-info {
	padding: 20px;
	text-align: left;
	height: 280px;
	position: relative;
}

.fp4-info h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.4;
	text-align: left;
}

.fp4-info p {
	font-size: 20px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 16px;
	text-align: left;
}

.fp4-link {
	display: inline-flex;
	align-items: center;
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.fp4-link img {
	width: 28px;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s;
}

.fp4-link:hover img {
	transform: translateX(4px);
}

/* 底部导航：箭头 + 线条 */
.fp4-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 40px;
}

.fp4-prev,
.fp4-next {
	width: 27px;
	height: 26px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: opacity 0.3s;
}

.fp4-prev:hover,
.fp4-next:hover {
	opacity: 0.6;
}

.fp4-prev img,
.fp4-next img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fp4-scrollbar {
	flex: 1;
	height: 2px;
	background: #ddd;
	position: relative;
	border-radius: 2px;
}

.fp4-scrollbar .swiper-scrollbar-drag {
	background: #009693;
	border-radius: 2px;
	cursor: pointer;
}

/* ===== fp_box_4 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.fp4-title {
		font-size: 52px;
	}

	.fp4-info h3 {
		font-size: 18px;
	}

	.fp4-info p {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp4-title {
		font-size: 42px;
	}

	.fp4-info h3 {
		font-size: 16px;
	}

	.fp4-info p {
		font-size: 15px;
	}

	.fp4-img img {
		height: 180px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4 {
		padding: 0px 0 40px 0;
	}

	.fp4-title {
		font-size: clamp(28px, 7vw, 42px);
		margin-bottom: 24px;
	}

	.fp4-img img {
		height: 200px;
	}

	.fp4-info {
		height: auto;
	}

	.fp4-info h3 {
		font-size: 16px;
	}

	.fp4-info p {
		font-size: 14px;
	}

	.fp4-nav {
		margin-top: 24px;
	}
}

/* ===== fp_box_5 News Grid ===== */
.fp_box_5 {
	padding: 30px 0 50px 0;
	background: #f7fdfd;
}

.fp5-top {
	margin-top: -70px;
	margin-bottom: 30px;
}

.fp5-more {
	float: right;
	font-size: 20px;

	color: #009693;
	transition: opacity 0.3s;
}
.fp5-more img{
	transform: rotate(45deg);
}
.fp5-more:hover {
	opacity: 0.7;
	color: #009693;
}

/* 左右布局 */
.fp5-left {
	float: left;
	width: 55%;
}

.fp5-right {
	float: right;
	width: 42%;
}

/* 左边每一行 */
.fp5-item {
	margin-bottom: 14px;
	background: #fff;
}

.fp5-item:last-child {
	margin-bottom: 0;
}

.fp5-item-img {
	float: left;
	width: 42%;
}

.fp5-item-img a {
	display: block;
}

.fp5-item-img img {
	width: 100%;
	height: 195px;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	transition: transform 0.4s;
}

.fp5-item-img img:hover {
	transform: scale(1.03);
}

.fp5-item-text {
	float: right;
	width: 54%;
	padding-left: 20px;
	text-align: left;
}

.fp5-item-text h3 {
	font-size: 20px;

	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fp5-item-text h3 a {
	color: #333;
	transition: color 0.3s;
	font-weight: 600;
}

.fp5-item-text h3 a:hover {
	color: #009693;
}

.fp5-item-text p {
	font-size: 20px;
	color: #666;
	line-height: 1.7;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 右边大图 */
.fp5-big {
	position: relative;
	height: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.fp5-big>a {
	display: block;
}

.fp5-big img {
	width: 100%;
	height: 370px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.fp5-big:hover img {
	transform: scale(1.03);
}

.fp5-big-text {
	background: #3cb8ae;
	padding: 24px;
}

.fp5-big-text h3 {
	font-size: 20px;
	margin-top: 0;
	color: #fff;
	margin-bottom: 10px;
	line-height: 1.4;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fp5-big-text h3 a {
	color: #fff;
	transition: color 0.3s;
	font-weight: 600;
}

/* .fp5-big-text h3 a:hover {
	color: #009693;
} */

.fp5-big-text p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== fp_box_5 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.fp5-item-text h3 {
		font-size: 17px;
	}

	.fp5-item-text p {
		font-size: 16px;
	}

	.fp5-big-text h3 {
		font-size: 17px;
	}

	.fp5-big-text p {
		font-size: 16px;
	}

	.fp5-more {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.fp5-item-text h3 {
		font-size: 15px;
	}

	.fp5-item-text p {
		font-size: 14px;
	}

	.fp5-big-text h3 {
		font-size: 15px;
	}

	.fp5-big-text p {
		font-size: 14px;
	}

	.fp5-big-text {
		padding: 16px;
	}

	.fp5-more {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 {
		padding: 40px 0;
	}

	.fp5-left {
		float: none;
		width: 100%;
	}

	.fp5-right {
		float: none;
		width: 100%;
		margin-top: 20px;
	}

	.fp5-item-img {
		float: none;
		width: 100%;
		margin-bottom: 12px;
	}

	.fp5-item-img img {
		width: 100%;
		height: auto;
	}

	.fp5-item-text {
		float: none;
		width: 100%;
	}

	.fp5-item-text h3 {
		font-size: 16px;
	}

	.fp5-item-text p {
		font-size: 14px;
	}

	.fp5-big img {
		width: 100%;
		height: auto;
	}

	.fp5-big-text h3 {
		font-size: 16px;
	}

	.fp5-big-text p {
		font-size: 14px;
	}

	.fp5-more {
		font-size: 16px;
	}
}

/* ===== Footer ===== */
.site-footer {
	background: url(../images/footer11.jpg) no-repeat;
	background-size: 100% 100%;
	padding: 50px 0 0;
	color: #ccc;
}

.site-footer .container {
	width: 1500px;
}

.footer-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 30px;
}

/* 左边品牌区 */
.footer-brand {
	flex-shrink: 0;
	width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 150px;
	height: auto;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
}

.footer-social a {
	display: block;
	width: 30px;
	height: 30px;
}

.footer-social a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.3s;
}

.footer-social a:hover img {
	opacity: 0.7;
}

.footer-subscribe {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 36px;
	width: 100%;
	border: 1px solid #009693;
	border-radius: 30px;
	color: #009693;
	font-size: 16px;

	transition: all 0.3s;
	white-space: nowrap;
}

.footer-subscribe img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.footer-subscribe:hover {
	background: #009693;
	color: #fff;
}

/* 中间导航 */
.footer-nav {
	flex: 1;
	display: flex;
	justify-content: space-between;
	gap: 4px;
	margin: 0 40px;
}

.footer-col {
	min-width: 0;
}

/* About us */
.footer-col:nth-child(1) {
	width: 130px;
	flex-shrink: 0;
}

/* Product Focus */
.footer-col:nth-child(2) {
	width: 120px;
	flex-shrink: 0;
}

/* Core Technologies */
.footer-col:nth-child(3) {
	width: 180px;
	flex-shrink: 0;
}

/* Corporate Sustainability */
.footer-col:nth-child(4) {
	width: 220px;
	flex-shrink: 0;
}

/* News & Events */
.footer-col:nth-child(5) {
	width: 130px;
	flex-shrink: 0;
}

/* Contact us */
.footer-col:nth-child(6) {
	width: 90px;
	flex-shrink: 0;
}

.footer-col h4 {
	font-size: 18px;
	color: #fff;
	margin-bottom: 14px;
	text-align: left;
	white-space: nowrap;
}

.footer-col ul {
	list-style: none;
	text-align: left;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	font-size: 16px;
	color: #999;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: #009693;
}

/* 右边联系 */
.footer-contact {
	flex-shrink: 0;
	width: 190px;
}

.footer-contact h4 {
	font-size: 16px;

	color: #009693;
	margin-bottom: 8px;
	text-align: left;
}

.footer-contact p {
	font-size: 14px;
	color: #999;
	line-height: 1.7;
	margin-bottom: 16px;
	text-align: left;
}

/* 底部版权 */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
	text-align: left;
}

.footer-bottom p {
	font-size: 13px;
	color: #666;
}

/* ===== Footer 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.site-footer .container {
		max-width: 1200px;
	}

	.footer-col h4 {
		font-size: 14px;
	}

	.footer-col ul li a {
		font-size: 13px;
	}

	.footer-nav {
		gap: 16px;
	}
}

@media only screen and (max-width: 1200px) {
	.site-footer .container {
		max-width: 960px;
	}

	.footer-main {
		flex-wrap: wrap;
	}

	.footer-brand {
		width: 100%;
		display: flex;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.footer-logo {
		margin-bottom: 0;
	}

	.footer-social {
		margin-bottom: 0;
	}

	.footer-nav {
		width: 100%;
		flex-wrap: wrap;
	}

	.footer-col {
		flex: 0 0 calc(33.33% - 14px);
	}

	.footer-contact {
		width: 100%;
		margin-top: 20px;
	}
}

@media only screen and (max-width: 750px) {
	.site-footer .container {
		max-width: 100%;
		padding: 0 15px;
	}

	.site-footer {
		padding: 30px 0 0;
	}

	.footer-main {
		display: block;
	}

	.footer-brand {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}

	.footer-contact {
		float: none;
		width: 100%;
		margin-left: 0;
		margin-bottom: 24px;
	}

	.footer-nav {
		display: flex;
		flex-wrap: wrap;
		gap: 0;
		margin-left: 0;
	}

	.footer-col {
		flex: none;
		width: 50%;
		margin-bottom: 20px;
		box-sizing: border-box;
		padding-right: 10px;
	}

	.footer-col:nth-child(1),
	.footer-col:nth-child(2),
	.footer-col:nth-child(3),
	.footer-col:nth-child(4),
	.footer-col:nth-child(5),
	.footer-col:nth-child(6) {
		width: 50%;
	}

	.footer-col h4 {
		font-size: 16px;
		margin-bottom: 10px;
		white-space: normal;
	}

	.footer-col ul li a {
		font-size: 14px;
		white-space: normal;
	}

	.footer-subscribe {
		font-size: 14px;
		padding: 8px 20px;
	}
}

/* ===== 内页 Banner ===== */
.page-banner {
	position: relative;
	overflow: hidden;
}

.page-banner-img {
	width: 100%;
	height: auto;
	display: block;
}

.page-banner-text {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.page-banner-text h2 {
	font-size: 64px;

	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	line-height: 1.2;
}

/* 内页 Banner 响应式 */
@media only screen and (max-width: 1400px) {
	.page-banner-text h2 {
		font-size: 50px;
	}
}

@media only screen and (max-width: 1200px) {
	.page-banner-text h2 {
		font-size: 38px;
	}
}

@media only screen and (max-width: 750px) {
	.page-banner {
		margin-top: 60px;
	}

	.page-banner-text h2 {
		font-size: clamp(20px, 5vw, 38px);
		padding: 0 20px;
	}
}

/* ===== cp_box_1 产品中心 ===== */
.cp1-tabs-section {
	padding: 100px 0 89px;
	background: #fff;
}

.cp1-tabs {
	display: flex;
	justify-content: center;
	gap: 300px;
}

.cp1-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	font-family: inherit;
}

.cp1-tab span {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	transition: color 0.3s;
}

/* 图标圆形容器 */
.cp1-tab .cp1-tab-circle {
	width: 115px;
	height: 115px;
	border-radius: 50%;
	background: #e8edef;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.cp1-tab .cp1-tab-icon {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.cp1-tab .cp1-tab-icon-off {
	display: none;
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.cp1-tab.active .cp1-tab-circle {
	background: #66c0be;
}

.cp1-tab.active span {
	color: #009693;
}

.cp1-tab.active .cp1-tab-icon {
	display: none;
}

.cp1-tab.active .cp1-tab-icon-off {
	display: block;
}

.cp1-tab:hover .cp1-tab-circle {
	background: #66c0be;
}

.cp1-tab.active:hover .cp1-tab-circle {
	background: #66c0be;
}

/* 下部分：表格内容 */
.cp1-content-section {
	padding: 50px 0 60px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cp1-pane {
	display: none;
}

.cp1-pane.active {
	display: block;
}

/* 表格 */
.cp1-table-wrap {
	overflow-x: auto;
}

.cp1-table-wrap::-webkit-scrollbar {
	height: 6px;
}

.cp1-table-wrap::-webkit-scrollbar-track {
	background: #e8e8e8;
	border-radius: 3px;
}

.cp1-table-wrap::-webkit-scrollbar-thumb {
	background: #009693;
	border-radius: 3px;
}

.cp1-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 20px;
	min-width: 800px;
}


/* 表头：虚线贯穿文字 */
.cp1-table thead {
	min-width: 800px;
	display: table-header-group;

}

tbody {
	margin-top: 30px;
}

/* .cp1-table thead tr {
	position: relative;
	background-image: linear-gradient(to right, #009693 50%, transparent 50%);
	background-size: 10px 2px;
	background-repeat: repeat-x;
	background-position: center;
} */

.cp1-table thead th {
	padding: 0 0;
	font-size: 20px;

	color: #009693;
	text-align: center;
	white-space: nowrap;
}

.cp1-table thead th span {
	display: inline-block;
	background: #d4e9e8;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

/* 遮挡虚线末端 */
.cp1-table thead th:first-child {
	padding-left: 50px;
	position: relative;
}

.cp1-table thead th:last-child {
	padding-right: 50px;
	position: relative;
}

/* 数据行 */
.cp1-table tbody tr {
	height: 75px;
	background: #fff;
	border: 1px solid #d4ece9;
	transition: background 0.2s;
}

.cp1-table tbody tr:hover {
	background: rgba(0, 141, 130, 0.04);
}

.cp1-table tbody td {
	padding: 0px;
	font-size: 20px;
	color: #666;
	text-align: center;
	height: 75px;
	border-top: 1px solid #d4ece9;
	border-bottom: 1px solid #d4ece9;
}

.cp1-table tbody td:first-child {
	border-left: 1px solid #d4ece9;
	border-radius: 6px 0 0 6px;
}

.cp1-table tbody td:last-child {
	border-right: 1px solid #d4ece9;
	border-radius: 0 6px 6px 0;
}

.cp1-table tbody td strong {
	color: #333;

}

/* 表1 API products 列宽：6列 */
.cp1-pane[data-index="0"] .cp1-table th:nth-child(1),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(1) {
	width: 15%;
}

.cp1-pane[data-index="0"] .cp1-table th:nth-child(2),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(2) {
	width: 6%;
}

.cp1-pane[data-index="0"] .cp1-table th:nth-child(3),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(3) {
	width: 24%;
}

.cp1-pane[data-index="0"] .cp1-table th:nth-child(4),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(4) {
	width: 18%;
}

.cp1-pane[data-index="0"] .cp1-table th:nth-child(5),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(5) {
	width: 15%;
}

.cp1-pane[data-index="0"] .cp1-table th:nth-child(6),
.cp1-pane[data-index="0"] .cp1-table td:nth-child(6) {
	width: 26%;
}

/* 表2 Intermediate 列宽：5列 */
.cp1-pane[data-index="1"] .cp1-table th:nth-child(1),
.cp1-pane[data-index="1"] .cp1-table td:nth-child(1) {
	width: 17%;
}

.cp1-pane[data-index="1"] .cp1-table th:nth-child(2),
.cp1-pane[data-index="1"] .cp1-table td:nth-child(2) {
	width: 20%;
}

.cp1-pane[data-index="1"] .cp1-table th:nth-child(3),
.cp1-pane[data-index="1"] .cp1-table td:nth-child(3) {
	width: 20%;
}

.cp1-pane[data-index="1"] .cp1-table th:nth-child(4),
.cp1-pane[data-index="1"] .cp1-table td:nth-child(4) {
	width: 26%;
}

.cp1-pane[data-index="1"] .cp1-table th:nth-child(5),
.cp1-pane[data-index="1"] .cp1-table td:nth-child(5) {
	width: 24%;
}

/* 表3 FDF Products 列宽：3列 */
.cp1-pane[data-index="2"] .cp1-table th:nth-child(1),
.cp1-pane[data-index="2"] .cp1-table td:nth-child(1) {
	width: 13%;
}

.cp1-pane[data-index="2"] .cp1-table th:nth-child(2),
.cp1-pane[data-index="2"] .cp1-table td:nth-child(2) {
	width: 26%;
}

.cp1-pane[data-index="2"] .cp1-table th:nth-child(3),
.cp1-pane[data-index="2"] .cp1-table td:nth-child(3) {
	width: 35%;
	padding-left: 100px;
}

/* 分页 */
.cp1-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 40px;
}

.cp1-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 14px;
	color: #666;
	border-radius: 50%;
	transition: all 0.2s;
}

.cp1-page:hover {
	color: #009693;
}

.cp1-page.active {
	border: 1px solid #009693;
	color: #009693;

}

.cp1-page-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 16px;
	color: #999;
	transition: color 0.2s;
}

.cp1-page-arrow:hover {
	color: #009693;
}

.cp1-page-dots {
	font-size: 14px;
	color: #999;
	padding: 0 4px;
}

/* ===== cp_box_1 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.cp1-tabs {
		gap: 50px;
	}

	.cp1-tab .cp1-tab-circle {
		width: 100px;
		height: 100px;
	}

	.cp1-tab .cp1-tab-icon,
	.cp1-tab .cp1-tab-icon-off {
		width: 44px;
		height: 44px;
	}

	.cp1-tab span {
		font-size: 18px;
	}

	.cp1-table tbody td {
		font-size: 18px;
		height: 65px;
	}

	.cp1-table thead th {
		font-size: 18px;
	}
}

@media only screen and (max-width: 1200px) {
	.cp1-tabs {
		gap: 30px;
	}

	.cp1-tab .cp1-tab-circle {
		width: 85px;
		height: 85px;
	}

	.cp1-tab .cp1-tab-icon,
	.cp1-tab .cp1-tab-icon-off {
		width: 38px;
		height: 38px;
	}

	.cp1-tab span {
		font-size: 16px;
	}

	.cp1-table tbody td {
		font-size: 16px;
		height: 58px;
		padding: 0 12px;
	}

	.cp1-table thead th {
		font-size: 16px;
		padding: 0 12px 16px;
	}

	.cp1-table {
		border-spacing: 0 14px;
	}
}

@media only screen and (max-width: 750px) {
	.cp1-tabs-section {
		padding: 24px 0 16px;
	}

	.cp1-tabs {
		gap: 20px;
	}

	.cp1-tab .cp1-tab-circle {
		width: 65px;
		height: 65px;
	}

	.cp1-tab .cp1-tab-icon,
	.cp1-tab .cp1-tab-icon-off {
		width: 28px;
		height: 28px;
	}

	.cp1-tab span {
		font-size: 13px;
	}

	.cp1-tab {
		gap: 8px;
	}

	.cp1-content-section {
		padding: 20px 0 30px;
	}

	.cp1-table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
		width: 100%;
	}

	.cp1-table {
		border-spacing: 0 6px;
		min-width: 650px;
	}

	.cp1-table thead th {
		font-size: 13px;
		padding: 0 8px 10px;
	}

	.cp1-table tbody td {
		font-size: 13px;
		height: 40px;
		padding: 0 8px;
	}

	.cp1-pagination {
		margin-top: 24px;
	}

	.cp1-page {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
}

/* ===== auout_box_1 Affiliates ===== */
.auout_box_1 {
	padding-bottom: 60px;
	background: #fff;
}

/* 顶部导航 */
.ab-nav {
	background: #fff;
	margin-bottom: 0px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.ab-nav-links {
	display: flex;
	justify-content: flex-start;
	gap: 40px;
}

.ab-nav-links a {
	font-size: 20px;

	color: #333;
	transition: color 0.3s;
	padding: 20px 0;
	position: relative;
}

.ab-nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: #009693;
	transition: width 0.3s ease, left 0.3s ease;
}

.ab-nav-links a:hover {
	color: #009693;
}

.ab-nav-links a:hover::after {
	width: 60%;
	left: 20%;
}

.ab-nav-links a:focus {
	outline: none;
}

.ab-nav-links a.active {
	color: #009693;
	border-bottom: 3px solid #009693;
}

.ab-nav-links a.active::after {
	display: none;
}

/* 内容列表 */
.ab-list {
	max-width: 700px;
}

.ab-item {
	padding: 30px 0;
	border-bottom: 1px solid #e8e8e8;
}

.ab-item:last-child {
	border-bottom: none;
}

.ab-title {
	font-size: 24px;

	color: #009693;
	margin-bottom: 14px;
	text-align: left;
}

.ab-info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 8px;
}

.ab-info img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-top: 3px;
	flex-shrink: 0;
}

.ab-info p {
	font-size: 20px;
	color: #555;
	line-height: 1.6;
	text-align: left;
	
}

.ab-info p strong {
	color: #333;
	font-weight: bold !important;

}

/* ===== auout_box_1 响应式 ===== */
@media only screen and (max-width: 1200px) {
	.ab-nav-links {
		gap: 24px;
	}

	.ab-nav-links a {
		font-size: 17px;
	}

	.ab-title {
		font-size: 21px;
	}

	.ab-info p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 750px) {
	.ab-nav-links {
		gap: 16px;
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 6px;
	}

	.ab-nav-links a {
		font-size: 14px;
		padding: 10px 0;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.ab-title {
		font-size: 18px;
	}

	.ab-info p {
		font-size: 15px;
	}

	.ab-item {
		padding: 20px 0;
	}

	.auout_box_1 {
		padding-bottom: 0px;
	}

	.ab-nav {
		margin-bottom: 30px;
	}
}

/* ===== about_box_2 Company Profile ===== */
.about_box_2 {
	background: #fff;
}

/* 上部分淡绿色背景 */
.ab2-top {
	background: #f9fdfc;
}

/* 下部分白色 */
.ab2-bottom {
	padding: 100px 0 60px 0;
	background: url(../images/bg3.png) no-repeat top fixed;
}

/* 通用行 */
.ab2-row {
	display: block;
}

/* 上部分：左文右图 */
.ab2-text-left {
	float: left;
	width: 42%;
	padding-right: 40px;
}

.ab2-img-right {
	float: right;
	width: 55%;
}

.ab2-img-right img {
	width: 100%;
	height: auto;
	display: block;
}

/* 下部分：左图右文 */
.ab2-img-left {
	float: left;
	width: 45%;
}

.ab2-img-left img {
	width: 100%;
	height: auto;
	display: block;
}

.ab2-text-right {
	float: right;
	width: 50%;
	padding-left: 40px;
}

/* 标题 */
.ab2-title {
	font-size: 64px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;

	margin-top: 0;
}

/* 短横线 */
.ab2-line {
	width: 66px;
	height: 3px;
	background: #009693;
	margin: 20px 0 30px;
}

/* 正文 */
.ab2-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 20px;
}

.ab2-desc strong {
	color: #333;

}

/* 绿色高亮文字 */
.ab2-highlight {
	color: #009693;

}

/* ===== about_box_2 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.ab2-title {
		font-size: 52px;
	}

	.ab2-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.ab2-title {
		font-size: 42px;
	}

	.ab2-desc {
		font-size: 15px;
	}

	.ab2-text-left {
		width: 45%;
		padding-right: 30px;
	}

	.ab2-img-right {
		width: 52%;
	}

	.ab2-text-right {
		width: 52%;
		padding-left: 30px;
	}

	.ab2-img-left {
		width: 45%;
	}
}

@media only screen and (max-width: 750px) {
	.ab2-top {
		padding: 30px 0;
	}

	.ab2-bottom {
		padding: 30px 0;
	}

	.ab2-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.ab2-desc {
		font-size: 14px;
	}

	.ab2-text-left {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.ab2-img-right {
		float: none;
		width: 100%;
	}

	.ab2-img-left {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}

	.ab2-text-right {
		float: none;
		width: 100%;
		padding-left: 0;
	}
}

/* ===== about_box_3 Our Responsibility ===== */
.about_box_3 {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 777px;
	display: flex;
	align-items: center;
}

.ab3-content {
	width: 771px;
	height: 620px;
	background: rgba(255, 255, 255, 0.3);
	padding: 50px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 20px;
	border: 1px solid #fff;
}

.ab3-title {
	font-size: 64px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;
	position: relative;
	z-index: 1;
}

.ab3-line {
	width: 66px;
	height: 3px;
	background: #009693;
	margin: 20px 0 30px;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	min-height: 3px;
}

.ab3-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.ab3-ribbon {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.ab3-ribbon img {
	width: 200px;
	height: auto;
}

/* ===== about_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.about_box_3 {
		height: 650px;
	}

	.ab3-content {
		width: 640px;
		height: 520px;
		padding: 40px;
	}

	.ab3-title {
		font-size: 52px;
	}

	.ab3-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.about_box_3 {
		height: 560px;
	}

	.ab3-content {
		width: 500px;
		height: 450px;
		padding: 32px;
	}

	.ab3-title {
		font-size: 42px;
	}

	.ab3-desc {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.about_box_3 {
		height: auto;
		padding: 30px 0;
	}

	.ab3-content {
		width: 100%;
		height: auto;
		padding: 24px;
	}

	.ab3-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.ab3-desc {
		font-size: 14px;
	}

	.ab3-ribbon img {
		width: 80px;
	}
}

/* ===== about_box_4 Office Locations ===== */
.about_box_4 {
	background: #fff;
	overflow: hidden;
	margin-top: 5px;
}

.ab4-inner {
	position: relative;
}

.ab4-left {
	float: left;
	width: 50%;
	padding: 60px 0;
}

.ab4-content {
	max-width: 660px;
	margin-left: auto;
	padding-right: 60px;
}



.ab4-title {
	font-size: 24px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;
}

.ab4-info {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 8px;
}

.ab4-info img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-top: 3px;
	flex-shrink: 0;
}

.ab4-info p {
	font-size: 20px;
	color: #555;
	line-height: 1.6;
	text-align: left;
}

.ab4-info p strong {
	color: #333;
	font-weight: bold !important;
}

.ab4-right {
	float: right;
	width: 50%;
}

.ab4-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.auout_box_1_two {
	margin-bottom: 0;
	padding-bottom: 0;
}

.auout_box_1_two .ab-nav {
	margin-bottom: 0;
}

/* ===== about_box_4 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.ab4-content {
		padding-right: 40px;
	}

	.ab4-title {
		font-size: 22px;
	}

	.ab4-info p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.ab4-content {
		padding-right: 30px;
	}

	.ab4-title {
		font-size: 20px;
	}

	.ab4-info p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.ab4-left {
		float: none;
		width: 100%;
		padding: 30px 15px;
	}

	.ab4-content {
		max-width: 100%;
		padding-right: 0;
		margin-left: 0;
	}

	.ab4-right {
		float: none;
		width: 100%;
	}

	.ab4-right img {
		height: 250px;
	}

	.ab4-title {
		font-size: 18px;
	}

	.ab4-info p {
		font-size: 14px;
	}
}

/* ===== about_box_5 Timeline ===== */
.about_box_5 {
	position: relative;
	height: 980px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* 大年份 */
.ab5-year-big {
	font-size: 120px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 6px;
	margin-bottom: 10px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab5-year-big.slide-left {
	animation: ab5SlideFromRight 0.5s ease;
}

.ab5-year-big.slide-right {
	animation: ab5SlideFromLeft 0.5s ease;
}

/* 时间轴 */
.ab5-timeline {
	position: relative;
	width: 100%;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ab5-line {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.35);
	z-index: 0;
}

/* 左右两侧年份 */
.ab5-side {
	position: absolute;
	top: 50%;
	transform: translateY(calc(-100% - 20px));
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.4s ease;
	z-index: 2;
}

.ab5-side-left {
	left: 5%;
}

.ab5-side-right {
	right: 5%;
}

.ab5-side-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 1);
	flex-shrink: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, calc(100% + 16px));
}

.ab5-side-year {
	font-size: 42px;

	color: rgba(255, 255, 255, 1);
	transition: all 0.4s ease;
}

/* 中间红色圆点 */
.ab5-center-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e74c3c;
	z-index: 2;
	flex-shrink: 0;
}

/* 箭头 */
.ab5-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(calc(-100% - 20px));
	width: 64px;
	height: 64px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	background: none;
	transition: opacity 0.3s;
}

.ab5-prev {
	left: 28%;
}

.ab5-next {
	right: 28%;
}

.ab5-arrow:hover {
	opacity: 0.7;
}

.ab5-arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 描述文字 */
.ab5-desc-wrap {
	margin-top: 24px;
	text-align: center;
	min-height: 50px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	transition: all 0.4s ease;
}

/* ===== about_box_5 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.about_box_5 {
		height: 800px;
	}

	.ab5-year-big {
		font-size: 100px;
	}

	.ab5-side-year {
		font-size: 24px;
	}

	.ab5-prev {
		left: 24%;
	}

	.ab5-next {
		right: 24%;
	}
}

@media only screen and (max-width: 1200px) {
	.about_box_5 {
		height: 650px;
	}

	.ab5-year-big {
		font-size: 80px;
	}

	.ab5-side-year {
		font-size: 20px;
	}

	.ab5-desc-wrap {
		font-size: 17px;
		max-width: 550px;
	}

	.ab5-prev {
		left: 20%;
	}

	.ab5-next {
		right: 20%;
	}
}

@media only screen and (max-width: 750px) {
	.about_box_5 {
		height: 400px;
		justify-content: flex-start;
		padding-top: 50px;
	}

	.ab5-year-big {
		font-size: 44px;
		margin-bottom: 16px;
	}

	.ab5-side-year {
		font-size: 20px;
	}

	.ab5-side-left {
		left: 2%;
	}

	.ab5-side-right {
		right: 2%;
	}

	.ab5-prev {
		left: 22%;
	}

	.ab5-next {
		right: 22%;
	}

	.ab5-arrow {
		width: 48px;
		height: 48px;
	}

	.ab5-arrow img {
		width: 100%;
		height: 100%;
	}

	.ab5-desc-wrap {
		font-size: 14px;
		padding: 0 20px;
		max-width: 100%;
	}

	.ab5-center-dot {
		width: 12px;
		height: 12px;
	}
}

@keyframes ab5FadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ab5SlideFromRight {
	0% {
		opacity: 0;
		transform: translateX(80px) scale(0.7);
	}

	100% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes ab5SlideFromLeft {
	0% {
		opacity: 0;
		transform: translateX(-80px) scale(0.7);
	}

	100% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes ab5SideSlideIn {
	0% {
		opacity: 0;
		transform: translateY(calc(-100% - 20px)) translateX(var(--slide-dir, 30px));
	}

	100% {
		opacity: 1;
		transform: translateY(calc(-100% - 20px)) translateX(0);
	}
}

/* 时间轴整体左右滑动 */
.ab5-timeline-slide-left {
	animation: ab5TimelineSlideLeft 0.5s ease;
}

.ab5-timeline-slide-right {
	animation: ab5TimelineSlideRight 0.5s ease;
}

@keyframes ab5TimelineSlideLeft {
	0% {
		transform: translateX(0);
	}
	30% {
		transform: translateX(-60px);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes ab5TimelineSlideRight {
	0% {
		transform: translateX(0);
	}
	30% {
		transform: translateX(60px);
	}
	100% {
		transform: translateX(0);
	}
}

/* ===== hexin_box_1 Production Base ===== */
.hexin_box_1 {
	padding: 60px 0 80px;
	background: #fff;
	margin-top: 2px;
}

.hx1-title {
	font-size: 64px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;
}

.hx1-line {
	width: 80px;
	height: 3px;
	background: #009693;
	margin: 40px 0 30px;
}

.hx1-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 20px;
}

/* 图片区域 */
.hx1-images {
	margin-top: 40px;
}

.hx1-img-item {
	margin-bottom: 30px;
}

.hx1-img-half {
	float: left;
	width: 48%;
}

.hx1-img-half:nth-child(2) {
	float: right;
}

.hx1-img-center {
	float: none;
	clear: both;
	width: 60%;
	margin: 0 auto;
}

.hx1-img-item img {
	width: 100%;
	height: 315px;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

.hx1-img-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;

	color: #333;
	margin-top: 12px;
	text-align: center;
}

.hx1-dot {
	width: 10px;
	height: 10px;
	background: #009693;
	display: inline-block;
	flex-shrink: 0;
}

/* ===== hexin_box_1 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx1-title {
		font-size: 52px;
	}

	.hx1-desc {
		font-size: 17px;
	}

	.hx1-img-item img {
		height: 260px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx1-title {
		font-size: 42px;
	}

	.hx1-desc {
		font-size: 15px;
	}

	.hx1-img-item img {
		height: 220px;
	}

	.hx1-img-label {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.hexin_box_1 {
		padding: 30px 0 40px;
	}

	.hx1-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.hx1-desc {
		font-size: 14px;
	}

	.hx1-img-half {
		float: none;
		width: 100%;
	}

	.hx1-img-center {
		width: 100%;
	}

	.hx1-img-item img {
		height: auto;
	}

	.hx1-img-label {
		font-size: 13px;
	}
}

/* ===== hexin_box_2 Quality System ===== */
.hexin_box_2 {
	padding: 60px 0 80px;
	background: #fff;
	margin-top: 2px;
}

.hx2-title {
	font-size: 64px;
	color: #009693;
	margin-bottom: 16px;
	text-align: left;
}

.hx2-line {
	width: 66px;
	height: 3px;
	background: #009693;
	margin: 20px 0 30px;
}

.hx2-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 20px;
}

/* 8张 logo 撑满一行 */
.hx2-logos {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hx2-logo {
	float: left;
	width: 12.5%;
	padding: 0 10px;
	text-align: center;
}

.hx2-logo img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

/* ===== hexin_box_2 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx2-title {
		font-size: 52px;
	}

	.hx2-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx2-title {
		font-size: 42px;
	}

	.hx2-desc {
		font-size: 15px;
	}

	.hx2-logo {
		padding: 0 6px;
	}
}

@media only screen and (max-width: 750px) {
	.hexin_box_2 {
		padding: 30px 0 40px;
	}

	.hx2-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.hx2-desc {
		font-size: 14px;
	}

	.hx2-logos {
		flex-wrap: wrap;
	}

	.hx2-logo {
		width: 25%;
		padding: 8px;
	}

}

/* ===== hexin_box_3 R&D System ===== */
.hexin_box_3 {
	padding: 0px 0 0px;
	background: #fff;
}

.hx3-header {
	overflow: hidden;
}

.hx3-title-wrap {
	float: left;
}

.hx3-title {
	font-size: 64px;

	color: #009693;
	text-align: left;
}

.hx3-stats {
	float: right;
	display: flex;
	align-items: flex-end;
	gap: 40px;
	padding-bottom: 8px;
	margin-top: 30px;
}

.hx3-stat {
	display: flex;
	align-items: flex-end;
	gap: 6px;
}

.hx3-stat-num {
	font-size: 42px;

	color: #009693;
	line-height: 0.9;
	white-space: nowrap;
}

.hx3-stat-label {
	font-size: 14px;
	color: #000000;
	line-height: 1.3;
}

.hx3-line {
	width: 66px;
	height: 3px;
	background: #009693;
	margin: 20px 0 30px;
}

.hx3-desc {
	font-size: 20px;
	color: #000000;
	line-height: 1.8;
	text-align: left;
}

/* ===== hexin_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx3-title {
		font-size: 52px;
	}

	.hx3-stat-num {
		font-size: 36px;
	}

	.hx3-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx3-title {
		font-size: 42px;
	}

	.hx3-stat-num {
		font-size: 30px;
	}

	.hx3-desc {
		font-size: 15px;
	}

	.hx3-stats {
		gap: 24px;
	}
}

@media only screen and (max-width: 750px) {
	.hexin_box_3 {
		padding: 30px 0 40px;
	}

	.hx3-title-wrap {
		float: none;
		width: 100%;
		margin-bottom: 16px;
	}

	.hx3-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.hx3-stats {
		float: none;
		clear: both;
		margin-top: 10px;
		overflow: hidden;
	}

	.hx3-stat {
		float: left;
		margin-left: 0;
		margin-right: 30px;
	}

	.hx3-stat-num {
		font-size: 28px;
		float: none;
		display: block;
	}

	.hx3-stat-label {
		padding-top: 0;
		float: none;
		display: block;
		font-size: 13px;
	}

	.hx3-desc {
		font-size: 14px;
	}
}

/* ===== hx3-detail 左图右文 ===== */
.hx3-detail {
	margin-top: 50px;
	display: table;
	width: 100%;
}

.hx3-detail-img {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.hx3-detail-img img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

.hx3-detail-text {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
	padding-left: 4%;
}

.hx3-detail-title {
	font-size: 32px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;
}

.hx3-detail-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 24px;
}

.hx3-detail-list {
	list-style: none;
}

.hx3-detail-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;

	color: #333;
	margin-bottom: 16px;
	text-align: left;
}

.hx3-bullet {
	width: 10px;
	height: 10px;
	background: #009693;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ===== hx3-detail 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx3-detail-title {
		font-size: 28px;
	}

	.hx3-detail-desc {
		font-size: 17px;
	}

	.hx3-detail-list li {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx3-detail-title {
		font-size: 24px;
	}

	.hx3-detail-desc {
		font-size: 15px;
	}

	.hx3-detail-list li {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.hx3-detail {
		margin-top: 30px;
		display: block;
	}

	.hx3-detail-img {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	.hx3-detail-text {
		display: block;
		width: 100%;
		padding-left: 0;
	}

	.hx3-detail-title {
		font-size: 22px;
	}

	.hx3-detail-desc {
		font-size: 14px;
	}

	.hx3-detail-list li {
		font-size: 14px;
	}
}

/* ===== hexin_box_4 Technology Research Institute ===== */
.hexin_box_4 {
	padding: 0;
}

.hx4-content {
	max-width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 40px;
	height: 600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hx4-title {
	font-size: 32px;

	color: #fff;
	margin-bottom: 20px;
	text-align: left;
}

.hx4-desc {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	text-align: left;
	max-width: 70%;
}

/* ===== hexin_box_4 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx4-content {
		height: 500px;
		padding: 60px 36px;
	}

	.hx4-title {
		font-size: 28px;
	}

	.hx4-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx4-content {
		height: 450px;
		padding: 50px 30px;
	}

	.hx4-title {
		font-size: 24px;
	}

	.hx4-desc {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.hx4-content {
		height: auto;
		padding: 30px 20px;
	}

	.hx4-title {
		font-size: 22px;
	}

	.hx4-desc {
		font-size: 14px;
	}
}

/* ===== hexin_box_5 Process Engineering ===== */
.hexin_box_5 {
	padding: 60px 0 80px;
	background: #fff;
}

img.hx5-img {
	float: left;
	width: 42%;
	margin-right: 30px;
	margin-bottom: 10px;
	border-radius: 4px;
	display: block;
}

.hx5-title {
	font-size: 32px;

	color: #009693;
	margin-bottom: 16px;
	text-align: left;
	overflow: visible;
}

.hx5-desc {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 20px;
}

/* ===== hexin_box_5 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx5-title {
		font-size: 28px;
	}

	.hx5-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx5-title {
		font-size: 24px;
	}

	.hx5-desc {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.hexin_box_5 {
		padding: 30px 0 40px;
	}

	img.hx5-img {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.hx5-title {
		font-size: 22px;
	}

	.hx5-desc {
		font-size: 14px;
	}
}

/* ===== hexin_box_6 CMO ===== */
.hexin_box_6 {
	background: #f7fcfc;
	padding: 60px 0;
}

.hx6-inner {
	overflow: hidden;
}

.hx6-left {
	float: left;
	width: 42%;
	padding-right: 40px;
}

.hx6-right {
	float: right;
	width: 55%;
}

.hx6-right img {
	width: 100%;
	height: 810px;
	object-fit: cover;
	display: block;
}

.hx6-title {
	font-size: 32px;

	color: #009693;
	margin-bottom: 10px;
	text-align: left;
}

.hx6-line {
	width: 66px;
	height: 3px;
	background: #009693;
	margin: 16px 0 24px;
}

.hx6-desc {
	font-size: 20px;
	color: #555;
	line-height: 38px;
	text-align: justify;
	margin-bottom: 20px;
}

/* ===== hexin_box_6 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.hx6-right img {
		height: 680px;
	}

	.hx6-title {
		font-size: 28px;
	}

	.hx6-desc {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.hx6-left {
		width: 45%;
		padding-right: 30px;
	}

	.hx6-right {
		width: 52%;
	}

	.hx6-right img {
		height: 580px;
	}

	.hx6-title {
		font-size: 24px;
	}

	.hx6-desc {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.hexin_box_6 {
		padding: 30px 0;
	}

	.hx6-left {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}

	.hx6-right {
		float: none;
		width: 100%;
	}

	.hx6-right img {
		height: auto;
	}

	.hx6-title {
		font-size: 22px;
	}

	.hx6-desc {
		font-size: 14px;
	}

	.hx4-desc {
		max-width: 100%;
	}

	.hexin_box_3 {
		padding: 0px 0 40px;
	}
}

/* ===== lianxi_box_1 Cooperation ===== */
.lianxi_box_1 {
	padding: 0px 0 80px;
	background: #fff;
}

.lianxi_box_1 .container {
	padding-left: 100px;
	padding-right: 100px;
}

.lx1-title {
	font-size: 64px;

	color: #009693;
	text-align: center;
	margin-bottom: 30px;
}

.lx1-divider {
	width: 100%;
	height: 1px;
	background: #c4eae7;
	margin: 30px 0;
}

.lx1-row {
	overflow: hidden;
}

.lx1-col-left {
	float: left;
	width: 48%;
}

.lx1-col-right {
	float: right;
	width: 48%;
}

.lx1-subtitle {
	font-size: 20px;

	color: #009693;
	margin-bottom: 20px;
	text-align: left;
}

.lx1-card {
	margin-bottom: 50px;
}
.lx1-card p strong{
    color: #333;
    font-weight: bold !important;
}

.lx1-card-title {
	font-size: 20px;

	color: #009693;
	margin-bottom: 8px;
	text-align: left;
}

.lx1-card p {
	font-size: 20px;
	color: #555;
	line-height: 1.7;
	text-align: left;
}

.lx1-card p strong {
	color: #333;
}

.lx1-bottom {
	margin-top: 10px;
}
.lx1-bottom p strong{
    color: #333;
    font-weight: bold !important;
}

.lx1-bottom p {
	font-size: 20px;
	color: #555;
	line-height: 1.7;
	text-align: left;
}

.lx1-bottom p strong {
	color: #333;
}

/* ===== lianxi_box_1 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.lx1-title {
		font-size: 52px;
	}

	.lx1-card p {
		font-size: 17px;
	}

	.lx1-bottom p {
		font-size: 17px;
	}

	.lx1-subtitle {
		font-size: 17px;
	}

	.lx1-card-title {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.lx1-title {
		font-size: 42px;
	}

	.lx1-card p {
		font-size: 15px;
	}

	.lx1-bottom p {
		font-size: 15px;
	}

	.lx1-subtitle {
		font-size: 15px;
	}

	.lx1-card-title {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi_box_1 {
		padding: 30px 0 40px;
	}

	.lianxi_box_1 .container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.lx1-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.lx1-col-left {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}

	.lx1-col-right {
		float: none;
		width: 100%;
	}

	.lx1-card p {
		font-size: 14px;
	}

	.lx1-bottom p {
		font-size: 14px;
	}

	.lx1-subtitle {
		font-size: 16px;
	}

	.lx1-card-title {
		font-size: 16px;
	}
}

/* ===== lianxi_box_2 Win-Win ===== */
.lianxi_box_2 {
	padding: 60px 0 80px;
	background: #fff;
}

.lianxi_box_2 .container {
	width: 1600px;
}

.lx2-title {
	font-size: 64px;
	color: #009693;
	text-align: center;
}

.lx2-img {
	text-align: center;
}

.lx2-img img {
	width: 100%;
	height: auto;
	display: inline-block;
}

.lx2-cards {
	display: flex;
	gap: 20px;
}

.lx2-card {
	flex: 1;
	background: #f0fbfa;
	border-radius: 8px;
	padding:20px 22px;
	box-sizing: border-box;
}

.lx2-card-title {
	font-size: 20px;
	color: #009693;
	margin-bottom: 16px;
}

.lx2-card p {
	font-size: 1.6rem;
	color: #555;
	line-height: 40px;
	margin: 0;
	text-align: left;
}

/* ===== lianxi_box_2 响应式 ===== */
@media only screen and (max-width: 1600px) {
	.lianxi_box_2 .container {
		max-width: 1400px;
	}
}

@media only screen and (max-width: 1400px) {
	.lianxi_box_2 .container {
		max-width: 1200px;
	}
	.lx2-card p {
    line-height: 25px;
}
	.lx2-title {
		font-size: 52px;
	}

	.lx2-card {
		height: 220px;
		padding: 24px;
	}

	.lx2-card-title {
		font-size: 15px;
	}

	.lx2-card p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 1200px) {
	.lianxi_box_2 .container {
		max-width: 960px;
	}

	.lx2-title {
		font-size: 42px;
	}

	.lx2-card {
		height: auto;
		min-height: 200px;
		padding: 20px;
	}

	.lx2-card-title {
		font-size: 14px;
	}

	.lx2-card p {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi_box_2 {
		padding: 30px 0 40px;
	}

	.lianxi_box_2 .container {
		max-width: 100%;
		padding: 0 15px;
	}

	.lx2-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.lx2-img {
		margin-bottom: 24px;
	}

	.lx2-cards {
		flex-direction: column;
		gap: 16px;
	}

	.lx2-card {
		height: auto;
		min-height: auto;
		padding: 20px;
	}

	.lx2-card-title {
		font-size: 15px;
	}

	.lx2-card p {
		font-size: 14px;
	}
}

/* ===== lianxi_box_3 Recruitment ===== */
.lianxi_box_3 {
	padding-bottom: 60px;
}

.lx3-title {
	font-size: 64px;

	color: #009693;
	text-align: center;
	margin-bottom: 30px;
}

.lx3-banner {
	height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	padding: 0 80px;
}

.lx3-inner {
	width: 100%;
	overflow: hidden;
}

.lx3-item {
	float: left;
	width: 50%;
	text-align: center;
}

.lx3-item h4 {
	font-size: 28px;

	color: #fff;
	margin-bottom: 16px;
}

.lx3-btn {
	display: inline-block;
	padding: 7px 28px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
	font-size: 16px;
	border-radius: 30px;
	transition: all 0.3s;
}

.lx3-btn:hover {
	background: #009693;
	border-color: #009693;
	color: #fff;
}

/* ===== lianxi_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.lx3-title {
		font-size: 52px;
	}

	.lx3-banner {
		height: 340px;
		padding: 40px 60px;
	}

	.lx3-item h4 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 1200px) {
	.lx3-title {
		font-size: 42px;
	}

	.lx3-banner {
		height: 300px;
		padding: 30px 40px;
	}

	.lx3-item h4 {
		font-size: 20px;
	}

	.lx3-btn {
		font-size: 14px;
		padding: 8px 20px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi_box_3 {
		padding-bottom: 30px;
	}

	.lx3-title {
		font-size: clamp(24px, 6vw, 42px);
	}

	.lx3-banner {
		height: 250px;
		padding: 20px;
	}

	.lx3-item {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}

	.lx3-item:last-child {
		margin-bottom: 0;
	}

	.lx3-item h4 {
		font-size: 16px;
	}

	.lx3-btn {
		font-size: 12px;
		padding: 6px 14px;
	}
}

/* ===== lianxi_box_form Explore Positions ===== */
.lianxi_box_form {
	padding: 60px 0 80px;
	background: #f7fcfc;
}

.lxf-title {
	font-size: 64px;

	color: #009693;
	text-align: center;
	margin-bottom: 40px;
}

.lxf-body {
	overflow: hidden;
}

/* 左边筛选栏 */
.lxf-sidebar {
	float: left;
	width: 240px;
	margin-right: 30px;
	background: #f0fbfa;
	padding: 20px;
	border-radius: 4px;
}

.lxf-filter-header {
	margin-bottom: 20px;
	overflow: hidden;
}

.lxf-filter-label {
	float: left;
	font-size: 16px;

	color: #333;
}

.lxf-filter-clear {
	float: right;
	font-size: 14px;
	color: #999;
	transition: color 0.3s;
}

.lxf-filter-clear:hover {
	color: #009693;
}

.lxf-filter-group {
	margin-bottom: 20px;
}

.lxf-filter-group h5 {
	font-size: 14px;

	color: #333;
	margin-bottom: 10px;
	text-align: left;
}

.lxf-filter-group label {
	display: block;
	font-size: 14px;
	color: #555;
	margin-bottom: 8px;
	cursor: pointer;
	text-align: left;
}

.lxf-filter-group label input {
	margin-right: 6px;
	vertical-align: middle;
	transform: translateY(-3px);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border: 2px solid #ccc;
	border-radius: 2px;
	background: #fff;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
}

.lxf-filter-group label input:checked {
	background: #009693;
	border-color: #009693;
}

.lxf-filter-group label input:focus {
	outline: none;
}

.lxf-filter-group label input:checked::after {
	content: '✓';
	position: absolute;
	top: -1px;
	left: 2px;
	font-size: 12px;
	color: #fff;
	line-height: 1;
}

/* 右边招聘列表 */
.lxf-list {
	overflow: hidden;
}

.lxf-item {
	margin-bottom: 16px;
}

.lxf-item-header {
	padding: 20px 24px;
	cursor: pointer;
	display: table;
	width: 100%;
	background: #eef6f5;
	border-radius: 8px;
}

.lxf-item-info {
	display: table-cell;
	vertical-align: middle;
}

.lxf-item-info h4 {
	font-size: 20px;

	color: #333;
	margin-bottom: 8px;
	text-align: left;
}

.lxf-item-info p {
	font-size: 14px;
	color: #777;
	line-height: 1.6;
	text-align: left;
}

.lxf-toggle {
	display: table-cell;
	vertical-align: middle;
	width: 36px;
	text-align: center;
}

.lxf-toggle::after {
	content: '';
	display: inline-block;
	width: 32px;
	height: 32px;
	border: 2px solid #0db7b6;
	border-radius: 50%;
	position: relative;
	background:
		linear-gradient(#0db7b6, #0db7b6) center/14px 2px no-repeat,
		linear-gradient(#0db7b6, #0db7b6) center/2px 14px no-repeat;
}

.lxf-item.active .lxf-toggle::after {
	background:
		linear-gradient(#0db7b6, #0db7b6) center/14px 2px no-repeat;
}

/* 展开内容 */
.lxf-item-body {
	display: none;
	padding: 24px;
	margin-top: 12px;
	background: #fff;
	border-radius: 8px;
}

.lxf-item.active .lxf-item-body {
	display: block;
}

.lxf-apply-btn {
	display: inline-block;
	float: right;
	padding: 8px 20px;
	border: 1px solid #009693;
	border-radius: 20px;
	color: #333;
	font-size: 14px;

	margin-bottom: 16px;
	transition: all 0.3s;
}

.lxf-apply-btn:hover {
	background: #009693;
	color: #fff;
}

.lxf-apply-btn:focus {
	outline: none;
}


.lxf-apply-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #3cb8ae;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 18px;
	font-size: 14px;
	margin-left: 6px;
	vertical-align: middle;
}

.lxf-item-body h5 {
	font-size: 18px;

	color: #333;
	margin-bottom: 12px;
	text-align: left;
	clear: both;
}

.lxf-item-body p {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	text-align: left;
	margin-bottom: 16px;
}

/* ===== lianxi_box_form 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.lxf-title {
		font-size: 52px;
	}
}

@media only screen and (max-width: 1200px) {
	.lxf-title {
		font-size: 42px;
	}

	.lxf-sidebar {
		width: 160px;
		margin-right: 20px;
	}
}

@media only screen and (max-width: 750px) {
	.lianxi_box_form {
		padding: 30px 0 40px;
	}

	.lxf-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.lxf-sidebar {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}

	.lxf-item-info h4 {
		font-size: 16px;
	}

	.lxf-item-info p {
		font-size: 13px;
	}

	.lxf-item-body p {
		font-size: 14px;
	}
}

.lxf-empty p {
	font-size: 18px;
	color: #999;
	text-align: center;
	padding: 40px 0;
}

/* ===== News Nav Breadcrumb ===== */
.news_nav {
	background: #f5f5f5;
	padding: 14px 0;
}

.news-breadcrumb {
	font-size: 14px;
	color: #888;
	text-align: right;
}

.news-breadcrumb a {
	color: #888;
	transition: color 0.3s;
}

.news-breadcrumb a:hover {
	color: #009693;
}

/* ===== news_box_1 ===== */
.news_box_1 {
	padding: 40px 0 80px;
	background: #fff;
}

.nw1-inner {
	overflow: hidden;
}

.nw1-left {
	float: left;
	width: 1000px;
}

.nw1-right {
	float: right;
	width: 360px;
}

/* 标题 */
.nw1-title {
	font-size: 42px;

	color: #009693;
	line-height: 1.4;
	margin-bottom: 16px;
	text-align: left;
	margin-bottom: 50px;
}

/* 元信息 */
.nw1-meta {
	padding-bottom: 14px;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 24px;
}

.nw1-meta-item {
	font-size: 13px;
	color: #009693;
	margin-right: 20px;
}

.nw1-meta-item strong {
	color: #666;
}

.nw1-share {
	float: right;
	font-size: 13px;
	color: #999;
}

.nw1-share a {
	color: #999;
	margin-left: 6px;
	transition: color 0.3s;
}

.nw1-share a:hover {
	color: #009693;
}

/* 大图 */
.nw1-img {
	margin-bottom: 24px;
}

.nw1-img img {
	width: 100%;
	height: auto;
	display: block;
}

/* 正文 */
.nw1-content p {
	font-size: 20px;
	color: #555;
	line-height: 1.9;
	text-align: left;
	margin-bottom: 16px;
}
.nw1-content img {
	max-width:100%;
}

/* 上下页 */
.nw1-pager {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #e8e8e8;
}

.nw1-pager p {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: left;
}

.nw1-pager a {
	color: #555;
	transition: color 0.3s;
}

.nw1-pager a:hover {
	color: #009693;
}

/* ===== news_box_1 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.nw1-left {
		width: auto;
		margin-right: 390px;
	}
}

@media only screen and (max-width: 1200px) {
	.nw1-left {
		margin-right: 0;
		float: none;
		width: 100%;
	}

	.nw1-right {
		float: none;
		width: 100%;
		margin-top: 40px;
	}

	.nw1-title {
		font-size: 26px;
	}
}

@media only screen and (max-width: 750px) {
	.news_box_1 {
		padding: 20px 0 40px;
	}

	.nw1-title {
		font-size: 22px;
	}

	.nw1-content p {
		font-size: 14px;
	}

	.nw1-share {
		float: none;
		display: block;
		margin-top: 8px;
	}

	.news_nav {
		padding: 5px 0;

	}

	.news-breadcrumb {
		font-size: 12px;
		color: #888;
		text-align: left;
		margin-bottom: 0;
	}

	.nw1-title {
		margin-bottom: 10px;
	}

	.nw1-meta-item {
		font-size: 12px;
		color: #009693;
		margin-right: 10px;
	}

	.nw1-content p {
		line-height: 1.6;
	}

	.nw1-pager p {
		font-size: 14px;
		line-height: 1.6;
	}

	.nw1-pager {
		margin-top: 20px;
		padding-top: 10px;
	}

	.nw1-sidebar-header {
		padding-left: 16px;
		margin-bottom: 16px;
	}

	.nw1-sidebar-header h3 {
		font-size: 20px;
	}

	.nw1-sidebar-timeline {
		padding-left: 16px !important;
	}

	.nw1-sidebar-line {
		left: 4px;
		top: -30px;
	}

	.nw1-sidebar-line-icon {
		width: 14px;
	}

	.nw1-sidebar-dot {
		left: -16px;
		top: 18px;
		width: 8px;
		height: 8px;
	}

	.nw1-sidebar-date {
		font-size: 14px;
	}

	.nw1-sidebar-info p {
		font-size: 14px;
	}

	.nw1-sidebar-item {
		padding: 12px 0;
	}

}

/* ===== 右侧 Latest News 侧栏 ===== */
.nw1-sidebar {
	position: relative;
}

.nw1-sidebar-header {
	margin-bottom: 24px;
	padding-left: 20px;
}

.nw1-sidebar-header h3 {
	font-size: 32px;

	color: #333;
	text-align: left;
	margin-left: 20px;
}

/* 时间线容器 */
.nw1-sidebar-timeline {
	position: relative;
	padding-left: 20px;
}

/* 左边竖线 + 顶部图标 */
.nw1-sidebar-line {
	position: absolute;
	left: 5px;
	top: -48px;
	bottom: 0;
	width: 1px;
	background: #ddd;
}

.nw1-sidebar-line-icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: auto;
}

/* 新闻列表 */
.nw1-sidebar-list {
	position: relative;
}

.nw1-sidebar-item {
	display: block;
	position: relative;
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.3s;
}

.nw1-sidebar-item:last-child {
	border-bottom: none;
}

/* 圆点 */
.nw1-sidebar-dot {
	position: absolute;
	left: -20px;
	top: 22px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #ccc;
	background: #fff;
	z-index: 1;
	transition: all 0.3s;
}

.nw1-sidebar-item.active .nw1-sidebar-dot,
.nw1-sidebar-item:hover .nw1-sidebar-dot {
	background: #009693;
	border-color: #009693;
}

/* 日期 */
.nw1-sidebar-date {
	font-size: 20px;
	color: #999;
	display: block;
	margin-bottom: 6px;
	transition: color 0.3s;
}

.nw1-sidebar-item.active .nw1-sidebar-date,
.nw1-sidebar-item:hover .nw1-sidebar-date {
	color: #009693;
}

/* 标题文字 */
.nw1-sidebar-info p {
	font-size: 20px;
	color: #555;
	line-height: 1.6;
	text-align: left;
	transition: color 0.3s;
}

.nw1-sidebar-item.active .nw1-sidebar-info p,
.nw1-sidebar-item:hover .nw1-sidebar-info p {
	color: #009693;
}

/* 修复：手机端右侧侧栏字号 */
@media only screen and (max-width: 750px) {
	.nw1-sidebar-date {
		font-size: 14px !important;
	}

	.nw1-sidebar-info p {
		font-size: 14px !important;
	}

	.nw1-sidebar-header h3 {
		font-size: 20px !important;
	}

	.nw1-sidebar-header h3 {
		padding-left: 0 !important;
	}

	.nw1-sidebar-dot {
		left: -15px;
	}

	.nw1-sidebar-line {
		overflow: visible !important;
	}

	.nw1-sidebar-line-icon {
		width: auto !important;
		height: 15px !important;
		margin-top: 5px !important;
	}

	.nw1-sidebar-timeline {
		overflow: visible !important;
	}

	.nw1-sidebar {
		overflow: visible !important;
	}

	.nw1-right {
		overflow: visible !important;
	}
}

/* ===== news_box_2 ===== */
.news_box_2 {
	padding: 0 0 80px;
	background: #fff;
}

/* 公告栏 */
.nw2-announce {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 0;
	border-bottom: 1px solid #e8e8e8;
	margin-bottom: 30px;
}

.nw2-laba {
	width: 20px;
	height: 20px;
	object-fit: contain;
	flex-shrink: 0;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.nw2-announce p {
	font-size: 20px;
	color: #333;
	text-align: left;
	padding-top: 8px;
}

/* 大图 */
.nw2-banner {
	margin-bottom: 30px;
}

.nw2-banner a {
	display: block;
}

.nw2-banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}

/* 三个新闻卡片 */
.nw2-news {
	margin-bottom: 50px;
}

.nw2-card {
	float: left;
	width: 31.33%;
	margin-right: 3%;
}

.nw2-card:last-child {
	margin-right: 0;
}

.nw2-card-img {
	display: block;
}

.nw2-card-img img {
	width: 100%;
	height: 300px;
	display: block;
	transition: transform 0.4s;
}

.nw2-card-img:hover img {
	transform: scale(1.03);
}

.nw2-card-info {
	position: relative;
	background: #f9fdfc;
	padding: 20px 20px 50px;
}

.nw2-card-info h4 {
	text-align: left;
}

.nw2-card-info h4 a {
	font-size: 24px;

	color: #333;
	display: block;
	transition: color 0.3s;
}

.nw2-card-info h4 a:hover {
	color: #009693;
}

.nw2-card-arrow {
	position: absolute;
	right: 10px;
	bottom: 10px;
	transition: transform 0.3s;
}

.nw2-card-arrow img {
	width: 28px;
	height: auto;
	object-fit: contain;
}

.nw2-card-arrow:hover {
	transform: translateX(4px);
}

/* 分页 */
.nw2-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.nw2-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	font-size: 16px;
	color: #666;
	border-radius: 50%;
	border: 1px solid #ddd;
	transition: all 0.2s;
}

.nw2-page:hover {
	color: #009693;
	border-color: #009693;
}

.nw2-page.active {
	border: 1px solid #009693;
	color: #009693;

}

.nw2-page-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	font-size: 16px;
	color: #999;
	border-radius: 50%;
	border: 1px solid #ddd;
	transition: all 0.2s;
}

.nw2-page-arrow:hover {
	color: #009693;
	border-color: #009693;
}

.nw2-page-dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	font-size: 16px;
	color: #999;
	border-radius: 50%;
	border: 1px solid #ddd;
}

/* ===== news_box_2 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.nw2-card-info h4 a {
		font-size: 20px;
	}

	.nw2-announce p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.nw2-card-info h4 a {
		font-size: 18px;
	}

	.nw2-announce p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.news_box_2 {
		padding: 0 0 40px;
	}

	.nw2-card {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 24px;
	}

	.nw2-card-info h4 a {
		font-size: 18px;
	}

	.nw2-announce p {
		font-size: 14px;
	}

	.nw2-announce {
		margin-bottom: 20px;
	}
}

/* ===== news_box_3 新闻列表 ===== */
.news_box_3 {
	padding: 40px 0 80px;
	background: #fff;
}

.nw3-list {
	margin-bottom: 50px;
}

.nw3-item {
	display: block;
	background: #f9fdfc;
	margin-bottom: 16px;
	overflow: hidden;
	transition: box-shadow 0.3s;
}

.nw3-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nw3-item-img {
	float: left;
	width: 385px;
	height: 226px;
	overflow: hidden;
}

.nw3-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.nw3-item:hover .nw3-item-img img {
	transform: scale(1.03);
}

.nw3-item-text {
	overflow: hidden;
	padding: 30px 30px;
}

.nw3-item-text h4 {
	font-size: 20px;

	color: #333;
	margin-bottom: 14px;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nw3-item:hover .nw3-item-text h4 {
	color: #009693;
}

.nw3-item-text p {
	font-size: 20px;
	color: #666;
	line-height: 1.7;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ===== news_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.nw3-item-img {
		width: 320px;
		height: 200px;
	}

	.nw3-item-text h4 {
		font-size: 18px;
	}

	.nw3-item-text p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.nw3-item-img {
		width: 260px;
		height: 180px;
	}

	.nw3-item-text {
		padding: 20px;
	}

	.nw3-item-text h4 {
		font-size: 16px;
	}

	.nw3-item-text p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.news_box_3 {
		padding: 20px 0 40px;
	}

	.nw3-item-img {
		float: none;
		width: 100%;
		height: auto;
	}

	.nw3-item-text {
		padding: 16px;
	}

	.nw3-item-text h4 {
		font-size: 16px;
	}

	.nw3-item-text p {
		font-size: 14px;
	}
}

/* ===== esg_box_1 ===== */
.esg_box_1 {
	padding: 60px 0;
	background: #f7fdfd;
}

.esg1-inner {
	overflow: hidden;
}

.esg1-img {
	float: left;
	width: 360px;
	margin-right: 40px;
}

.esg1-img img {
	width: 100%;
	height: auto;
	display: block;
}

.esg1-text {
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 100%;
}

.esg1-text p {
	font-size: 20px;
	color: #555;
	line-height: 1.8;
	text-align: left;
	margin-top: 25px;
}

/* ===== esg_box_1 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.esg1-img {
		width: 300px;
		margin-right: 30px;
	}

	.esg1-text p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 1200px) {
	.esg1-img {
		width: 250px;
		margin-right: 24px;
	}

	.esg1-text p {
		font-size: 15px;
	}
}

@media only screen and (max-width: 750px) {
	.esg_box_1 {
		padding: 30px 0;
	}

	.esg1-img {
		float: none;
		width: 60%;
		margin: 0 auto 20px;
	}

	.esg1-text p {
		font-size: 14px;
	}
}

/* ===== esg_box_2 ===== */
.esg_box_2 {
	height: 822px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
	display: flex;
	align-items: flex-start;
}

.esg2-title {
	font-size: 64px;

	color: #fff;
	text-align: left;
	margin-bottom: 16px;
}

.esg2-subtitle {
	font-size: 24px;

	color: rgba(255, 255, 255, 0.85);
	text-align: left;
	letter-spacing: 2px;
}

.esg2-line {
	width: 66px;
	height: 3px;
	background: #fff;
	margin: 24px 0 40px;
}

/* 三个卡片 */
.esg2-cards {
	overflow: hidden;
}

.esg2-card {
	float: left;
	width: 32.66%;
	margin-right: 1%;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	padding: 28px 15px;
	height: 360px;
}

.esg2-card:last-child {
	margin-right: 0;
}

.esg2-card h4 {
	font-size: 20px;

	color: #fff;
	margin-bottom: 14px;
	text-align: left;
}

.esg2-card p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 31px;
	text-align: justify;
}

/* ===== esg_box_2 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.esg_box_2 {
		height: 700px;
	}

	.esg2-title {
		font-size: 52px;
	}

	.esg2-subtitle {
		font-size: 20px;
	}

	.esg2-card h4 {
		font-size: 17px;
	}

	.esg2-card p {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1200px) {
	.esg_box_2 {
		height: 600px;
	}

	.esg2-title {
		font-size: 42px;
	}

	.esg2-subtitle {
		font-size: 18px;
	}

	.esg2-card {
		padding: 20px 18px;
	}

	.esg2-card h4 {
		font-size: 15px;
	}

	.esg2-card p {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.esg_box_2 {
		height: auto;
		padding: 40px 0;
	}

	.esg2-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.esg2-subtitle {
		font-size: 14px;
	}

	.esg2-card {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 16px;
		height: auto;
	}

	.esg2-card h4 {
		font-size: 16px;
	}

	.esg2-card p {
		font-size: 14px;
	}
}

/* ===== esg_box_3 Social Responsibility ===== */
.esg_box_3 {
	height: 940px;
	background-image: url('../images/huyanbing.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 190px 0 80px;
}

.esg3-inner {
	overflow: hidden;
}

.esg3-left {
	float: left;
	width: calc(100% - 430px);
	padding-right: 40px;
}

.esg3-right {
	float: right;
	width: 402px;
	padding-top: 90px;
}

/* 标题 */
.esg3-title {
	font-size: 64px;

	color: #fff;
	text-align: left;
	margin-bottom: 12px;
}

.esg3-subtitle {
	font-size: 24px;
	color: rgba(255, 255, 255, 1);
	text-align: left;
	letter-spacing: 2px;
}

.esg3-line {
	width: 66px;
	height: 3px;
	background: #fff;
	margin: 24px 0 30px;
}

/* 切换内容 */
.esg3-pane {
	display: none;
}

.esg3-pane.active {
	display: block;
}

.esg3-pane-title {
	font-size: 32px;

	color: #fff;
	margin-bottom: 16px;
	text-align: left;
}

.esg3-desc {
	font-size: 20px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.8;
	text-align: left;
	height: 160px;
}

/* 底部图标 */
.esg3-icons {
	margin-top: 40px;
}

.esg3-icon-item {
	float: left;
	margin-right: 40px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.esg3-icon-item img {
	height: 75px;
	width: auto;
	flex-shrink: 0;
}

.esg3-icon-item span {
	font-size: 18px;
	color: rgba(255, 255, 255, 1);
}

/* 右边切换按钮 */
.esg3-tab {
	display: block;
	width: 402px;
	height: 125px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.0);
	color: rgba(255, 255, 255, 1);
	font-size: 20px;

	font-family: inherit;
	cursor: pointer;
	text-align: center;
	border-radius: 4px;
	margin-bottom: 10px;
	transition: all 0.3s;
	position: relative;
}

.esg3-tab::before {
	content: '';
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 12px solid rgba(255, 255, 255, 0.3);
	opacity: 0;
	transition: opacity 0.3s;
}

.esg3-tab::after {
	content: '';
	position: absolute;
	left: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-right: 10px solid rgba(255, 255, 255, 0.08);
	opacity: 0;
	transition: opacity 0.3s;
}

.esg3-tab.active::before {
	opacity: 1;
	border-right-color: rgba(255, 255, 255, 0.5);
}

.esg3-tab.active::after {
	opacity: 1;
	border-right-color: rgba(255, 255, 255, 0.2);
}

.esg3-tab:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.esg3-tab.active {
	background: rgba(255, 255, 255, 0.2);
	color: #f0d6a0;
	border-color: rgba(255, 255, 255, 0.5);
}

/* ===== esg_box_3 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.esg3-title {
		font-size: 52px;
	}

	.esg3-subtitle {
		font-size: 20px;
	}

	.esg3-pane-title {
		font-size: 26px;
	}

	.esg3-desc {
		font-size: 17px;
	}

	.esg3-right {
		width: 340px;
	}

	.esg3-tab {
		width: 340px;
		height: 110px;
		font-size: 17px;
	}

	.esg3-left {
		width: calc(100% - 370px);
	}
}

@media only screen and (max-width: 1200px) {
	.esg3-title {
		font-size: 42px;
	}

	.esg3-subtitle {
		font-size: 16px;
	}

	.esg3-pane-title {
		font-size: 22px;
	}

	.esg3-desc {
		font-size: 15px;
	}

	.esg3-right {
		width: 280px;
	}

	.esg3-tab {
		width: 280px;
		height: 95px;
		font-size: 15px;
	}

	.esg3-left {
		width: calc(100% - 310px);
		padding-right: 24px;
	}

	.esg3-icon-item {
		margin-right: 24px;
	}

	.esg3-icon-item img {
		height: 55px;
	}
}

@media only screen and (max-width: 750px) {
	.esg_box_3 {
		padding: 40px 0;
		height: auto;
	}

	.esg3-left {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 24px;
	}

	.esg3-right {
		float: none;
		width: 100%;
		padding-top: 0;
	}

	.esg3-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.esg3-subtitle {
		font-size: 14px;
	}

	.esg3-pane-title {
		font-size: 20px;
	}

	.esg3-desc {
		font-size: 14px;
	}

	.esg3-tab {
		width: 100%;
		height: 70px;
		font-size: 14px;
	}

	.esg3-icon-item {
		margin-right: 0;
		float: none;
		margin-bottom: 12px;
	}

	.esg3-icon-item img {
		height: 35px;
	}

	.esg3-icon-item span {
		font-size: 11px;
	}

	.esg3-icons {
		margin-top: 20px;
	}

	.esg3-line {
		margin: 16px 0 20px;
	}
}

/* ===== esg_box_4 Corporate Governance ===== */
.esg_box_4 {
	height: 1185px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 80px 0;
}

.esg4-title {
	font-size: 64px;
	color: #fff;
	text-align: left;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

.esg4-subtitle {
	font-size: 24px;
	color: rgba(255, 255, 255);
	text-align: left;
	letter-spacing: 1px;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

.esg4-line {
	width: 66px;
	height: 3px;
	background: #fff;
	margin: 14px 0 20px;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

.esg4-desc {
	font-size: 20px;
	color: rgba(255, 255, 255);
	line-height: 1.6;
	text-align: left;
	margin-bottom: 26px;
	text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}

/* 四个卡片 2x2 */
.esg4-cards {
	overflow: hidden;
}

.esg4-card {
	float: left;
	width: 48%;
	margin-right: 4%;
	margin-bottom: 24px;
}

.esg4-card:nth-child(2n) {
	margin-right: 0;
}

.esg4-card-inner {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: all 0.4s;
}

.esg4-card-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(61, 185, 174, 0);
	transition: background 0.4s;
	border-radius: 8px;
}

.esg4-card-inner:hover::before {
	background: rgba(61, 185, 174, 0.7);
}

.esg4-card-inner h4 {
	font-size: 32px;

	color: #fff;
	text-align: left;
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	transform: translateY(-30px);
	transition: margin-bottom 0.4s, transform 0.4s;
}

.esg4-card-inner:hover h4 {
	margin-top:26px;
	margin-bottom:-10px;
}

.esg4-card-inner p {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-align: left;
	position: relative;
	z-index: 1;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s, opacity 0.4s;
}

.esg4-card-inner:hover p {
	max-height: 200px;
	opacity: 1;
}

/* ===== esg_box_4 响应式 ===== */
@media only screen and (max-width: 1400px) {
	.esg_box_4 {
		height: 1050px;
	}

	.esg4-title {
		font-size: 52px;
	}

	.esg4-subtitle {
		font-size: 20px;
	}

	.esg4-desc {
		font-size: 17px;
	}

	.esg4-card-inner {
		height: 260px;
	}

	.esg4-card-inner h4 {
		font-size: 20px;
	}

	.esg4-card-inner p {
		font-size: 16px;
	}
}

@media only screen and (max-width: 1200px) {
	.esg_box_4 {
		height: 950px;
	}

	.esg4-title {
		font-size: 42px;
	}

	.esg4-subtitle {
		font-size: 18px;
	}

	.esg4-desc {
		font-size: 15px;
	}

	.esg4-card-inner {
		height: 240px;
		padding: 24px;
	}

	.esg4-card-inner h4 {
		font-size: 18px;
	}

	.esg4-card-inner p {
		font-size: 14px;
	}
}

@media only screen and (max-width: 750px) {
	.esg_box_4 {
		height: auto;
		padding: 40px 0;
	}

	.esg4-title {
		font-size: clamp(28px, 7vw, 42px);
	}

	.esg4-subtitle {
		font-size: 14px;
	}

	.esg4-desc {
		font-size: 14px;
	}

	.esg4-card {
		float: none;
		width: 100%;
		margin-right: 0;
	}

	.esg4-card-inner {
		height: auto;
		min-height: 180px;
	}

	.esg4-card-inner h4 {
		font-size: 18px;
	}

	.esg4-card-inner p {
		font-size: 14px;
		max-height: none;
		opacity: 1;
	}
	.zdnitem{
		float:left;
		width:48%;
		margin:0 2% 35px 0;
	}
	.fp2-desc {
    height: 280px;
}
}

.zdtable td{
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: #aaa;
    border-radius: 50%;
    transition: all 0.2s;
	margin-left: 6px;
}
.zdtable .htfydqpage{
	border: 1px solid #009693;
	color: #009693;
}
.zdnitem{
	float:left;
	width:23%;
	margin:67px 2% 0 0;
}
.zdnitem:last-child{
	margin-right:0;
}
.zdnimg {
	overflow: hidden;
	height:230px;
}
.zdnimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.zdnitem:hover .zdnimg img {
	transform: scale(1.05);
}
.zdntxt{
	width:100%;
	text-align:center;
	font-size: 1.6rem;
	font-weight: 500;
	line-height:50px;
}