﻿/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

/* 去除所有点击时的黑框/焦点描边 */
*:focus,
*:focus-visible,
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none !important;
	-webkit-tap-highlight-color: transparent;
}

a, button {
	-webkit-tap-highlight-color: transparent;
}
body {
	margin: 0 auto;
	font-size: 14px;
	font-family: PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
	background: #fff;
	text-align: left;
	color: #010000;
	position: relative;
	line-height: 1.5;
}
h1, h2, h3 {
	font-weight: 500;
}
img {
	border: none;
}
a {
	cursor: pointer;
	color: #333;
	text-decoration: none !important;
	outline: none;
}
a:hover {
	color: #006bb7;
}
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;
}

/* 头部样式 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(128, 128, 128, 0.3);
	transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* 首页滚动后深色态 */
.header.scrolled {
	background-color: rgba(20, 22, 24, 0.92);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

/* 二级页面常驻黑色头部 */
.header.header-dark {
	background-color: #141618;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.header-container {
	max-width: 1520px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100px;
	display: flex;
	align-items: center;
}

.logo {
	display: inline-flex;
	align-items: center;
	margin-right: auto;
}

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

/* PC端导航样式 */
.nav-pc {
	display: flex;
	align-items: center;
}

.nav-item {
	position: relative;
	margin: 0 20px;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 38px 0;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #fff;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s ease;
}

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

/* 子菜单样式 */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	min-width: 200px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	padding: 12px 0;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.35, 1), visibility 0.35s;
	z-index: 100;
	margin-top: 0;
}

/* 顶部小三角 */
.sub-menu::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
	box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

/* 悬停父项时展开子菜单 */
.nav-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(6px);
}

/* 子项逐个进入的错峰动画 */
.sub-menu-item {
	list-style: none;
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.nav-item:hover .sub-menu-item:nth-child(1) { transition-delay: 0.05s; }
.nav-item:hover .sub-menu-item:nth-child(2) { transition-delay: 0.1s; }
.nav-item:hover .sub-menu-item:nth-child(3) { transition-delay: 0.15s; }
.nav-item:hover .sub-menu-item:nth-child(4) { transition-delay: 0.2s; }
.nav-item:hover .sub-menu-item:nth-child(5) { transition-delay: 0.25s; }

.sub-menu-link {
	display: block;
	color: #333;
	text-decoration: none;
	padding: 10px 22px;
	font-size: 14px;
	position: relative;
	transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
	white-space: nowrap;
}

/* 左侧滑入的高亮竖条 */
.sub-menu-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: #2e4e9e;
	border-radius: 0 3px 3px 0;
	transition: height 0.3s ease;
}

.sub-menu-link:hover {
	color: #2e4e9e;
	padding-left: 30px;
	background: linear-gradient(90deg, rgba(46, 78, 158, 0.06), transparent);
}

.sub-menu-link:hover::before {
	height: 60%;
}

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

.menu-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	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: #333;
}

.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: #333;
	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;
}

/* 移动端中英文切换按钮 */
.nav-mobile-lang {
	display: flex;
	gap: 12px;
	padding: 20px;
	margin-top: 10px;
	border-top: 1px solid #eee;
}

.nav-mobile-lang-btn {
	flex: 1;
	display: block;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.nav-mobile-lang-btn:hover {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
}

.nav-mobile-lang-btn.active {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
}

/* 遮罩层 */
.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: 20px;
	float: right;
}

.search-icon {
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-right: 15px;
}

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

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

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

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

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

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

/* 语言切换样式 - 双国旗切换 */
.yuyan_tab {
	position: relative;
	margin-left: 30px;
	z-index: 1001;
	display: flex;
	align-items: center;
	gap: 8px;
}

.lang-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 22px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.55;
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

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

.lang-flag:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.lang-flag.active {
	opacity: 1;
	border-color: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 移动端搜索和语言切换 */
.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 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mobile-language .lang-flag {
	border-color: transparent;
}

.mobile-language .lang-flag.active {
	border-color: #2e4e9e;
	box-shadow: 0 0 6px rgba(46, 78, 158, 0.3);
}


@media only screen and (max-width:1200px) {
	.header-container {
		max-width: 960px;
	}
	
	.nav-item {
		margin: 0 15px;
	}
	
	.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 10px;
	}
	
	.nav-link {
		font-size: 16px;
	}
	
	.sousuo {
		margin-left: 10px;
	}
	
	.yuyan_tab {
		margin-left: 15px;
	}
	
	.language-current span {
		display: none;
	}
	
	.language-current {
		padding: 6px 8px;
	}
}

@media only screen and (max-width: 750px) {
	.nav-pc {
		display: none;
	}
	
	.menu-toggle {
		display: block;
	}
	
	.header-container {
		padding: 0 15px;
		height: 70px;
	}
	
	.logo img {
		height: 44px;
	}
	
	.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 区域（Swiper 三图轮播） ============ */
.banner {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
}

/* PC 端高度随图片自适应 */
.banner-swiper {
	height: auto;
}

/* 每张 slide：PC 端高度由图片撑起 */
.banner-slide {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

/* 图片默认铺满宽度，高度自然 */
.banner-img {
	display: block;
	width: 100%;
	height: auto;
}

/* 暗色遮罩让文字更清晰 */
.banner-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 100%);
	z-index: 1;
	pointer-events: none;
}

.banner-slide .container {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
}

/* 分页圆点 */
.banner-pagination.swiper-pagination {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.banner-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 0;
}

.banner-pagination .swiper-pagination-bullet-active {
	width: 34px;
	border-radius: 6px;
	background: #f39f1d;
}

.banner-content {
	color: #fff;
	width: 100%;
	text-align: left;
	animation: bannerFadeIn 1s ease both;
}

@keyframes bannerFadeIn {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

.banner-title {
	font-size: 80px;
	font-style: italic;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 1px;
	color: #fff;
	text-align: left;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
	margin: 0 0 30px;
}

.banner-subtitle {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 2px;
	color: #fff;
	text-align: left;
	margin: 0 0 60px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* MORE 按钮 - 平行四边形 + 右侧装饰条（hover 联动） */
.banner-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 230px;
	height: 80px;
	background: #f39f1d;
	text-decoration: none;
	transform: skewX(-12deg);
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.35, 1),
	            box-shadow 0.5s ease;
	box-shadow: 0 10px 25px rgba(243, 159, 29, 0.3);
}

/* 按钮内部从右向左延伸的黄色色带（与装饰条联动 —— 就像装饰条被"拉进"按钮里） */
.banner-btn::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 100%;
	background: #facf4f;
	z-index: 0;
	transition: width 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

/* 右侧装饰条（在按钮外面） */
.banner-btn-deco {
	position: absolute;
	top: -10px;
	right: -8px;
	width: 16px;
	height: 80px;
	background: #facf4f;
	border-radius: 5px;
	z-index: 3;
	transition: all 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

/* 文字反倾斜回来，保持水平可读 */
.banner-btn-text {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	transform: skewX(12deg);
	transition: transform 0.4s ease, color 0.4s ease 0.1s;
	display: inline-flex;
	align-items: center;
}

/* 悬停时伸展出的箭头 */
.banner-btn-text::after {
	content: "→";
	display: inline-block;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	font-size: 20px;
	transition: max-width 0.4s ease 0.15s, opacity 0.4s ease 0.15s, margin-left 0.4s ease 0.15s;
}

/* ============ hover 联动特效 ============ */
.banner-btn:hover {
	transform: skewX(-12deg) translateY(-4px);
	box-shadow: 0 20px 40px rgba(250, 207, 79, 0.5);
}

/* 装饰条把整个按钮内部"填满"成浅黄色 */
.banner-btn:hover::before {
	width: 100%;
}

/* 装饰条本身：变粗、长高，像被"充能"点亮 */
.banner-btn:hover .banner-btn-deco {
	top: -14px;
	width: 22px;
	height: 92px;
	background: #fff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

/* 文字变深色（背景变亮了），并让位给箭头 */
.banner-btn:hover .banner-btn-text {
	color: #7a4b00;
	transform: skewX(12deg) translateX(-4px);
}

.banner-btn:hover .banner-btn-text::after {
	max-width: 30px;
	opacity: 1;
	margin-left: 10px;
}

/* 响应式 */
@media only screen and (max-width: 1200px) {
	.banner-title { font-size: 64px; }
	.banner-subtitle { font-size: 18px; }
}

@media only screen and (max-width: 992px) {
	.banner { height: 600px; }
	.banner-swiper { height: 600px !important; }
	.banner-swiper .swiper-wrapper { height: 600px !important; }
	.banner-slide { height: 600px !important; }
	.banner-img { width: 100%; height: 100%; object-fit: cover; }
	.banner-title { font-size: 52px; margin-bottom: 24px; }
	.banner-subtitle { font-size: 16px; margin-bottom: 44px; letter-spacing: 1px; }
	.banner-btn { width: 200px; height: 68px; padding: 0 32px; }
	.banner-btn::after { right: 32px; }
}

@media only screen and (max-width: 750px) {
	.banner {
		height: 300px;
	}
	.banner-swiper { height: 300px !important; }
	.banner-swiper .swiper-wrapper { height: 300px !important; }
	.banner-slide {
		height: 300px !important;
	}
	.banner-img { width: 100%; height: 100%; object-fit: cover; }
	.banner-title {
		font-size: 22px;
		letter-spacing: 0;
		margin-bottom: 12px;
	}
	.banner-subtitle {
		font-size: 12px;
		letter-spacing: 1px;
		margin-bottom: 20px;
	}
	.banner-btn {
		width: 130px;
		height: 42px;
	}
	.banner-btn-text {
		font-size: 13px;
		letter-spacing: 1px;
	}
	.banner-btn-deco {
		width: 10px;
		height: 42px;
		top: -6px;
		right: -6px;
		border-radius: 3px;
	}
}

/* ============================= */
/* fp_box_1  产品区块              */
/* ============================= */
.fp_box_1 {
	position: relative;
	height: 776px;
	padding: 90px 0 100px 0;
	background: url('../images/bg1.png') no-repeat center top;
	background-size: 100% 100%;
	overflow: hidden;
}

.fp_box_1 .container {
	position: relative;
	z-index: 2;
}

.fp_box_1_inner {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

/* ------- 左侧 ------- */
.fp_1_left {
	flex: 1;
	min-width: 0;
}

/* tabs 宽度：左栏 80% */
.fp_1_tabs {
    width: 95%;
}
.fp_1_title {
	font-size: 40px;
	font-weight: 800;
	color: #f39f1d;
	letter-spacing: 2px;
	margin: 0 0 30px;
}

/* 分类 tabs - 长条，右侧斜切出一个三角 */
.fp_1_tabs {
	position: relative;
	display: flex;
	gap: 4px;
	background: #fff;
	padding: 0 60px 0 0;                                     /* 只保留右侧斜切区域，其余无内边距 */
	margin: 0 0 30px;
	list-style: none;
	/* 右侧上方向内斜切，形成一个直角三角形 */
	clip-path: polygon(0 0, 100% 0, calc(100% - 45px) 100%, 0 100%);
}

.fp_1_tab {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 10px 6px;
	cursor: pointer;
	text-align: center;
	background: transparent;
	transition: background 0.3s ease, transform 0.3s ease;
}

/* 让所有 tab 的图标区域高度一致 */
.fp_1_tab_icon {
	height: 44px;
}

/* 文字区域高度也一致，第一行自然对齐 */
.fp_1_tab_name {
	min-height: 34px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.fp_1_tab_icon {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.fp_1_tab_icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

/* 默认显示 a*，hover/active 时切换到 a** */
.fp_1_tab_icon .ic_hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
}

.fp_1_tab_name {
	font-size: 12px;
	line-height: 1.4;
	color: #444;
	font-weight: 500;
	transition: color 0.3s ease;
}

/* hover / active：仅切换图标与文字颜色，不改变背景 */
.fp_1_tab:hover,
.fp_1_tab.active {
	background: transparent;
}

.fp_1_tab:hover .fp_1_tab_icon .ic_default,
.fp_1_tab.active .fp_1_tab_icon .ic_default {
	opacity: 0;
	transform: scale(0.9);
}

.fp_1_tab:hover .fp_1_tab_icon .ic_hover,
.fp_1_tab.active .fp_1_tab_icon .ic_hover {
	opacity: 1;
	transform: scale(1.05);
}

.fp_1_tab:hover .fp_1_tab_name,
.fp_1_tab.active .fp_1_tab_name {
	color: #f39f1d;
}

/* 产品列表 */
/* 面板容器：默认只显示 active 的那一份列表 */
.fp_1_panels {
	position: relative;
}

.fp_1_list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	display: none;
	animation: fp1Fade 0.4s ease both;
}

.fp_1_list.active {
	display: block;
}

@keyframes fp1Fade {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* 右侧图片：单张，通过 JS 换 src；此处仅保留基础淡入 */
.fp_1_slide_img {
	opacity: 1;
	transition: opacity 0.25s ease;
}

.fp_1_list li {
	white-space: nowrap;
}

.fp_1_list li a {
	white-space: nowrap;
}

/* fp_1 里的 MORE 按钮尺寸调小 */
.fp_1_more {
	width: 170px;
	height: 50px;
}

.fp_1_more .banner-btn-text {
	font-size: 15px;
	letter-spacing: 2px;
}

.fp_1_more .banner-btn-deco {
	width: 12px;
	height: 50px;
	top: -8px;
	right: -6px;
	border-radius: 4px;
}

.fp_1_more:hover .banner-btn-deco {
	top: -12px;
	width: 16px;
	height: 60px;
}

.fp_1_list li {
	position: relative;
	padding: 4px 0 4px 22px;
	line-height: 1.5;
	transition: transform 0.3s ease;
	white-space: nowrap;
	margin-bottom: 10px;
}

.fp_1_list li::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 50%;
	width: 6px;
	height: 6px;
	background: #f39f1d;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s ease, background 0.3s ease;
}

.fp_1_list li:hover::before,
.fp_1_list li.active::before {
	transform: translateY(-50%) scale(1.25);
}

.fp_1_list li a {
	color: #333;
	font-size: 15px;
	text-decoration: none;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.fp_1_list li:hover,
.fp_1_list li.active {
	transform: translateX(4px);
}

.fp_1_list li:hover a,
.fp_1_list li.active a {
	color: #f39f1d;
	font-weight: 600;
}

/* ------- 右侧轮播区 ------- */
.fp_1_right {
	position: relative;
	width: 600px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	padding-left: 20px;
	padding-top: 100px;
}

.fp_1_slider {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_1_slider_wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 0 20px;
}

.fp_1_slider_wrap img {
	width: 100%;
	max-height: 440px;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.fp_1_slider_wrap:hover img {
	transform: scale(1.04);
}

.fp_1_arrow {
	width: 40px;
	height: 40px;
	background: #f39f1d;
	color: #fff;
	border: none;
	font-size: 36px;
	line-height: 1;
	font-weight: 400;
	cursor: pointer;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(243, 159, 29, 0.35);
}

.fp_1_arrow:hover {
	background: #ff9c05;
	transform: scale(1.1);
}

.fp_1_caption {
	text-align: center;
	color: #f39f1d;
	font-size: 26px;
	font-weight: 700;
	margin-top: 24px;
	letter-spacing: 1px;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.fp_1_right { width: 500px; }
	.fp_1_tabs {
		width: 100%;
	}
	.fp_1_tab {
		padding: 8px 4px;
		gap: 2px;
	}
	.fp_1_tab_icon {
		width: 32px;
		height: 32px;
	}
	.fp_1_tab_name {
		font-size: 11px;
		line-height: 1.3;
	}
}

@media only screen and (max-width: 1200px) {
	.fp_1_right { width: 400px; }
	.fp_1_tab {
		padding: 6px 3px;
	}
	.fp_1_tab_icon {
		width: 26px;
		height: 26px;
	}
	.fp_1_tab_name {
		font-size: 10px;
	}
}

@media only screen and (max-width: 992px) {
	.fp_box_1 { padding: 60px 0; }
	.fp_box_1::after { display: none; }
	.fp_box_1_inner { flex-direction: column; }
	.fp_1_right {
		width: 100%;
		padding-left: 0;
		background: rgba(255, 255, 255, 0.4);
		padding: 20px;
		border-radius: 8px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_1 {
		padding: 40px 0;
		height: auto;
		background: #f6f6f6;
	}
	.fp_1_title { font-size: 28px; margin-bottom: 20px; }
	/* 手机端 tabs：一行不换行，横向滚动 */
	.fp_1_tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		gap: 4px;
		padding: 8px;
		/* 手机端取消斜切和右侧留白 */
		clip-path: none;
		padding-right: 8px;
		/* 隐藏滚动条外观 */
		scrollbar-width: none;
	}
	.fp_1_tabs::-webkit-scrollbar { display: none; }

	.fp_1_tab {
		flex: 0 0 auto;
		width: 110px;
		padding: 8px 6px;
	}
	.fp_1_tab_name { font-size: 10px; }
	.fp_1_list li {
		padding: 2px 0 2px 18px;
		line-height: 1.3;
	}
	.fp_1_list li a { font-size: 12px; }

	/* 手机端 MORE 按钮同步缩小 */
	.fp_1_more {
		width: 120px;
		height: 40px;
	}
	.fp_1_more .banner-btn-text {
		font-size: 12px;
		letter-spacing: 1px;
	}
	.fp_1_more .banner-btn-deco {
		width: 8px;
		height: 40px;
		top: -6px;
		right: -4px;
		border-radius: 3px;
	}
	.fp_1_more:hover .banner-btn-deco {
		top: -10px;
		width: 12px;
		height: 48px;
	}
	.fp_1_slider_wrap img { max-height: 260px; }
	.fp_1_arrow { width: 32px; height: 32px; font-size: 18px; }
	.fp_1_caption { font-size: 16px; }
	.asasd{
		display: none;
	}
}

/* ============================= */
/* fp_box_2  产品推荐              */
/* ============================= */
.fp_box_2 {
	padding: 80px 0 90px;
	background: #fff;
}

/* 顶部标题 + more */
.fp_2_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.fp_2_title {
	position: relative;
	font-size: 32px;
	font-weight: 700;
	color: #f39f1d;
	margin: 0;
	padding-bottom: 12px;
}

/* 标题下面的橙色下划线 */
.fp_2_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #f39f1d;
}

.fp_2_more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 22px;
	border: 1px solid #f39f1d;
	border-radius: 30px;
	color: #f39f1d;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.fp_2_more span {
	transition: transform 0.3s ease;
}

.fp_2_more:hover {
	background: #f39f1d;
	color: #fff;
	box-shadow: 0 6px 18px rgba(243, 159, 29, 0.35);
}

.fp_2_more:hover span {
	transform: translateX(4px);
}

/* 网格 */
.fp_2_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fp_2_item {
	background: transparent;
	transition: transform 0.4s ease;
}

.fp_2_item:hover {
	transform: translateY(-6px);
}

.fp_2_img {
	width: 100%;
	height: 400px;
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.fp_2_img img {
	max-width: 95%;
	max-height: 95%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.fp_2_item:hover .fp_2_img img {
	transform: scale(1.06);
}

.fp_2_name {
	text-align: center;
	font-size: 15px;
	color: #333;
	padding: 18px 12px 22px;
	margin: 0;
	transition: color 0.3s ease;
}

.fp_2_item:hover .fp_2_name {
	color: #f39f1d;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1550px) {
	.fp_2_grid { gap: 20px; }
	.fp_2_img { height: 340px; }
}

@media only screen and (max-width: 1400px) {
	.fp_box_2 { padding: 70px 0; }
	.fp_2_title { font-size: 28px; }
	.fp_2_img { height: 300px; }
	.fp_2_name { font-size: 14px; }
}

@media only screen and (max-width: 1200px) {
	.fp_2_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
	.fp_2_img { height: 260px; }
}

@media only screen and (max-width: 992px) {
	.fp_2_grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.fp_2_img { height: 240px; }
}

@media only screen and (max-width: 750px) {
	.fp_box_2 { padding: 40px 0; }
	.fp_2_head {
		margin-bottom: 22px;
	}
	.fp_2_title {
		font-size: 20px;
		padding-bottom: 8px;
	}
	.fp_2_more {
		padding: 6px 14px;
		font-size: 12px;
	}
	.fp_2_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.fp_2_img { height: 160px; }
	.fp_2_name {
		font-size: 12px;
		padding: 10px 6px 14px;
	}
}

/* ============================= */
/* fp_box_3  About Us              */
/* ============================= */
.fp_box_3 {
	position: relative;
	padding: 90px 0 160px;                                    /* 底部留出 80px 让特色按钮下沉 */
	background: #fff url('../images/bgimg1.jpg') no-repeat left bottom;
	background-size: 100% auto;
}

.fp_box_3 .container {
	position: relative;
}

.fp_3_wrap {
	position: relative;
	display: flex;
	align-items: stretch;
	min-height: 520px;
}

/* 右侧文字：右对齐留出左边给背景图 */
.fp_3_text {
	position: relative;
	z-index: 2;
	margin-left: auto;
	width: 55%;
	padding: 20px 0 20px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.fp_3_title {
	position: relative;
	color: #f39f1d;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 12px;
}

.fp_3_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #f39f1d;
}

.fp_3_desc {
	color: #555;
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 30px;
	flex: 1;
}

.fp_3_desc p {
	margin: 0 0 12px;
	text-align: left;
}

/* 右下角 MORE 按钮 */
.fp_3_more {
	align-self: flex-end;
}

/* 特色条外层包裹：绝对定位，宽度沿用 .container 自身规则 */
.fp_3_features_wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -220px;
	z-index: 10;
}

.fp_3_features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	list-style: none;
	margin: 0;
	padding: 0;
	height: 160px;
}

.fp_3_feature {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 30px;
	border-right: 1px solid #eee;
	transition: background 0.3s ease;
}

.fp_3_feature:last-child {
	border-right: none;
}

.fp_3_feature_icon {
	flex-shrink: 0;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fp_3_feature_icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.fp_3_feature:hover .fp_3_feature_icon img {
	transform: scale(1.08) rotate(-4deg);
}

.fp_3_feature_text {
	color: #555;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	transition: color 0.3s ease;
}

.fp_3_feature:hover {
	background: #fafafa;
}

.fp_3_feature:hover .fp_3_feature_text {
	color: #f39f1d;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1550px) {
	.fp_3_wrap { min-height: 460px; }
	.fp_3_desc { font-size: 13px; line-height: 1.8; }
}

@media only screen and (max-width: 1550px) {
	.fp_3_features_wrap { bottom: -200px; }
}

@media only screen and (max-width: 1400px) {
	.fp_box_3 { padding: 70px 0 150px; }
	.fp_3_title { font-size: 28px; }
	.fp_3_wrap { min-height: 420px; }
	.fp_3_features { height: 150px; }
	.fp_3_feature { padding: 20px 22px; gap: 16px; }
	.fp_3_feature_icon { width: 52px; height: 52px; }
	.fp_3_feature_text { font-size: 13px; }
	.fp_3_features_wrap { bottom: -190px; }
}

@media only screen and (max-width: 1200px) {
	.fp_box_3 {
		background-size: 60% auto;
	}
	.fp_3_wrap {
		min-height: 460px;
	}
	/* ≤1200 起特色条不再负出去 */
	.fp_3_features_wrap {
		position: static;
		bottom: auto;
	}
}

@media only screen and (max-width: 992px) {
	.fp_box_3 {
		background-position: left top;
		background-size: 100% 260px;
		padding: 300px 0 40px;                              /* 图放到顶部，文字往下让 */
	}
	.fp_3_wrap {
		flex-direction: column;
		min-height: 0;
	}
	.fp_3_text {
		width: 100%;
		margin-left: 0;
		padding: 0;
	}
	/* 特色条不再负出去，正常流内显示 */
	.fp_3_features_wrap {
		position: static;
		transform: none;
		margin-top: 30px;
		padding: 0;
	}
	.fp_3_features {
		grid-template-columns: 1fr;
		height: auto;
	}
	.fp_3_feature {
		border-right: none;
		border-bottom: 1px solid #eee;
	}
	.fp_3_feature:last-child { border-bottom: none; }
}

@media only screen and (max-width: 750px) {
	.fp_box_3 { padding: 200px 0 30px; background-size: 100% 180px; }
	.fp_3_title { font-size: 22px; margin-bottom: 16px; }
	.fp_3_desc { font-size: 12px; line-height: 1.7; }
	.fp_3_feature {
		padding: 14px 18px;
		gap: 12px;
	}
	.fp_3_feature_icon {
		width: 42px;
		height: 42px;
	}
	.fp_3_feature_text {
		font-size: 12px;
	}
}

/* ============================= */
/* fp_box_4  Global sales network */
/* ============================= */
.fp_box_4 {
	position: relative;
	width: 100%;
	height: 825px;
	background: #333 url('../images/bg2.jpg') no-repeat center center;
	background-size: cover;
	overflow: hidden;
	display: flex;
	align-items: center;
}

/* 左侧橙色卡片（as1.png 作为卡片背景） */
.fp_4_panel {
	position: relative;
	width: 1100px;
	max-width: 65%;
	height: 630px;
	margin-left: 0;
	margin-top: 30px;
	background: url('../images/as1.png') no-repeat right top;
	background-size: cover;
	color: #fff;
	padding: 80px 12%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fp_4_inner {
	max-width: 640px;
}

.fp_4_title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 40px;
}

.fp_4_line {
	width: 60px;
	height: 2px;
	background: rgba(255, 255, 255, 0.7);
	margin-bottom: 44px;
}

.fp_4_desc {
	color: #fff;
	font-size: 16px;
	line-height: 2.1;
	margin-bottom: 100px;
}

.fp_4_desc p {
	margin: 0;
}

/* 底部数据统计 */
.fp_4_stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 60px;
}

.fp_4_num {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 1px;
}

.fp_4_num sup {
	font-size: 14px;
	font-weight: 500;
	margin-left: 4px;
	vertical-align: super;
	line-height: 1;
}

.fp_4_label {
	margin-top: 8px;
	color: #fff;
	font-size: 15px;
	opacity: 0.95;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1550px) {
	.fp_box_4 { height: 720px; }
	.fp_4_panel {
		width: 960px;
		max-width: 68%;
		height: 560px;
		padding: 60px 200px 60px 10%;
	}
	.fp_4_title { font-size: 32px; }
	.fp_4_desc { font-size: 15px; margin-bottom: 40px; }
	.fp_4_num { font-size: 32px; }
}

@media only screen and (max-width: 1400px) {
	.fp_box_4 { height: 640px; }
	.fp_4_panel {
		width: 860px;
		max-width: 70%;
		height: 500px;
		padding: 50px 180px 50px 8%;
	}
	.fp_4_title { font-size: 28px; }
	.fp_4_stats { gap: 40px; }
}

@media only screen and (max-width: 1200px) {
	.fp_box_4 { height: 560px; }
	.fp_4_panel {
		width: 720px;
		max-width: 75%;
		height: 440px;
		padding: 40px 140px 40px 6%;
	}
	.fp_4_title { font-size: 26px; }
	.fp_4_desc { font-size: 14px; }
	.fp_4_num { font-size: 28px; }
}

@media only screen and (max-width: 992px) {
	.fp_box_4 { height: auto; padding: 40px 15px; }
	.fp_4_panel {
		width: 100%;
		max-width: 100%;
		height: auto;
		clip-path: none;
		padding: 40px 30px;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_4 { padding: 30px 15px; }
	.fp_4_panel {
		/* 右侧多留白避开斜切透明区域 */
		padding: 24px 26% 24px 22px;
	}
	.fp_4_inner { max-width: 100%; }
	.fp_4_title { font-size: 16px; margin-bottom: 10px; }
	.fp_4_line { width: 40px; margin-bottom: 12px; }
	.fp_4_desc {
		font-size: 11px;
		line-height: 1.55;
		margin-bottom: 16px;
	}
	.fp_4_stats { gap: 12px; flex-wrap: nowrap; }
	.fp_4_stats li { flex: 1; min-width: 0; }
	.fp_4_num { font-size: 15px; letter-spacing: 0; }
	.fp_4_num sup { font-size: 9px; margin-left: 2px; }
	.fp_4_label { font-size: 10px; margin-top: 4px; }
}

/* ============================= */
/* fp_box_5  Application areas    */
/* ============================= */
.fp_box_5 {
	padding: 70px 0 0;
	background: #fff;
}

.fp_5_title {
	position: relative;
	color: #f39f1d;
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 40px;
	padding-bottom: 12px;
}

.fp_5_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #f39f1d;
}

/* 5 张图片紧贴排列，不放在 container 里面 */
.fp_5_list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 575px;
}

.fp_5_item {
	position: relative;
	flex: 1;
	overflow: hidden;
	cursor: pointer;
}

/* 图片：默认略微降饱和度和亮度，hover 时恢复并放大 */
.fp_5_img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.9) saturate(0.9);
	transition: transform 0.9s cubic-bezier(0.25, 1, 0.35, 1),
	            filter 0.6s ease;
}

.fp_5_item:hover .fp_5_img {
	transform: scale(1.1);
	filter: brightness(1) saturate(1.1);
}

/* 默认蒙版：底部深色渐变 */
.fp_5_mask {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 30px 20px;
	overflow: hidden;
}

/* 底部渐变（默认可见，hover 时淡出） */
.fp_5_mask::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 45%);
	opacity: 1;
	transition: opacity 0.5s ease;
	z-index: 1;
}

/* 全屏橙色蒙版（从底向上刷入） */
.fp_5_mask::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(243, 159, 29, 0.92) 0%, rgba(230, 120, 20, 0.92) 100%);
	transform: translateY(101%);
	transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
	z-index: 2;
}

/* 标题 */
.fp_5_name {
	position: relative;
	z-index: 3;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 1.35;
	letter-spacing: 1px;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.35, 1);
	margin-bottom: 0;
}

/* 标题下方的细横线（默认宽 0，hover 时展开） */
.fp_5_name::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: #fff;
	margin: 12px auto 0;
	transition: width 0.6s cubic-bezier(0.25, 1, 0.35, 1) 0.15s;
}

/* hover 出现的"View more"提示 */
.fp_5_more {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	z-index: 3;
	color: #fff;
	font-size: 13px;
	letter-spacing: 3px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
}

.fp_5_more::before,
.fp_5_more::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 1px;
	background: #fff;
	vertical-align: middle;
	margin: 0 10px;
}

/* ==== hover 状态触发的多层动画 ==== */
.fp_5_item:hover .fp_5_mask::before {
	opacity: 0;
}

.fp_5_item:hover .fp_5_mask::after {
	transform: translateY(0);
}

/* 标题从底部滑到中央 */
.fp_5_item:hover .fp_5_mask {
	justify-content: center;
}

.fp_5_item:hover .fp_5_name {
	transform: translateY(-10px);
}

.fp_5_item:hover .fp_5_name::after {
	width: 40px;
}

.fp_5_item:hover .fp_5_more {
	opacity: 1;
	transform: translateY(0);
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1550px) {
	.fp_5_list { height: 520px; }
}

@media only screen and (max-width: 1400px) {
	.fp_box_5 { padding-top: 60px; }
	.fp_5_title { font-size: 28px; margin-bottom: 32px; }
	.fp_5_list { height: 460px; }
	.fp_5_name { font-size: 18px; }
}

@media only screen and (max-width: 1200px) {
	.fp_5_list { height: 400px; }
	.fp_5_name { font-size: 16px; }
}

@media only screen and (max-width: 992px) {
	.fp_5_list {
		flex-wrap: wrap;
		height: auto;
	}
	.fp_5_item {
		flex: 0 0 33.333%;
		height: 260px;
	}
	.fp_5_item:nth-child(4),
	.fp_5_item:nth-child(5) {
		flex: 0 0 50%;
	}
}

@media only screen and (max-width: 750px) {
	.fp_box_5 { padding-top: 40px; }
	.fp_5_title { font-size: 20px; margin-bottom: 20px; padding-bottom: 8px; }
	.fp_5_list {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.fp_5_item,
	.fp_5_item:nth-child(4),
	.fp_5_item:nth-child(5) {
		flex: 0 0 auto;
		width: 100%;
		height: 100px;
	}
	.fp_5_img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.fp_5_name { font-size: 16px; }
}

/* ============================= */
/* fp_box_6  NEW / 新闻轮播        */
/* ============================= */
.fp_box_6 {
	padding: 80px 0 70px;
	background: #fff;
}

.fp_6_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.fp_6_title {
	position: relative;
	color: #f39f1d;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	padding-bottom: 12px;
	text-align: left;
}

.fp_6_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #f39f1d;
}

/* MORE 按钮：复用 banner-btn，但更小 */
.fp_6_more {
	width: 130px;
	height: 46px;
}
.fp_6_more .banner-btn-text {
	font-size: 14px;
	letter-spacing: 2px;
}
.fp_6_more .banner-btn-deco {
	width: 10px;
	height: 46px;
	top: -6px;
	right: -5px;
	border-radius: 4px;
}
.fp_6_more:hover .banner-btn-deco {
	top: -10px;
	width: 14px;
	height: 54px;
}

/* 轮播卡片 */
.fp_6_swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 30px;
}

.fp_6_card {
	background: #fff;
	text-align: left;
	color: #505050;
}

.fp_6_img {
	width: 100%;
	height: 325px;
	overflow: hidden;
	background: #f5f5f5;
	margin-bottom: 20px;
}

.fp_6_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.35, 1);
}

.fp_6_card:hover .fp_6_img img {
	transform: scale(1.05);
}

.fp_6_date {
	color: #999;
	font-size: 12px;
	margin-bottom: 8px;
}

.fp_6_ctitle {
	color: #505050;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 16px;
	text-align: left;
	transition: color 0.3s ease;
}

.fp_6_card:hover .fp_6_ctitle {
	color: #f39f1d;
}

.fp_6_desc {
	color: #888;
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ========== 分页器：Swiper 原生 scrollbar ========== */
.fp_6_pager {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.fp_6_arrow {
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	color: #888;
	font-size: 28px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease, transform 0.3s ease;
	flex-shrink: 0;
}

.fp_6_arrow:hover {
	color: #f39f1d;
	transform: scale(1.15);
}

/* 覆盖 swiper 原生 scrollbar 的默认位置 & 颜色 */
.fp_6_scrollbar.swiper-scrollbar {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	top: auto !important;
	flex: 1;
	height: 3px;
	background: #505050;
	border-radius: 2px;
	opacity: 1 !important;
	visibility: visible !important;
}

.fp_6_scrollbar .swiper-scrollbar-drag {
	background: #f39f1d;
	border-radius: 2px;
	cursor: grab;
}

.fp_6_scrollbar .swiper-scrollbar-drag:active {
	cursor: grabbing;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.fp_6_img { height: 280px; }
	.fp_6_ctitle { font-size: 20px; }
}

@media only screen and (max-width: 1200px) {
	.fp_box_6 { padding: 60px 0 50px; }
	.fp_6_img { height: 240px; }
	.fp_6_ctitle { font-size: 18px; }
}

@media only screen and (max-width: 750px) {
	.fp_box_6 { padding: 40px 0 30px; }
	.fp_6_head { margin-bottom: 24px; }
	.fp_6_title { font-size: 20px; padding-bottom: 8px; }
	.fp_6_more { width: 100px; height: 36px; }
	.fp_6_more .banner-btn-text { font-size: 12px; letter-spacing: 1px; }
	.fp_6_more .banner-btn-deco {
		width: 8px; height: 36px; top: -5px; right: -4px;
	}
	.fp_6_more:hover .banner-btn-deco {
		top: -8px; width: 12px; height: 44px;
	}
	.fp_6_img { height: 180px; }
	.fp_6_ctitle { font-size: 16px; margin-bottom: 10px; }
	.fp_6_desc { font-size: 12px; }
	.fp_6_pager { gap: 12px; margin-top: 16px; }
	.fp_6_arrow { width: 26px; height: 26px; font-size: 22px; }
}


/* ============================= */
/* fp_box_7  Call to Action 条    */
/* ============================= */
.fp_box_7 {
	width: 100%;
	height: 135px;
	background-image: url('../images/bg3.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: center;
}

.fp_box_7 .container {
	height: 100%;
}

.fp_7_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 30px;
}

.fp_7_text {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	color: #505050;
	line-height: 1.4;
	text-align: left;
}

.fp_7_hi {
	color: #f39f1d;
}

.fp_7_btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #f39f1d;
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	padding-bottom: 4px;
	flex-shrink: 0;
	transition: color 0.3s ease;
}

.fp_7_btn::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #f39f1d;
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.25, 1, 0.35, 1);
}

.fp_7_btn:hover {
	color: #d98a10;
}

.fp_7_btn:hover::after {
	transform: scaleX(0.6);
}

.fp_7_btn_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #f39f1d;
	color: #fff;
	transition: transform 0.35s cubic-bezier(0.25, 1, 0.35, 1);
}

.fp_7_btn:hover .fp_7_btn_icon {
	transform: translateX(6px) rotate(15deg);
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.fp_7_text { font-size: 26px; }
	.fp_7_btn { font-size: 20px; }
}

@media only screen and (max-width: 1200px) {
	.fp_box_7 { height: 110px; }
	.fp_7_text { font-size: 22px; }
	.fp_7_btn { font-size: 18px; }
}

@media only screen and (max-width: 750px) {
	.fp_box_7 { height: auto; padding: 24px 0; }
	.fp_7_inner { flex-direction: column; gap: 14px; align-items: flex-start; }
	.fp_7_text { font-size: 18px; }
	.fp_7_btn { font-size: 16px; }
	.fp_7_btn_icon { width: 20px; height: 20px; }
}

/* ============================= */
/* Footer                        */
/* ============================= */
.footer {
	position: relative;
	background-color: #212324;
	background-image: url('../images/footer.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #fff;
	padding: 70px 0 24px;
	margin-top: 0;
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(33, 35, 36, 0.85) 0%, rgba(33, 35, 36, 0.95) 100%);
	z-index: 1;
}

.footer .container {
	position: relative;
	z-index: 2;
}

.footer-main {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 40px;
}

.footer-col-1 { width: 280px; flex-shrink: 0; }
.footer-col-2 { flex: 1; max-width: 420px; }
.footer-col-3 { width: 160px; flex-shrink: 0; }
.footer-col-4 { width: 260px; flex-shrink: 0; }

/* ---- 第一列：Logo + 社交 + 订阅 ---- */
.footer-logo {
	text-align: left;
	margin-bottom: 34px;
}

.footer-logo img {
	max-width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}

.footer-social {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	display: flex;
	gap: 14px;
}

.footer-social li a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #cfcfcf;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.footer-social li a svg {
	width: 18px;
	height: 18px;
}

.footer-social li a:hover {
	background: #f39f1d;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 6px 14px rgba(243, 159, 29, 0.35);
}

.footer-subscribe {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: #f39f1d;
	color: #fff;
	text-decoration: none;
	padding: 0 26px;
	height: 44px;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 500;
	width: 260px;
	position: relative;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.25, 1, 0.35, 1);
	box-shadow: 0 6px 18px rgba(243, 159, 29, 0.25);
}

.footer-subscribe::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #ffb84d 0%, #f39f1d 100%);
	transition: left 0.5s cubic-bezier(0.25, 1, 0.35, 1);
	z-index: 0;
}

.footer-subscribe:hover::before { left: 0; }
.footer-subscribe:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(243, 159, 29, 0.4);
}

.footer-subscribe-text,
.footer-subscribe-icon {
	position: relative;
	z-index: 1;
}

.footer-subscribe-icon img {
	width: 18px;
	height: 18px;
	display: block;
	transition: transform 0.35s ease;
}

.footer-subscribe:hover .footer-subscribe-icon img {
	transform: translateX(4px);
}

/* ---- 第二列：Contact Us 表单 ---- */
.footer-title {
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 20px;
	letter-spacing: 1px;
}

.footer-form-row {
	display: flex;
	gap: 14px;
	margin-bottom: 12px;
}

.footer-form-row .footer-form-group { flex: 1; }

.footer-form-group {
	margin-bottom: 12px;
	text-align: left;
}

.footer-form-group label {
	display: block;
	color: #c4c4c4;
	font-size: 12px;
	margin-bottom: 6px;
	letter-spacing: 0.5px;
}

.footer-form-group input,
.footer-form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	color: #fff;
	font-size: 13px;
	padding: 8px 12px;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease;
	font-family: inherit;
}

.footer-form-group input {
	height: 34px;
}

.footer-form-group textarea {
	resize: none;
	min-height: 70px;
}

.footer-form-group input:focus,
.footer-form-group textarea:focus {
	border-color: #f39f1d;
	background: rgba(255, 255, 255, 0.1);
}

.footer-form-actions {
	text-align: center;
	margin-top: 6px;
}

.footer-submit {
	background: #fff;
	color: #333;
	border: none;
	border-radius: 40px;
	padding: 8px 32px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	margin-left:31px;
}

.footer-submit:hover {
	background: #f39f1d;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(243, 159, 29, 0.35);
}

/* ---- 第三列：导航 ---- */
.footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav li { margin-bottom: 18px; }

.footer-nav a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	position: relative;
	transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 2px;
	background: #f39f1d;
	transform: translateY(-50%);
	transition: width 0.3s ease;
}

.footer-nav a:hover {
	color: #f39f1d;
	padding-left: 18px;
}

.footer-nav a:hover::before {
	width: 12px;
}

/* ---- 第四列：地址 + 二维码 ---- */
.footer-info {
	margin-bottom: 20px;
}

.footer-info h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 8px;
}

.footer-info p {
	color: #b5b5b5;
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.footer-qr {
	display: flex;
	gap: 14px;
	margin-top: 20px;
}

.footer-qr-item {
	text-align: center;
}

.footer-qr-item img {
	width: 82px;
	height: 82px;
	display: block;
	background: #fff;
	padding: 4px;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.footer-qr-item:hover img {
	transform: scale(1.05);
}

.footer-qr-item p {
	color: #b5b5b5;
	font-size: 12px;
	margin: 8px 0 0;
}

/* ---- 底部版权 ---- */
.footer-copy {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 20px;
	color: #7a7a7a;
	font-size: 12px;
	text-align: left;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.footer-col-1 { width: 180px; }
	.footer-col-2 { max-width: 380px; }
	.footer-col-3 { width: 140px; }
	.footer-col-4 { width: 240px; }
	.footer-nav a { font-size: 16px; }
	.footer-qr-item img { width: 74px; height: 74px; }
}

@media only screen and (max-width: 1200px) {
	.footer { padding: 60px 0 20px; }
	.footer-main { flex-wrap: wrap; gap: 30px; }
	.footer-col-1 { width: calc(50% - 15px); }
	.footer-col-2 { width: calc(50% - 15px); max-width: none; }
	.footer-col-3 { width: calc(50% - 15px); }
	.footer-col-4 { width: calc(50% - 15px); }
}

@media only screen and (max-width: 750px) {
	.footer { padding: 40px 0 20px; margin-top: 0; }
	.footer-main { flex-direction: column; gap: 30px; padding-bottom: 30px; }
	.footer-col-1,
	.footer-col-2,
	.footer-col-3,
	.footer-col-4 { width: 100%; }
	.footer-logo img { width: 120px; margin: 0 auto 20px; }
	.footer-col-1 { text-align: center; }
	.footer-social { justify-content: center; }
	.footer-subscribe { width: 100%; justify-content: center; }
	.footer-title { font-size: 20px; }
	.footer-form-row { flex-direction: column; gap: 0; }
	.footer-nav { text-align: center; }
	.footer-nav a { font-size: 15px; }
	.footer-info h4 { font-size: 15px; }
	.footer-info p { font-size: 12px; }
	.footer-qr { justify-content: center; }
	.footer-qr-item img { width: 90px; height: 90px; }
	.footer-copy { text-align: center; }
}


/* ============================= */
/* 二级页 banner_two             */
/* ============================= */
.banner_two {
	margin-top: 100px;
	width: 100%;
	overflow: hidden;
}

.banner_two img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 750px) {
	.banner_two {
		margin-top: 70px;
	}
}


/* ============================= */
/* about_box_1  About Us         */
/* ============================= */
.about_box_1 {
	padding: 70px 0 80px;
	background: #fff;
}

/* 顶部小标 + 主标题 */
.ab_1_intro {
	margin-bottom: 40px;
}

.ab_1_kicker {
	color: #f39f1d;
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 10px;
	text-align: left;
}

.ab_1_title {
	color: #f39f1d;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	text-align: left;
}

/* 大标语 Excellent quality */
.ab_1_slogan {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 44px;
}

.ab_1_arrow {
	color: #f39f1d;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.ab_1_slogan_light,
.ab_1_slogan_bold {
	font-size: 60px;
	line-height: 1;
	letter-spacing: 1px;
}

.ab_1_slogan_light {
	color: #f39f1d;
	font-weight: 300;
}

.ab_1_slogan_bold {
	color: #f39f1d;
	font-weight: 700;
}

/* 主体：图 + 文 */
.ab_1_body {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.ab_1_img {
	width: 46%;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 4px;
}

.ab_1_img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.35, 1);
}

.ab_1_img:hover img {
	transform: scale(1.03);
}

.ab_1_desc {
	flex: 1;
	color: #666;
	font-size: 15px;
	line-height: 2.2;
	text-align: left;
}

.ab_1_desc p {
	margin: 0 0 10px;
}

.ab_1_desc .ab_1_hi {
	color: #f39f1d;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.ab_1_title { font-size: 28px; }
	.ab_1_slogan_light,
	.ab_1_slogan_bold { font-size: 52px; }
	.ab_1_body { gap: 40px; }
	.ab_1_desc { font-size: 14px; }
}

@media only screen and (max-width: 1200px) {
	.about_box_1 { padding: 60px 0; }
	.ab_1_title { font-size: 24px; }
	.ab_1_slogan_light,
	.ab_1_slogan_bold { font-size: 42px; }
	.ab_1_body { gap: 30px; }
	.ab_1_img { width: 48%; }
}

@media only screen and (max-width: 992px) {
	.ab_1_body { flex-direction: column; gap: 24px; }
	.ab_1_img { width: 100%; }
}

@media only screen and (max-width: 750px) {
	.about_box_1 { padding: 40px 0 50px; }
	.ab_1_kicker { font-size: 15px; }
	.ab_1_title { font-size: 20px; }
	.ab_1_slogan { gap: 8px; margin-bottom: 26px; }
	.ab_1_slogan_light,
	.ab_1_slogan_bold { font-size: 30px; }
	.ab_1_arrow svg { width: 16px; height: 16px; }
	.ab_1_desc { font-size: 13px; line-height: 2; }
}


/* ============================= */
/* about_box_2  荣誉资质轮播      */
/* ============================= */
.about_box_2 {
	padding: 70px 0 80px;
	background: #f5f5f5;
}

.ab_2_title {
	color: #f39f1d;
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 20px;
	letter-spacing: 1px;
}

.ab_2_desc {
	color: #888;
	font-size: 14px;
	line-height: 1.9;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 50px;
}

/* 轮播外壳：左右箭头 + swiper */
.ab_2_swiper_wrap {
	position: relative;
	padding: 0 60px;
}

.ab_2_swiper {
	overflow: hidden;
	position: relative;
}

.ab_2_card {
	background: transparent;
	text-align: center;
}

.ab_2_img {
	width: 100%;
	height: 330px;
	background: #fff;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.ab_2_card:hover .ab_2_img {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* 左右箭头：细长深灰背景条（约图片一半高，垂直居中） */
.ab_2_arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 120px;
	background: #b0b0b0;
	border: none;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.3s ease, color 0.3s ease;
	z-index: 2;
}

.ab_2_arrow.prev { left: 0; }
.ab_2_arrow.next { right: 0; }

.ab_2_arrow:hover {
	background: #f39f1d;
	color: #fff;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.ab_2_title { font-size: 30px; }
	.ab_2_img { height: 380px; }
	.ab_2_arrow { width: 36px; height: 190px; }
}

@media only screen and (max-width: 1200px) {
	.about_box_2 { padding: 60px 0; }
	.ab_2_title { font-size: 26px; }
	.ab_2_desc { font-size: 13px; margin-bottom: 40px; }
	.ab_2_img { height: 340px; }
	.ab_2_swiper_wrap { padding: 0 44px; }
	.ab_2_arrow { width: 34px; height: 170px; }
	.ab_2_arrow svg { width: 22px; height: 22px; }
}

@media only screen and (max-width: 992px) {
	.ab_2_img { height: 380px; }
}

@media only screen and (max-width: 750px) {
	.about_box_2 { padding: 40px 0 50px; }
	.ab_2_title { font-size: 22px; }
	.ab_2_desc { font-size: 12px; margin-bottom: 26px; }
	.ab_2_img { height: auto; }
	.ab_2_img img { width: 100%; height: auto; object-fit: contain; }
	.ab_2_swiper_wrap { padding: 0 30px; }
	.ab_2_arrow { width: 28px; height: 160px; }
	.ab_2_arrow svg { width: 18px; height: 18px; }
}


/* ============================= */
/* about_box_3  Corporate Culture */
/* ============================= */
.about_box_3 {
	padding: 70px 0 80px;
	background: #fff;
}

.ab_3_title {
	color: #f39f1d;
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
	letter-spacing: 1px;
}

.ab_3_grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 每一大行 */
.ab_3_row {
	display: flex;
	gap: 16px;
}

.ab_3_row_sub {
	display: flex;
	gap: 16px;
}

/* 上排：60% + 40% */
.ab_3_top .ab_3_big { width: 60%; }
.ab_3_top .ab_3_col { width: 40%; display: flex; flex-direction: column; gap: 16px; }
.ab_3_col .ab_3_row_sub .ab_3_item { flex: 1; }

/* 下排：50 / 50 */
.ab_3_bottom .ab_3_half { flex: 1; }

/* 图片容器：固定高度，方便 cover 裁切 */
.ab_3_big { height: 460px; }
.ab_3_col .ab_3_row_sub:first-child { height: 220px; }
.ab_3_col .ab_3_row_sub:last-child { height: 220px; }
.ab_3_col .ab_3_row_sub:first-child + .ab_3_row_sub,
.ab_3_top .ab_3_col .ab_3_row_sub:last-child .ab_3_wide { width: 100%; }
.ab_3_bottom .ab_3_half { height: 320px; }

/* 通用图片容器：overflow hidden + hover 特效 */
.ab_3_item {
	position: relative;
	overflow: hidden;
	background: #eee;
}

.ab_3_pic {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ab_3_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1),
	            filter 0.5s ease;
}

/* Hover 特效：图片轻放大 + 亮度提升 + 覆盖一层遮罩由下向上升起 */
.ab_3_item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.28) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}

.ab_3_item:not(.ab_3_text):hover .ab_3_pic img {
	transform: scale(1.06);
	filter: brightness(1.05);
}

.ab_3_item:not(.ab_3_text):hover::after {
	opacity: 1;
}

/* 橙色文字块 */
.ab_3_text {
	background: #f39f1d;
	color: #fff;
	display: flex;
	align-items: center;
	transition: background 0.35s ease;
}

.ab_3_text:hover {
	background: #d98a10;
}

.ab_3_text_inner {
	padding: 24px 28px;
	text-align: left;
}

.ab_3_text h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #fff;
}

.ab_3_text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.ab_3_big { height: 420px; }
	.ab_3_col .ab_3_row_sub:first-child,
	.ab_3_col .ab_3_row_sub:last-child { height: 200px; }
	.ab_3_bottom .ab_3_half { height: 300px; }
	.ab_3_text h3 { font-size: 22px; }
}

@media only screen and (max-width: 1200px) {
	.about_box_3 { padding: 60px 0; }
	.ab_3_title { font-size: 28px; margin-bottom: 30px; }
	.ab_3_big { height: 360px; }
	.ab_3_col .ab_3_row_sub:first-child,
	.ab_3_col .ab_3_row_sub:last-child { height: 170px; }
	.ab_3_bottom .ab_3_half { height: 260px; }
	.ab_3_text h3 { font-size: 20px; }
	.ab_3_text p { font-size: 13px; }
	.ab_3_text_inner { padding: 18px 22px; }
}

@media only screen and (max-width: 992px) {
	/* 上排改为纵向排列，图/文都变宽 */
	.ab_3_top { flex-direction: column; }
	.ab_3_top .ab_3_big,
	.ab_3_top .ab_3_col { width: 100%; }
	.ab_3_big { height: 320px; }
	.ab_3_col .ab_3_row_sub:first-child,
	.ab_3_col .ab_3_row_sub:last-child { height: 200px; }
	.ab_3_bottom .ab_3_half { height: 240px; }
}

@media only screen and (max-width: 750px) {
	.about_box_3 { padding: 40px 0 50px; }
	.ab_3_title { font-size: 22px; margin-bottom: 24px; }
	.ab_3_grid { gap: 10px; }
	.ab_3_row,
	.ab_3_row_sub { gap: 10px; flex-direction: column; }
	.ab_3_col .ab_3_row_sub { flex-direction: row; }
	.ab_3_big { height: 220px; }
	.ab_3_col .ab_3_row_sub:first-child,
	.ab_3_col .ab_3_row_sub:last-child { height: 140px; }
	.ab_3_bottom .ab_3_half { height: 180px; }
	.ab_3_text h3 { font-size: 18px; }
	.ab_3_text p { font-size: 12px; }
	.ab_3_text_inner { padding: 14px 18px; }
}


/* ============================= */
/* cahnp_box_1  Product Center    */
/* ============================= */
.cahnp_box_1 {
	padding: 70px 0 80px;
	background: #fff;
}

/* 标题 & 描述 */
.cp_1_title {
	color: #f39f1d;
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 16px;
	letter-spacing: 1px;
}

.cp_1_desc {
	color: #888;
	font-size: 14px;
	line-height: 1.9;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 40px;
}

/* ---- 分类小导航 ---- */
.cp_1_tabs_wrap {
	position: relative;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 40px;
}

.cp_1_tabs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}

.cp_1_tab {
	flex: 1;
	min-width: 0;
	text-align: center;
	position: relative;
}

.cp_1_tab a {
	display: block;
	color: #666;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	padding: 14px 12px;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
}

.cp_1_tab a::after {
	content: "";
	position: absolute;
	left: 15%;
	right: 15%;
	bottom: -1px;
	height: 3px;
	background: #f39f1d;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.35, 1);
}

.cp_1_tab:hover a,
.cp_1_tab.active a {
	color: #f39f1d;
	font-weight: 700;
}

.cp_1_tab:hover a::after,
.cp_1_tab.active a::after {
	transform: scaleX(1);
}

/* ---- 产品卡片列表 ---- */
.cp_1_list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.cp_1_item { }

.cp_1_card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.35s ease,
	            box-shadow 0.35s ease,
	            transform 0.35s ease;
	position: relative;
}

.cp_1_card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #f39f1d;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.45s cubic-bezier(0.25, 1, 0.35, 1);
	z-index: 2;
}

.cp_1_card:hover {
	border-color: #f39f1d;
	box-shadow: 0 14px 32px rgba(243, 159, 29, 0.15);
	transform: translateY(-6px);
}

.cp_1_card:hover::before {
	transform: scaleX(1);
}

.cp_1_img {
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

.cp_1_img img {
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
	margin:auto;
}

.cp_1_card:hover .cp_1_img img {
	transform: scale(1.08);
}

.cp_1_body {
	padding: 20px 18px 22px;
	text-align: left;
}

.cp_1_name {
	color: #222;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 12px;
	min-height: 48px;
	transition: color 0.3s ease;
	/* 最多 2 行 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cp_1_card:hover .cp_1_name {
	color: #f39f1d;
}

.cp_1_summary {
	color: #999;
	font-size: 13px;
	line-height: 1.7;
	margin: 0 0 18px;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 44px;
}

.cp_1_more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	border: 1px solid #ececec;
	border-radius: 4px;
	color: #f39f1d;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: #fff;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

.cp_1_more em {
	font-style: normal;
	font-weight: 400;
	transition: transform 0.35s ease;
}

.cp_1_card:hover .cp_1_more {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
	letter-spacing: 1px;
}

.cp_1_card:hover .cp_1_more em {
	transform: rotate(90deg);
}

/* ---- 分页 ---- */
.cp_1_pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
}

.cp_1_page {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 13px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cp_1_page:hover {
	color: #f39f1d;
	border-color: #f39f1d;
}

.cp_1_page.active {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
	font-weight: 600;
}

.cp_1_page_arrow {
	font-size: 18px;
	line-height: 1;
}

.cp_1_page_dots {
	border: none;
	background: transparent;
	color: #999;
	cursor: default;
}

.cp_1_page_dots:hover {
	color: #999;
	border-color: transparent;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.cp_1_title { font-size: 30px; }
	.cp_1_list { grid-template-columns: repeat(4, 1fr); gap: 20px; }
	.cp_1_img { height: 200px; }
	.cp_1_name { font-size: 16px; }
}

@media only screen and (max-width: 1200px) {
	.cahnp_box_1 { padding: 60px 0; }
	.cp_1_title { font-size: 26px; }
	.cp_1_list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
	.cp_1_img { height: 200px; }
	.cp_1_tab a { font-size: 14px; padding: 12px 10px; }
}

@media only screen and (max-width: 992px) {
	.cp_1_tabs { flex-wrap: wrap; }
	.cp_1_tab { flex: 0 0 50%; }
	.cp_1_list { grid-template-columns: repeat(2, 1fr); }
	.cp_1_img { height: 220px; }
}

@media only screen and (max-width: 750px) {
	.cahnp_box_1 { padding: 40px 0 50px; }
	.cp_1_title { font-size: 22px; }
	.cp_1_desc { font-size: 12px; margin-bottom: 24px; }
	.cp_1_tabs_wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin-bottom: 24px;
	}
	.cp_1_tabs { flex-wrap: nowrap; }
	.cp_1_tab { flex: 0 0 auto; min-width: 160px; }
	.cp_1_tab a { font-size: 13px; padding: 10px 12px; }
	.cp_1_list { grid-template-columns: 1fr; gap: 16px; }
	.cp_1_img { height: 220px; }
	.cp_1_body { padding: 16px 14px 18px; }
	.cp_1_name { font-size: 15px; min-height: 0; }
	.cp_1_summary { font-size: 12px; min-height: 0; }
	.cp_1_more { height: 36px; font-size: 13px; }
	.cp_1_pager { margin-top: 30px; gap: 4px; flex-wrap: wrap; }
	.cp_1_page { min-width: 30px; height: 30px; font-size: 12px; }
}


/* ============================= */
/* cahnp_box_2  产品详情          */
/* ============================= */
@keyframes scaleIn {
	0% {transform: scale(0.3);opacity: 0.5;}
	100% {transform: scale(1);opacity: 1;}
}
.cahnp_box_2 {
	padding: 60px 0 70px;
	background: #fff;
}

.cp_2_wrap {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

/* ---- 左：图廊 ---- */
.cp_2_gallery {
	width: 52%;
	flex-shrink: 0;
}

/* 大图 */
.cp_2_big {
	width: 100%;
	height: 460px;
	overflow: hidden;
	background: #f5f5f5;
	margin-bottom: 12px;
	position: relative;
}

.cp_2_big .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	animation: scaleIn 1.2s ease forwards;
}

.cp_2_big .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
	transform: scale(0.6);
}

.cp_2_big .swiper-slide-active img {
	transform: scale(1.04);
}

/* 缩略图 */
.cp_2_thumbs {
	width: 100%;
	overflow: hidden;
}

.cp_2_thumb {
	width: 120px;
	height: 90px;
	overflow: hidden;
	cursor: pointer;
	background: #f5f5f5;
	position: relative;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

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

.cp_2_thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	transition: border-color 0.3s ease;
	pointer-events: none;
}

.cp_2_thumb:hover { opacity: 0.85; }

.cp_2_thumb.active {
	opacity: 1;
}

.cp_2_thumb.active::after {
	border-color: #f39f1d;
}

/* ---- 右：产品信息 ---- */
.cp_2_info {
	flex: 1;
	background: #f5f5f5;
	padding: 44px 40px;
	text-align: left;
	display: flex;
	flex-direction: column;
}

.cp_2_name {
	color: #222;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 24px;
}

.cp_2_sub {
	color: #444;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.7;
	padding-bottom: 26px;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 26px;
}

.cp_2_desc {
	color: #666;
	font-size: 14px;
	line-height: 2.1;
	margin-bottom: 36px;
}

.cp_2_desc p {
	margin: 0 0 10px;
}

/* 按钮 */
.cp_2_actions {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.cp_2_btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 52px;
	padding: 0 20px;
	background: #f39f1d;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
	isolation: isolate; /* 建立独立层叠上下文，::before 用负 z-index 不会盖住文本 */
	transition: box-shadow 0.35s ease, transform 0.35s ease;
	box-shadow: 0 6px 14px rgba(243, 159, 29, 0.2);
}

.cp_2_btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #ffb84d 0%, #f39f1d 100%);
	transition: left 0.5s cubic-bezier(0.25, 1, 0.35, 1);
	z-index: -1;
}

.cp_2_btn:hover::before { left: 0; }

.cp_2_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(243, 159, 29, 0.35);
}

.cp_2_btn_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

/* 更多信息链接 */
.cp_2_more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #666;
	font-size: 13px;
	text-decoration: none;
	margin-top: 6px;
	transition: color 0.3s ease;
}

.cp_2_more:hover { color: #f39f1d; }

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.cp_2_big { height: 420px; }
	.cp_2_thumb { width: 110px; height: 82px; }
	.cp_2_info { padding: 36px 32px; }
	.cp_2_name { font-size: 26px; }
	.cp_2_sub { font-size: 16px; }
}

@media only screen and (max-width: 1200px) {
	.cahnp_box_2 { padding: 50px 0 60px; }
	.cp_2_wrap { gap: 30px; }
	.cp_2_gallery { width: 50%; }
	.cp_2_big { height: 360px; }
	.cp_2_thumb { width: 96px; height: 72px; }
	.cp_2_info { padding: 30px 26px; }
	.cp_2_name { font-size: 22px; }
	.cp_2_sub { font-size: 15px; }
	.cp_2_btn { height: 46px; font-size: 14px; }
}

@media only screen and (max-width: 992px) {
	.cp_2_wrap { flex-direction: column; gap: 24px; }
	.cp_2_gallery { width: 100%; }
	.cp_2_big { height: 400px; }
}

@media only screen and (max-width: 750px) {
	.cahnp_box_2 { padding: 30px 0 40px; }
	.cp_2_big { height: 260px; }
	.cp_2_thumb { width: 76px; height: 58px; }
	.cp_2_info { padding: 22px 18px; }
	.cp_2_name { font-size: 18px; }
	.cp_2_sub { font-size: 13px; padding-bottom: 14px; margin-bottom: 14px; }
	.cp_2_desc { font-size: 12px; margin-bottom: 20px; }
	.cp_2_actions { flex-direction: column; gap: 10px; }
	.cp_2_btn { height: 42px; font-size: 13px; }
	.cp_2_btn_icon { width: 24px; height: 24px; }
}


/* ============================= */
/* cahnp_box_3  产品详情长文       */
/* ============================= */
.cahnp_box_3 {
	padding: 30px 0 70px;
	background: #fff;
}

/* 顶部橙色标签（Tab） */
.cp_3_tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
}

.cp_3_tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 26px;
	color: #666;
	background: #eee;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	position: relative;
	transition: all 0.35s ease;
}

.cp_3_tab.active,
.cp_3_tab:hover {
	background: #f39f1d;
	color: #fff;
}

.cp_3_tab.active::after {
	content: "";
	position: absolute;
	left: 26px;
	right: 26px;
	bottom: -6px;
	height: 3px;
	background: #f39f1d;
	opacity: 0;
}

/* 灰白详情面板 */
.cp_3_panel {
	background: #f6f6f6;
	padding: 50px 50px 55px;
	border-radius: 2px;
}

.cp_3_title {
	color: #222;
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 30px;
	text-align: left;
	position: relative;
	padding-left: 14px;
}

.cp_3_title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 4px;
	background: #f39f1d;
	border-radius: 2px;
}

.cp_3_group {
	margin-bottom: 28px;
}
.cp_3_group img{
	max-width:100%;
}
.cp_3_group:last-child { margin-bottom: 0; }

.cp_3_subtitle {
	color: #444;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	margin: 0 0 10px;
	text-align: left;
}

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

.cp_3_ul li {
	color: #666;
	font-size: 14px;
	line-height: 1.9;
	padding-left: 14px;
	position: relative;
	margin-bottom: 2px;
	text-align: left;
}

.cp_3_ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12px;
	width: 5px;
	height: 5px;
	background: #f39f1d;
	border-radius: 50%;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.cp_3_panel { padding: 40px 40px 44px; }
	.cp_3_title { font-size: 24px; }
}

@media only screen and (max-width: 1200px) {
	.cahnp_box_3 { padding: 20px 0 60px; }
	.cp_3_panel { padding: 32px 28px 36px; }
	.cp_3_title { font-size: 22px; margin-bottom: 22px; }
	.cp_3_subtitle { font-size: 15px; }
	.cp_3_ul li { font-size: 13px; }
}

@media only screen and (max-width: 750px) {
	.cahnp_box_3 { padding: 10px 0 40px; }
	.cp_3_tab { height: 38px; padding: 0 18px; font-size: 13px; }
	.cp_3_panel { padding: 22px 18px 26px; }
	.cp_3_title { font-size: 18px; margin-bottom: 18px; padding-left: 12px; }
	.cp_3_title::before { width: 3px; }
	.cp_3_subtitle { font-size: 14px; }
	.cp_3_ul li { font-size: 12px; line-height: 1.85; }
	.cp_3_ul li::before { top: 10px; }
}


/* ============================= */
/* news_box_1  新闻列表           */
/* ============================= */
.news_box_1 {
	padding: 50px 0 70px;
	background: #fff;
}

.news_1_title {
	color: #f39f1d;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 14px;
	letter-spacing: 0.5px;
}

.news_1_desc {
	color: #888;
	font-size: 14px;
	line-height: 1.9;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 40px;
}

/* ---- 列表卡片 ---- */
.news_1_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.news_1_item {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 2px;
	padding: 22px 26px 26px;
	margin-bottom: 18px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.news_1_item:hover {
	border-color: #f39f1d;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

/* 清浮动 */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

.news_1_h {
	color: #222;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 10px;
	text-align: left;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.news_1_item:hover .news_1_h {
	color: #f39f1d;
}

.news_1_meta {
	color: #888;
	font-size: 12px;
	margin-bottom: 12px;
	text-align: left;
}

.news_1_meta strong {
	color: #555;
	font-weight: 600;
	margin: 0 4px;
}

/* 图片（浮动到左侧，文字环绕在右） */
.news_1_pic {
	float: left;
	width: 180px;
	height: 108px;
	margin: 4px 20px 8px 0;
	overflow: hidden;
	background: #f5f5f5;
}

.news_1_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.25, 1, 0.35, 1);
}

.news_1_item:hover .news_1_pic img {
	transform: scale(1.06);
}

.news_1_summary {
	color: #666;
	font-size: 13px;
	line-height: 1.9;
	margin: 0 0 16px;
	text-align: left;
}

/* READ MORE 按钮：独立一行，清浮动，靠左 */
.news_1_more {
	clear: both;
	display: table;   /* 独立一行且宽度只包裹内容 */
	height: 32px;
	line-height: 30px;
	padding: 0 18px;
	margin-top: 4px;
	border: 1px solid #dcdcdc;
	color: #666;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-decoration: none;
	background: #fff;
	text-align: center;
	transition: all 0.3s ease;
}

.news_1_more:hover {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
}

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

.news_1_page {
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 12px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.news_1_page:hover {
	color: #f39f1d;
	border-color: #f39f1d;
}

.news_1_page.active {
	background: #f39f1d;
	border-color: #f39f1d;
	color: #fff;
	font-weight: 600;
}

.news_1_page_arrow {
	font-size: 16px;
	line-height: 1;
}

.news_1_page_dots {
	border: none;
	background: transparent;
	color: #999;
	cursor: default;
}

.news_1_page_dots:hover {
	color: #999;
	border-color: transparent;
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1200px) {
	.news_box_1 { padding: 40px 0 60px; }
	.news_1_title { font-size: 24px; }
	.news_1_pic { width: 220px; height: 130px; }
}

@media only screen and (max-width: 992px) {
	.news_1_pic { width: 190px; height: 115px; margin-right: 18px; }
}

@media only screen and (max-width: 750px) {
	.news_box_1 { padding: 30px 0 40px; }
	.news_1_title { font-size: 18px; }
	.news_1_desc { font-size: 12px; margin-bottom: 24px; }
	.news_1_item { padding: 16px 16px 18px; margin-bottom: 14px; }
	.news_1_h { font-size: 15px; }
	.news_1_pic {
		float: none;
		width: 100%;
		height: 180px;
		margin: 0 0 12px;
	}
	.news_1_summary { font-size: 12px; }
	.news_1_pager { margin-top: 26px; gap: 4px; flex-wrap: wrap; }
	.news_1_page { min-width: 26px; height: 26px; font-size: 11px; }
}


/* ============================= */
/* news_box_2 / wenzhang_box_1   新闻/文章详情 */
/* ============================= */
.news_box_2,
.wenzhang_box_1 {
	padding: 40px 0 70px;
	background: #fff;
}

/* 顶部大图 */
.news_2_hero {
	width: 100%;
	overflow: hidden;
	margin-bottom: 22px;
	background: #f5f5f5;
}

.news_2_hero img,
.news_2_hero svg {
	display: block;
	width: 100%;
	height: auto;
}

.news_2_hero_svg svg {
	max-height: 500px;
}

.news_2_meta {
	color: #888;
	font-size: 13px;
	margin-bottom: 14px;
	text-align: left;
}

.news_2_meta strong {
	color: #555;
	font-weight: 600;
	margin: 0 4px;
}

.news_2_h {
	color: #222;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 22px;
	text-align: left;
}

.news_2_line {
	border: none;
	border-top: 1px solid #ececec;
	margin: 0 0 26px;
}

.news_2_body {
	color: #555;
	font-size: 14px;
	line-height: 2;
	text-align: left;
}

.news_2_body p {
	margin: 0 0 8px;
}

/* ---- 上一篇 / 下一篇 ---- */
.news_2_nav {
	display: flex;
	gap: 24px;
	margin-top: 40px;
	padding: 30px 0;
	border-top: 1px solid #ececec;
	border-bottom: 3px solid #d5d5d5;
}

.news_2_nav_item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 26px;
	text-decoration: none;
	color: #333;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.35s ease,
	            box-shadow 0.35s ease,
	            color 0.35s ease,
	            background 0.35s ease;
	min-height: 90px;
}

.news_2_nav_item.next {
	justify-content: flex-end;
	text-align: right;
}

/* 底部橙色扫过条 */
.news_2_nav_item::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #f39f1d;
	transform: scaleX(0);
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.35, 1);
}

.news_2_nav_item.prev::after { transform-origin: right center; }
.news_2_nav_item.next::after { transform-origin: left center; }

.news_2_nav_item:hover {
	border-color: #f39f1d;
	color: #f39f1d;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.news_2_nav_item:hover::after { transform: scaleX(1); }

.news_2_nav_text {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.5;
	flex: 1;
	transition: transform 0.35s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_2_nav_arrow {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #f5f5f5;
	color: #666;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.35s cubic-bezier(0.25, 1, 0.35, 1),
	            color 0.35s ease,
	            transform 0.4s cubic-bezier(0.25, 1, 0.35, 1);
}

.news_2_nav_item:hover .news_2_nav_arrow {
	background: #f39f1d;
	color: #fff;
}

/* 悬停时箭头进一步平移；文字向内轻推 */
.news_2_nav_item.prev:hover .news_2_nav_arrow {
	transform: translateX(-6px);
}

.news_2_nav_item.next:hover .news_2_nav_arrow {
	transform: translateX(6px);
}

.news_2_nav_item.prev:hover .news_2_nav_text { transform: translateX(4px); }
.news_2_nav_item.next:hover .news_2_nav_text { transform: translateX(-4px); }

/* ------- 响应式 ------- */
@media only screen and (max-width: 1200px) {
	.news_box_2,
	.wenzhang_box_1 { padding: 30px 0 60px; }
	.news_2_h { font-size: 22px; }
	.news_2_nav_item { padding: 18px 20px; min-height: 78px; }
	.news_2_nav_arrow { width: 44px; height: 44px; }
}

@media only screen and (max-width: 750px) {
	.news_box_2,
	.wenzhang_box_1 { padding: 20px 0 40px; }
	.news_2_h { font-size: 18px; margin-bottom: 16px; }
	.news_2_body { font-size: 13px; line-height: 1.9; }
	.news_2_nav {
		flex-direction: column;
		gap: 14px;
		margin-top: 30px;
		padding-top: 20px;
	}
	.news_2_nav_item { padding: 14px 16px; gap: 14px; min-height: 64px; }
	.news_2_nav_item.next {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
	}
	.news_2_nav_item.next .news_2_nav_arrow { order: -1; }
	.news_2_nav_arrow { width: 40px; height: 40px; }
	.news_2_nav_arrow svg { width: 20px; height: 20px; }
	.news_2_nav_text { font-size: 13px; }
}


/* ============================= */
/* lianxi_box_1  Contact Us       */
/* ============================= */
.lianxi_box_1 {
	padding: 60px 0 80px;
	background: #fff;
}

.lx_1_wrap {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.lx_1_left { flex: 1; min-width: 0; }
.lx_1_right { flex: 1; min-width: 0; }

/* ---- 左：标题 + 描述 + 信息网格 ---- */
.lx_1_title {
	color: #222;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 16px;
	text-align: left;
	position: relative;
	padding-bottom: 12px;
}

.lx_1_title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #f39f1d;
}

/* 右列表单顶部对齐左侧描述文字行
   数值 = 标题字号 × line-height + 标题下边距 (16px)
   36px × 1.5(默认) + 16 ≈ 70px；使用 68px 视觉最贴合
*/
.lx_1_right {
	padding-top: 68px;
}

@media only screen and (max-width: 1400px) {
	.lx_1_right { padding-top: 62px; }  /* 标题 32px 时 */
}

@media only screen and (max-width: 1200px) {
	.lx_1_right { padding-top: 54px; }  /* 标题 26px 时 */
}

/* 移动端堆叠时移除对齐 padding */
@media only screen and (max-width: 992px) {
	.lx_1_right { padding-top: 0; }
}

.lx_1_desc {
	color: #666;
	font-size: 14px;
	line-height: 1.9;
	margin: 0 0 40px;
	text-align: left;
}

.lx_1_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px 40px;
}

.lx_1_info h3 {
	color: #222;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
	text-align: left;
}

.lx_1_info p {
	color: #666;
	font-size: 13px;
	line-height: 1.7;
	margin: 0 0 12px;
	text-align: left;
}

.lx_1_link {
	color: #f39f1d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-decoration: none;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease;
}

.lx_1_link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.25, 1, 0.35, 1);
}

.lx_1_link:hover { color: #d98a10; }
.lx_1_link:hover::after { transform: scaleX(1); }

/* ---- 右：表单 ---- */
.lx_1_form { }

.lx_1_row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.lx_1_row .lx_1_field { flex: 1; }

.lx_1_field { margin-bottom: 20px; }
.lx_1_row .lx_1_field { margin-bottom: 0; }

.lx_1_field input,
.lx_1_field textarea {
	width: 100%;
	background: #fff;
	border: 1px solid #dcdcdc;
	color: #333;
	font-size: 13px;
	font-family: inherit;
	padding: 0 20px;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	letter-spacing: 0.5px;
}

.lx_1_field input {
	height: 52px;
}

.lx_1_field textarea {
	padding: 18px 20px;
	min-height: 160px;
	resize: vertical;
	line-height: 1.6;
}

.lx_1_field input::placeholder,
.lx_1_field textarea::placeholder {
	color: #888;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 12px;
}

.lx_1_field input:focus,
.lx_1_field textarea:focus {
	border-color: #f39f1d;
	box-shadow: 0 0 0 3px rgba(243, 159, 29, 0.08);
}

.lx_1_submit {
	display: block;
	width: 48%;
	height: 56px;
	background: #fff;
	color: #444;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	border: 1px solid #dcdcdc;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	float:right;
}

.lx_1_submit::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #f39f1d;
	transform: scaleY(0);
	transform-origin: bottom center;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.35, 1);
	z-index: -1;
}

.lx_1_submit:hover {
	color: #fff;
	border-color: #f39f1d;
	letter-spacing: 3px;
}

.lx_1_submit:hover::before {
	transform: scaleY(1);
}

/* ------- 响应式 ------- */
@media only screen and (max-width: 1400px) {
	.lx_1_wrap { gap: 50px; }
	.lx_1_title { font-size: 32px; }
}

@media only screen and (max-width: 1200px) {
	.lianxi_box_1 { padding: 50px 0 70px; }
	.lx_1_wrap { gap: 36px; }
	.lx_1_title { font-size: 26px; }
	.lx_1_info h3 { font-size: 18px; }
	.lx_1_field input { height: 46px; }
	.lx_1_submit { height: 50px; }
}

@media only screen and (max-width: 992px) {
	.lx_1_wrap { flex-direction: column; gap: 40px; }
}

@media only screen and (max-width: 750px) {
	.lianxi_box_1 { padding: 30px 0 50px; }
	.lx_1_title { font-size: 22px; }
	.lx_1_desc { font-size: 12px; margin-bottom: 26px; }
	.lx_1_grid { grid-template-columns: 1fr 1fr; gap: 22px 20px; }
	.lx_1_info h3 { font-size: 16px; }
	.lx_1_right { width: 100%; }
	.lx_1_row { flex-direction: column; gap: 14px; margin-bottom: 14px; }
	.lx_1_field { margin-bottom: 14px; }
	.lx_1_field input { height: 44px; padding: 0 16px; }
	.lx_1_field textarea { min-height: 130px; padding: 14px 16px; }
	.lx_1_submit { height: 46px; letter-spacing: 1.5px; }
	.lx_1_submit:hover { letter-spacing: 2px; }
}



/* ============================= */
/* about_box_2 image zoom lightbox */
/* ============================= */
.ab-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.ab-lightbox.active {
	display: flex;
	animation: abLbFade 0.25s ease;
}

@keyframes abLbFade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.about_box_2 .ab_2_img img {
	cursor: zoom-in;
	transition: transform 0.35s ease;
}

.about_box_2 .ab_2_img:hover img {
	transform: scale(1.02);
}

/* Grey semi-transparent mask */
.ab-lightbox-mask {
	position: absolute;
	inset: 0;
	background: rgba(30, 30, 30, 0.85);
	cursor: zoom-out;
}

/* Stage */
.ab-lightbox-stage {
	position: relative;
	z-index: 2;
	width: min(92vw, 1500px);
	height: min(92vh, 1100px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

.ab-lightbox-img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	animation: abLbZoom 0.28s ease;
	min-width: min(70vw, 900px);
	min-height: min(70vh, 700px);
}

@keyframes abLbZoom {
	from { opacity: 0; transform: scale(0.94); }
	to   { opacity: 1; transform: scale(1); }
}

/* Close button */
.ab-lightbox-close {
	position: absolute;
	top: 24px;
	right: 28px;
	z-index: 3;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s ease;
}

.ab-lightbox-close:hover {
	background: #f39f1d;
	transform: rotate(90deg);
}

/* Responsive */
@media only screen and (max-width: 992px) {
	.ab-lightbox-stage { width: 94vw; height: 90vh; }
	.ab-lightbox-img { min-width: min(88vw, 720px); min-height: min(70vh, 560px); }
	.ab-lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}
@media only screen and (max-width: 750px) {
	.ab-lightbox-stage { width: 96vw; height: 90vh; padding: 0; }
	.ab-lightbox-img { min-width: 94vw; min-height: auto; max-height: 84vh; }
	.ab-lightbox-close { top: 10px; right: 10px; width: 36px; height: 36px; }
	.ab-lightbox-close svg { width: 22px; height: 22px; }
}

.vdcodeI2 {
	width: 120px;
	height: 35px;
	background: transparent;
	border: 1px solid #888;
	color: #fff;
	font-size: 13px;
}
.vdcodeI3 {
	width: 58%;
	height: 42px;
	background: transparent;
	border: 1px solid #dcdcdc;
	font-size: 14px;
}
@media only screen and (max-width: 1200px) {
	.vdcodeI3 {
		width: 48%;
	}
}

.zdtable{
	margin:0 auto;
}
.zdtable td{
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	color: #d8d8d8;
	font-size: 14px;
	margin: 0 4px;
	border-radius: 2px;
	border: 1px solid #d8d8d8;
}
.zdtable .htfydqpage{
	color: #ffffff;
	border-color: #f39f1d;
	background:#f39f1d;
	font-weight: 600;
}
.zdtable .wymclass a:hover{
	color: #f39f1d;
}
.zdtable .wymclass:hover{
	border-color: #f39f1d;
}