@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(--color2);
	font-family: 'HarmonyOSSansSC';
	font-weight: 400;
	font-size: 1.6rem;
}

p {
	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: #212a63;
	--color2: #333333;
	--color3: #fdd100;
	--height: 70px;
	overflow-x: hidden;
}


.w_all {
	width: 80%;
	margin: 0 auto;
}


header {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	height: var(--height);
	z-index: 999999999;
	transition: all 0.6s ease;
	background: rgba(255, 255, 255, 0.9);
}

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


header .logo img {
	height: 4.8rem;
	position: relative;
	z-index: 9999;

}

header .rr {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

header .top {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
}

header .ll {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	margin-left: 2rem;
	color: #999;
	position: relative;
}

header .ll img {
	width: 1.6rem;
	margin-top: -1px;
	margin-right: 3px;
}

header .search {
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 10px;
	padding: 0.3rem 0.8rem;
}

header .search input {
	font-size: 1.2rem;
	background: none;
}

header .search i {
	color: #ccc;
	font-weight: 600;
	font-size: 1.5rem;
}

header .ll span {
	margin-left: 0.6rem;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid var(--color2);
	opacity: 0.5;
	transform: scale(0.9);
}

header .ll .tbox {
	position: absolute;
	right: 0;
	top: 100%;
	padding: 6px 10px;
	background: #f4f4f4;
	width: max-content;
	z-index: 99;
	display: none;
}

header .ll .tbox p {
	font-size: 1.3rem;
	margin: 2px 0;
	transition: all 0.5s ease;
}

header .ll .tbox p:hover {
	color: var(--color);
}

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

header ul {
	display: flex;
}

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

header ul li h2 {
	font-size: 1.5rem;
	transition: all 0.6s;
	line-height: 2.7;
	font-weight: 500;
}

header ul li:hover h2 {
	color: var(--color);
}

header ul li::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 20%;
	width: 5px;
	transform: translateX(-50%);
	height: 5px;
	border-radius: 50%;
	background: var(--color3);
	opacity: 0;
	transition: all 0.6s;
}

header ul li:hover:after {
	opacity: 1;
	bottom: 10%;
}

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

.navBtn span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--color);
	margin: 4px auto;
}

.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: -56%;
	-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%;
	background: #fff;
	padding: 0 2rem;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}

.s_menu dl {
	border-left: 1px solid rgba(0, 0, 0, .03);
	padding: 10px 0;
}

.s_menu dd {
	padding: 9px 10px;
	display: block;
	position: relative;
	cursor: pointer;
}

.s_menu dd::before {
	content: '';
	position: absolute;
	left: -1px;
	top: 0;
	width: 1px;
	height: 0%;

	background: var(--color);
}

.s_menu dd:hover:before {
	height: 100%;
	transition: all 0.5s ease;
}

.s_menu dd a {
	font-size: 1.3rem;
	font-weight: 300;
	color: var(--color2);
	transition: all 0.3s ease;
}

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

.banner {
	width: 100%;
	height: 50vh;
	margin-top: var(--height);
	position: relative;
	overflow: hidden;
}

.banner .swiper-container,
.banner .swiper-slide {
	position: relative;
	height: 100%;
}

.banner .btnss {
	border-width: 2px;
}

.btnss {
	margin: 0 2rem;
	width: 3rem !important;
	height: 3rem !important;
	padding: 0.1rem;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.5);
	position: relative;
	z-index: 2;
	transition: all 0.5s linear;
	cursor: pointer;
}

.btnss::after {
	transform: scale(0.8);
	font-size: 1.6rem !important;
	font-weight: 800 !important;
	transition: all 0.5s linear;
}

.swiper-button-black {
	margin: 0;
	border-color: rgba(0, 0, 0, 0.5);
}

.btnss:hover {
	border-color: var(--color3);
}

.btnss:hover::after {
	color: var(--color3);
}

.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: 2rem;
}

.title h3 {
	font-size: 2.4rem;
}

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

.titleCenter {
	text-align: center;
}

.index_bars {
	padding: 5rem 0;
}

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

.index_bar1 .title {
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 1rem;
}

.index_bar1 .contain .ll {
	width: 66%;
}

.index_bar1 .box {
	justify-content: space-between;
}

.index_bar1 .box .aa {
	width: 50%;
}

.index_bar1 .box .swiper-slide .img {
	position: relative;
}

.index_bar1 .box img {
	width: 100%;
}

.index_bar1 .box .swiper-slide h6 {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	padding: 1.5rem 2rem;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.5rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.index_bar1 .box .aa .swiper-pagination {
	position: static;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin: 1rem 0;
}

.index_bar1 .box .aa .swiper-pagination-bullet {
	width: 24%;
	opacity: 1 !important;
	height: auto;
	transition: all 0.5s ease;
	border-radius: 0;
	border: 1px solid #fff;
}

.index_bar1 .box .aa .swiper-pagination-bullet:not(:last-of-type) {
	margin-right: 0.5rem;
}

.index_bar1 .box .aa .swiper-pagination-bullet-active {
	opacity: 1 !important;
	border-color: var(--color2) !important;
}

.index_bar1 .box .bb {
	width: 48%;
}

.index_bar1 .box dl dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 0.1rem solid #e4e4e4;
	padding-bottom: 1rem;
	font-weight: 500;
}

.index_bar1 .box dl dt span {
	font-size: 1.2rem;
	font-weight: 400;
	transition: all 0.5s ease;
}

.index_bar1 .box dl dt span:hover {
	color: var(--color);
}

.index_bar1 .box dl:not(:first-of-type) {
	margin-top: 2rem;
}

.index_bar1 .box dl dd {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-bottom: 0.1rem dotted #e4e4e4;
	padding: 0.3rem 0;
	background: url(../images/bg.png) no-repeat left 45%;
	padding-left: 1.2rem;
	display: flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
}

.index_bar1 .box dl dd p {
	overflow: hidden;
	margin: 0;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 1.4rem;
	font-weight: 400;
}

.index_bar1 .box dl dd span {
	font-size: 1.2rem;
	font-weight: 300;
	color: #999;
	margin-left: 2rem;
}

.index_bar1 .contain .rr {
	width: 32.3%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.index_bar1 .contain .tt {
	border: 1px solid #e4e4e4;
	padding: 1rem;
	box-sizing: border-box;
	margin-bottom: 3rem;
}

.index_bar1 .contain .tt1 p {
	font-size: 1.4rem;
	margin: 0;
	font-weight: 400;
}

.index_bar1 .contain .tt2 video {
	width: 100%;
}

.index_bar2 {
	background: #f4f4f4;
}

.index_bar2 .swiper-slide {
	background: #fff;
	height: 30vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.index_bar2 img {
	height: 90%;
	object-fit: cover;
}

footer {
	background: #e3e3e3;
}

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

footer .dds h2 {
	font-size: 1.6rem;
	margin: 0 0 2rem 0;
	position: relative;
	font-weight: 500;
}

footer .dds dd a {
	display: block;
	font-size: 1.3rem;
	margin: 1.6rem 0 0 0;
	opacity: 0.6;
	transition: all 0.5s ease;
}

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

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

footer .dls0 {
	display: flex;
}

footer .dds p {
	text-align: center;
	font-size: 1.1rem;
	margin: 0 0 0 2rem;
}

footer .dds p img {
	width: 9rem;
	display: block;
	margin: 0 auto 1rem;
}

footer .dls {
	max-width: 32.3%;
}

footer .dls dd {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color2);
}

footer .dls dd a {
	margin: 0 0 1.6rem;
	display: inline-block;
}



footer .copy {
	padding: 1rem 0;
	background: rgb(96, 95, 95);
}

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


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

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

footer .copy .tl a:hover {
	color: var(--color3);
}


.bans {
	position: relative;
	height: 40vh;
	margin: 0;
	background: #000;
}

.bans b {
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.bans .txt {
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-50%, -50%);
	z-index: 6;
}

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

.allNav {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 6;
	display: flex;
	align-items: center;
	color: #fff;
	padding: 3rem 0;
}

.allNav img {
	width: 2.2rem;
	filter: invert(1) brightness(1000);
	margin-top: -2px;
}

.allNav i {
	font-size: 1.4rem;
	color: #fff;
	margin: 0 1rem;
}

.allNav span {
	font-size: 1.6rem;
	color: #fff;
	opacity: 0.6;
}

.allNav span.on {
	opacity: 1;
}

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

.allNav2 ul {
	display: flex;
	justify-content: center;

}

.allNav2 ul li {
	padding: 2rem 0;
	margin: 0 2vw;
	position: relative;
	transition: all 0.5s ease;
}

.allNav2 ul li::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background: var(--color3);
	opacity: 0;
	transition: all 0.5s ease;
}

.allNav2 ul li:hover,
.allNav2 ul li.active {
	color: var(--color);
	font-weight: 500;
}

.allNav2 ul li:hover:after,
.allNav2 ul li.active:after {
	width: 100%;
	opacity: 1;
}

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

.title2 h3 {
	font-size: 3rem;
	color: var(--color);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.title2 h3::after {
	content: '';
	width: 5rem;
	margin-top: 1.5rem;
	height: 1px;
	background: var(--color);
}

.about .title2 {
	text-align: center;
}

.about p img {
	width: 100%;
	max-height: 66vh;
	object-fit: cover;
}

.history ul {
	display: flex;
	justify-content: space-between;

}

.history ul li {
	width: 25%;
	padding: 3.5rem;
	box-sizing: border-box;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.5s ease;
	cursor: pointer;
}

.history ul li:hover {
	background: rgba(255, 255, 255, 0.2);
}

.history ul li:first-of-type {
	border: none;
}

.history ul li h6 {
	font-size: 5rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	margin-bottom: 1rem;
}

.history ul li p {
	font-weight: 400;
	color: #fff;
	margin: 0;
	line-height: 1.6;
}

.history ul li p strong {
	color: #fff;
	font-size: 2rem;
	display: block;
}

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

.history .top img {
	margin: auto;
	position: relative;
	z-index: 4;
}

.history dl {
	position: relative;
}

.history dl::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 1px;
	height: 100%;
	background: var(--color2);
	z-index: 2;
}

.history dl dd {
	padding: 2rem 0;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.history dl dd::before {
	content: '';
	width: 60%;
	height: 1px;
	background: var(--color2);
	position: absolute;
	bottom: 4rem;
	right: 0%;
	border-radius: 50%;
	z-index: 3;
}

.history dl dd::after {
	content: '';
	width: 0.6rem;
	height: 0.6rem;
	background: var(--color2);
	position: absolute;
	bottom: 3.8rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: 3;
}


.history .ll {
	width: 45%;
}

.history .swiper-container {
	width: 66%;
	margin: auto;
}

.history .swiper-slide {
	width: 100%;
	height: 25rem;
	overflow: hidden;
}

.history .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

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

.history .tt {
	width: 48%;
	padding: 2rem 0;
	box-sizing: border-box;
	position: relative;
	text-align: right;
}

.history .tt::after {
	content: '';
	width: 5rem;
	height: 2px;
	background: var(--color3);
	position: absolute;
	bottom: 2rem;
	right: 0%;
	border-radius: 50%;
	z-index: 3;
}

.history h5 {
	font-weight: 500;
	font-size: 2.4rem;
	margin-bottom: 1.5rem;
	transition: all 0.3s linear;
}

.history .tt p {
	font-size: 1.4rem;
	margin: 0 0 0;
	text-align: right;
}

.history dl dd:hover h5 {
	color: var(--color);
}

.history dl dd:nth-of-type(2n) {
	flex-direction: row-reverse;
}

.history dl dd:nth-of-type(2n) .tt,
.history dl dd:nth-of-type(2n) .tt p {
	text-align: left;
}

.history dl dd:nth-of-type(2n)::before {
	right: inherit;
	left: 0;
}

.history dl dd:nth-of-type(2n) .tt::after {
	right: inherit;
	left: 0;
}

.honor ul {
	justify-content: center;
	margin-bottom: 3rem;
}

.honor ul li {
	font-size: 1.6rem;
	margin: 0 2rem;
	font-weight: 300;
	transition: all 0.5s ease;
	cursor: pointer;
}

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

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

.honor dl dd {
	display: none;
}

.honor .bbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.honor .bbs .bb b {
	display: block;
	background: #f4f4f4;
	border-radius: 1rem;
	padding: 1rem;
	box-sizing: border-box;
	overflow: hidden;
}

.honor .bbs p {
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.4;
	width: 100%;
	margin: 1.5rem 0 0;
}

.honor img {
	border-radius: 1rem;
	width: 100%;
	transition: all 0.5s ease;
}

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

.culture {
	background: #f4f4f4;
}

.culture .swiper-slide {
	position: relative;
	overflow: hidden;
	height: 30vh;
}

.culture .swiper-slide .tt {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	padding: 1rem;
	box-sizing: border-box;
}

.culture .swiper-slide h6 {
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
}

.culture .swiper-slide p {
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
}

.culture b {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
}

.culture img {
	opacity: 0.8;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.culture .swiper-slide:hover img {
	transform: scale(1.04);
}

.culture .bottom {
	position: relative;
	width: 11rem;
	margin: 5rem auto 0;
}

.zhuzi img {
	width: 100%;
}

.partner {
	background: #f4f4f4;
}

.partner .swiper-slide {
	position: relative;
	overflow: hidden;
	height: 16rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner img {
	width: 70%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.partner .swiper-slide:hover img {
	transform: scale(1.04);
}

.pro .bar1 ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: relative;
}

.pro .bar1 ul::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.pro .bar1 ul a {
	position: relative;
	overflow: hidden;
	border-right: 1px solid rgba(255, 255, 255, .2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 12vh 0%;
	width: 20%;
	z-index: 2;
}

.pro .bar1 ul li span {
	display: block;
	margin-bottom: 5rem;
	opacity: 1;
	transition: .1s;
	transform: translateZ(0);
}

.pro .bar1 ul li span:before {
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) scale(.75);
	transition: .4s;
	border: 1px solid hsla(0, 0%, 100%, .3);
	border-radius: 100%;
	height: 3rem;
	width: 3rem;
}

.pro .bar1 ul li span:after {
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) scale(.75);
	transition: .4s;
	border: 1px solid hsla(0, 0%, 100%, .1);
	border-radius: 100%;
	height: 5rem;
	width: 5rem;
}

.pro .bar1 ul li span i {
	background: hsla(0, 0%, 100%, .8);
	border: 1px solid #fff;
	border-radius: 100%;
	height: 1.5rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) scale(.5);
	transition: .4s;
	width: 1.5rem;
}

.pro .bar1 ul li h2 {
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
}

.pro .bar1 ul a:hover span:before {
	animation: scalepulse 1.3s linear .3s infinite both;
	transform: translate3d(-50%, -50%, 0) scale(1);
}

.pro .bar1 ul a:hover span:after {
	animation: scalepulse 1.3s linear .15s infinite both;
	transform: translate3d(-50%, -50%, 0) scale(1);
}

.pro .bar1 ul a:hover span i {
	background: #fff;
	animation: scalepulse 1.3s linear 0s infinite both;
	transform: translate3d(-50%, -50%, 0) scale(1);
}

.prod .swiper-slide img {
	width: auto;
	height: 60vh;
	object-fit: cover;
	margin: auto;
}

.prod .swiper-pagination {
	position: static;
	margin: 2rem 0;
}

.prod .swiper-pagination span {
	background: var(--color);
	width: 6px !important;
	height: 6px !important;
}

.prod2 {
	background: #f4f4f4;
}

.prod2 .tt {
	margin-top: 2rem;
}

.prod2 p {
	position: relative;
	padding-left: 15px;
	margin: 0.5rem 0 0;
}

.prod2 p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 5px;
	height: 5px;
	background: var(--color3);
	border-radius: 50%;
}
.prod3 .tables{
    overflow: auto;
}
.prod3 table {
	width: 100%;
}

.prod3 table tr td {
	padding: 1.5rem;
	background: #f6f6f6;
	box-sizing: border-box;
	text-align: center;
	width: 25%;
}

.prod3 table tr:first-of-type td {
	background: var(--color);
	color: #fff;

}

.prod4 {
	background: #f6f6f6;
}

.prod4 .swiper-slide img {
	width: 100%;
	height: 28rem;
	object-fit: cover;
	overflow: hidden;
}

.prod4 .btnss {
	margin: 0;
}

.prod5 .swiper-slide {
	background: #f6f6f6;
	padding: 2.5rem;
	box-sizing: border-box;
	transition: all 0.5s ease;
}

.prod5 .swiper-slide h6 {
	font-size: 1.8rem;
	margin-bottom: 3rem;
	transition: all 0.5s ease;
}

.prod5 .swiper-slide img {
	margin-top: 2rem;
	width: 2.2rem;
	border: 1px solid #ccc;
	border-radius: 50%;
	padding: 0.5rem;
	opacity: 0.7;
}

.prod5 .btnss {
	margin: 0;
}

.prod5 .swiper-slide:hover {
	background: var(--color);
}

.prod5 .swiper-slide:hover h6 {
	color: #fff;
}

.prod5 .swiper-slide:hover img {
	filter: invert(1) brightness(1000);
}

.service {
	background: #f6f6f6;
}

.service .title2 p {
	text-align: center;
	margin: 2rem 0;
}

.service .box dl {
	justify-content: space-between;
	margin: 4rem auto 0;
}

.service .box dl dd {
	width: 22%;
	text-align: center;
}

.service .box dl dd img {
	width: 25%;
	margin: auto;
}

.service .box dl dd h6 {
	font-size: 2rem;
	font-weight: 500;
	margin: 2rem 0 0;
}

.service .box dl dd p {
	font-size: 1.3rem;
	line-height: 1.8;
}

.service .box2 {
	background: #eee;
	padding: 4% 0 2%;
}

.service .box2 h1 {
	margin-bottom: 2%;
}

.service .box2 p {
	margin: 8px 0;
}

.service2 {
	padding: 6% 0;
	text-align: center;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.service2:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 200px;
	height: 100px;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	background: url(../images/bgs2.png) no-repeat center bottom;
	background-size: 60%;
}

.service2 h3 {
	color: #fff;
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 2rem;
	letter-spacing: 1px;
}

.service2 .title p {
	color: #fff;
}

.service3 .bars {
	transition: all 0.5s ease;
	padding: 3rem 0;
	cursor: default;
}

.service3 .tt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.8s ease;
}

.service3 h6 {
	color: rgba(0, 0, 0, .1);
	font-size: 7rem;
	font-weight: 600;
	font-style: italic;
	padding-right: 3%;
	box-sizing: border-box;
	border-right: 1px solid rgba(0, 0, 0, .1);
	transition: all 0.5s ease;
	min-height: 11rem;
	display: flex;
	align-items: center;
	justify-content: center
}

.service3 p {
	width: 87%;
}

.service3 p strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 5px;
}

.service3 .bars:nth-of-type(2n) {
	background: #f8f8f8;
}

.service3 .bars:hover {
	background: #fdd100;
}

.service3 .bars:hover .tt {
	transform: translateX(3%);
}

.service3 .bars:hover h6 {
	opacity: 1;
	color: #212a63;
	border-color: rgba(33, 42, 99, 0.1);
}

.service3 .bars:hover:first-of-type {
	background: #fff;
}

.news {
	background: #f8f8f8;
}

.news .bar1 ul li a {
	padding: 3rem;
	margin-bottom: 3rem;
	display: flex;
	background: #fff;
	box-shadow: 0rem 0.2rem 1rem 0rem rgba(15, 35, 65, 0.05);
	justify-content: space-between;
}

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

.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: 66%;
	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: 500;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

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

.news .bar1 ul li h5 {
	opacity: 0.3;
	margin-top: 2rem;
}

.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;
}
.pages ul li.active span{
    color: #fff;
}
.newsd {
	margin-top: var(--height);
}


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

.newsd .bar0 h2 {
	margin: 2rem 0 0rem;
	font-weight: 400;
	font-size: 2.8rem;
	text-align: center;
	color: var(--color);
}

.newsd .bar0 p {
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 2rem;
}

.newsd .tt {
	margin: 3rem auto;
}

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

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

.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;
	overflow: hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
}

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

.cased .bottom {
	justify-content: center;
}

.join ul li {
	background: #f4f4f4;
	padding: 3rem;
	box-sizing: border-box;
	margin-bottom: 2rem;
	cursor: pointer;

}

.join ul li h6 {
	font-size: 1.8rem;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.5s ease;
}

.join ul li h6 i {
	font-weight: 600;
	font-size: 2rem;
}



.join ul li h5 {
	display: flex;
	font-size: 1.4rem;
	margin: 1rem 0 2rem;
}

.join ul li h5 span {
	font-weight: 300;
	font-size: 1.4rem;
	margin-right: 1rem;
}

.join ul li .ts {
	height: 8vh;
	overflow: hidden;
	transition: all 0.5s ease;
}

.join ul li h3 {
	margin-bottom: 1rem;
}

.join ul li h3:not(:first-of-type) {
	margin-top: 2rem;
}

.join ul li p {
	margin: 5px 0;
	line-height: 1.6;
	font-size: 1.3rem;
}

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

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

.join ul li.active .ts {
	height: auto;
}

.contact .bar1 {
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	align-items: flex-end;
	padding: 4% 3%;
	box-sizing: border-box;
	box-shadow: 0rem 0.2rem 1rem 0rem rgba(15, 35, 65, 0.05);
}

.contact h1 {
	color: var(--color);
	font-size: 2.4rem;
	font-weight: 500;
	margin-bottom: 2.5rem;
}

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

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


.contact .bar1 .ll ul li p {
	margin: 1.5rem 0 0;
	line-height: 1.6;
	color: var(--color4);
	display: flex;
	align-items: center;
	font-weight: 400;
}

.contact .ll p img {
	width: 2.2rem;
	margin-top: -1px;
	margin-right: 1rem;
}

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

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

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

.contact .bar1 .imgs {
	display: flex;
	margin-right: 10%;

}

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

.contact .bar1 .imgs img {
	width: 11rem;
	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);
}

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