@font-face {
	font-family: 'iconfont';
	src: url(../icons/iconfont.eot);
	src: url(../icons/iconfont.eot?#iefix) format('embedded-opentype'),
		url(../icons/iconfont.woff) format('woff'),
		url(../icons/iconfont.ttf) format('truetype'),
		url(../icons/iconfont.svg#iconfont) format('svg');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC_Thin.woff2');
	font-weight: 200;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC_Light.woff2');
	font-weight: 300;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC.woff2');
	font-weight: 400;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC_Medium.woff2');
	font-weight: 500;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC_Bold.woff2');
	font-weight: 600;
}

@font-face {
	font-family: 'HarmonyOSSansSC';
	src: url('../fonts/HarmonyOS_Sans_SC_Black.woff2');
	font-weight: 700;
}

@font-face {
	font-family: BaiJamjuree-Bold;
	src: url('../fonts/BaiJamjuree-Bold.woff2');
}

* {
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	list-style: none;
	color: var(--color4);
	font-family: 'HarmonyOSSansSC';
	font-weight: 400;
}

p {
	font-size: 1.6rem;
	line-height: 2;
	margin: 1rem 0;
	font-weight: 300;
	color: #666;
}

img {
	display: block;
}

.clear {
	clear: both;
}

a {
	text-decoration: none;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color);
}

::selection {
	background: var(--color);
	color: #fff;
}

.flexBoxs {
	display: flex;
	flex-wrap: wrap;
}

.animate-up {
	opacity: 0;
	transform: translateY(60px);
	transition: all 0.8s ease-out;
}

.animate-up.show {
	opacity: 1;
	transform: translateY(0);
}

html,
body {
	font-size: 62.5%;
	width: 100%;
	position: relative;
	--color: #d17011;
	--color2: #006637;
	--color3: #0a86ca;
	--color4: #070506;
	--height: 86px;
	--height2: 68px;
	overflow-x: hidden;
}


.w_all {
	width: 75%;
	margin: 0 auto;
	max-width: 1200px;
}

.w_all2 {
	width: 80%;
	margin: auto;
}

header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.6s ease;
}

header.active {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	background: #fff;
}

header.on {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	background: #fff;
}

header nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .logo img {
	filter: invert(1) brightness(1000);
	height: 6rem;
	position: relative;
	z-index: 999999;

}

header.active .logo img,
header.on .logo img {
	filter: none;
}

header ul {
	display: flex;
}

header ul li {
	position: relative;
	margin-left: 3vw;
}

header ul li>a {
	color: #fff;
	font-size: 1.7rem;
	line-height: var(--height);
	transition: all 0.6s;
}

header.active ul li>a {
	line-height: var(--height2);
}

header.active ul li>a,
header.on ul li>a {
	color: rgba(0, 0, 0, 0.8);
}

header.active ul li:hover>a {
	color: var(--color);
}

header ul li>a i {
	margin-left: 8px;
	display: none;
}

.navBtn {
	z-index: 99999;
	cursor: pointer;
	display: none;
	margin-left: 2rem;
}

.navBtn span {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin: 4px auto;
}

header.on .navBtn span,
header.active .navBtn span {
	background: var(--color4);
}

.nav_btn_active {
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.nav_btn_active span:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.nav_btn_active span:nth-of-type(2) {
	opacity: 0;
}

.nav_btn_active span:nth-of-type(3) {
	margin-top: -59%;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.s_menu {
	position: absolute;
	display: none;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
}

.s_menu dl {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	padding: 10px 0;
}

.s_menu dd a {
	font-size: 1.4rem;
	padding: 8px 18px;
	display: block;
	text-align: center;
	cursor: pointer;
	color: #1a1a1a;
	transition: all 0.3s linear;
}

.s_menu dd a:hover {
	color: var(--color);
}

.full_slider {
	width: 100%;
	height: 100vh;
	z-index: 2;
	overflow: hidden;
	background: var(--blue);
}

.full_slider>.swiper-wrapper {
	display: block;
}

.full_item {
	position: relative;
	width: auto;
	height: 100vh !important;
	overflow: hidden;
	background: var(--blue);
}

.sec_footer {
	height: auto !important;
}

.full_pagination {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 999;
	transform: translateY(-50%);
}

.full_pagination span {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color);
	opacity: 1 !important;
	position: relative;
	margin: 2.5rem 4rem !important;
}

.full_pagination span::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	padding: 0rem;
	border-radius: 50%;
	border: 1px solid var(--color);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: all 0.5s ease;
}

.full_pagination .swiper-pagination-bullet-active::before {
	opacity: 1;
	padding: 0.8rem;
}

/* banner 第一屏 */
.banner .swiper-slide {
	background: var(--color4);
}

.banner .bgs {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.8;
}

.banner .txt {
	position: absolute;
	left: 0%;
	top: 52%;
	transform: translate(-50%, -50%);
	z-index: 6;
	opacity: 0;
}

.banner .swiper-slide.swiper-slide-active .txt {
	left: 50%;
	opacity: 1;
	transition: all 1s ease 0.1s;
}

.banner .swiper-container {
	height: 100%;
}

.banner h3 {
	color: #fff;
	font-size: 6rem;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(17, 54, 147, 0.1);
}

.banner p {
	color: #fff;
	margin-top: 4rem;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: 500;
	text-shadow: 0 2px 10px rgba(17, 54, 147, 0.1);
}

.banner .bottom {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 3rem;
	z-index: 333;
}

.banner .banPagination {
	position: static;
	transform: none;
	text-align: left;
}

.banPagination span {
	background: #fff;
	margin: 0 7px !important;
	width: 5px;
	height: 1.6rem;
	border-radius: 2rem;
	opacity: 1 !important;
	transition: all 0.5s ease;
}

.banPagination .swiper-pagination-bullet-active {
	height: 3rem;
}

.scroll {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	z-index: 333;
	color: #fff;
	text-align: center;
}

.scroll .s1 {
	width: 14px;
	height: 30px;
	margin: auto;
	border-radius: 50px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
}

.scroll .s1 span {
	width: 2px;
	height: 5px;
	background: #fff;
	margin-top: 8px;
}

.scroll .s1 span {
	animation: slideInDown 1.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		opacity: 0;
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.more {
	border-radius: 5rem;
	background: var(--color2);
	display: flex;
	justify-content: space-between;
	padding: 1.4rem 2.2rem;
	align-items: center;
	width: max-content;
	margin-top: 4rem;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.5s ease;
}

.more span {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
}

.more i {
	color: #fff;
	margin-left: 1.5rem;
	font-size: 1.6rem;
	font-weight: 500;
}

.more:hover {
	background: var(--color);
}

.more:hover img {
	transform: rotate(180deg);
}

.title {
	margin-bottom: 4rem;
}

.title h3 {
	font-weight: 500;
	font-size: 4rem;
}

.title p {
	margin-top: 2rem;
}

.titleCenter {
	text-align: center;
}

/* 首页 各屏 */
.index_bars {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 8vh;
	box-sizing: border-box;
}

.index_about .contain {
	align-items: center;
	justify-content: space-between;
}

.index_about .ll {
	width: 46%;
}

.index_about .ll img {
	width: 100%;
}

.index_about .rr {
	width: 43%;
}

.index_about .rr p {
	font-weight: 400;
}

.index_pro dl {
	width: 100%;
	display: flex;
	margin-top: 5rem;
}

.index_pro dl dd {
	width: 20%;
	overflow: hidden;
	transition: all 0.6s;
	padding: 5rem 4rem;
	box-sizing: border-box;
	flex: 1 1 20%;
	height: 45vh;
	position: relative;
}

.index_pro dl dd::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2;
	transition: all 0.6s;
}


.index_pro dl dd .t2 {
	z-index: 3;
	position: relative;
	height: 100%;
	pointer-events: none;
	transition: all 0.4s;
}

.index_pro dl dd .t2 h3 {
	font-size: 2.2rem;
	color: #fff;
}

.index_pro dl dd .t2 p {
	color: #fff;
	margin: 1.5rem 0 0 0;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.8;
}

.index_pro dl dd.on {
	width: 50%;
	flex: 1 1 50%;
}

.index_pro dl dd.on::before {
	background: rgba(0, 0, 0, 0.1);

}

.index_pro dl dd.on .t2 {
	opacity: 1;
	pointer-events: all;

}

.index_sol .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--color4);
}

.index_sol .bg img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	display: none;
	opacity: 0.6;
}

.index_sol .bg img:first-of-type {
	display: block;
}

.index_sol .contain {
	position: relative;
	z-index: 6;
	text-align: center;
}

.index_sol ul li {

	display: none;
}

.index_sol ul li:first-of-type {
	display: block;
}

.index_sol h3,
.index_sol p {
	color: #fff;
}

.index_sol .tt0 {
	display: flex;
	justify-content: center;
}

.index_sol h6 {
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	padding: 1.4rem 3rem;
	margin: 1rem 0.8rem;
	border-radius: 5rem;
	font-size: 1.6rem;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.5s ease;

}

.index_sol h6.active {
	background: #fff;
	color: var(--color2);
}

.index_sol h5 {
	color: #fff;
	font-size: 3rem;
	font-weight: 500;
	margin: 3.5vh 0 3vh;
}

.index_sol ul li p {
	width: 60%;
	margin: auto;
	height: 12vh;
	overflow: hidden;
}

.index_sol .more {
	margin: 6vh auto 0;
}

.index_service dl {
	width: 100%;
	justify-content: space-between;
	margin-top: 5rem;
}

.index_service dl dd {
	width: 49%;
	overflow: hidden;
	transition: all 0.6s;
	box-sizing: border-box;
	height: 45vh;
	position: relative;
	border-radius: 2rem;
}

.index_service dl dd::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	z-index: 2;
	transition: all 0.6s;
}


.index_service dl dd a {
	z-index: 3;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	padding: 3rem 4rem;
	pointer-events: none;
	transition: all 0.4s;
}

.index_service dl dd .t2 h3 {
	font-size: 2.2rem;
	color: #fff;
}

.index_service dl dd .t2 p {
	color: #fff;
	margin: 1.5rem 0 0 0;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.8;
}

.index_service dl dd:hover::before {
	background: linear-gradient(to top, rgba(0, 102, 55, 0.6), rgba(0, 102, 55, 0));
	height: 50%;
}

.index_service dl dd:hover a {
	padding-bottom: 4.5rem;
	pointer-events: all;

}

.index_news .title h3 {
	color: #fff;
}

.index_news ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5rem;
}

.index_news ul li b {
	display: block;
	overflow: hidden;
	width: 100%;
}

.index_news ul li img {
	width: 100%;
	transition: all 0.5s ease;
}

.index_news ul li:hover img {
	transform: scale(1.08);
}

.index_news h6 {
	display: none;
}

.index_news ul li .tt {
	padding: 2rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.index_news ul li h5 {
	color: #fff;
	margin: 0 0 2rem 0;
	font-size: 2rem;
}

.index_news ul li h4 {
	color: #fff;
	font-weight: 300;
}

.index_news .more {
	margin: 6vh auto 0;
}

.index_news .swiper-pagination {
	position: static;
	margin: 5vh 0;
}

.index_news .swiper-pagination span {
	width: auto !important;
	height: auto !important;
	background: none;
	opacity: 1;
}

.index_news .swiper-pagination span i {
	font-style: normal;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.8);
	padding: 1.2rem 4rem;
	margin: 1rem 2rem;
	border-radius: 5rem;
	font-size: 1.6rem;
	font-weight: 300;
	cursor: pointer;
	transition: all 0.5s ease;

}

.index_news .swiper-pagination-bullet-active i {
	background: #fff;
	color: var(--color2) !important;
}

/* 首页动画 */
.animateLeft {
	opacity: 0;
	transform: translateX(-1000px);
	transition: all 0.8s ease 0.5s;
}

.animateRight {
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.8s ease 0.5s;
}

.animateUp {
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.8s ease 0.5s;
}

.animateDown {
	opacity: 0;
	transform: translateY(-100px);
	transition: all 0.8s ease 0.5s;
}

.animateZoom {
	opacity: 0;
	transform: scale(0);
	transition: all 0.8s ease 0.5s;
}

.full_item.swiper-slide-active .animateLeft,
.full_item.swiper-slide-active .animateRight,
.full_item.swiper-slide-active .animateUp,
.full_item.swiper-slide-active .animateDown {
	opacity: 1;
	transform: translateX(0px);
}

.full_item.swiper-slide-active .animateZoom {
	opacity: 1;
	transform: scale(1);
}

footer {
	background: var(--color4);
	position: relative;
}

footer .top {
	padding: 5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .top .ll {
	width: 30%;
}

footer .top h6 {
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 2rem;
	opacity: 0.7;
}

footer .top .ll p {
	color: #fff;
	font-size: 1.4rem;
	margin: 6px 0;
	opacity: 0.6;
}

footer .top .dds {
	flex-wrap: wrap;
	width: 45%;
}

footer .top .dds a {
	width: 33.3%;
	height: auto;
	display: block;
}

footer .top h2 {
	font-size: 1.4rem;
	color: #fff;
	margin: 1.3rem 0;
	opacity: 0.6;
	transition: all 0.5s ease;
}

footer .top h2:hover {
	opacity: 1;
}

footer .top .rr p {
	text-align: center;
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.6)
}

footer .top p img {
	display: block;
	border-radius: 5px;
	margin-bottom: 5px;
	opacity: 0.9;
	width: 10rem;
}

footer .top p a {
	color: #fff;

}

footer .copy {
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer .copy .tl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


footer .copy p {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.5);
}

footer .copy .tl a {
	color: rgba(255, 255, 255, 0.5);
	margin-left: 20px;
	transition: all 0.5s ease;
}

footer .copy .tl a:hover {
	color: #fff;
}

.ban {
	position: relative;
	width: 100%;
	height: 40vh;
	overflow: hidden;
	margin-top: var(--height);
	background: var(--color4);
}

.ban b {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.8;
}

.ban .txt {
	position: absolute;
	left: 50%;
	top: 52%;
	transform: translate(-50%, -50%);
	z-index: 6;
	text-align: center;
}

.ban h3 {
	color: #fff;
	font-size: 5rem;
	font-family: 600;
	text-shadow: 0 2px 10px rgba(17, 54, 147, 0.06);
}


.allbars {
	padding: 8rem 0;
	position: relative;
}

.title2 {
	margin-bottom: 3rem;
	position: relative;
}

.title2 h3 {
	font-size: 3.6rem;
	color: var(--color2);
}

.title2 h6 {
	font-size: 6rem;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0.05;
	text-transform: uppercase;
	font-weight: 600;
	z-index: -1;
}

.about .contain {
	justify-content: space-between;
}

.about .contain .ll {
	width: 46%;
	padding: 2% 0;
}

.about .contain .ll p {
	font-weight: 400;
	font-size: 1.7rem;
}

.about .contain .rr {
	width: 46%;
}

.about .contain .rr img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.history .contain {
	margin: 8rem auto 5rem;
	position: relative;
}

.history h3 {
	color: #fff;
}

.history .contain::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.4);
}

.history .swiper-container {
	cursor: grab;
}

.history .swiper-slide {
	text-align: center;
	position: relative;
}

.history .swiper-slide::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 6px;
	transform: translateX(-50%);
	background: #fff;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.history .swiper-slide::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
	background: #fff;
	width: 10px;
	height: 10px;
	padding: 5px;
	opacity: 0.2;
	border-radius: 50%;
}

.history .swiper-slide .tt {
	border: 2px solid rgba(255, 255, 255, 0.4);
	padding: 4rem 1rem;
	margin: 8rem 0 0;
	box-sizing: border-box;
	position: relative;
	border-top: none;
}

.history .swiper-slide .tt::before {
	content: '';
	width: calc(100% + 1px);
	height: 15px;
	background: url(../images/sj.png) center no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.history h6 {
	font-size: 2rem;
	color: #fff;
	margin-bottom: 1.5rem;
	transition: all 0.3s linear;
}

.history .swiper-slide:hover h6 {
	color: var(--color);
}

.history p {
	font-weight: 400;
	color: #fff;
	line-height: 1.8;
	opacity: 1;
}

.navTop {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navTop ul {
	display: flex;
	justify-content: center;
}

.navTop ul li {
	margin: 0 3vw;
	padding: 2rem 0;
	color: #666;
	transition: all 0.5s ease;
	font-size: 1.6rem;
}

.navTop ul li.active {
	color: var(--color2);
	font-weight: 500;
}

.navTop ul li:hover {
	color: var(--color);
}

.about2 .contain {
	align-items: center;
}

.about2 .contain .rr {
	width: 35%;
}

.about2 .video {
	position: relative;
	cursor: pointer;
	margin-top: 8rem;
	overflow: hidden;
}

.about2 .video video {
	width: 100%;
}

.about2 .video .vbtn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.about2 .video .vbtn img {
	width: 5rem;
}

.about2 .video .vbtn::after {
	content: '';
	width: 140%;
	height: 140%;
	border-radius: 50%;
	border: dashed 2px #fff;
	box-sizing: border-box;
	position: absolute;
	left: -20%;
	top: -20%;
	animation: turn 10s linear infinite;
}

@keyframes turn {
	0% {
		-webkit-transform: rotate(0deg);
	}

	25% {
		-webkit-transform: rotate(90deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
	}

	75% {
		-webkit-transform: rotate(270deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

.culture {
	background: #f4f5f6;
}

.culture .contain {
	background: #fff;
	padding: 3%;
	overflow: hidden;
	box-sizing: border-box;
	justify-content: space-between;
}

.culture .contain .ll {
	width: 40%;
	padding-top: 5%;
}

.culture .contain p {
	font-size: 1.8rem;
}

.culture .contain .rr {
	width: 50%;
}

.culture .contain .rr img {
	width: 100%;
}

.honor {
	background: #f4f5f6;
	padding-top: 0 !important;
}

.honor .swiper-container {
	width: 88%;
	margin: auto;
}

.honor .swiper-slide {
	background: #fff;
	text-align: center;
	padding: 2rem;
	box-sizing: border-box;
}

.honor img {
	width: 100%;
	transition: all 0.5s ease;
}

.honor .swiper-slide:hover img {
	transform: scale(1.06);
}

.honor h6 {
	margin-top: 2rem;
	font-weight: 300;
	font-size: 1.6rem;
	transition: all 0.5s ease;
}

.honor .swiper-slide:hover h6 {
	color: var(--color);
}

.swiper-button-black:after {
	font-size: 2.6rem !important;
	color: var(--color2);
	transition: all 0.5s ease;
}

.swiper-button-black:hover:after {
	color: var(--color);
}

.advantage::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
}

.advantage .title2 h3 {
	color: #fff;
}

.advantage .contain ul {
	display: flex;
	justify-content: space-between;
}

.advantage .contain ul li {
	background: rgba(255, 255, 255, 0.95);
	width: 48%;
	margin: 1rem;
	padding: 3rem 2.5rem;
	box-sizing: border-box;
	border-radius: 2rem;
}

.advantage .contain ul li b {
	width: 4.5rem;
	display: block;
	margin: auto;
}

.advantage .contain ul li b img {
	width: 100%;
}

.advantage .contain ul li h6 {
	font-size: 1.8rem;
	font-weight: 500;
	text-align: center;
	margin: 2rem 0;
	margin-bottom: 1.5rem;
}

.advantage .contain ul li p {
	font-size: 1.26rem;
	margin: 0.8rem 0 0;
	line-height: 1.6;

}

.advantage2 .contain {
	justify-content: space-between;
	align-items: center;

}

.advantage2 .contain:not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding-bottom: 6rem;
	margin: 6rem auto;

}

.advantage2 .contain:nth-of-type(2n+1) {
	flex-direction: row-reverse;
}

.advantage2 .contain .ll {
	width: 46%;
}

.advantage2 .contain .ll img {
	width: 100%;
}

.advantage2 .contain .rr {
	width: 46%;
}

.advantage2 .contain h6 {
	font-size: 3rem;
	margin-bottom: 3rem;
	color: var(--color2);
}

.advantage2 .contain:hover h6 {
	color: var(--color);
}

.advantage2 .contain p {
	font-size: 1.4rem;
	margin: 0.8rem 0;
}

.factory .contain p {
	position: relative;
	padding-left: 1.5rem;
}

.factory .contain p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 4px;
	height: 4px;
	background: var(--color3);
	border-radius: 50%;
}

.pro .bar1 ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5rem 2.8rem;
}

.pro .bar1 ul li {
	box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 0.8rem;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

.pro .bar1 ul li::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--color);
	transition: all 0.5s linear;
}

.pro .bar1 ul li:hover::before {
	width: 100%;
}

.pro .bar1 ul li b {
	display: block;
	overflow: hidden;
	height: 24vh;
}

.pro .bar1 ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.pro .bar1 ul li:hover img {
	transform: scale(1.08);
}

.pro .bar1 ul li .tt {
	padding: 3rem;
	box-sizing: border-box;
}

.pro .bar1 ul li h6 {
	font-size: 2rem;
	font-weight: 400;
	transition: all 0.6s ease;
}

.pro .bar1 ul li p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 1.4rem;
}

.pro .bar1 ul li:hover h6 {
	color: var(--color);
}

.product2 .contain {
	justify-content: space-between;
	align-items: center;
}

.product2 .contain:not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding-bottom: 6rem;
	margin: 6rem auto;

}

.product2 .contain:nth-of-type(2n+1) {
	flex-direction: row-reverse;
}

.product2 .contain .ll {
	width: 46%;
	overflow: hidden;
	height: 50vh;
}

.product2 .contain .ll img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product2 .contain .rr {
	width: 46%;
}

.product2 .contain h6 {
	font-size: 3rem;
	margin-bottom: 3rem;
	color: var(--color2);
}

.product2 .contain:hover h6 {
	color: var(--color);
}

.product2 .contain p {
	font-size: 1.5rem;
	margin: 0.8rem 0;
	position: relative;
	padding-left: 1.5rem;
	cursor: pointer;
	width: max-content;
	max-width: 100%;
}

.product2 .contain p strong {
	font-size: 400;
}

.product2 .contain p.active strong {
	color: var(--color3);
}

.product2 .contain p img {
	display: none;
}

.product2 .contain p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 4px;
	height: 4px;
	background: var(--color3);
	border-radius: 50%;
}

.solution .contain {
	justify-content: space-between;
	align-items: center;
}

.solution .contain:not(:last-of-type) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding-bottom: 6rem;
	margin: 6rem auto;

}

.solution .contain:nth-of-type(2n+1) {
	flex-direction: row-reverse;
}

.solution .contain .ll {
	width: 46%;
	overflow: hidden;
}

.solution .contain .ll img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.solution .contain .rr {
	width: 46%;
}

.solution .contain h6 {
	font-size: 3rem;
	margin-bottom: 3rem;
	color: var(--color2);
}

.solution .contain:hover h6 {
	color: var(--color);
}

.solution .contain p {
	font-size: 1.5rem;
	margin: 0.8rem 0;
	position: relative;
	padding-left: 1.5rem;
	cursor: pointer;
}

.solution .contain p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 4px;
	height: 4px;
	background: var(--color3);
	border-radius: 50%;
}

.news {
	background: #f4f5f6;
}

.news .bar1 ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.news .bar1 ul li {
	background: #fff;
}

.news .bar1 ul li b {
	display: block;
	overflow: hidden;
	width: 100%;
}

.news .bar1 ul li img {
	width: 100%;
	transition: all 0.5s ease;
}

.news .bar1 ul li:hover img {
	transform: scale(1.06);
}

.news .bar1 ul li .tt {
	padding: 3rem;
	box-sizing: border-box;
}

.news .bar1 ul li h6 {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 1rem;
	transition: all 0.5s ease;
}

.news .bar1 ul li:hover h6 {
	color: var(--color);
}

.news .bar1 ul li p {
	font-size: 1.3rem;
	margin: 0;
}


.pages {
	width: 100%;
}

.pages ul {
	width: 100%;
	display: flex;
	align-items: center;
	margin-top: 4rem;
	justify-content: center;
}

.pages ul li {
	font-size: 1.3rem;
	margin: 0 0.6rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.5s ease;
	cursor: pointer;
	background: #fff;
}

.pages ul li.active {
	background: var(--color2);
	font-weight: 400;
	color: #fff !important;
}

.pages ul li:hover {
	color: var(--color);
	text-decoration: underline;
}

.newsd {
	background: #f4f5f6;
}

.newsd .bar0 {
	padding: 5%;
	box-sizing: border-box;
	position: relative;
	background: #fff;
}

.newsd .bar0 .title {
	text-align: center;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
	padding-bottom: 3rem;
}

.newsd .bar0 h3 {
	margin: 0 0 1.5rem;
	font-weight: 400;
	font-size: 2.8rem;
}

.newsd .bar0 h5 {
	font-size: 1.3rem;
	text-align: center;
	color: #999;
	font-weight: 300;
}

.newsd .tt {
	margin: 5% auto;
}

.newsd .tt p {
	margin: 3rem 0;
}

.newsd .tt p img {
	width: 100%;
	margin-bottom: 2rem;
}

.newsd .bottom {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.newsd .bottom p {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	display: block;
	width: 100%;
	margin: 1.5rem 0;
	line-height: 1.4;
}

.newsd .bottom p a {
	font-size: 1.4rem;
	font-weight: 400;
	transition: all 0.5s linear;
}

.newsd .bottom p:hover a {
	color: var(--color);
}

.newsd .bottom p i {
	font-size: 1.4rem;
	color: #666666;
	margin: 0.1rem 0.5rem 0;
}

.newsd .bottom p:first-of-type i {
	transform: rotate(180deg);
	margin-top: 0;
}

.newsd .bottom .back {
	padding: 1.2rem 4.5rem;
	background: var(--color2);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 300;
	transition: all 0.5s ease;
}

.newsd .bottom .back:hover {
	background: var(--color);
}

.service {
	background: #f4f5f6;
}

.service .bar1 {
	justify-content: space-between;
	background: #fff;
	align-items: center;
}

.service .bar1 .ll {
	width: 55%;

	padding: 5%;
	box-sizing: border-box;
}

.service .bar1 .ll p {
	font-size: 1.5rem;
}

.service .bar1 .rr {
	width: 45%;
	height: 35vh;
	overflow: hidden;
}

.service .bar1 .rr img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service ul {
	display: flex;
	margin-top: 8rem;
	justify-content: space-between;
}

.service ul li {
	width: 16.6%;
	position: relative;
	text-align: center;
}

.service ul li b {
	display: block;
	background: #fff;
	margin: auto;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	padding: 2.5rem;
	transition: all 0.5s ease;
}

.service ul li:hover b {
	background: var(--color);
}

.service ul li b img {
	width: 100%;
}

.service ul li:hover b img {
	filter: invert(1) brightness(1000);
}

.service ul li p {
	color: var(--color4);
	font-weight: 400;
	transition: all 0.5s ease;
	margin: 2rem 0 0;
}

.service ul li:hover p {
	color: var(--color);
}

.service ul li i {
	position: absolute;
	right: -1.5rem;
	top: 4rem;
	color: #999;
}

.service2 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem 0;
}

.service2 ul li {
	width: 21%;
	border: 1px solid rgba(0, 0, 0, 0.06);
	padding: 2.5rem;
	box-sizing: border-box;
}

.service2 ul li:nth-of-type(4),
.service2 ul li:nth-of-type(8) {
	width: 33%;
}

.service2 ul li b {
	display: block;
	width: 4rem;
}

.service2 ul li b img {
	width: 100%;
}

.service2 ul li h6 {
	font-weight: 500;
	font-size: 1.8rem;
	transition: all 0.5s ease;
	margin: 2rem 0 1.5rem;
	color: var(--color2);
}

.service2 ul li:hover h6 {
	color: var(--color);
}

.service2 ul li p {
	margin: 0;
	font-size: 1.4rem;
}

.faq {
	background: #f4f5f6;
}

.faq ul li {
	margin-top: 1.6rem;
	padding: 0 3rem;
	background: #fff;
}

.faq ul li h6 {
	display: block;
	font-weight: 400;
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	cursor: pointer;
	transition: all 0.5s ease;
	position: relative;
	padding: 3rem 0;
}

.faq ul li b {
	color: var(--color2);
	font-size: 1.8rem;
	font-weight: 500;
}

.faq ul li h6 i {
	font-size: 2.4rem;
	transition: all 0.5s ease;
	position: absolute;
	right: 0;
	top: 0.2rem;
	font-weight: 500;
}

.faq ul li .tt3 {
	display: none;
}

.faq ul li .ts {
	padding: 1rem 0 3rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	display: flex;
}

.faq ul li .ts p {
	margin: 1rem 0 0;
}

.faq ul li .ts b {
	margin-top: 1.4rem;
	color: var(--color3);
}

.faq ul li h6:hover {
	color: var(--color);
}

.faq ul li.active h6 {
	color: var(--color);
}

.faq ul li.active h6 i {
	transform: rotate(180deg);
	color: var(--color);
}

.join {
	background: #f4f5f6;
}

.join .top {
	padding: 5rem 0;
}

.join .top p {
	text-align: center;
	color: #fff;
	margin: 0;
}

.join .top2 {
	display: flex;
	justify-content: space-between;
	background: var(--color2);
	padding-right: 4rem;
	box-sizing: border-box;
}

.join h6 {
	font-size: 1.6rem;
	padding: 2rem 3rem;
	color: #fff;
	width: 20%;
	text-align: center;
}

.join h6:first-of-type {
	width: 25%;
	text-align: left;
}

.join ul li {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
}

.join ul li .tt1 {
	display: flex;
	justify-content: space-between;
	font-size: 1.8rem;
	cursor: pointer;
	transition: all 0.5s ease;
	position: relative;
	padding-right: 4rem;
	box-sizing: border-box;
}

.join ul li .tt1 h6 {
	color: var(--color4);
	font-weight: 300;
	transition: all 0.5s ease;
}

.join ul li .tt1 i {
	font-size: 2rem;
	transition: all 0.5s ease;
	position: absolute;
	right: 2.5rem;
	top: 1.7rem;
	font-weight: 600;
}

.join ul li .tt3 {
	display: none;
	box-sizing: border-box;
}

.join ul li .ts {
	padding: 3rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.join ul li h3 {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.join ul li .ts p {
	font-size: 1.4rem;
	line-height: 2.2;
}

.join ul li:hover h6 {
	color: var(--color);
}

.join ul li.active {
	border-bottom: 2px solid var(--color3);
}

.join ul li.active h6 {
	color: var(--color);
}

.join ul li.active .tt1 i {
	transform: rotate(180deg);
	color: var(--color);
}

.contact {
	background: #f6f6f6;
}

.contact .bar1 {
	display: flex;
	justify-content: space-between;
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
}

.contact .bar1 .ll {
	width: 40%;
	padding: 3% 4%;
	box-sizing: border-box;
}

.contact .title h3 {
	font-size: 4rem;
}

.contact .ll p {
	text-align: left;
}

.contact .bar1 .ll ul li {
	margin: 2.5rem 0;
}


.contact .bar1 .ll ul li p {
	margin: 0rem 0;
	line-height: 1.6;
	color: var(--color4);
}

.contact .bar1 .ll ul li p a {
	font-size: 1.6rem;
}

.contact .bar1 .ll ul li p a:hover {
	text-decoration: underline;
}

.contact .bar1 .imgs {
	margin: 2.5rem 0 0;
	display: flex;

}

.contact .bar1 .imgs p {
	text-align: center;
	line-height: 1.4;
	font-size: 1.4rem;
}

.contact .bar1 .imgs img {
	width: 10rem;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
	border-radius: 0.6rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.contact .bar1 .message {
	width: 60%;
	padding: 3% 4%;
	background: #fff;
	border-radius: 1rem;
	box-sizing: border-box;
}

.contact .message .title {
	margin-bottom: 2rem;
}

.message .online .inps {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.message .online .inps p {
	margin: 0 0 2rem;
	width: 32%;
}

.message .online .inps p span {
	font-size: 1.2rem;
	display: block;
	color: #333;
	margin-bottom: 5px;
}

.message .online .inps p img {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.message .online .inputs {
	font-size: 1.4rem;
	background: none;
	display: block;
	line-height: 1.4;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 1rem;
	padding: 1rem;
	width: 100%;
	box-shadow: none;
	box-sizing: border-box;
}

.message ::placeholder {
	color: #666;
}

.message .online .inps .pp1 {
	width: 100%;
}

.message textarea {
	min-height: 15rem;
}

.message .submit {
	margin: 1rem 0 0;
	position: relative;
	background: var(--color2);
	width: 100%;
	padding: 1.3rem .0;
	box-sizing: border-box;
	display: flex;
	color: #fff;
	justify-content: center;
	cursor: pointer;
	transition: all 0.5s ease;
	font-size: 1.6rem;
	font-weight: 400;
}

.message .submit button {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: none !important;
	border: none;
	box-shadow: none;
	cursor: pointer;
}

.message .submit:hover {
	background: var(--color);
}

#map {
	height: 50vh;
	width: 100%;
}