/*
 *	Created by Edward on 25/08/22
*/
html {
	font-size: 18px;
}

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2?t=1663740079843') format('woff2'),
		url('iconfont.woff?t=1663740079843') format('woff'),
		url('iconfont.ttf?t=1663740079843') format('truetype');
}

@font-face {
    font-family: Outfit;
    src: url(../fonts/Outfit-VariableFont_wght.ttf);
}


.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}

body,
html {
	color: #717171;
	font-family: sans-serif, "Microsoft YaHei", '微软雅黑', "Arial";
	font-weight: 400;
	overflow-x: hidden;
}

.html.en, .en body{
	font-family: sans-serif, "Outfit", "Microsoft YaHei", '微软雅黑', "Arial";
}

.html.en textarea,.html.en input{
	font-family: sans-serif, "Outfit", "Microsoft YaHei", '微软雅黑', "Arial";
}


b,
strong {
	font-weight: 400;
}

textarea,
input {
	font-family: "Microsoft YaHei", '微软雅黑', "Arial";
	font-size: 1rem;
}
button{
	border: none;
}

header {
	width: 100%;
	position: absolute;
	z-index: 9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2vw 8vw;
	transition: 0.5s all ease-in-out;
}

header .logo {
	width: 7vw;
}

header .right {
	display: flex;
    border-radius: 50px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(10px);
	box-shadow: 10px 10px 25px rgba(0, 0, 0, .05);
	gap: 3vw;
	top: 2vw;
    right: 8vw;
	position: fixed;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.logos{
	width: 35px;
	height: auto;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s cubic-bezier(0.215, 0.610, 0.355, 1);
}
header .right.active{
	padding: 20px 45px 20px 95px;
}

header .right.active .logos{
	opacity: 1;
	left: 35px;
    pointer-events: auto;
}

header .right nav ul {
	display: flex;
	gap: 3vw;
}

header .right nav ul li {
	align-items: center;
	
	position: relative;
}
header .right nav ul li>a{
	overflow: hidden;
}
.second-lab{
	position: absolute;
    width: 150px;
    height: auto;
    left: 50%;
    margin-left: -75px;
    top: 50px;
    background: #ffffff;
    padding: 10px 5px;
    text-align: center;
    border-radius: 5px;
	display: none;
}

.en .second-lab{
	width: 200px;
	margin-left: -100px;
}

.en .second-lab a{
	line-height: 20px;
	margin-bottom: 10px;
}

.en .second-lab a:last-child{
	margin-bottom: 0;
}

header .right nav ul li:hover .second-lab{
	display: block;
}

.second-lab a{
	display: block;
	line-height: 30px;
	position: relative;
	font-size: 0.875rem !important;
}

.second-lab a:hover{
	color: #00479d;
}

.second-lab::before{
	width: 100%;
	height: 30px;
	position: absolute;
	left: 0;
	top: -30px;
	content: '';
}

header .right nav{
	position: relative;
}
header .right nav ul li a {
	color: #202020;
	font-size: 1.1rem;
}

header .right nav ul li a .ae {
	display: grid;
	height: 30px;
	overflow: hidden;
	line-height: 30px;
}

header .right nav ul li a .ae p{
	height: 30px;
}

header .right nav ul li a .ae p:first-child{
	transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
	margin-top: 0;
}

header .right nav ul li:hover a .ae p:first-child,header .right nav ul li.active a .ae p:first-child{
	margin-top: -30px;
}

header .right nav ul li:hover a .ae p:last-child,header .right nav ul li.active a .ae p:last-child{
	color: #00479d;
}

header .right .lang .version {
	width: 25px;
	height: 25px;
	position: relative;
	line-height: 25px;
	text-align: center;
	cursor: pointer;
}

header .right .lang .version .icon {
	font-size: 22px;
}

header .right .lang .version .languge {
	width: 5vw;
	height: auto;
	position: absolute;
	left: 50%;
	margin-left: -2.5vw;
	background: #fff;
	top: 3vw;
	padding: 1vw 0px;
	-webkit-transition: all 0.5s;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

header .right .lang .version:hover .languge {
	top: 2vw;
	opacity: 1;
	visibility: visible;
}

header .right .lang .version .languge a {
	display: block;
	width: 100%;
	font-size: 0.85vw;
	line-height: 1.4;
	position: relative;
	margin-bottom: 10px;
	color: #333333;
}

header .right .lang .version .languge a:last-child {
	margin-bottom: 0px;
}

header .right .lang .version .languge a p {
	position: relative;
	display: inline-block;
	z-index: 2;
}

header .right .lang .version .languge a p::before {
	content: "";
	width: 0;
	height: 3px;
	background: #01a9e4;
	position: absolute;
	right: 0%;
	bottom: 0;
	transition: 0.4s;
	z-index: -1;
}

header .right .lang .version .languge a.active p::before,
header .right .lang .version .languge a:hover p::before {
	width: 100%;
	right: auto;
	left: 0%;
}

header .right .lang .globe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	overflow: hidden;
	will-change: transform;
}

@keyframes globe {
	0% {
		transform: translate(-50%, -50%) rotate(15deg);
	}

	50% {
		transform: translate(-50%, -50%) rotate(-15deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(15deg);
	}
}

header .right .lang .globe-wrap {
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(30deg);
	animation: globe 5.4s cubic-bezier(0.35, 0, 0.65, 1) infinite;
	overflow: hidden;
	box-shadow: inset 0px 0px 0px 0.125em white;
}

header .right .lang .globe .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	box-shadow: inset 0.1em 0px 0px 0.08em white;
	animation: circle1 2.7s linear infinite;
	font-size: 0.45em;
}

@keyframes circle1 {
	0% {
		border-radius: 50%;
		box-shadow: inset 0.1em 0px 0px 0.08em white;
		width: 100%;
	}

	49% {
		border-radius: 50%;
		box-shadow: inset 0.1em 0px 0px 0.08em white;
		background: transparent;
	}

	50% {
		border-radius: 0%;
		width: 0.175em;
		background: white;
	}

	51% {
		border-radius: 50%;
		box-shadow: inset -0.1em 0px 0px 0.08em white;
		background: transparent;
	}

	100% {
		border-radius: 50%;
		box-shadow: inset -0.1em 0px 0px 0.08em white;
		width: 100%;
	}
}

header .right .lang .globe :nth-child(1) {
	animation-delay: -1.8s;
}

header .right .lang .globe :nth-child(2) {
	animation-delay: -0.9s;
}

header .right .lang .globe .circle-hor {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	height: 55%;
	box-shadow: inset 0px 0px 0px 0.15em white;
	font-size: 0.45em;
}

header .right .lang .globe .circle-hor-middle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150%;
	transform: translate(-50%, -50%);
	border-radius: 0%;
	height: 0.15em;
	background: white;
	font-size: 0.45em;
}

header .right .lang .globe-wrap {
	box-shadow: inset 0px 0px 0px 0.115em #333333;
}

header .right .lang .globe .circle {
	box-shadow: inset 0.1em 0px 0px 0.08em #333333;
	animation: circle2 2.7s linear infinite;
}

header .right .lang .globe .circle-hor-middle {
	background: #333333;
}

header .right .lang .globe .circle-hor {
	box-shadow: inset 0px 0px 0px 0.15em #333333;
}

header .right .lang .globe :nth-child(1) {
	animation-delay: -1.8s;
}

header .right .lang .globe :nth-child(2) {
	animation-delay: -0.9s;
}

@keyframes circle2 {
	0% {
		border-radius: 50%;
		box-shadow: inset 0.1em 0px 0px 0.08em #333333;
		width: 100%;
	}

	49% {
		border-radius: 50%;
		box-shadow: inset 0.1em 0px 0px 0.08em #333333;
		background: transparent;
	}

	50% {
		border-radius: 0%;
		width: 0.175em;
		background: #333333;
	}

	51% {
		border-radius: 50%;
		box-shadow: inset -0.1em 0px 0px 0.08em #333333;
		background: transparent;
	}

	100% {
		border-radius: 50%;
		box-shadow: inset -0.1em 0px 0px 0.08em #333333;
		width: 100%;
	}
}

{
	width: 100%;
	position: relative;
	overflow: hidden;
}

.f1 {
	width: 100%;
	position: relative;
}

.f1 .f1Bg {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: -1;
}

.f1 .f1Text {
	width: 52vw;
	position: absolute;
	top: 15%;
	left: 25vw;
	transform: translateY(5vw);
	z-index: 2;
}

.f1 .f1Img1 {
	width: 100%;
	position: absolute;
	top: 35vw;
	z-index: 3;
}

.f1 .f1Img2 {
	width: 70vw;
	position: relative;
	left: 30vw;
	top: 32vw;
	z-index: 2;
}

.f1 .f1Bg2 {
	width: 100%;
	position: relative;
	margin-top: 10vw;
	opacity: 0.5;
}

.f1 .f1Bg2 img {
	filter: brightness(0) invert(1);
}

.f2 {
	width: 100%;
	position: relative;
	margin-top: -10vw;
	z-index: 5;
}

.warp{
	width: 100%;
	margin-top: -10vw;
}

.kumu-name{
	width: 100%;
	position: relative;
	color: #00479d;
	font-size: 2.5vw;
	margin-bottom: 1.25vw;
}

.kumu-name.c{
	text-align: center;
}

.kumu-name span{
	font-weight: 100;
}

.en .kumu-name span{
	display: block;
}

.singePage tbody tr td{
	text-align: center;
}

.singePage.w60{
	width: 70%;
	margin: 0px auto;
}

.kumu-btn{
	width: 225px;
	height: auto;
	display: block;
	position: relative;
	margin: 3vw auto 5vw;
}

.kumu-btn .box{
	width: 100%;
	height: 55px;
	position: relative;
	
	border: 1px solid #5e8cc2;
	z-index: 2;
}

.kumu-btn .box::before{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	content: '';
	background: #5e8cc2;
	z-index: -1;
	transition: all 0.25s;
}


.kumu-btn .box::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #ffffff;
}

.kumu-btn .box .txt{
	width: auto;
	height: auto;
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.kumu-btn .box .icon{
	width: 35px;
	height: 35px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
    z-index: 1;
    padding: 8px;
	border-radius: 50%;
	transition: all 0.4s;
	display: flex;
    align-items: center;
}

.kumu-btn .box .icon svg{
	width: 100%;
	height: 100%;
	transition: all 0.4s;
}
.kumu-btn:hover .box::after{
	background: #5e8cc2;
}

.kumu-btn:hover .box::before{
	background: #2e63a1;
	left: 3px;
	top: 3px;
}
.kumu-btn:hover .box .txt{
	color: #ffffff;
}

.kumu-btn:hover .box .icon svg{
	transform: rotate(45deg);
}
.kumu-btn:hover .box .icon svg path{
	fill: #ffffff;
}

.kumu-btn.active{
	opacity: 0.3;
	cursor: no-drop;
}

.products{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5vw;
	margin-bottom: 5vw;
}

.products .item{
	width: 100%;
	margin-bottom: 1vw;
}

.product-menu a:last-child:after{
	display: none;
}


.products .item:last-child .icon{
	display: none;
}

.products .item .inner{
	padding-top: 73%;
}

.products .item:hover .inner img{
	transform: scale(1.05);
}

.products .item .name{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 15px;
	margin-bottom: 15px;
	justify-content: space-between;
}

.products .item .name .txt{
	width: calc(100% - 45px);
	font-size: 1.35rem;
}

.products .item .name .icon{
	width: 35px;
	height: 35px;
	position: relative;
	padding: 5px;
	transition: all 0.35s;
}

.products .item:hover .name .icon{
	transform: rotate(45deg);
}

.products .item:hover .name .icon svg path{
	fill: #2e63a1;
}
.products .item:hover .name .txt{
	color: #2e63a1;
}
.products .item .name .icon svg{
	width: 100%;
	height: 100%;
}

.products .item .marks{
	width: 100%;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	position: relative;
}

.products .item .marks span{
	display: block;
	font-size: 0.875rem;
	padding: 5px 10px;
	border: 1px solid #00479d;
	color: #00479d;
	border-radius: 50px;
}

.application {
    display: flex;
    gap: 10px;
    width: 100%;
}
.application .item {
    text-align: left;
    background: #f8f9fa;
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    display: flex;
    height: 475px;
    position: relative;
    overflow: hidden;
    flex: 1;
}
.application .item .feature-img {
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    background: center center no-repeat;
}

.application .item .feature-img::after{
	width: 100%;
	height: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
}

.application .item .name {
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 80%;
    text-align: left;
    color: #fff;
    transition: all 1s;
    padding: 20px;
}

.application .item:hover {
    flex: 2;
}

.footer{
	background: #fff;
	position: relative;
}

.form-box{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.form-box .kumu-name{
	width: 45%;
}

.forms{
	width: 55%;
}

.kumu-submit{
	margin-left: 0;
	cursor: pointer;
}

.transition{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	z-index: 2000;
	pointer-events: none;
}

.transition-row{
	flex: 1;
	display: flex;
}

.transition-row.row-1 .block{
	transform-origin: top;
}

.transition-row.row-2 .block{
	transform-origin: bottom;
}

.block{
	flex: 1;
	background: #ffffff;
	transform: scaleY(1);
	will-change: transform;
}

.copyright{
	width: 100%;
	position: relative;
}

.pro-content{
	width: 100%;
	display: none;
	position: relative;
}

.pro-content.active{
	display: block;
}

.cp{
	width: 85%;
	height: auto;
	position: absolute;
	left: 7.5%;
	bottom: 25px;
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	align-items: center;
}
.beian{
	width: auto;
}
.cp-info{
	width: auto;
	display: flex;
	align-items: center;
	gap: 40px;
	align-items: center;
}

.cp-info .wechat{
	width: 40px;
	height: 40px;
	
	
	position: relative;
}

.cp-info .wechat .img{
	width: 120px;
    height: 120px;
    position: absolute;
    left: 50%;
    margin-left: -60px;
    top: -130px;
    background: #fff;
	clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all 0.5s;
}

.cp-info .wechat:hover .img{
	clip-path: polygon(0% 00%, 100% 0%, 100% 100%, 0% 100%);
}

.cp-info .wechat .icon{
	width: 100%;
	height: 100%;
	padding: 8px;
	background: #ffffff;
	border-radius: 50%;
	cursor: pointer;
}

.cp-info .wechat:hover .icon{
	background: #3d3d3d;
}
.cp-info .wechat:hover .icon svg{
	opacity: 1;
}
.cp-info .wechat:hover .icon svg path{
	fill: #ffffff;
}

.cp-info .wechat .icon svg{
	width: 100%;
	height: 100%;
	opacity: 0.65;
}

.cp a{
	color: #717171;
}

.cp a:hover{
	color: #333333;
}

.sub-banner{
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	height: auto;
}


.warp.ip{
	margin-top: 0;
	padding-top: 0;
	overflow: initial;
}

.contacts{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
}

.contacts .item{
	flex: 1;
	position: relative;
	background: #f2f8ff;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
	padding: 3vw 0px;
}

.contacts .item .icon{
	width: 140px;
	height: auto;
	position: relative;
	background: #f9fcff;
	border-radius: 50%;
}

.contacts .item .img{
	width: 140px;
	height: auto;
	position: relative;
}

.contacts .item .info{
	width: 100%;
    padding: 0px 3vw;
    text-align: center;
    margin-top: 2vw;
}

.contacts .item .info b{
	display: block;
	margin-bottom: 0.5vw;
}

.map{
	margin-top: 3vw;
}

.about-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.about-box .img{
	width: 35%;
	margin-top: -5vw;
}

.about-right{
	width: 60%;
}
.form .row>input, .form .row textarea{
	font-size: 16px;
}

.form .row>input:focus,.form .row textarea:focus{
	border-color: #00479d;
}

.app-box{
	width: 100%;
	margin-top: 10vw;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 5vw;
}

.app-box .kumu-name{
	width: 35%;
	position: sticky;
	left: 0;
	top: 0;
}

.app-list{
	width: 60%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.app-list .item{
	width: 48%;
	margin-bottom: 3vw;
	position: relative;
}

.app-list .item .inner{
	padding-top: 70%;
}

.app-list .item .thum::after{
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,0));
}

.app-list .item .name{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 15px;
	color: #fff;
}

.app-list .item:nth-child(even){
	top: 5vw;
}

.product-top{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 3vw;
}

.en .product-top{
	flex-wrap: wrap;
}

.product-top .kumu-name{
	margin-bottom: 0;
}

.en .product-menu{
	width: 100%;
}
.en .product-top .kumu-name {
    margin-bottom: 3vw;
}
.product-menu{
	width: auto;
	display: flex;
	align-items: center;
	position: relative;
	gap: 1.5vw;
}

.product-menu a{
	width: auto;
	word-break: keep-all;
	padding-bottom: 20px;
	display: block;
	opacity: 0.5;
	font-size: 1.2rem;
	position: relative;
}
.en .product-menu{
	flex-wrap: wrap;
}
.en .product-menu a{
	font-size: 1rem;
}

.en .singePage{
	font-size: 0.875rem;
}

.product-menu a:hover,.product-menu a.active{
	opacity: 1;
	color: #00479d;
}

.product-menu a::after{
	width: 0%;
	height: 1px;
	position: absolute;
	right: 0;
	left: auto;
	bottom: 0;
	content: '';
	background: #00479d;
	transition: all 0.5s;
}

.product-menu a:hover::after,.product-menu a.active::after{
	width: 100%;
	left: 0;
	right: auto;

}

.product-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: flex-start;
}

.prodct-left{
	width: 35%;
	background: #f9f9f9;
	padding: 1.5vw;
	border-radius: 10px;
}

.product-right{
	width: 60%;
}

.prodct-left .inner{
	padding-top: 70%;
}

body{
	overflow: hidden;
}

.product-swiper{
	margin-bottom: 1vw;
	border-radius: 0.5vw;
}

.product-dot{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
	gap: 10px;
}

.product-dot .item{
	width: auto;
	height: auto;
	padding: 5px 10px;
	font-size: 0.875rem;
	border: 1px solid #999999;
	color: #999999;
	border-radius: 50px;
	cursor: pointer;
	text-align: center;
	text-transform: capitalize;
}

.product-dot .item.active{
	border-color: #00479d;
	color: #00479d;
}

.product-right .name{
	font-size: 2vw;
	color: #00479d;
	margin-bottom: 1vw;
}

.product-right .marks{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 2vw;
}

.product-right .marks span{
	display: block;
    font-size: 0.875rem;
    padding: 5px 20px;
    border: 1px solid #00479d;
    color: #00479d;
    border-radius: 50px;
}

.td-box{
	width: 100%;
	margin-top: 5vw;
}

.common-name{
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 1vw;
	padding-bottom: 20px;
}

.common-name p{
	font-size: 1.2rem;
	color: #00479d;
}

.common-name::after{
	width: 100%;
	height: 13px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: url(../images/name-line.jpg) repeat-x;
}

.td-list{
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
}

.td-list .item{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 2vw;
	border: 1px solid #01479d;
}

.td-list .item:nth-child(3n){
	margin-right: 0;
}

.td-list .item .name{
	width: 100%;
	height: auto;
	position: relative;
	padding:15px 25px;
	color: #ffffff;
	background: #01479d;
	text-transform: capitalize;
}

.td-list .item .des{
	padding: 25px;
	line-height: 1.7;
	font-size: 0.875rem;
}

.product-bar{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 3vw;
	gap: 1vw;
}

.en .singePage tbody tr td{
	padding: 6px 3px;
}

.product-bar span{
	display: block;
    padding: 8px 20px;
    border: 1px solid #00479d;
    color: #00479d;
    border-radius: 50px;
	cursor: pointer;
}
.en .product-bar{
	justify-content: flex-start;
}
.en .product-bar span{
	font-size: 0.875rem;
}

.product-bar span.active{
	background: #00479d;
	color: #ffffff;
}

@media screen and (max-width: 1440px){
	html {
		font-size: 16px;
	}
	.prodct-left{
		padding: 1.5vw;
	}
	.prodct-left{
		width: 40%;
	}
	.product-right{
		width: 55%;
	}
	.product-menu a{
		font-size: 1.1rem;
	}
}


@media screen and (max-width: 900px){
	.langmob{
		display: block;
	}
	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		transition: all 0.3s ease;
		height: 60px;
		padding: 0 5vw;
		background: #ffffff;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
	}
	header .right{
		position: fixed;
		width: 100%;
		height: 0;
		left: 0;
		padding: 0;
		top: 0;
	}
	nav{
        height: calc(100vh - 60px);
        position: fixed;
        left: 0px;
        top: 60px;
        display: flex;
        align-items: center;
        width: 100%;
        -webkit-transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);

        pointer-events: none;
        margin-right: 0%;
        z-index: 10;
        padding-top: 25px;
        display: block;
        background: #f9f9f9;
		clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	}
	nav.active{
        pointer-events: auto;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
	header .logo {
		width: 100px;
	}
	.warp{
		margin-top: 0;
	}
	.w1400{
		width: 90%;
	}
	.kumu-name{
		font-size: 7vw;
		line-height: 1.2;
        margin-bottom: 5vw;
	}
	.kumu-name span{
		display: inline-block;
		width: 100%;
	}
	.singePage.w60 {
		width: 100%;
		margin-bottom: 5vw;
	}
	html {
		font-size: 16px;
	}
	.kumu-btn {
		width: 155px;
	}
	.kumu-btn .box{
		height: 45px;
	}
	.boxes{
		padding: 10vw 0;
	}
	.kumu-btn.mb10{
		margin-bottom: 15vw;
	}
	.products{
		grid-template-columns: repeat(1, 1fr);
		gap: 0vw;
		margin-bottom: 5vw;
	}
	.products .item .name .txt{
		font-size: 1.2rem;
		width: calc(100% - 30px);
	}
	.products .item .name{
		justify-content: space-between;
		margin-bottom: 10px;
	}
	.products .item .name .icon{
		width: 25px;
		padding: 3px;
        height: 25px;
	}
	.products .item .marks span{
		font-size: 0.75rem;
		padding: 3px 5px;
	}
	.products .item .marks{
		gap: 5px;
	}
	.products .item {
		width: 100%;
		margin-bottom: 10vw;
	}
	.application{
		flex-wrap: wrap;
		gap: 0;
		justify-content: space-between;
	}
	.application .item{
		width: 48%;
		flex: initial;
		height: 70vw;
        margin-bottom: 3.5vw;
	}
	.form-box .kumu-name{
		width: 100%;
		font-size: 6vw;
	}
	.forms{
		width: 100%;
	}
	.cp{
		flex-wrap: wrap;
        font-size: 12px;
        position: relative;
        width: 90%;
        left: 0%;
        margin: 0px auto;
        bottom: 0;
		margin-top: 30vw;
	}
	.copyright>img{
		position: absolute;
		width: 100%;
		bottom: 0;
	}
	.copyright{
		padding-bottom: 40vw;
	}
	.cp-info .in{
		width: 100%;
		margin-bottom: 5px;
	}
	.cp-info{
		gap: 0;
		width: 100%;
		position: relative;
		line-height: 1.7;
	}
	.cp-info .wechat{
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: -55px;
		border: 1px solid rgba(0, 0, 0, 0.2);
		border-radius: 50%;
	}
	
	header .right nav ul{
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		padding: 0 5%;
	}
	header .right nav ul li{
		margin-right: 0;
		line-height: 55px;
		margin-bottom: 0vw;
		border-bottom: 1px solid rgba(0, 0, 0, .1);
		transform: translateY(35px);
		opacity: 0;
		transition: all 0.75s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
	}

	header .right nav ul li:nth-child(2){
		transition-delay: 0.5.5s;
	}
	header .right nav ul li:nth-child(3){
		transition-delay: 0.6s;
	}
	header .right nav ul li:nth-child(4){
		transition-delay: 0.65s;
	}

	header .right nav.active ul li{
		transform: translateY(0px);
		opacity: 1;

	}

	header .right nav ul li a{
		font-size: 24px;
		padding: 5vw 0px;
        display: block;
	}
	header .right nav ul li a .ae{
		text-shadow: none;
	}
	.langpc{
		display: none;
	}
	header .right .lang {
		position: absolute;
		margin-top: 0vw;
		right: calc(3vw + 50px);
		top: 12px;
	}
	header .right .lang .version {
		width: 35px;
		height: 35px;
		position: relative;
		line-height: 35px;
		text-align: center;
		cursor: pointer;
	}
	header .right .lang .globe{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 30px;
		transform: translate(-50%, -50%) scale(0.7);
		border-radius: 50%;
		overflow: hidden;
		will-change: transform;
	}
	header .right .lang .version .languge{
		width: 80px;
		height: auto;
		position: absolute;
		left: 50%;
		margin-left: -40px;
		background: #fff;
		top: 50px;
		padding: 10px 0px;
		-webkit-transition: all .5s;
		opacity: 0;
		visibility: hidden;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
	}
	header .right .lang .version:hover .languge{
		opacity: 1;
        visibility: visible;
        pointer-events: auto;
		top: 40px;
	}
	header .right .lang .version .languge a{
		color: #333333;
		transition: color 0.3s;
		font-family: manrope;
		position: relative;
		z-index: 2;
		font-size: 0.9rem;
		line-height: 16px;

	}
	header .right .lang .version .languge a p::before{
		height: 2px;
	}
	header .right nav ul li:hover a .ae {
		transform: translateY(0vw);
	}
	.sub-banner{
		margin-top: 60px;
	}
	.f1{
		margin-top: 60px;
		position: relative;
	}
	.f1 .f1Bg{
		width: 150%;
		position: relative;
	}
	.f1 .f1Img1{
		top: auto;
		bottom: 0;
	}
	.f1 .f1Img2{
		width: 100%;
		position: absolute;
		left: 0vw;
		top: 32vw;
	}
	.f1 .f1Bg2{
		position: absolute;
		margin-top: 0vw;
	}
	.f1 .f1Text{
		top: 20vw;
        width: 60%;
        left: 20%;
	}
	.f1 .f1Bg img{
		position: relative;
		top: -10vw;
	}
	.about-box,.app-box{
		flex-wrap: wrap;
	}
	.about-box .img{
		width: 60%;
	}
	.about-right{
		width: 100%;
		margin-top: 5vw;
	}
	.app-box .kumu-name,.app-list{
		width: 100%;
	}
	.app-list .item{
		height: 70vw;
	}
	.app-list .item .thum{
		height: 100%;
	}
	.app-list .item .inner{
		height: 100%;
		padding-top: 0;
	}
	.app-list .item:nth-child(even) {
		top: 0vw;
	}
	.kumu-btn .box .txt{
		font-size: 0.875rem;
	}
	.kumu-btn .box .icon{
		padding: 10px;
	}
	.app-box{
		margin-top: 15vw;
	}
	.product-top{
		flex-wrap: wrap;
		margin-bottom: 5vw;
	}
	.product-top .kumu-name{
		margin-bottom: 5vw;
	}
	.product-menu{
		width: 100%;
		flex-wrap: wrap;
		gap: 3vw;
	}
	.product-menu a{
		font-size: 1rem;
		padding-bottom: 5px;
	}
	.product-box{
		flex-wrap: wrap;
	}
	.prodct-left{
		width: 100%;
		padding: 0;
		margin-bottom: 5vw;
	}
	.product-dot .item{
		font-size: 12px;
		padding: 5px 10px;
	}
	.product-dot{
		padding: 10px 0px;
	}
	.product-swiper{
		margin-bottom: 0;
	}
	.product-right .name{
		font-size: 6vw;
		margin-bottom: 2vw;
	}
	.product-right .marks span{
		font-size: 0.75rem;
        padding: 3px 5px;
	}
	.product-right{
		width: 100%;
		margin-top: 5vw;
	}
	.common-name p{
		font-size: 6vw;
	}
	.td-list .item .des {
		padding: 15px;
		line-height: 1.5;
		font-size: 0.875rem;
		word-break: break-word;
	}
	.contacts{
		gap: 0;
		justify-content: space-between;
	}
	.contacts .item{
		width: 48%;
		flex: none;
		margin-bottom: 3vw;
		align-content: flex-start;
	}
	.contacts .item .icon{
		width: 70px;
	}
	.contacts .item .info{
		font-size: 14px;
		word-break: break-word;
	}
	.contacts .item .info b{
		display: none;
	}
	.contacts .item:last-child{
		width: 100%;
	}
	.contacts .item:last-child .info b{
		display: block;
	}
	.contacts .item .img{
		width: 100px;
	}
	.map{
		display: none;
	}
	.form .row>input, .form .row textarea{
		font-size: 16px;
	}
	header .right.active {
		padding: 0;
	}
	header .right.active .logos {
		opacity: 0;
		left: 0px;
		pointer-events: none;
	}
	.second-lab{
		display: none;
	}
	header .right nav ul li:hover .second-lab {
		display: none;
	}
	.td-list .item{
		width: 100%;
	}

	.td-box .singePage{
		overflow-x: auto;
	}
	.en .singePage tbody tr td {
		padding: 3px 3px;
	}
	.singePage table{
		font-size: 12px;
	}
	.error_tips{
		transform: translateY(48px);
		font-size: 10px;
	}
	.error_tips.active {
		transform: translateY(43px);
	}
	.form .row{
		margin-bottom: 30px;
	}
	.en .form .row label{
		font-size: 0.875rem;
	}
}