/*通用类*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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: justify;
	color: #010000;
	position: relative;
	line-height: 1.5;
}

.dbdh {
	display: none;
}

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;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}

.clearfix {
	zoom: 1;
}

div.clear {
	font: 0px Arial;

	/* 合作品牌区域样式 */
	.fp_box_4 {
		padding: 50px 0;
		background: #fff;
	}

	.fp_box_4 .main {
		width: 1200px;
		margin: 0 auto;
	}

	.fp_box_4 .left {
		float: left;
		width: 40%;
	}

	.fp_box_4 .left img {
		max-width: 100%;
		display: block;
	}

	.fp_box_4 .rii {
		float: right;
		width: 60%;
		overflow: hidden;
	}

	.fp_box_4 .partner-item {
		float: left;
		width: 25%;
		height: 120px;
		position: relative;
		perspective: 1000px;
		margin-bottom: 10px;
	}

	.fp_box_4 .partner-item .front,
	.fp_box_4 .partner-item .back {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		backface-visibility: hidden;
		transition: transform 0.6s;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.fp_box_4 .partner-item .front {
		z-index: 2;
		transform: rotateY(0deg);
	}

	.fp_box_4 .partner-item .front img {
		max-width: 80%;
		max-height: 80%;
	}

	.fp_box_4 .partner-item .back {
		background-color: #ed7020;
		transform: rotateY(180deg);
		color: #fff;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}

	.fp_box_4 .partner-item:hover .front {
		transform: rotateY(180deg);
	}

	.fp_box_4 .partner-item:hover .back {
		transform: rotateY(0deg);
	}

	line-height: 0;
	height: 0;
	overflow: hidden;
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

/* 主代码开始开始*/

/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
	line-height: 1.5;
}

/* 头部样式 */

/* 子菜单样式 */
.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 {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.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: #333;
}

.nav-mobile-list {
	list-style: none;
}

.nav-mobile-item {
	border-bottom: 1px solid #eee;
}

.nav-mobile-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	padding-right: 50px;
	position: relative;
}

.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%);
	z-index: 999999;
}


/* new */
.main {
	padding: 0 7%;
}

.header {
	height: 100px;
	background: rgba(255, 255, 255, 0.7);
	position: relative;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.header.fix {
	background: rgba(255, 255, 255, 1);
}

.logo {
	float: left;
	margin-top: 30px;
}

.pc_nav {
	float: right;
}

.pc_nav ul li {
	float: left;
}

.pc_nav ul li>a {
	font-size: 22px;
	color: #434343;
	position: relative;
	display: block;
	line-height: 100px;
	padding: 0 20px;
}

.pc_nav ul li>a:before {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	background: #434343;
	transform: translateX(-50%) scaleX(0);
	transition: transform 0.3s ease;
}

.pc_nav ul li>a:hover:before {
	transform: translateX(-50%) scaleX(1);
}

.erji_nav {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
}

.erji_nav .left {
	width: 45%;
	float: left;
	background: #eee;
	padding: 53px;
	box-sizing: border-box;
	min-height: 500px;
	box-sizing: border-box;
}

.erji_nav .rii {
	width: 55%;
	float: right;
	position: relative;
}

.erji_nav .left h3 {
	font-size: 26px;
	color: #434343;
	margin-bottom: 0;
}

.erji_nav .left h2 {
	font-size: 40px;
	color: #434343;
	font-weight: bold;
}

.erji_nav .left h4 {
	display: block;
	font-style: normal;
	font-size: 40px;
	line-height: 1em;
	margin-top: -30px;
	margin-bottom: 20px;
}

.nav_tab a {
	width: 50%;
	float: left;
	text-align: left;
	margin: 10px 0;
	font-size: 18px;
}

.nav_tab a:hover {
	color: #ed7020;
}

.nav_tab a.hover {
	color: #ed7020;
}

.erji_nav .rii {
	padding: 60px;
	min-height: 500px;
	background: #fff;
}

.erji_nav .rii h3 {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: bold;
	color: #ed7020;
	margin-bottom: 30px;
}

.erji_nav .rii p {
	font-size: 14px;
	line-height: 26px;
	color: #666;
}

.erji_nav .rii .two_nav {
	margin-top: 30px;
}

.erji_nav .rii .two_nav a {
	display: inline-block;
	white-space: nowrap;
	border: 1px solid #7f7f7f;
	padding: 0 20px;
	font-size: 16px;
	line-height: 42px;
	border-radius: 21px;
	color: #7f7f7f;
	font-weight: bold;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: all .5s;
	margin-right: 30px;
	margin-bottom: 50px;
}

.erji_nav .rii .two_nav a:hover {
	color: #ed7020;
	background: #ed7020;
	border: 1px solid #ed7020;
	color: #fff;
}

.erji_nav .rii .more {
	margin-top: 10px;
	padding: 0 20px;
	height: 44px;
	line-height: 42px;
	border: 1px solid #bfbfbf;
	border-radius: 22px;
	font-size: 14px;
	color: #bfbfbf;
	text-align: center;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	transition: all .5s;
}

.erji_nav .rii .more:hover {
	background: #ed7020;
	color: #fff;
}

.picnav {
	max-width: 300px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.erji_nav .rii .nei_rong {
	display: none;
}

.erji_nav .rii .nei_rong.show {
	display: block !important;
}

.nav_nav a {
	display: inline-block;
	margin-right: 20px;
	font-size: 18px;
	padding: 0 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid transparent;
}

.nav_nav a:hover {
	color: #ed7020;
	border-bottom: 1px solid #ed7020;
}

.nav_nav {
	width: 50%;
}

.erji_nav {
	display: none;
}

.pc_nav ul li:hover .erji_nav {
	display: block;
}

.dianhua {
	float: right;
	margin-top: 34px;
	margin-left: 30px;
	cursor: pointer;
}

.sousuo {
	float: right;
	margin-top: 34px;
	margin-left: 8vw;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
}

.search-icon {
	z-index: 2;
	transition: all 0.3s ease;
}

.search-input-container {
	position: absolute;
	right: 0;
	top: 100%;
	width: 0;
	height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	margin-top: 10px;
}

.search-input {
	width: 200px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 0 15px;
	outline: none;
	font-size: 14px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sousuo.active .search-input-container {
	width: 220px;
	height: auto;
	opacity: 1;
}

.sousuo.active .search-icon {
	transform: rotate(360deg);
}

.banner .swiper-slide .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
}

.banner .swiper-slide .text .main {
	position: relative;
	height: 100%;
	padding-top: 15%;
}

.banner .swiper-slide .text>img {
	max-width: 100%;
}

.banner .swiper-slide .text h3 {
	font-size: 60px;
	color: #ffffff;
	margin-top: -20px;
}

.banner .swiper-slide .text i {
	display: block;
	margin: 20px 0;
	width: 120px;
	height: 8px;
	background: #ed7020;
}

.banner .swiper-slide .text P {
	font-size: 28px;
	color: #ffffff;
	line-height: 1.8;
}

.banner .swiper-slide .text a {
	display: block;
	width: 210px;
	height: 63px;
	background: #ed7020;
	border-radius: 30px;
	margin-top: 30px;
	text-align: center;
	line-height: 63px;
	font-size: 20px;
	color: #ffffff;
}

.banner .swiper-slide .text .main .auimg {
	position: absolute;
	bottom: 20px;
	right: 20px;
	max-width: 700px;
}

.fp_box_1 {
	padding: 60px 0;
	border-bottom: 1px solid #ddd;
}

.fp_box_1 .main {
	position: relative;
}

.fp_box_1 h3 {
	font-size: 48px;
	color: #ed7020;
	margin-bottom: 20px;
}

.fp_box_1 span {
	font-size: 18px;
	color: #242424;
}

.fp_box_1 .main {
	position: relative;
}

.fp_box_1 a {
	display: block;
	width: 190px;
	height: 60px;
	background: #dcdcdc;
	font-size: 24px;
	color: #727272;
	text-align: center;
	line-height: 60px;
	border-radius: 30px;
	position: absolute;
	top: 30px;
	right: 7%;
}

.fp_box_1 a:hover {
	background: #ed7020;
	color: #fff;
}

.fp_box_1 {
	background: #f4f6f8;
}

.fp_box_2 {
	background: #f4f6f8;
	padding-top: 50px;
	padding-bottom: 50px;
}

.fp_box_2 .swiper-slide {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: stretch;
}

.fp_box_2 .swiper-slide .left {
	width: 50%;
	padding: 30px;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.fp_box_2 .swiper-slide .rii {
	width: 50%;
	padding: 30px;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.fp_box_2 .swiper-slide .rii:hover{
	background: #ddd;
}
.fp_box_2 .swiper-slide .left h3 {
	font-size: 36px;
	color: #000;
}

.fp_box_2 .swiper-slide .left span {
	font-size: 16px;
	color: #323232;
	display: block;
	margin: 20px 0;
	height:60px;
}

.fp_box_2 .swiper-slide .left .ln-link {
	margin-top: 30px;
	height:120px;
}

.fp_box_2 .swiper-slide .left .ln-link a {
	display: block;
	width: 47%;
	height: 40px;
	background: #f2f2f2;
	border-radius: 30px;
	float: right;
	margin-right: 3%;
	margin-bottom: 10px;
	text-align: center;
	line-height: 40px;
}

.fp_box_2 .swiper-slide .left .ln-link a:hover {
	background: #ed7020;
	color: #fff;
}

.fp_box_2 .swiper-slide .left .more {
	width: 40px;
	height: 40px;
	display: block;
	margin-top: 50px;
	background: #aaaaaa;
	border-radius: 40px;
	text-align: center;
	color: #fff;
	line-height: 40px;
}

.fp_box_2 .swiper-slide .left .more:hover {
	background: #ed7020;
}

.fp_box_2 .swiper-slide .rii .top_pic .pic {
	width: 33.33%;
	float: left;
	padding: 0 5px;
	box-sizing: border-box;
	overflow: hidden;
}

.fp_box_2 .swiper-slide .rii .top_pic .pic img {
	width: 100%;
	transition: all 0.5s;
}

.fp_box_2 .swiper-slide .rii .top_pic .pic img:hover {
	transform: scale(1.1);
}

.fp_box_2 .swiper-slide .rii>img {
	width: 100%;
	margin-top: 30px;
	transition: all 0.5s;
}
.fp_box_2 .swiper-slide .rii>img:hover{
	transform: scale(1.05);
}

.fp_box_2 .swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 7%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 84%;
	opacity: 1 !important;
}

.fp_box_2 .swiper-container {
	padding-bottom: 30px;
}

.fp_box_2 .swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #ed7020;
	border-radius: 10px;
	left: 0;
	top: 0;
}

.fp_box_2 .swiper-scrollbar {
	position: absolute;
	left: 7%;
	bottom: 10px;
	z-index: 50;
	height: 30px;
	width: 84%;
	opacity: 1 !important;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 15px;
}

.fp_box_2 .custom-scrollbar-drag {
	height: 30px;
	width: 30px;
	position: relative;
	background: #ed7020;
	border-radius: 50%;
}

.arrow img {
	width: 70px;
}


.index_application .hd ul li .icon img {
	width: 50px;
	height: 50px;
}

/* 清除浮动 */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}

.clearfix {
	zoom: 1;
}

/* fp_box_4区域样式 */
.fp_box_4 {
	padding: 100px 0;
	background: url(../images/bg1.png) no-repeat;
	background-size: 100% 100%;
}

.fp_box_4 .title {
	text-align: right;
	margin: 0 auto 30px;
	padding-right: 20px;
}

.fp_box_4 .title h2 {
	font-size: 46px;
	color: #ed7020;
	margin-bottom: 20px;
	font-weight: normal;
}

.fp_box_4 .title p {
	font-size: 18px;
	color: #666;
}


.fp_box_4 .left {
	float: left;
	width: 50%;
	padding-right: 20px;
	box-sizing: border-box;
}

.fp_box_4 .left img {
	width: 100%;
	display: block;
	border-radius: 5px;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.fp_box_4 .rii {
	float: left;
	width: 50%;
	padding-left: 20px;
	box-sizing: border-box;
}

.fp_box_4 .partner-item {
	float: left;
	width: 25%;
	aspect-ratio: 1/1;
	padding: 15px;
	box-sizing: border-box;
	perspective: 1000px;
	cursor: pointer;
	position: relative;
}

/* 兼容旧浏览器的正方形实现 */
@supports not (aspect-ratio: 1/1) {
	.fp_box_4 .partner-item {
		height: 0;
		padding-top: calc(25% - 30px);
		/* 减去padding的两倍 */
	}
}

.fp_box_4 .partner-wrapper .front,
.fp_box_4 .partner-wrapper .back {
	width: 100%;
	height: 100%;
	position: absolute;
	backface-visibility: hidden;
	transition: transform 0.6s;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.fp_box_4 .partner-wrapper .front {
	background-color: #ffffff;
	transform: rotateY(0deg);
	z-index: 2;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fp_box_4 .partner-wrapper .front img {
	max-width: 80%;
	max-height: 80%;
	display: block;
}

.fp_box_4 .partner-wrapper .back {
	background-color: #ed7020;
	color: #ffffff;
	transform: rotateY(180deg);
	text-align: center;
	padding: 10px;
	font-size: 14px;
}

.fp_box_4 .partner-item:hover .partner-wrapper .front {
	transform: rotateY(180deg);
}

.fp_box_4 .partner-item:hover .partner-wrapper .back {
	transform: rotateY(0deg);
}

.fp_box_4 .partner-wrapper {
	position: relative;
	width: 90%;
	height: 90%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	aspect-ratio: 1/1;
}

@supports not (aspect-ratio: 1/1) {
	.fp_box_4 .partner-wrapper {
		position: absolute;
		top: 15px;
		left: 15px;
		right: 15px;
		bottom: 15px;
	}
}

.fp_box_5 {
	padding: 100px 0;
	background: url(../images/bg2.png) no-repeat;
	background-size: 100% 100%;
}

.fp_box_5 .left {
	width: 48%;
	float: left;
}

.fp_box_5 .left h3 {
	font-size: 36px;
	color: #ffffff;
	text-transform: uppercase;
}

.fp_box_5 .left p {
	font-size: 18px;
	color: #ffffff;
	margin: 30px 0;
}

.fp_box_5 .left img {
	width: 100%;
}

.fp_box_5 .rii {
	width: 48%;
	float: right;
	margin-top: 40px;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
}

/* 折叠面板样式 */
.fp_box_5 .accordion {
	width: 100%;
}

.fp_box_5 .accordion-item {
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fp_box_5 .accordion-item:last-child {
	border-bottom: none;
}

.fp_box_5 .accordion-header {
	position: relative;
	padding: 15px 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.fp_box_5 .accordion-header .icon {
	width: 30px;
	height: 30px;
	margin-right: 15px;
	vertical-align: middle;
	display: inline-block;
}

.fp_box_5 .accordion-header h4 {
	color: #ffffff;
	font-size: 18px;
	margin: 0;
	display: inline-block;
	vertical-align: middle;
}

.fp_box_5 .toggle-icon {
	color: #ffffff;
	font-size: 24px;
	font-weight: 300;
	transition: transform 0.3s ease;
	position: absolute;
	right: 0;
	top: 10px;
	transform: rotate(270deg);
}

.fp_box_5 .accordion-item.active .toggle-icon {
	transform: rotate(360deg);
}
.fp_box_5 .toggle-icon::before {
    display: none;
}

.fp_box_5 .accordion-content {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	width: 100%;
	display: block;
	clear: both;
	margin-top: 10px;
}

.fp_box_5 .accordion-item.active .accordion-content {
	max-height: 200px;
	padding-bottom: 15px;
}

.fp_box_5 .accordion-content p {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding-left: 45px;
}

/* fp_box_6 样式 */
.fp_box_6 {
	padding: 80px 0;
	background: #f8f9fa;
}

.fp_box_6 .content {
	width: 100%;
	text-align: center;
}

.fp_box_6 .top-section h2 {
	font-size: 48px;
	color: #4d4d4d;
	margin-bottom: 15px;
	font-weight: normal;
}

.fp_box_6 .top-section p {
	font-size: 24px;
	color: #4d4d4d;
	margin-bottom: 40px;
}

.fp_box_6 .diagram {
	margin-bottom: 60px;
}

.fp_box_6 .diagram img {
	max-width: 100%;
	height: auto;
}

.fp_box_6 .link-buttons {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
}

.fp_box_6 .link-btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 35px;
	background: #666;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	width: 23%;
	box-sizing: border-box;
}

.fp_box_6 .link-btn:hover {
	background: #ed7020;
	transform: translateY(-2px);
}

.fp_box_6 .link-btn .icon {
	width: 45px;
	height: 45px;
	margin-right: 12px;
	flex-shrink: 0;
}

.fp_box_6 .link-btn span {
	font-size: 22px;
	color: #fff;
	font-weight: normal;
}



.fp_box_6 .link-btn:first-child:hover {
	background: #d85a0a;
}

/* fp_box_7 styles */
.fp_box_7 {
	background: #fff;
	padding: 100px 0;
}

.fp_box_7 .main {
	width: 100%;
}

.fp_box_7 .section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}

.fp_box_7 .section-title {
	font-size: 40px;
	color: #333;
	font-weight: bold;
	margin: 0;
}

.fp_box_7 .more-link {
	font-size: 18px;
	color: #999;
	text-decoration: none;
	background: #f0f0f0;
	padding: 15px 40px;
	border-radius: 30px;
	transition: all 0.3s ease;
}

.fp_box_7 .more-link:hover {
	background: #ff6b35;
	color: white;
}

.fp_box_7 .news-container {
	overflow: hidden;
	margin-left: -15px;
	margin-right: -15px;
}

.fp_box_7 .news-item {
	float: left;
	width: 33.33%;
	padding: 0 15px;
	box-sizing: border-box;
}

.fp_box_7 .news-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.fp_box_7 .news-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fp_box_7 .news-image {
	width: 100%;
}

.fp_box_7 .news-image img {
	width: 100%;
	height: auto;
	display: block;
}

.fp_box_7 .news-content {
	text-align: left;
	padding: 20px;
	box-sizing: border-box;
	background: #f4f6f8;
}

.fp_box_7 .news-category {
	font-size: 14px;
	color: #999;
	margin-bottom: 10px;
}

.fp_box_7 .news-title {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
	font-weight: bold;
	/* 文本超出显示省略号 */
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fp_box_7 .news-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 10px;
}

.fp_box_7 .news-date {
	font-size: 16px;
	color: #999;
	border-top: 1px solid #dbdbdb;
	padding-top: 20px;
	position: relative;
}

.fp_box_7 .news-date::after {
	display: block;
	content: "";
	width: 14px;
	height: 14px;
	position: absolute;
	bottom: 7px;
	right: 0;
	background: url(../images/xiejiantou.png) no-repeat;

}

/* Special styles for third news item */
.fp_box_7 .news-item-special {
	padding: 0 15px;
}

.fp_box_7 .news-list {
	text-align: left;
}

.news-list a {
	display: block;
	background: #f4f6f8;
	padding: 25px 30px;
	margin-bottom: 29px;
	position: relative;
	overflow: hidden;
	transition: color 0.3s ease;
	position: relative;
	padding-bottom: 42px !important;
	
}
.news-list a::after{
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background: #000;
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: url(../images/xiejiantou.png) no-repeat;
	background-size: 100% 100%;
	z-index: 10;
}
.news-list a:hover::after{
	background:url(../images/bbnn1.png) no-repeat;
	background-size: 100% 100%;
	z-index: 10;
}
.news-list a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #ed7020;
	transition: left 0.3s ease;
	z-index: 1;
}

.news-list a:hover::before {
	left: 0;
}

.news-list a:hover {
	color: white;
}

.news-list a>* {
	position: relative;
	z-index: 2;
}

.news-list a span {
	font-size: 18px;
	color: #262626;
}

.news-list a h3 {
	font-size: 22px;
	color: #262626;
	margin-top: 10px;
}

.news-list a:hover h3 {
	color: #fff;
}

.news-list a:hover span {
	color: #fff;
}

footer {
	padding: 60px 0;
	background: #313439;
}

footer .left {
	width: 70%;
	float: left;
}

footer .left ul li {
	width: 20%;
	float: left;
}

footer .left ul li h3 {
	font-size: 18px;
	color: #dadada;
	margin-top: 0;
}

footer .left ul li a {
	display: block;
	font-size: 16px;
	color: #dadada;
	margin-top: 15px;
}

footer .left ul li a:hover {
	color: #ff6b35;
}

footer .rii {
	width: 30%;
	float: left;
}

footer .rii .footer_logo {
	display: block;
	margin-bottom: 20px;
}

footer .rii span {
	display: block;
	color: #c7c7c7;
	font-size: 16px;
}

footer .rii span em {
	color: #fff;
	display: block;
	margin: 8px 0;
	font-size: 18px;
}

.erweima .box {
	width: 100px;
	margin-top: 30px;
	margin-right: 30px;
	color: #c7c7c7;
	float: left;
	text-align: center;
}

.erweima .box img {
	width: 100%;
	margin-bottom: 10px;
}

.footer {
	padding: 30px 0 60px 0;
	border-top: 1px solid #43464b;
	background: #313439;
}

.footer .zuo {
	width: 33.33%;
	float: left;
	color: #fff;
	font-size: 14px;
}

.footer .zhong {
	width: 57.33%;
	float: left;
	color: #fff;
	font-size: 14px;
	text-align: center;
}

.footer .zhong a {
	color: #fff;
}

.footer .zhong a:hover {
	color: #ff6b35;
}

.footer .rii {
	width: 8%;
	float: right;
	color: #fff;
	font-size: 14px;
	text-align: right;
}

.footer .rii a {
	color: #fff;
	margin-left: 10px;
}

.footer .rii a:hover {
	color: #ff6b35;
}

/* auout */
.banner_two {
	position: relative;
}

.banner_two .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.banner_two .text h3 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.banner_two .text i {
	display: block;
	width: 100px;
	height: 3px;
	background: #fff;
	margin: 0 auto;
	margin-bottom: 20px;
}

.banner_two .text p {
	font-size: 20px;
	color: #fff;
}

.fp_box_11 {
	padding: 100px 0;
	background: url(../images/bg21.png) no-repeat top right;
}

.fp_box_11 .left {
	width: 50%;
	float: left;
}

.fp_box_11 .rii {
	width: 50%;
	float: right;
}

.fp_box_11 .rii img {
	width: 100%;
}

.fp_box_11 {
	padding-left: 7%;
}

.fp_box_11 .left h3 {
	font-size: 38px;
	color: #afafaf;
	text-transform: uppercase;
	font-weight: bold;
}

.fp_box_11 .left span {
	display: inline-block;
	font-size: 38px;
	color: #000000;
	font-weight: 500;
	position: relative;
}

.fp_box_11 .left span::after {
	display: block;
	content: "";
	width: 120px;
	height: 3px;
	background: #ff6b35;
	position: absolute;
	top: 27px;
	right: -140px;
}

.fp_box_11 .left .text {
	font-size: 15px;
	color: #000000;
}

.fp_box_11 .left .text p {
	text-indent: 35px;
	margin-top: 20px;
}

.fp_box_12 {
	position: relative;
}

.fp_box_12>img {
	width: 100%;
	display: block;
}

.fp_box_12 .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.fp_box_12 .text ul li {
	width: 25%;
	float: left;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.fp_box_12 .text ul li h3 {
	font-size: 80px;
	color: #ffffff;
	margin-top: 25%;
	margin-bottom: 0;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fp_box_12 .text ul li span {
	font-size: 24px;
	color: #ffffff;
	display: block;
	margin: 40px 0;
}

.fp_box_12 .text ul li img {
	width: 30px;
	display: block;
	margin: 0 auto;
}

/* 产品表格样式 */
.product-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.product-table thead {
	background: linear-gradient(135deg, #ed7020, #ff8c42);
	color: white;
}

.product-table th {
	padding: 15px 10px;
	text-align: center;
	font-weight: 600;
	border: 1px solid #fff;
	vertical-align: middle;
	font-size: 13px;
	line-height: 1.4;
}

.product-table td {
	padding: 12px 10px;
	text-align: center;
	border: 1px solid #e0e0e0;
	vertical-align: middle;
	transition: background-color 0.3s ease;
}

.product-table tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.product-table tbody tr:hover {
	background-color: #fff3e6;
	transform: translateY(-1px);
	box-shadow: 0 2px 5px rgba(237, 112, 32, 0.1);
}

.download-btn {
	background: linear-gradient(135deg, #ed7020, #ff8c42);
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.download-btn:hover {
	background: linear-gradient(135deg, #d65a1a, #ed7020);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(237, 112, 32, 0.3);
}

.rounded-6 {
	float: left !important;
	height:440px;
}

#lqd-tab-item-6 .col {
	margin-bottom: 30px;
}

.fp_box_13 {
	margin-bottom: 50px;
}

footer ul {
	padding-left: 0 !important;
}

.fp_box_14 {
	padding: 100px 0;
}

.fp_box_14 ul {
	margin-left: -15px;
	margin-right: -15px;
}

.fp_box_14 ul li {
	width: 50%;
	float: left;
	padding: 0 15px;
	box-sizing: border-box;
}

.fp_box_14 ul li h2 {
	font-size: 62px;
	color: #282828;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
	font-weight: bold;
}

.fp_box_14 ul li h3 {
	font-size: 62px;
	color: #282828;
	margin: 0;
	text-transform: uppercase;
	position: relative;
	font-weight: bold;
}

.fp_box_14 ul li h3::after {
	display: block;
	content: "";
	width: 130px;
	height: 4px;
	background: #ff6b35;
	position: absolute;
	top: 40px;
	left: 370px;
}

.fp_box_14 ul li {
	margin-bottom: 50px;
}

.fp_box_14 ul li p {
	font-size: 18px;
	color: #4f4f4f;
	line-height: 2;
	width: 80%;
}

.fp_box_14 ul li .pic_tu {
	min-height: 500px;
	display: block;
	background: #f6f6f6;
	position: relative;
	border-radius: 30px;
	padding: 60px;
}

.fp_box_14 ul li .pic_tu h4 {
	font-size: 30px;
	color: #2a2a2a;
	font-weight: normal;
}

.fp_box_14 ul li:nth-child(3) {
	margin-top: -200px;
}

.fp_box_14 ul li:nth-child(5) {
	margin-top: -150px;
}

.fp_box_14 ul li:nth-child(7) {
	margin-top: -150px;
}

.fp_box_14 ul li .pic_tu img {
	position: absolute;
	bottom: 10px;
	right: 0px;
	max-width: 60%;
	/* 添加动画效果 */
	animation: floatUpDown 3s ease-in-out infinite;
}

.fp_box_14 ul li .pic_tu::after {
	width: 65px;
	height: 65px;
	display: block;
	content: "";
	background: url(../images/ftitle.png) no-repeat;
	position: absolute;
	bottom: 50px;
	transition: all 0.3s ease;
}


.fp_box_14 ul li:hover .pic_tu {
	background: #a5a5a5;
}

.fp_box_14 ul li:hover .pic_tu h4 {
	color: #fff;
}

.fp_box_14 ul li:hover .pic_tu::after {
	background: url(../images/ftitle1.png) no-repeat;
	bottom: 100px;
}

@keyframes floatUpDown {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
	}
}

.fp_box_15 {
	padding: 66px 0;
}

.fp_box_15 .left {
	width: 18%;
	float: left;
}

.fp15_sousuo {
	width: 100%;
	height: 50px;
	background: #eeeeee;
}

.fp15_sousuo input {
	width: 80%;
	height: 100%;
	background: none;
	border: none;
	padding-left: 20px;
	font-size: 18px;
}

.fp15_sousuo button {
	width: 20%;
	float: right;
	height: 100%;
	border: none;
}

.fp15_sousuo button img {
	width: auto;
	height: 60%;
}

.liebie h3 {
	font-size: 30px;
	color: #ed7020;
	margin: 30px 0;
}

/* 产品分类菜单样式 */
.product-category-menu {
	width: 100%;
}

.category-item {
	border-bottom: 1px solid #e0e0e0;
}

.category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #eeeeee;
	cursor: pointer;
	transition: all 0.3s ease;
	border-left: 4px solid transparent;
}

.category-item.active .category-header {
	background: #ed7020;
	color: white;
	border-left: 4px solid #d65a1a;
}

.category-item:hover .category-header {
	background: #ed7020;
	color: white;
}

.category-title {
	font-size: 16px;
	font-weight: 600;
}

.toggle-icon {
	font-size: 12px;
	transition: all 0.3s ease;
}

.toggle-icon::before {
	content: '▶';
	color: #fff;
}

.category-item.active .toggle-icon::before,
.category-item:hover .toggle-icon::before {
	content: '▼';
	color: white;
}

.subcategory-list {
	background: #fff;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.category-item.active .subcategory-list {
	max-height: 300px;
}

a.subcategory-item {
	display: flex;
	align-items: center;
	padding: 12px 30px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #333;
}

a.subcategory-item:hover {
	background: #fff3e6;
	color: #ed7020;
	text-decoration: none;
}

a.subcategory-item:last-child {
	border-bottom: none;
}

.arrow {
	margin-right: 10px;
	font-size: 12px;
	color: #ed7020;
}

.subcategory-title {
	font-size: 14px;
	color: #333;
}

a.subcategory-item:hover .subcategory-title {
	color: #ed7020;
}

a.subcategory-item.selected {
	background: #fff3e6;
	border-left: 3px solid #ed7020;
	text-decoration: none;
}

a.subcategory-item.selected .subcategory-title {
	color: #ed7020;
	font-weight: 600;
}

a.subcategory-item.selected .arrow {
	color: #d65a1a;
}

a.subcategory-item:visited {
	color: #333;
}

a.subcategory-item.selected:visited {
	color: #ed7020;
}

.vb_box_1 h3 {
	font-size: 30px;
	color: #ed7020;
	margin: 30px 0;
	display: inline-block;
	border-bottom: 2px solid #ff8c42;
}

.vb_box_1 ul li {
	margin-bottom: 20px;
	display: flex;
	align-items: stretch;
}

.vb_box_1 ul li a {
	display: flex;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.vb_box_1 ul li a img {
	width: 50%;
	object-fit: cover;
}

.vb_box_1 ul li a span {
	display: flex;
	width: 50%;
	align-items: center;
	padding-left: 20px;
}

.vb_box_1 ul li a:hover span {
	color: #ff8c42;
}

.fp_box_15 .rii {
	width: 75%;
	float: right;
}

/* 产品展示区域样式 */
.product-showcase {
	padding: 40px 0;
	padding-top: 0;
}

.product-title {
	font-size: 30px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	text-align: left;
}

.product-description {
	font-size: 18px;
	line-height: 1.8;
	color: #999;
	margin-bottom: 40px;
	text-align: justify;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.product-item {
	text-align: center;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.product-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
	background: #ededed;
	height: 340px;
	width: 100%;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
	transform: scale(1.05);
}

.product-name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	padding: 20px 15px;
	margin: 0;
	border-top: 1px solid #f0f0f0;
}

.banner_two img {
	display: block;
}

.fp_box_16 {
	padding: 100px 0;
}

.fp_box_16 .left {
	width: 49%;
	float: left;
}

.fp_box_16 .rii {
	width: 49%;
	float: right;
}

.fp_box_16 .box_d {
	position: relative;
}

.fp_box_16 .left img {
	width: 100%;
	transition: all 0.6s ease;
}
.fp_box_16 .left img:hover{
transform: scale(1.02);
}
.fp_box_16 .rii img {
	width: 100%;
	transition: all 0.6s ease;
}

.fp_box_16 .rii img:hover {
	transform: scale(1.05);
}

.fp_box_16 .rii .lunbo h3 {
	font-size: 36px;
	color: #000000;
	margin: 0;
	padding: 10px 0;
	text-align: left;
}

.fp_box_16 .rii .lunbo p {
	text-align: center;
	font-size: 22px;
	color: #000000;
	padding: 10px 0;
}

.fp_box_16 .rii .text {
	padding: 20px 40px;
	background: #565452;
	color: #fff;
	font-size: 18px;
	height:180px;
	line-height: 1.6;
	width: 75%;
	position: absolute;
	bottom: 70px;
	right: 0;
	z-index: 9;
}

.box_d {
	margin-bottom: 65px;
}

.box_d:nth-child(2n) .left {
	float: right;
}

.box_d:nth-child(2n) .rii {
	float: left;
}

.box_d:nth-child(2n) .rii .text {
	left: 0;
}

.fp_box_16 .rii .text:hover {
	background: #ff8c42;
}

.dy_nac{
	padding-top: 100px;
}
.dy_nac .nav_nav{
	margin-bottom: 50px;
}
.dyimg{
	width: 90px ;
	height: 90px ;
}
.lqd-section.has-accordion-page.pt-40{
	margin-top: -50px;
}
.mb-2rem {
    margin-bottom: 50px;
}
.lqd-section{
	background: #f4f6f8;
}
.titleh2{
	padding-top: 60px;
	text-align: center;
	font-size: 40px;
}
.fp_box_13{
	border-top: 1px solid #ddd;
}
@media only screen and (max-width:1800px) {
	.news-list a {
		padding: 19px 30px;
	}

	.product-image {
		height: 300px;
	}

	.fp_box_14 ul li h2 {
		font-size: 48px;
	}

	.fp_box_14 ul li h3 {
		font-size: 48px;
	}

	.fp_box_14 ul li .pic_tu {
		min-height: 400px;
		display: block;
		background: #f6f6f6;
		position: relative;
		border-radius: 30px;
		padding: 50px;
	}

	.fp_box_14 ul li:nth-child(3) {
		margin-top: -100px;
	}

	.fp_box_14 ul li:nth-child(5) {
		margin-top: -100px;
	}

	.fp_box_14 ul li:nth-child(7) {
		margin-top: -100px;
	}
}





@media only screen and (max-width:1680px) {
	.nav-item {
		margin-left: 20px;
	}

	.news-list a {
		padding: 15px 30px;
	}

	.fp_box_16 .rii .text {
		font-size: 14px;
		bottom: 20px;
	}
}


@media only screen and (max-width:1550px) {


	.nav-item {
		margin-left: 20px;
	}

	.banner .swiper-slide .text .main .auimg {
		max-width: 500px;
	}

	.sousuo {
		margin-left: 2vw;
	}

	.picnav {
		max-width: 200px;
	}

	.erji_nav .left h2 {
		font-size: 50px;
	}

	.erji_nav .left h4 {
		display: block;
		font-style: normal;
		font-size: 40px;
		line-height: 1em;
		margin-top: 0;
		margin-bottom: 20px;
	}

	.fp_box_11 .left .text p {
		font-size: 14px;
	}

	.fp_box_11 .rii img {
		margin-top: 120px;
	}

	.product-image {
		height: 260px;
	}

	.liebie h3 {
		font-size: 24px;
		color: #ed7020;
		margin: 20px 0;
	}

	.vb_box_1 h3 {
		font-size: 24px;
		color: #ed7020;
		margin: 20px 0;
	}

	.product-description {
		font-size: 16px;
	}

	a.subcategory-item {
		padding: 12px 12px;
	}

	.fp_box_14 ul li h2 {
		font-size: 38px;
	}

	.fp_box_14 ul li h3 {
		font-size: 38px;
	}

	.fp_box_14 ul li:nth-child(3) {
		margin-top: -160px;
	}

	.fp_box_14 ul li:nth-child(5) {
		margin-top: -160px;
	}

	.fp_box_14 ul li:nth-child(7) {
		margin-top: -160px;
	}

	.banner_two .text h3 {
		margin-top: 60px;
	}

}


@media only screen and (max-width:1400px) {
	.nav-item {
		margin-left: 20px;
	}

	.main {
		padding: 0 4%;
	}

	.logo img {
		height: 30px;
	}

	.logo {
		margin-top: 35px;
	}

	.pc_nav ul li>a {
		font-size: 18px;
	}

	.sousuo img {
		width: 23px;
		margin-top: 5px;
		height: auto;
	}

	.dianhua img {
		width: 23px;
		margin-top: 5px;
		height: auto;
	}

	.search-input-container {
		z-index: 100;
	}

	.banner .swiper-slide .text img.slideInUp {
		height: 80px;
	}

	.banner .swiper-slide .text h3 {
		font-size: 34px;
	}

	.banner .swiper-slide .text p {
		font-size: 18px;
	}

	.banner .swiper-slide .text i {
		display: block;
		margin: 20px 0;
		width: 120px;
		height: 4px;
		background: #ed7020;
	}

	.banner .swiper-slide .text a {
		display: block;
		width: 180px;
		height: 50px;
		background: #ed7020;
		border-radius: 30px;
		margin-top: 30px;
		text-align: center;
		line-height: 50px;
		font-size: 18px;
		color: #ffffff;
	}

	.fp_box_2 .swiper-slide .left h3 {
		font-size: 22px;
		color: #ed7020;
	}

	.fp_box_2 .swiper-slide .left {
		width: 50%;
		float: left;
		padding: 15px;
		background: #fff;
	}

	.fp_box_2 .swiper-slide .left span {
		font-size: 14px;
		color: #323232;
		display: block;
		margin: 12px 0;
	}

	.fp_box_2 .swiper-slide .left .ln-link a {
		display: block;
		width: 47%;
		height: 40px;
		background: #f2f2f2;
		border-radius: 30px;
		float: right;
		margin-right: 3%;
		margin-bottom: 10px;
		text-align: center;
		line-height: 40px;
		font-size: 12px;
	}

	.fp_box_5 .accordion-item.active .accordion-content {
		max-height: 200px;
		padding-bottom: 0;
	}

	.fp_box_5 .accordion-header {
		position: relative;
		padding: 8px 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.fp_box_5 .left h3 {
		font-size: 27px;
		color: #ffffff;
		text-transform: uppercase;
	}

	.fp_box_5 .left p {
		font-size: 15px;
		color: #ffffff;
		margin: 30px 0;
	}

	.fp_box_6 .link-btn span {
		font-size: 18px;
		color: #fff;
		font-weight: normal;
	}

	.fp_box_6 .link-btn {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		padding: 15px;
		background: #666;
		color: #fff;
		text-decoration: none;
		border-radius: 8px;
		transition: all 0.3s ease;
		width: 23%;
		box-sizing: border-box;
	}

	.fp_box_6 .link-btn .icon {
		width: 36px;
		height: 36px;
		margin-right: 12px;
		flex-shrink: 0;
	}

	.news-list a {
		display: block;
		background: #f4f6f8;
		padding: 18.5px 30px;
		margin-bottom: 20px;
		position: relative;
		overflow: hidden;
		transition: color 0.3s ease;
	}

	footer .left ul li h3 {
		font-size: 16px;
		color: #dadada;
		margin-top: 0;
	}

	footer .left ul li a {
		font-size: 12px;
	}

	footer .rii .footer_logo img {
		height: 35px;
	}

	footer .rii span {
		display: block;
		color: #c7c7c7;
		font-size: 12px;
	}

	footer .rii span em {
		font-size: 14px;
	}

	.erweima .box {
		width: 80px;
		margin-top: 30px;
		margin-right: 30px;
		color: #c7c7c7;
		float: left;
		text-align: center;
	}

	.footer .zuo {
		width: 33.33%;
		float: left;
		color: #fff;
		font-size: 12px;
	}

	.footer .zhong {
		width: 43.33%;
		float: left;
		color: #fff;
		font-size: 12px;
		text-align: center;
	}

	.footer .rii {
		width: 20%;
		float: right;
		color: #fff;
		font-size: 12px;
		text-align: right;
	}

	.fp_box_12 .text ul li h3 {
		font-size: 60px;
	}
	.fp_box_11 .rii img {
		margin-top: 150px;
	}
}

@media only screen and (max-width:1200px) {
	.nav-item {
		margin-left: 20px;
	}

	.banner .swiper-slide .text .main .auimg {
		max-width: 350px;
	}

	.mb-2rem {
		margin-bottom: 50px;
	}

	.lqd-section .col.col-12.col-xl-6 {
		width: 50%;
		float: left;
	}


	.lqd-section .col.col-12.col-xl-4 {
		width: 33.33%;
		float: left;
	}

	#lqd-tab-item-6 .col.col-12.col-xl-3 {
		width: 25%;
		float: left;
	}
}

@media only screen and (max-width: 1000px) {


	.nav-item {
		margin-left: 15px;
	}

	.nav-link {
		font-size: 14px;
	}
}

/* 响应式设计 */
@media (max-width: 1024px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.product-showcase {
		padding: 20px 0;
	}

	.product-title {
		font-size: 24px;
	}

	.product-description {
		font-size: 13px;
		margin-bottom: 30px;
	}

	.product-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.product-image {
		height: 180px;
	}

	.product-name {
		font-size: 14px;
		padding: 15px 10px;
	}


}

@media only screen and (max-width: 750px) {
	.main {
		width: 100%;
		padding: 0 2%;
	}

	.nav-pc {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.header-container {
		padding: 10px 15px;
	}

	.logo img {
		height: 30px;
	}

	.pc_nav {
		display: none;
	}

	.header {
		height: 60px;
		background: #fff;
		width: 100%;
	}

	.logo {
		margin-top: 12px;
	}

	.sousuo {
		float: right;
		margin-top: 12px;
		margin-left: 8vw;
		cursor: pointer;
		position: relative;
		display: flex;
		align-items: center;
	}

	.dianhua {
		float: right;
		margin-top: 11px;
		margin-left: 30px;
		cursor: pointer;
		margin-right: 60px;
	}

	.menu-toggle {
		top: 16px;
		right: 15px;
		position: absolute;
	}

	.logo img {
		height: 22px;
		margin-top: 10px;
	}

	footer {
		display: none;
	}

	.banner {
		margin-top: 60px;
	}

	.banner .swiper-slide .text .main {
		position: relative;
		height: 100%;
		padding-top: 10px;
	}

	.banner .swiper-slide .text img.slideInUp {
		height: 30px;
	}

	.banner .swiper-slide .text .main .auimg {
		max-width: 150px;
	}

	.banner .swiper-slide .text h3 {
		font-size: 18px;
		margin-top: 5px;
	}

	.banner .swiper-slide .text i {
		display: block;
		margin: 5px 0;
		width: 120px;
		height: 4px;
		background: #ed7020;
	}

	.banner .swiper-slide .text p {
		font-size: 10px;
	}

	.banner .swiper-slide .text a {
		display: block;
		width: 100px;
		height: 30px;
		background: #ed7020;
		border-radius: 30px;
		margin-top: 20px;
		text-align: center;
		line-height: 30px;
		font-size: 12px;
		color: #ffffff;
	}

	.fp_box_1 {
		padding: 10px 0;
		border-bottom: 1px solid #ddd;
	}

	.fp_box_1 h3 {
		font-size: 18px;
		color: #ed7020;
		margin-bottom: 20px;
	}

	.fp_box_1 span {
		font-size: 12px;
		width: 60%;
		display: block;
		color: #242424;
	}

	.fp_box_1 a {
		display: block;
		width: 80px;
		height: 30px;
		background: #dcdcdc;
		font-size: 14px;
		color: #727272;
		text-align: center;
		line-height: 30px;
		border-radius: 30px;
		position: absolute;
		top: 20px;
		right: 10px;
	}

	.fp_box_2 {
		background: #f4f6f8;
		padding-top: 30px;
		padding-bottom: 30px;
		padding: 20px 10px;

	}

	.fp_box_2 .swiper-slide {
		display: block;
	}

	.fp_box_2 .swiper-slide .left {
		width: 100%;
		float: left;
		padding: 10px;
		background: #fff;
	}

	.fp_box_2 .swiper-slide .rii {
		width: 100%;
		padding: 10px;
	}

	.fp_box_2 .swiper-slide {
		border-radius: 0;
	}

	.fp_box_2 .swiper-slide .left h3 {
		font-size: 16px;
		color: #ed7020;
	}

	.fp_box_2 .swiper-slide .left span {
		font-size: 12px;
	}

	.fp_box_2 .swiper-slide .left .ln-link {
		margin-top: 10px;
	}

	.fp_box_2 .swiper-slide .left .ln-link a {
		display: block;
		width: 47%;
		height: 30px;
		background: #f2f2f2;
		border-radius: 5px;
		float: right;
		margin-right: 3%;
		margin-bottom: 10px;
		text-align: center;
		line-height: 30px;
		font-size: 12px;
	}

	.fp_box_2 .swiper-slide .left .more {
		width: 40px;
		height: 40px;
		display: block;
		margin-top: 10px;
		background: #aaaaaa;
		border-radius: 40px;
		text-align: center;
		color: #fff;
		line-height: 40px;
	}

	.fp_box_2 .swiper-slide .rii>img {
		width: 70%;
		margin: 0 auto;
		margin-top: 15px;
	}

	.fp_box_2 .swiper-container-horizontal>.swiper-scrollbar {
		position: absolute;
		left: 0;
		bottom: 3px;
		z-index: 50;
		height: 5px;
		width: 100%;
		opacity: 1 !important;
	}

	.fp_box_4 {
		padding: 30px 0;
		background: url(../images/bg1.png) no-repeat;
		background-size: 100% 100%;
	}

	.fp_box_4 .left {
		float: left;
		width: 100%;
		padding-right: 20px;
		box-sizing: border-box;
	}

	.fp_box_4 .rii {
		float: left;
		width: 100%;
		padding-left: 20px;
		box-sizing: border-box;
	}

	.fp_box_4 .title {
		text-align: left;
		margin: 0 auto 30px;
		padding-right: 20px;
	}

	.fp_box_4 .title h2 {
		font-size: 32px;
		color: #ed7020;
		margin-bottom: 20px;
		font-weight: normal;
	}

	.fp_box_4 .title p {
		font-size: 14px;
		color: #666;
	}

	.fp_box_5 {
		padding: 30px 0;
		background: url(../images/bg2.png) no-repeat;
		background-size: 100% 100%;
	}

	.fp_box_5 .left {
		width: 100%;
		float: left;
	}

	.fp_box_5 .left h3 {
		font-size: 20px;
		color: #ffffff;
		text-transform: uppercase;
	}

	.fp_box_5 .left p {
		font-size: 13px;
		color: #ffffff;
		margin: 15px 0;
	}

	.fp_box_5 .rii {
		width: 100%;
		float: right;
		margin-top: 40px;
		border-top: 5px solid #fff;
		border-bottom: 5px solid #fff;
	}

	.fp_box_6 {
		padding: 30px 0;
		background: #f8f9fa;
	}

	.fp_box_6 .top-section h2 {
		font-size: 25px;
		color: #4d4d4d;
		margin-bottom: 10px;
		font-weight: normal;
	}

	.fp_box_6 .top-section p {
		font-size: 16px;
		color: #4d4d4d;
		margin-bottom: 20px;
	}

	.fp_box_6 .link-buttons {
		display: block;
	}

	.fp_box_6 .link-buttons a {
		display: block;
		width: 48%;
		float: left;
		margin-bottom: 20px;
		height: 60px;
	}

	.fp_box_6 .link-buttons a:nth-child(2n) {
		float: right;
	}

	.fp_box_6 .link-btn .icon {
		width: 25px;
		height: auto;
	}

	.fp_box_6 .link-btn span {
		font-size: 12px;
		color: #fff;
		font-weight: normal;
	}

	.fp_box_7 {
		background: #fff;
		padding: 30px 0;
		padding-bottom: 0;
	}

	.fp_box_7 .section-title {
		font-size: 22px;
		color: #333;
		font-weight: bold;
		margin: 0;
	}

	.fp_box_7 .more-link {
		font-size: 12px;
		color: #999;
		text-decoration: none;
		background: #f0f0f0;
		padding: 7px 30px;
		border-radius: 30px;
		transition: all 0.3s ease;
	}

	.fp_box_7 .section-header {
		margin-bottom: 30px;
	}

	.fp_box_7 .news-item {
		float: left;
		width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
		margin-bottom: 20px;
	}

	.news-list a h3 {
		font-size: 18px;
		color: #262626;
		margin-top: 10px;
	}

	.footer {
		display: none;
	}

	.index_application .bd .arrow.next {
		right: 110px;
		top: -70px;
	}

	.index_application .bd .arrow.prev {
		left: 70px;
		top: -70px;
	}

	.index_application .hd ul li .icon img {
		width: 30px;
		height: 30px;
	}
}



/* 表格容器 */
.table-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.table-container {
		margin: 0 -15px;
		padding: 0 15px;
	}

	.product-table {
		font-size: 12px;
		min-width: 800px;
		/* 固定最小宽度，确保表格不会被压缩 */
		margin: 20px 0;
	}

	.product-table th,
	.product-table td {
		padding: 8px 5px;
		white-space: nowrap;
		/* 防止文字换行 */
	}

	.download-btn {
		padding: 6px 12px;
		font-size: 11px;
	}

	/* 滚动条样式优化 */
	.table-container::-webkit-scrollbar {
		height: 8px;
	}

	.table-container::-webkit-scrollbar-track {
		background: #f1f1f1;
		border-radius: 4px;
	}

	.table-container::-webkit-scrollbar-thumb {
		background: #ed7020;
		border-radius: 4px;
	}

	.table-container::-webkit-scrollbar-thumb:hover {
		background: #d65a1a;
	}
}



/* 响应式设计 */
@media (max-width: 768px) {
	.category-header {
		padding: 12px 15px;
	}

	.category-title {
		font-size: 14px;
	}

	.subcategory-item {
		padding: 10px 25px;
	}

	.subcategory-title {
		font-size: 13px;
	}

	.fp_box_5 .toggle-icon {
		font-size: 14px;
	}

	.dbdh {
		display: block;
	}

	body {
		padding-bottom: 45px;
	}

	.dbdh {
		min-width: 320px;
		max-width: 750px;
		width: 100%;
		position: fixed;
		bottom: -0;
		z-index: 299;
		margin-bottom: 0;
	}

	.dbdh li {
		float: left;
		width: 25%;
		height: 55px;
		background: #222222;
		box-sizing: border-box;
		border-right: 1px solid #343434;
	}

	.dbdh li.hover {
		background: #ed7020;
	}

	.dbdh li a {
		display: block;
		height: 55px;
		padding-top: 5px;
		box-sizing: border-box;
	}

	.dbdh li em {
		display: block;
		width: 22px;
		height: 22px;
		margin: 0 auto;
		line-height: 0;
	}

	.dbdh li em img {
		width: 100%;
	}

	.dbdh li i {
		display: block;
		height: 24px;
		line-height: 24px;
		text-align: center;
		font-size: 14px;
		color: #FFF;
		font-style: normal;
	}

	.fp_box_5 .accordion-header .icon {
		width: 25px;
		height: 25px;
	}

	.fp_box_5 .accordion-header h4 {
		font-size: 16px;
	}

	.fp_box_5 .accordion-content p {
		font-size: 12px;
	}

	.banner_two img {
		height: auto;
		object-fit: contain;
	}

	.banner_two .text h3 {
		font-size: 20px;
		color: #fff;
		margin-bottom: 10px;
		text-transform: uppercase;
	}

	.banner_two .text p {
		font-size: 15px;
		color: #fff;
	}

	.banner_two .text i {
		display: block;
		width: 70px;
		height: 2px;
		background: #fff;
		margin: 0 auto;
		margin-bottom: 8px;
	}

	.fp_box_11 {
		padding-left: 0%;
	}

	.fp_box_11 {
		padding: 30px 20px;
		background: url(../images/bg21.png) no-repeat top right;
	}

	.fp_box_11 .left {
		width: 100%;
		float: left;
	}

	.fp_box_11 .left h3 {
		font-size: 20px;
	}

	.fp_box_11 .left span {
		display: inline-block;
		font-size: 16px;
		color: #000000;
		font-weight: 500;
		position: relative;
	}

	.fp_box_11 .left span::after {
		display: block;
		content: "";
		width: 30px;
		height: 1px;
		background: #ff6b35;
		position: absolute;
		top: 12px;
		right: -40px;
	}

	.fp_box_11 .left .text p {
		text-indent: 25px;
		margin-top: 10px;
		font-size: 12px;
	}

	.fp_box_11 .rii {
		width: 100%;
		float: right;
	}

	.fp_box_11 .rii img {
		width: 100%;
		margin-top: 0;
	}

	.fp_box_12>img {
		height: 200px;
	}

	.fp_box_12 .text ul li h3 {
		font-size: 35px;
	}

	.fp_box_12 .text ul li span {
		font-size: 14px;
		color: #ffffff;
		display: block;
		margin: 15px 0;
	}

	.fp_box_12 .text ul li img {
		height: 20px;
		width: 20px;
	}

	.development_history {
		margin-top: -60px;
	}

	.pu_switch {
		display: none !important;
	}

	.pu_switch .prev i img,
	.pu_switch .next i img {
		width: 25px;
	}

	.development_history .de_cen {
		padding-bottom: 0;
	}

	.fp_box_15 .left {
		display: none;
	}

	.fp_box_15 .rii {
		width: 100%;
		float: none;
	}

	.fp_box_15 {
		padding: 0px 0;
	}

	.product-title {
		font-size: 18px;
	}

	.product-description {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.product-image {
		height: 140px;
	}

	.product-item {
		width: 50%;
		float: left;
		padding: 0 5px;
		box-sizing: border-box;
	}

	.product-grid {
		display: block;
	}

	.fp_box_14 {
		padding: 30px 0;
	}

	.fp_box_14 ul li {
		margin-bottom: 30px;
	}

	.fp_box_14 ul li {
		width: 100%;
		float: left;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.fp_box_14 ul li h2 {
		font-size: 22px;
	}

	.fp_box_14 ul li h3 {
		font-size: 22px;
	}

	.fp_box_14 ul li h3::after {
		display: block;
		content: "";
		width: 40px;
		height: 2px;
		background: #ff6b35;
		position: absolute;
		top: 15px;
		left: 130px;
	}

	.fp_box_14 ul li p {
		font-size: 12px;
		color: #4f4f4f;
		line-height: 2;
		width: 100%;
	}

	.fp_box_14 ul li:nth-child(3) {
		margin-top: -0;
	}

	.fp_box_14 ul li:nth-child(5) {
		margin-top: -0;
	}

	.fp_box_14 ul li:nth-child(7) {
		margin-top: -0;
	}

	.fp_box_14 ul li .pic_tu {
		min-height: 240px;
		display: block;
		background: #f6f6f6;
		position: relative;
		border-radius: 15px;
		padding: 15px;
	}

	.fp_box_14 ul li .pic_tu h4 {
		font-size: 30px;
		color: #2a2a2a;
		font-weight: normal;
	}

	.fp_box_14 ul li .pic_tu::after {
		width: 35px;
		height: 35px;
		display: block;
		content: "";
		background: url(../images/ftitle.png) no-repeat;
		background-size: 30px 30px;
		position: absolute;
		bottom: 30px;
	}

	.fp_box_14 ul li:hover .pic_tu::after {
		background: url(../images/ftitle1.png) no-repeat;
		background-size: 30px 30px;
		bottom: 50px;
	}

	.lqd-tabs-style-3 .lqd-tabs-nav {
		flex-wrap: wrap;
		flex-wrap: nowrap;
	}

	.lqd-tabs-nav .h3 {
		font-size: 12px;
	}

	.mb-2rem {
		margin-bottom: 30px;
	}

	.lqd-section .col.col-12.col-xl-6 {
		width: 100%;
		float: left;
		margin-top:30px;
	}

	.iconbox p {
		margin-bottom: 0;
		font-size: 10px;
		margin-bottom: 0px;
	}

	.iconbox-icon-wrap.text-center img {
		margin-bottom: 10px;
	}

	.lqd-section.has-accordion-page.pt-40 {
		padding-top: 0px;
		margin-top: -30px;
	}

	.accordion-title ul,
	.accordion-title p {
		font-family: var(--lqd-body-font-family);
		font-size: 15px;
		line-height: 1.68em;
		font-weight: 400;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.font-bold {
		font-weight: 700;
		margin-bottom: 10px;
		font-size: 16px;
	}

	.fixed-height {
		height: auto;
		overflow: hidden;
	}

	.accordion-title ul {
		padding-left: 0 !important;
	}

	#lqd-tab-item-6 .col.col-12.col-xl-3 {
		width: 50%;
		float: left;
	}

	.lqd-pf-column.col-12.col-md-6.col-lg-4.px-15.masonry-item.filter.ecommerce.portfolio-single {
		width: 50%;
		float: left;
	}

	.lqd-pf-item {
		height: 200px;
	}

	.lqd-pf-row.row.flex.flex-wrap {
		height: auto !important;
		padding: 0 20px !important;
		box-sizing: border-box !important;
	}

	.product-table {
		font-size: 12px;
		min-width: 100%;
		margin: 20px 0;
	}

	.table-container {
		margin: 0;
		padding: 0;
	}

	.banner_two .text h3 {
		margin-top: 0px;
	}

	.fp_box_16 {
		padding: 20px 0;
	}

	.fp_box_16 .left {
		width: 100%;
		float: left;
	}

	.fp_box_16 .left img {
		width: 100%;
		height: 140px;
		object-fit: cover;
		display: block;
		margin: 0 auto;
	}

	.fp_box_16 .rii {
		width: 100%;
		float: right;
	}

	.fp_box_16 .rii .text {
		position: static;
		width: 100%;
		font-size: 12px;
		padding: 10px;
	}

	.fp_box_16 .rii .lunbo h3 {
		font-size: 20px;
	}

	.fp_box_16 .rii .lunbo p {
		font-size: 12px;
	}
	.box_d {
    margin-bottom: 15px;
}
.news-list a::after{
	left: 30px;
}
.dyimg {
    width: 50px;
    height: 50px;
}
.titleh2 {
    padding-top: 30px;
    text-align: center;
    font-size: 20px;
	margin-bottom: 0;
}

}

.lqd-pf-row.row.flex.flex-wrap {
	height: auto !important;

}