@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: #133075;
	--color2: #333333;
	--height: 70px;
	--height2: 58px;
	overflow-x: hidden;
}


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

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

header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all 0.6s ease;
	background: rgba(0, 0, 0, 0.06);
}

header.active,
header.on {
	background: #fff;
}

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

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

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

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

header ul {
	display: flex;
}

header ul li {
	position: relative;

}

header ul li:hover>a {
	background: var(--color);
	color: #fff !important;

}

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

header ul li>a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--color);
	opacity: 0;
}

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;
	font-size: 1.4rem;
	color: #fff;
	font-weight: 500;
	display: none;
}

header .language {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 1.5rem;
	margin-left: 5rem;
	position: relative;
	z-index: 9999;
}

header .language img {
	width: 2.4rem;
	margin-right: 3px;
	filter: invert(1) brightness(1000);
}

header.active .language,
header.on .language {
	color: var(--color2);
}

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

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

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

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

.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;
	min-width: 100%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.s_menu dl {
	border-radius: 0px;
	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);
}

.banner {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.banner .swiper-slide {
	position: relative;
	height: 100vh;
}

.banner .swiper-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.banner .txt {
	position: absolute;
	left: 40%;
	bottom: 8%;
	transform: translate(-50%, 0%);
	z-index: 6;
	opacity: 0;
	text-align: right;
}

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

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

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


.banner .swiper-pagination {
	display: none;
}

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

.banner .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--color);
}

.more {
	border-radius: 5rem;
	background: var(--color);
	display: flex;
	justify-content: space-between;
	padding: 1.2rem 3rem;
	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;
	display: flex;
	flex-direction: column;
}

.title h3::after {
	content: '';
	margin-top: 2rem;
	width: 5rem;
	height: 3px;
	background: var(--color);
}

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

.titleCenter {
	text-align: center;
}

/* 首页 各屏 */
.index_bars {
	padding: 8rem 0;
}

.index_pro {
	background: #fbfbfb;
}

.index_pro .bg img {
	width: 100%;
}

.index_service .map img {
	width: 100%;
}

.index_service .map {
	position: relative;
}

.index_service .map ul li {
	position: absolute;
}

.index_service .map ul li span {
	display: block;
	width: 0.3rem;
	height: 0.3rem;
	background: var(--color);
	border-radius: 50%;
	position: relative;
}

.index_service .map ul li p {
	position: absolute;
	left: calc(100% + 1.3rem);
	top: 50%;
	font-size: 1.2rem;
	font-weight: 400;
	margin: 0;
	line-height: 1;
	color: var(--color);
	transform: translateY(-50%);
	width: max-content;
}

.index_service .map ul li span::before,
.index_service .map ul li span::after {
	content: "";
	display: block;
	width: 3rem;
	height: 3rem;
	margin: -1.5rem 0 0 -1.5rem;
	background: var(--color);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	border-radius: 50%;
	transform: scale(0.5);
	animation: ripple 4s ease-in-out infinite;
}

.index_service .map ul li span::after {
	animation-delay: 1.4s;
}

@keyframes ripple {
	0% {
		transform: scale(0);
		opacity: 1
	}

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

.index_service .map ul .li1 {
	right: 22.3%;
	top: 35%;
}

.index_service .map ul .li1 span {
	width: 1rem;
	height: 1rem;
}

.index_service .map ul .li1 p {
	font-weight: 500;
	font-size: 1.4rem;
}

.index_service .map ul .li2 {
	right: 24.8%;
	top: 47%;
}

.index_service .map ul .li3 {
	right: 25.5%;
	top: 49%;
}

.index_service .map ul .li3 p {
	left: -4.5rem;
}

.index_service .map ul .li4 {
	right: 26.3%;
	top: 55%;
}

.index_service .map ul .li5 {
	right: 26%;
	top: 45%;
}

.index_service .map ul .li5 p {
	left: -1rem;
	top: -1.5rem;
}

.index_service .map ul .li6 {
	left: 20%;
	top: 30%;
}

.index_service .map ul .li7 {
	left: 45.5%;
	top: 18%;
}

.index_service .map ul .li7 p {
	left: -1rem;
	top: -1.5rem;
}

.index_service .map ul .li8 {
	left: 50%;
	top: 23%;
}

.index_service .map ul .li9 {
	left: 49%;
	top: 20%;
}

.index_service .map ul .li10 {
	left: 48.3%;
	top: 22%;
}

.index_service .map ul .li10 p {
	left: -1.8rem;
	top: 2rem;
}

.index_service .map ul .li11 {
	left: 50.5%;
	top: 28.5%;
}

.index_service .map ul .li12 {
	left: 45.6%;
	top: 29.5%;
}

.index_service .map ul .li12 p {
	left: -4.5rem;
}

.index_service .map ul .li13 {
	left: 33%;
	top: 65%;
}

.index_service .map ul .li14 {
	left: 55.6%;
	top: 30.5%;
}

.index_service .map ul .li15 {
	right: 16.3%;
	top: 30.5%;
}

.index_rd ul {
	margin: 3rem auto;
}

.index_rd ul li:not(:first-of-type) {
	display: none;
}

.index_rd ul li img {
	width: 100%;
	margin: auto;
	height: 50vh;
	object-fit: cover;
}

.index_rd dl {
	justify-content: center;
}

.index_rd dl dd {
	font-size: 1.7rem;
	cursor: pointer;
	border-radius: 5px;
	margin: 0 1rem;
	box-shadow: 0 4px 16px rgba(204, 204, 204, 0.3);
	background: rgba(255, 255, 255, 0.4);
	padding: 1.2rem 2.5rem;
	transition: all 0.5s ease;
}

.index_rd dl dd.active {
	background: var(--color);
	color: #fff;
}

.index_culture {
	position: relative;
	padding: 0 !important;
}

.index_culture .title {
	position: absolute;
	left: 0;
	top: 8rem;
	width: 100%;
}

.index_culture .title h3 {
	color: #fff;

}

.index_culture ul {
	display: flex;
	height: 76vh;
	justify-content: space-between;
}

.index_culture ul li {
	width: 33.3%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding-top: 6%;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.index_culture ul li img {
	width: 5.4rem;
	filter: invert(1) brightness(1000);
	transition: all 0.5s ease;
}

.index_culture ul li:hover img {
	transform: rotateY(180deg) translateY(-5px);
}

.index_culture ul li h6 {
	color: #fff;
	margin-top: 3rem;
	font-size: 1.8rem;
}

.index_about .contain {
	min-height: 55vh;
	justify-content: space-between;
}

.index_about .ll {
	width: 40%;
}

.index_about .more {
	margin-top: 6rem;
	background: none;
	border: 1px solid var(--color2);
}

.index_about .more span {
	color: var(--color2);
}

.index_about .rr {
	width: 60%;
}

.index_about dl {
	display: flex;
	justify-content: space-between;
	margin-top: 5rem;
}

.index_about dl dd {
	font-size: 2rem;
	color: var(--color);
}

.index_about dl dd span {
	display: flex;
	align-items: flex-start;
	line-height: 1;
}

.index_about dl dd strong {
	font-size: 4.6rem;
	font-weight: 500;
	line-height: 1;
}

.index_about dl dd span:last-of-type {
	color: var(--color2);
	font-size: 1.6rem;
	margin-top: 2rem;
	font-weight: 300;
}

footer {
	position: relative;
}

footer .top {
	padding: 8rem 0;
	display: flex;
	justify-content: space-between;
}

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

footer .logo img {
	height: 6rem;
	margin-bottom: 3rem;
}

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

footer .top .ll p {
	display: flex;
}

footer .top .ll p a {
	display: block;
	opacity: 0.6;
	line-height: 1.8;
	font-size: 1.5rem;
}

.follow {
	display: flex;
	margin-top: 3rem;
}

.follow p {
	position: relative;
	margin: 0;
	margin-right: 1.2rem;
	overflow: hidden;
	cursor: pointer;
}

.follow p .img1 {
	width: 3.2rem;
}

.follow p .img2 {
	position: absolute;
	left: 50%;
	top: 5rem;
	width: 10rem;
	transform: translateX(-50%);
	opacity: 0;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.follow p:hover {
	overflow: inherit;
}

.follow p:hover .img2 {
	opacity: 1;
	top: 4rem;
	transition: all 0.5s ease;
}

footer .dds {
	width: 65%;
	justify-content: space-between;
}

footer .dds h2 {
	font-size: 1.6rem;
	margin: 0 0 1rem 0;
	padding-bottom: 2rem;
	position: relative;
	display: inline-block;
}

footer .dds h2::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--color);
	opacity: 0.2;
}

footer .dds h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30%;
	height: 1px;
	background: var(--color);
}

footer .dds dd {
	font-size: 1.4rem;
	margin: 1.8rem 0;
	opacity: 0.5;
	transition: all 0.5s ease;
}

footer .dds dd:hover {
	opacity: 1;
}

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

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

footer .copy {
	padding: 1rem 0;
	background: #525252;
}

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


footer .copy p {
	margin: 0;
	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;
}

.allLeft {
	position: fixed;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999999;
	display: none;
}

.allLeft::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 80%;
	width: 2px;
	transition: 0.4s linear;
	background: rgb(200, 211, 227);
}

.allLeft .lines {
	width: 2px;
	height: 100%;
	background: var(--color);
	position: absolute;
	left: 50%;
	margin-left: -1px;
	top: 0;
	z-index: 2;
	transition: 0.2s linear;
	transform-origin: top;
	transform: scaleY(0);
	will-change: transform;
}

.allLeft ul li {
	cursor: pointer;
}

.allLeft ul li span {
	font-weight: 400;
	text-align: left;
	background: #fff;
	display: flex;
	border-radius: 50%;
	align-items: center;
	position: relative;
	cursor: pointer;
	margin: 0 0 4rem;
	transition: 0.2s linear;
	width: 11px;
	height: 11px;
	z-index: 3;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
}

.allLeft ul a:last-of-type li span {
	margin: 0;
}

.allLeft ul li.active span,
.allLeft ul li.on span {
	background: var(--color);
}

.allLeft ul li.active span::after {
	content: "";
	width: 140%;
	height: 140%;
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(31, 85, 158);
	border-image: initial;
	border-radius: 100%;
	transition: 0.4s linear;
	animation: 2s ease 0s infinite normal none running myfirst;
}

@keyframes myfirst {
	0% {
		transform: translateX(-50%) translateY(-50%) scale(0.5);
		visibility: hidden;
	}

	50% {
		transform: translateX(-50%) translateY(-50%) scale(1);
		opacity: 1;
		visibility: visible;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) scale(1.2);
		visibility: hidden;
		opacity: 0;
	}

}

.all_back {
	position: fixed;
	right: 1%;
	bottom: 4rem;
	z-index: 99999999;
	display: none;
}

.all_back .aa {
	background: #fff;
	border-radius: 50%;
	margin: 1rem 0;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: 1px solid rgba(0, 0, 0, .02);
	transition: all 0.4s ease;
	box-shadow: 0 3rem 5rem 0 rgba(23, 33, 30, 0.05);
}

.all_back img {
	width: 50%;
}

.all_back .aa:hover {
	background: var(--color);
	transform: scale(1.06);
}

.all_back .aa:hover img {
	filter: invert(1) brightness(1000);
}

.ban {
	position: relative;
	width: 100%;
	height: 50vh;
	overflow: hidden;
}

.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-weight: 500;
	text-shadow: 0 2px 10px rgba(17, 54, 147, 0.06);
}

.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: 30%;
	margin: 1rem 0;
}

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

.about ul {
	justify-content: space-between;
	margin: 6rem auto;
}

.about ul li {
	width: 31.6%;
	background: #fff;
	padding: 4rem 4rem;
	box-sizing: border-box;
	box-shadow: 0px 6px 10px rgba(180, 178, 183, .2);
}

.about ul li h6 {
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--color);
	font-style: italic;
}

.about ul li p {
	font-weight: 400;
	margin: 1rem 0 0;
}

.about dl {
	display: flex;
	justify-content: space-between;
}

.about dl dd {
	font-size: 2rem;
	display: flex;
	align-items: center;
}

.about dl dd img {
	width: 4rem;
	padding: 1rem;
	background: rgba(31, 84, 158, .1);
	border-radius: 50%;
}

.about dl dd p {
	margin: 0 0 0 2.5rem;
}

.about dl dd span {
	display: block;
	color: var(--color);
	line-height: 1;
	display: flex;
	align-items: flex-start;
}

.about dl dd strong {
	font-size: 4.6rem;
	font-weight: 500;
	line-height: 1;
}

.about dl dd span:last-of-type {
	color: var(--color2);
	font-size: 1.6rem;
	margin-top: 1.5rem;
	font-weight: 300;
}

.history .contain {
	position: relative;
	justify-content: space-between;
	align-items: flex-end;
}

.history .contain::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 4.6vw;
	background: linear-gradient(to bottom, #c9c9c9, #878787);
	z-index: 2;
}

.history .contain::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 2.3vw;
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #fff;
	z-index: 3;
}

.history .ll img {
	position: relative;
	z-index: 4;
	margin: 0 0 1.3rem 2rem;
}

.history .swiper-container {
	cursor: grab;
	width: 60%;
	padding: 0 1rem 4.6vw;
	position: relative;
	z-index: 4;
}

.history .swiper-wrapper {
	align-items: flex-end;
}

.history .swiper-slide {
	position: relative;
	padding: 0 0 5rem 3rem;
	border-left: 1px solid #d2d2d2;
	box-sizing: border-box;
}

.history .swiper-slide::before {
	content: '';
	position: absolute;
	left: -4px;
	top: 0;
	background: #d2d2d2;
	width: 8px;
	height: 8px;
	border-radius: 50%;
}

.history .swiper-slide::after {
	content: '';
	width: 3rem;
	height: 3rem;
	background: url(../images/add.png) center no-repeat;
	background-size: 100% auto;
	position: absolute;
	bottom: -2.3vw;
	left: 0%;
	z-index: 3;
	filter: invert(1) brightness(1000);
	opacity: 0.8;
}

.history .swiper-slide-active {
	border-left-color: var(--color);
}

.history .swiper-slide-active::before {
	background: var(--color);
}

.history .swiper-slide-active::after {
	filter: none;
	opacity: 1;
}

.history .swiper-slide .tt {
	box-sizing: border-box;
	position: relative;
}


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

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

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

.history .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 5rem;
}

.btns2 {
	display: flex;
}

.btns2 .bl {
	width: 3rem;
	height: 3rem;
	padding: 0.8rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 3px 0px 20px rgba(0, 0, 0, .1);
	background: #fff;
	position: relative;
	z-index: 2;
	margin-right: 2.5rem;
	transition: all 0.5s linear;
}

.btns2 .bl.swiper-button-disabled {
	background: none !important;
}

.btns2 .bl i {
	font-size: 1.8rem;
	font-weight: 600;
	transition: all 0.5s linear;
	color: var(--color);
}

.btns2 .bl.swiper-button-disabled i {
	color: rgba(0, 0, 0, .1) !important;
}

.btns2 .llr i {
	display: block;
	transform: rotate(180deg);
}

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

.btns2 .bl:hover i {
	color: #fff;
}


.history .swiper-scrollbar {
	width: 85%;
	height: 1px;
	opacity: 1 !important;
	background: rgba(0, 0, 0, .1);
}

.history .swiper-scrollbar-drag {
	height: 2px;
	margin-top: -1px;
	background: var(--color) !important;
}


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

.pro .bar1 ul li {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.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;
}

.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 0;
	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);
}

.prod {
	background: rgba(246, 246, 246);
}

.prod ul {
	margin: 3rem auto;
}

.prod ul li:not(:first-of-type) {
	display: none;
}

.prod ul li img {
	width: 60%;
	margin: 5rem auto;
	object-fit: cover;
}

.prod ul h6 {
	font-size: 3rem;
	text-align: center;
	margin: 5rem 0;
}

.prod ul .tt {
	justify-content: space-between;
}

.prod ul .tt p {
	padding: 2rem 0;
}

.prod ul .tt p:not(:last-child) {
	border-right: 1px solid rgba(0, 0, 0, .1);
	padding-right: 11%;
	box-sizing: border-box;
}

.prod ul .tt p strong {
	display: block;
	color: var(--color2);
	font-weight: 500;
}

.prod dl {
	justify-content: center;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.prod dl dd {
	cursor: pointer;
	padding: 2rem 3rem;
	font-size: 1.6rem;
	transition: all 0.5s ease;
	position: relative;
	color: #999;
	font-weight: 300;
}

.prod dl dd::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 40%;
	height: 2px;
	background: var(--color);
	opacity: 0;
	transition: all 0.5s ease;
}

.prod dl dd.active {
	font-weight: 400;
	color: var(--color);
}

.prod dl dd.active::before {
	opacity: 1;
}

.rd .swiper-container {
	width: 100%;
}

.rd .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: space-between;
}


.rd .swiper-slide .ll {
	width: 60%;
	overflow: hidden;
}

.rd .swiper-slide .ll img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rd .swiper-slide .tt {
	width: 40%;
	padding: 0 5%;
	box-sizing: border-box;
}

.rd .swiper-slide h6 {
	font-size: 3rem;
	margin-bottom: 3rem;
	color: var(--color2);
}

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

.rd .swiper-slide p {
	font-size: 1.5rem;
	margin: 0.8rem 0;
	position: relative;
	cursor: pointer;
}

.rd .btns2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	justify-content: space-between;
}

.rd .btns2 .bl {
	margin: 0;
}

.news0 {
	position: relative;
	background: #f2f2f2;
}

.news0 .swiper-container {
	position: relative;
	z-index: 3;
	overflow: hidden;
}

.news0 a {
	display: flex;
	justify-content: space-between;
	background: #fff;

}

.news0 .aa {
	overflow: hidden;
	width: 60%;
	box-shadow: 0px 10px 21.84px 2.16px rgba(0, 0, 0, 0.06);
	height: 45vh;
}

.news0 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease;
}

.news0 .swiper-slide:hover .aa img {
	transform: scale(1.08);
}

.news0 .bb {
	width: 40%;
	padding: 4rem 5rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.news h6 {
	font-size: 2rem;
	min-height: initial;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	margin-bottom: 2rem;
	font-weight: 500;
	line-height: 1.6;
	transition: all 0.5s ease;
}

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

.news h5 {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	font-weight: 500;
	opacity: 0.3;
	line-height: 1;
}

.news .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news h4 {
	font-weight: 300;
	font-size: 1.6rem;
	opacity: 0.5;
}

.news .bottom .more {
	margin: 0;
	background: none;
	border: 1px solid var(--color);
}

.news .bottom .more span {
	color: var(--color);
}

.news0 .swiper-pagination {
	position: static;
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.news0 .swiper-pagination span {
	transition: all 0.5s ease;
	background: var(--color2);
	border-radius: 10px;
}

.news0 .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--color) !important;
	border-color: var(--color);
	width: 4rem;
}

.navTop ul {
	display: flex;
	padding: 4rem 0;
}

.navTop ul li {
	padding: 1rem 3.5rem;
	margin-right: 3rem;
	border-radius: 5rem;
	color: #666;
	transition: all 0.5s ease;
	font-size: 1.5rem;
	background: rgba(0, 0, 0, .06);
}

.navTop ul li.active {
	color: #fff;
	background: var(--color);
}

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

.news2 {
	padding-top: 0 !important;
}

.news .bar1 ul li a {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding: 5rem 0;
	display: flex;
	justify-content: space-between;
}

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

.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 .t1 {
	width: 60%;
	padding: 3rem 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

.news .bar1 ul li h6 {
	font-weight: 400;
	margin: -1rem 0 0;
}

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


.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;
	border: 1px solid rgba(0, 0, 0, .06);
}

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

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

.newsd {
	margin-top: var(--height);
}

.newsd .bar0 {
	justify-content: space-between;
}

.newsd .bar0 .ll {
	width: 66%;
}

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

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

.newsd .bar0 .t0 p {
	opacity: 0.6;
	font-size: 1.4rem;
}

.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);
}

.newsd .bar0 .rr {
	width: 28%;
	margin-top: 10rem;
}

.newsd .bar0 .rr h6 {
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 1.6rem;
	padding: 2rem 0;
	border-top: 1px solid rgba(0, 0, 0, .1);
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.newsd .bar0 .rr h6 i {
	font-size: 1.8rem;
	color: var(--color);
	margin-right: 1.5rem;
}

.newsd .bar0 ul li {
	padding: 2rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.newsd .bar0 .rr h5 {
	font-weight: 300;
	font-size: 1.2rem;
	opacity: 0.4;
}

.newsd .bar0 .rr h3 {
	font-weight: 400;
	margin: 1rem 0;
	line-height: 1.5;
	font-size: 1.5rem;
	opacity: 0.6;
	transition: all 0.5s ease;
}

.newsd .bar0 .rr ul li:hover h3 {
	color: var(--color);
	opacity: 1;
}

.newsd .bar0 .rr img {
	width: 100%;
}

.contact .bar1 {
	display: flex;
	justify-content: space-between;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 1rem;
	overflow: hidden;
	align-items: center;
}

.contact .bar1 .ll {
	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);
	display: flex;

}

.contact .ll p strong {
	font-weight: 500;
}

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

.contact .bar1 .ll ul li p a {
	font-size: 1.6rem;
	font-weight: 300;
	margin-right: 3rem;
	transition: all 0.5s ease;
}

.contact .bar1 .ll ul li p a:last-of-type {
	display: block;
}

.contact .bar1 .ll ul li p a:hover {
	color: var(--color);
}

.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 .bar1 .rr {
	width: 66%;
}

.contact .bar1 .rr img {
	width: 100%;
}

.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);
}

html[lang="en"] * {
	letter-spacing: 0 !important;
}