/*
 *	Created by Edward on 26/03/30
 *	Copyright (c) 2025 ishutime.com All rights reserved
*/
html {
	font-size: 62.5%;
}

@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');
}


.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: din;
	src: url(../fonts/dinregularwebfont.woff);
}
@font-face {
	font-family: Quicksand;
	src: url(../fonts/Quicksand-VariableFont_wght.ttf);
}

@font-face {
	font-family: inter;
	src: url(../fonts/Inter_18pt-Light.ttf);
}

@font-face {
    font-family: "MontserratBold";
    src: url("../fonts/MontserratBold.woff2") format("woff2"),
        url("../fonts/MontserratBold.woff") format("woff"),
        url("../fonts/MontserratBold.ttf") format("truetype"),
        url("../fonts/MontserratBold.eot") format("embedded-opentype"),
        url("../fonts/MontserratBold.svg") format("svg");
}

@font-face {
    font-family: "MontserratLight";
    src: url("../fonts/MontserratLight.woff2") format("woff2"),
        url("../fonts/MontserratLight.woff") format("woff"),
        url("../fonts/MontserratLight.ttf") format("truetype"),
        url("../fonts/MontserratLight.eot") format("embedded-opentype"),
        url("../fonts/MontserratLight.svg") format("svg");
}

@font-face {
	font-family: figtree;
	src: url(../fonts/Figtree-Medium.ttf);
}

body{
	font-size: max(1.6rem,0.75vw);
	background: #fcfcfc;
}
body,
html {
	color: #000000;
	/* font-family: "Microsoft YaHei", sans-serif; */
	font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
	font-weight: 400;
}

body.eng{
	font-family: "MontserratLight",Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
}


sup{
	font-size: max(0.7vw,1.4rem);
}

b,strong {
	font-weight: 500;
}

textarea,input,select {
	/* font-family: "Microsoft YaHei", sans-serif; */
	font-family: Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
	outline: none;
	border: none;
}

button {
	border: none;
}

.transtion-page{
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	overflow: hidden;
	filter: url("#goo");
	pointer-events: none;
}

.blob{
	border-radius: 50%;
	background: #fcfcfc;
	position: absolute;
	aspect-ratio: 1;
	will-change: transform;
	transform: scale(1.4);
}


.svg {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
}


header {
	height: auto;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	padding: 1vw 5%;
	z-index: 10;
	align-items: center;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}


header.active{
	transform: translateY(-100%);
}

.logo {
	width: 15vw;
	height: auto;
	position: relative;
	display: block;
}

.cols-right {
	width: auto;
	display: flex;
	gap: 2vw;
	align-items: center;
	color: #fff;
}

nav {
	width: 65%;
	background: rgba(22, 48, 142, 0.2);
    border-radius: 50px;
	position: relative;
	backdrop-filter: blur(10px);
	transition: all 0.5s;
}



nav ul {
	display: flex;
	padding-right: 2.2%;
	
}

nav ul li {
	position: relative;
	flex: 1;
	line-height: 25px;
    padding: 1vw 0px;
}

nav ul li .second-lab {
	width: 100%;
    position: absolute;
    left: 0%;
    top: 0px;
    max-height: 0;
    pointer-events: none;
    transition: all .75s cubic-bezier(0.215, 0.610, 0.355, 1);
    background: #fff;
    border-radius: 0.5vw;
    padding: 0px;
    backdrop-filter: blur(5px);
	overflow: hidden;
	font-size: max(1.8rem,0.85vw);
}

nav ul li .second-lab::after{
	width: 80%;
	height: 1px;
	position: absolute;
	left: 10%;
	top: 45px;
	opacity: 0;
	transition: all 0.45s;
	content: '';
	border-top: 1px dotted rgba(0, 0, 0, .2);
}

nav ul li:hover .second-lab::after{
	opacity: 1;
	top: calc(25px + 2vw);
}

nav ul li:hover .second-lab{
	pointer-events: auto;
	max-height: 250px;
	padding-top: calc(35px + 2vw);
	padding-bottom: 15px;
}

nav ul li:hover .second-lab a {
	opacity: 1;
	transform: translateY(0%);
}

nav ul li .second-lab a {
	padding: 5px 6%;
    line-height: 1.4;
	text-align: center;
	transition: 1s cubic-bezier(.38, 0, 0, 1);
	opacity: 0;
	transform: translateY(30%);
	will-change: transform;
	transition-delay: 0.05s;
	display: block;

}

nav ul li .second-lab a p {
	color: rgba(0, 0, 0, .5);
	transition: all 0.4s;
}

nav ul li .second-lab a:hover p {
	color: rgba(0, 0, 0, 1);
}

nav ul li .second-lab a:nth-child(2) {
	transition-delay: 0.1s;
}

nav ul li .second-lab a:nth-child(3) {
	transition-delay: 0.15s;
}

nav ul li .second-lab a:nth-child(4) {
	transition-delay: 0.2s;
}

nav ul li .second-lab a:nth-child(5) {
	transition-delay: 0.25s;
}

nav ul li .second-lab a:nth-child(6) {
	transition-delay: 0.3s;
}

nav ul li .second-lab a:nth-child(7) {
	transition-delay: 0.35s;
}

nav ul li .first-lab {
	position: relative;
	z-index: 2;
	font-size: max(1.8rem,0.85vw);
    font-weight: 500;
}

nav ul li .first-lab a p {
	position: relative;
	width: 100%;
	text-align: center;
	overflow: hidden;
	transition: all 0.5s;
}

nav ul li .first-lab a p:last-child{
	position: absolute;
	left: 0;
	top: 0;
	color: #16308E;
	opacity: 0;
}


nav ul li:hover .first-lab a p:first-child {
	opacity: 0;
}

nav ul li:hover .first-lab a p:last-child {
	opacity: 1;
}


nav ul li .first-lab a {
	display: block;
	position: relative;
	color: #ffffff;
}



.nav-config{
	width: auto;
	display: flex;
    gap: 1vw;
    align-items: center;
    backdrop-filter: blur(12.5px);
	color: #fff;
    font-size: 1.4rem;
	position: relative;
}

.langue .icon {
	width: 20px;
	height: 20px;
	display: block;
	position: relative;
}

.langue .icon img:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

.langue{
	width: auto;
    height: auto;
    position: relative;
    line-height: 20px;
}

.langue .lan-top{
	width: auto;
	display: flex;
	align-items: center;
	gap: 0.5vw;
	background: rgba(22, 48, 142, 0.5);
	padding: 1vw 1.25vw;
	border-radius: 50px;
	font-size: max(1.6rem, 0.7vw);
}

.langue .list{
	width: 100%;
	height: auto;
	background: #fff;
	position: absolute;
	left: 50%;
	margin-left: -50%;
	border-radius: 50px;
	top: 110%;
	opacity: 0;
	padding: 0px 0px;
	pointer-events: none;
	transition: all .35s;
	box-shadow: 15px 15px 35px rgba(0, 0, 0, .1);
}

.langue .list::before{
	width: 100%;
	height: 20px;
	position: absolute;
	left: 0;
	top: -20px;
	content: '';
}

.langue .list a:first-child{
	padding-top: 10px;
}

.langue .list a:last-child{
	padding-bottom: 10px;
}


.langue:hover .list{
	opacity: 1;
	pointer-events: auto;
	top: 100%;
}
.langue .list a{
	display: block;
	text-align: center;
	line-height: 30px;
	font-size: 15px;
	opacity: 0.5;
}
.langue .list a:hover,.langue .list a.active{
	opacity: 1;
}
.langue .list a.active{
	font-family: 'Montserrat-SemiBold';
}

.banner-swiper video{
	width: 100%;
    height: 100vh;
    position: absolute;
    object-fit: cover;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	opacity: 0.85;
}

.banner-swiper .swiper-slide{
	width: 100%;
	height: auto;
	position: relative;
	background: #16308E;
}

.banner-swiper{
	width: 100%;
	height: 100vh;
	position: relative;
	left: 0;
	top: 0;
	will-change: transform;
}

.banner-swiper .slogan{
	width: 80%;
	height: auto;
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
    line-height: 1.2;
	z-index: 3;
	font-weight: 400;
}

.banner-swiper .slogan .title{
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
    font-size: 6vw;
	opacity: 0;
	transform: translateY(25px);
	overflow: hidden;
	font-weight: 500;
}

.banner-swiper .slogan .title.blur-blend-text,
.sub-banner .txt.cn.blur-blend-text{
	filter: url(#smooth-blend-filter);
	overflow: visible;
	-webkit-font-smoothing: antialiased;
}

.common-name .text{
	color: #16308E;
}

.common-name .text.blur-blend-text{
	filter: url(#blue-blend-filter);
	overflow: visible;
	-webkit-font-smoothing: antialiased;
}

.common-name .text .blur-blend-word{
	color: #16308E;
}

.blur-blend-word{
	display: inline-block;
	will-change: filter, opacity;
}

.banner-swiper .slogan .cn{
	width: 100%;
	height: auto;
	overflow: hidden;
	font-size: clamp(4rem, 4vw, 6rem);
}

.banner-swiper .swiper-pagination,.slogan-tips p{
	transform: translateY(15px);
	opacity: 0;
}

.banner-swiper .slogan .cn p{
	transform: translateY(100%);
}

.about-wrap{
	background: url(../images/about-bg.jpg) center center no-repeat;
	background-size: cover;
	padding: 0;
	overflow: hidden;
}

.about-flex{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: space-between;
	padding-left: 10%;
}

.animated-svg{
	animation: swayGentle 3.2s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes swayGentle {
	0% { transform: rotate(0deg); }
	35% { transform: rotate(2.5deg); }
	65% { transform: rotate(-2.5deg); }
	100% { transform: rotate(0deg); }
}

.common-name{
	width: auto;
	display: flex;
	gap: 0.5vw;
	align-items: center;
	margin-bottom: 4rem;
}

.common-name .icon{
	width: 26px;
}

.common-name .text{
	font-size: max(5.6rem, 3vw);
    color: #16308E;
	line-height: 1;
	font-weight: 500;
	width: calc(100% - 26px);
}

.mr-btns {
	width: 156px;
	height: 50px;
}

.mr-btns a {
	width: 100%;
	height: 100%;
	position: relative;
	display: block;
	background: #16308E;
	border-radius: 50px;
	overflow: hidden;
	transition: all 0.5s;
	color: #fff;
	box-shadow: rgba(22, 48, 142, 0.15) 0px 1.20932px 1.20932px -0.46875px, rgba(22, 48, 142, 0.15) 0px 2.86629px 2.86629px -0.9375px, rgba(22, 48, 142, 0.14) 0px 5.22841px 5.22841px -1.40625px, rgba(22, 48, 142, 0.14) 0px 8.69222px 8.69222px -1.875px, rgba(22, 48, 142, 0.13) 0px 14.0372px 14.0372px -2.34375px, rgba(22, 48, 142, 0.12) 0px 22.9776px 22.9776px -2.8125px, rgba(22, 48, 142, 0.1) 0px 39.5658px 39.5658px -3.28125px, rgba(22, 48, 142, 0.05) 0px 72px 72px -3.75px;
}

.mr-btns a::before {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 5px;
	top: 5px;
	background: #ffffff;
	border-radius: 50px;
	content: '';
	transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
}


/* .mr-btns a:hover .txt p:nth-child(1) {
	transform: translateY(-10px);
	opacity: 0;
}

.mr-btns a:hover .txt p:nth-child(2) {
	transform: translateY(0px);
	opacity: 1;
} */

.mr-btns a:hover {
	transform: scale(1.1);
}

.mr-btns a .txt {
	width: calc(100% - 80px);
    text-align: center;
	height: 20px;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	text-transform: capitalize;
}

.mr-btns a .txt p {
	width: 100%;
	height: 20px;
	display: block;
	line-height: 20px;
	transition: all 0.5s;
	position: absolute;
	left: 0;
	top: 0;
}

.mr-btns a .txt p:first-child {
	transition: all 0.5s;
	margin-top: 0;
}

.mr-btns a .txt p:nth-child(2) {
	transform: translateY(10px);
	opacity: 0;
}

/* .mr-btns a:hover .txt p:first-child {
	margin-top: -20px;
	opacity: 0;
} */


.mr-btns a .icon {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 5px;
	top: 5px;
	line-height: 40px;
	text-align: center;
	color: #16308E;
}

.mr-btns a .icon i{
	width: 16px;
	height: 16px;
	line-height: 16px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.mr-btns a .icon i:nth-child(2){
	left: 30%;
	opacity: 0;
}

.mr-btns a:hover .icon i:nth-child(1){
	left: 90%;
	opacity: 0;
}

.mr-btns a:hover .icon i:nth-child(2){
	left: 50%;
	opacity: 1;
}

.about-cols{
	width: 40%;
}

.about-thum{
	width: 50%;
}

.about-thum .thum{
	border-radius: 1vw;
	box-shadow: rgba(45, 30, 133, 0.1) 0px 4px 30px 0px;
}

.about-info{
	width: 100%;
	margin-bottom: 2vw;
	font-size: max(4rem, 1.75vw);
    font-weight: 500;
}



.about-desc{
	width: 100%;
    height: auto;
    line-height: 1.6;
    position: relative;
    margin-bottom: 4vw;
    font-size: max(1.8rem, 0.85vw);
}

.about-desc p{
	margin-bottom: 1.5rem;
}

.about-content{
	width: 60%;
	position: relative;
	padding: 6vw 0px;
	padding-right: 10%;
	padding-left: 5%;
}

.data-list{
	width: 100%;
	aspect-ratio: 5 / 5;
	position: relative;
}

.data-list .item{
	position: absolute;
	height: auto;
	width: 30%;
	
}

.data-list .item .box{
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	background: rgba(255,255,255,.85);
	backdrop-filter: blur(10px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.data-list .item .box .inner{
	width: 100%;
	padding: 0 5%;
}

.data-list .item:nth-child(2){
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 35%;
}

.data-list .item:nth-child(1){
	
	left: 5%;
}

.data-list .item:nth-child(3){
	right: 0;
	top: 10%;
	width: 28%;
}

.data-list .item:nth-child(3) .box{
	background: rgba(137, 163, 255, .65);
}

.data-list .item:nth-child(4){
	left: 0;
	bottom: 10%;
}

.data-list .item:nth-child(4) .box{
	background: rgba(22, 48, 142, 0.85);
}

.data-list .item:nth-child(5){
	right: 10%;
	bottom: 0%;
}

.data-list .item .box .txt{
	font-size: 0.85vw;
}

.data-list .item .count{
	font-family: din;
	font-size: 2.75vw;
	color: #16308E;
}

.data-list .item:nth-child(4) .count,.data-list .item:nth-child(3) .count,.data-list .item:nth-child(4),.data-list .item:nth-child(3){
	color: #fff;
}

.svg-list{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.svg-center{
	width: 15vw;
	left: 45%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.svg-center img{
	animation: softFloat 2.4s ease-in-out infinite;
}

@keyframes softFloat {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-6px); }
	100% { transform: translateY(0px); }
}

.dots{
	width: 100%;
	height: 90%;
	position: absolute;
	left: 0;
	top: 0;
}

.dots .dot{
	width: 3.5vw;
	height: auto;
	aspect-ratio: 1;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.85);
	filter: blur(20px);
	transform: scale(1.5);
}

.dots .dot:nth-child(2){
	width: 3vw;
	background: rgba(137, 163, 255, 0.25);
}

.dots .dot:nth-child(3){
	width: 2vw;
	background: rgba(22, 48, 142, 0.85);
}

.dots .dot:nth-child(4){
	width: 2vw;
	background: rgba(58, 126, 255, 0.85);
}



.product-wrap{
	width: 100%;
	height: auto;
	display: flex;
	gap: 2vw;
	margin-bottom: 6vw;
}

.product-wrap .item{
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 1vw;
	overflow: hidden;
	height: 25vw;
	position: relative;
	flex: 1;
	background: #fff;
	box-shadow: rgba(45, 30, 133, 0.1) 0px 4px 30px 0px;
	transition: all 0.7s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.product-wrap .item.active{
	flex: 2;
}

.product-wrap .item a{
	display: flex;
	width: 100%;
	padding: 3vw;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	height: 100%;
}

.product-wrap .item a .thum{
	width: 18vw;
    height: auto;
    position: absolute;
    left: 50%;
    top: 40%;
	transform: translateY(-50%) translateX(-50%);
	transition: all 0.5s;
}

.product-wrap .item a .thum2{
	position: absolute;
	width: 23vw;
    left: 2%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all 0.5s;
}

.product-wrap .item a .thum2 img,.product-wrap .item a .thum img{
	aspect-ratio: 1;
	object-fit: contain;
}

.app-list .item .thum img{
	aspect-ratio: 100 / 49;
}

.product-wrap .item a .pic{
	opacity: 0;
	position: absolute;
}

.product-wrap .item.active a .thum{
	opacity: 0;
}

.product-wrap .item.active a .thum2{
	opacity: 1;
}

.name2{
	width: 22vw;
    height: auto;
    position: absolute;
    left: 2vw;
    bottom: 2vw;
    opacity: 1;
	transition: all 1s;
}

.name2 .title{
	width: 100%;
	height: auto;
	line-height: 1.3;
	font-size: max(1.8rem, 1vw);
	margin-bottom: 0.25vw;
	font-weight: 500;
}

.name2 .tips{
	font-size: 1.5rem;
	line-height: 1.6;
	font-size: max(1.6rem, 0.7vw);
}

.product-wrap .item.active .name2{
	opacity: 0;
	transform: translateY(0px);
}

.product-wrap .item a .info{
	width: 24vw;
	height: auto;
	position: absolute;
	right: 3vw;
	top: 3vw;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
}

.product-wrap .item.active a .info{
	opacity: 1;
	visibility: visible;
}

.product-wrap .item a .info .name{
	width: 100%;
	margin-bottom: 3vw;
}

.product-wrap .item a .info .name .title{
	font-size: 4rem;
    font-weight: 500;
	margin-bottom: 10px;
	line-height: 1.3;
}

.product-wrap .item a .info .name .tips{
	font-size: 2rem;
}

.product-wrap .item a .info .desc{
	width: 100%;
	height: auto;
	position: relative;
	line-height: 30px;
	overflow: hidden;
	-webkit-line-clamp: 5;
}

.product-wrap .item a .info .desc p{
	margin-bottom: 0px;
	position: relative;
}

.product-wrap .item a .info .desc p::after{
	width: 4px;
	height: 4px;
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
	background: rgba(22, 48, 142, 0.25);
	border-radius: 50%;
	display: none;
}



.app-list{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2vw;
	margin-bottom: 6vw;
}

.app-list .item{
	border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1vw;
    background: #fff;
	width: 100%;
	position: relative;
	padding: 3vw;
	box-shadow: rgba(45, 30, 133, 0.1) 15px 15px 50px 0px;
}


.app-list .item .top{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
}

.app-list .item .top .name{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 2.2vw;
	width: 30%;
}

.app-list .item .top .desc{
	width: 60%;
	line-height: 1.5;
	-webkit-line-clamp: 3;
	font-size: max(0.85vw, 1.8rem);
    height: 5vw;
}

.app-list .item .thum{
	width: 100%;
	margin: 2vw 0px;
}

.app-list .item .links{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5vw;
	position: relative;
}

.app-list .item .links a{
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	background: #16308E;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.5s;
    color: #fff;
	text-align: center;
    padding: 12px 0px;
    box-shadow: rgba(22, 48, 142, 0.15) 0px 1.20932px 1.20932px -0.46875px, rgba(22, 48, 142, 0.15) 0px 2.86629px 2.86629px -0.9375px, rgba(22, 48, 142, 0.14) 0px 5.22841px 5.22841px -1.40625px, rgba(22, 48, 142, 0.14) 0px 8.69222px 8.69222px -1.875px, rgba(22, 48, 142, 0.13) 0px 14.0372px 14.0372px -2.34375px, rgba(22, 48, 142, 0.12) 0px 22.9776px 22.9776px -2.8125px, rgba(22, 48, 142, 0.1) 0px 39.5658px 39.5658px -3.28125px, rgba(22, 48, 142, 0.05) 0px 72px 72px -3.75px;
	transition: all 0.5s;
}

.app-list .item .links a:hover{
	transform: scale(1.1);
}

.name-top{
	width: 100%;
	display: flex;
	align-items: flex-end;
	margin-bottom: 3vw;
	justify-content: space-between;
}

.name-top .common-name{
	width: 50%;
	margin-bottom: 0;
}

.application{
	padding-top: 0;
}

.news-list{
	width: 100%;
	height: auto;
	position: relative;
}

.news-list .item{
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 25px;
}

.news-list .item:last-child{
	margin-bottom: 0;
}

.news-list .item a{
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.news-list .item a .thum{
	width: 30%;
	border-radius: 1vw;
	overflow: hidden;
}

.news-list .item a .thum img{
	width: 100%;
	aspect-ratio: 100 / 56;
	transition: all 1s;
}

.news-list .item a:hover .thum img{
	transform: scale(1.1);
}

.news-list .item a .info{
	width: 69%;
	background: #ffffff;
	border-radius: 1vw;
	overflow: hidden;
	padding: 2vw;
    display: flex;
	align-items: center;
    justify-content: space-between;
}

.news-list .item a .info .date{
	width: 15%;
	display: flex;
	align-items: center;
	font-family: inter;
	gap: 0.25vw;
}

.news-list .item a .info .date .day{
	font-size: 5rem;
	line-height: 1;
}

.news-list .item a .info .cons{
	width: 83%;
}

.news-list .item a .info .cons .name{
	width: auto;
    font-weight: 500;
    margin-bottom: 1.6rem;
    display: inline-block;
    font-size: 2.8rem;
    line-height: 1.35;
}

.news-list .item a .info .cons .desc{
	-webkit-line-clamp: 3;
    line-height: 1.5;
}

.news-list .item a:hover .info .cons .name{
	color: #16308E;
}

.footer{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	padding-top: 3vw;
	position: relative;
	background-color: #fcfcfc;
	
}

.footer::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: url(../images/footer-bg.jpg) center center no-repeat;
	background-size: cover;
	border-radius: 1vw 1vw 0 0;
}

.footer-top{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,.1);
	color: #fff;
	padding-bottom: 2vw;
    margin-bottom: 2vw;
	align-items: flex-end;
}

.f-cols{
	width: 50%;
	height: auto;
	position: relative;
}

.f-cols .name{
	font-size: 2.5vw;
	margin-bottom: 0.15vw;
}

.f-cols .desc{
	opacity: 0.7;
	font-size: 1.1vw;
    font-weight: 300;
}

.f-cols .desc span{
	padding: 0px 3px;
}

.social-icons {
	width: auto;
	display: flex;
	position: relative;
	gap: 10px;
}

.social-icons .item {
	width: 45px;
	height: 45px;
	position: relative;
	line-height: 45px;
	text-align: center;
}

.social-icons .item .img{
	width: 120px;
	height: auto;
	position: relative;
}

.social-icons .item .chat-content{
	width: 250px;
	height: auto;
	position: absolute;
	left: -80px;
	top: 0px;
	padding: 3px;
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: all 0.5s;
	pointer-events: none;
	transform:translateX(-50%) translateY(-120%);
	background: #fff;
	border-radius: 5px;
	box-shadow: 15px 15px 30px rgba(0, 0, 0, .1);
}

.social-icons .item .chat-content::after{
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #fff;
	position: absolute;
	right: 12px;
	bottom: -6px;
	content: '';
}

.social-icons .item:hover .chat-content{
	transform:translateX(-50%) translateY(-110%);
	opacity: 1;
	pointer-events: auto;
}

.social-icons .item .img p{
	line-height: 1.4;
	font-size: 1.2rem;
	opacity: 0.5;
	margin-bottom: 5px;
    margin-top: 2px;
}

.social-icons .item .element {
	background: rgba(255, 255, 255, .25);
    border-radius: 50px;
    overflow: hidden;
    color: rgba(255,255,255,.8);
    transition: all 0.4s;
    font-size: 2rem;
	cursor: pointer;
}

.social-icons .item:nth-child(2) .element {
	font-size: 2.4rem;
}

.social-icons .item:hover .element {
	color: #16308E;
	background: #ffffff;
	box-shadow: 5px 5px 30px rgba(0, 0, 0, .1);
}

.footer-nav{
	width: 100%;
}

.footer-nav ul{
	height: auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 -2vw;
    width: calc(100% + 4vw);
}

.footer-nav ul li{
	width: auto;
	padding: 0 2vw;
	position: relative;
	max-width: 20vw;
}

.footer-nav ul li a{
	color: rgba(255,255,255,.45);
	display: inline-block;
	position: relative;
	transition: all 0.5s;
}

.footer-nav ul li a::after{
	width: 100%;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	background: #fff;
	opacity: 0;
	transition: all 0.5s;
	transform: scaleX(0);
	transform-origin: left top;
}

.footer-nav ul li a:hover::after{
	transform: scaleX(1);
	right: auto;
	left: 0;
	opacity: 1;
}

.footer-nav ul li a:hover{
	color: #fff;
}

.footer-nav ul li .row:first-child a{
	color: #fff;
}

.footer-nav ul li .row:last-child{
	margin-bottom: 0;
}

.footer-nav ul li .row{
	line-height: 1.4;
	margin-bottom: 0.75vw;
}

.footer-nav ul li .row:first-child{
	margin-bottom: 1vw;
	font-size: 1.8rem;
}

.copyright{
	width: 100%;
	height: auto;
	position: relative;
	border-top: 1px solid rgba(255,255,255,.1);
    color: #fff;
	padding-top: 1vw;
    margin-top: 5vw;
    padding-bottom: 1vw;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 1.4rem;
	color: rgba(255,255,255,.35);
}

.copyright a{
	color: rgba(255,255,255,.35);
	transition: all 0.5s;
}

.copyright a:hover{
	color: rgba(255,255,255,1);
}

.sub-banner .text-cols{
	color: #000000;
}

.sub-banner .img{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.sub-banner .img img{
	width: 100%;
	height: 100%;
}

.sub-banner .text-cols{
	top: 40%;
}

.about-name{
	width: 100%;
	height: auto;
	margin-bottom: 3vw;
	font-size: 3vw;
	font-family: figtree;
}

.about-name .name{
	color: #16308E;
}

.about-name .title{
	color: #00E5FF;
}

.about-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 6vw;
}

.about-box .name{
	width: 30%;
	font-size: 3.2rem;
}

.about-box .singe-page{
	width: 65%;
}

.cultures{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
}

.cultures .item{
	width: 100%;
	height: auto;
	position: relative;
}

.cultures .item:nth-child(2){
	transition-delay: 0.1s;
}

.cultures .item:nth-child(3){
	transition-delay: 0.2s;
}

.cultures .item .box{
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	position: relative;
	border-radius: 1vw;
	overflow: hidden;
	background: #ffffff;
}

.cultures .item .box .icon{
	width: 80px;
	height: 80px;
	position: absolute;
	left: 2.5vw;
	top: 10%;
	background: #16308E;
	border-radius: 50%;
	box-shadow: rgba(22, 48, 142, 0.15) 0px 0px 20px 1.64px inset, rgba(22, 48, 142, 0.13) 0px 0.839802px 0.503881px -0.3125px, rgba(22, 48, 142, 0.13) 0px 1.99048px 1.19429px -0.625px, rgba(22, 48, 142, 0.13) 0px 3.63084px 2.1785px -0.9375px, rgba(22, 48, 142, 0.13) 0px 6.03627px 3.62176px -1.25px, rgba(22, 48, 142, 0.13) 0px 9.74808px 5.84885px -1.5625px, rgba(22, 48, 142, 0.13) 0px 15.9566px 9.57398px -1.875px, rgba(22, 48, 142, 0.13) 0px 27.4762px 16.4857px -2.1875px, rgba(22, 48, 142, 0.13) 0px 50px 30px -2.5px;
}

.cultures .item .box .icon img{
	width: 40px;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cultures .item .box .info{
	width: auto;
	height: auto;
	position: absolute;
	left: 10%;
	top: 35%;
}

.cultures .item .box .desc{
	width: 80%;
	height: auto;
	left: 10%;
	position: absolute;
	top: 70%;
	line-height: 1.5;
	font-size: max(1vw, 1.8rem);
}

.cultures .item .box .info .name-cn{
	font-size: 3vw;
    font-weight: 500;
	color: #16308E;
}

.cultures .item .box .info .name-en{
	color: #16308E;
	font-family: Quicksand;
	text-transform: uppercase;
	font-size: 1.2vw;
	opacity: 0.5;
}

.cultures .item .box .bg-icon{
	width: 80%;
	height: auto;
	position: absolute;
	left: 60%;
	bottom: 0;
	opacity: 0.025;
}

.tech-list {
	width: 100%;
	display: flex;
	gap: 1vw;
}

.tech-swiper{
	margin: 0;
	overflow: inherit;
}

.tech-swiper .swiper-slide{
	width: 500px;
	height: 480px;
	border-radius: 1vw;
	overflow: hidden;
}

.tech-swiper .swiper-next,.tech-swiper .swiper-prev{
	width: 56px;
	height: 56px;
	line-height: 56px;
	text-align: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: rgba(0, 0, 0, .1);
	color: #0000008f;
	z-index: 2;
	cursor: pointer;
	font-size: 3.2rem;
	font-weight: bold;
	transition: all 0.35s;
}

.tech-swiper .swiper-next:hover,.tech-swiper .swiper-prev:hover{
	background: rgba(0, 0, 0, .05);
}

.tech-swiper .swiper-next.swiper-button-disabled, .tech-swiper .swiper-prev.swiper-button-disabled{
	transform: scale(0);
}

.tech-swiper .swiper-next{
	right: 2rem;
}

.tech-swiper .swiper-prev{
	left: 2rem;
}

.tech-swiper .swiper-slide .thum,.tech-swiper .swiper-slide .thum img,.tech-swiper .swiper-slide .box{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.tech-swiper .swiper-slide .box .info{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1.5vw;
    padding-bottom: 1vw;
	z-index: 2;
}

.tech-swiper .swiper-slide .box::after{
	width: 100%;
	height: 80%;
	position: absolute;
	left: 0;
	bottom: 0;
	pointer-events: none;
	content: '';
	background-image: linear-gradient(0deg, rgba(255,255,255,.85) 40%, #0000);
}

.tech-swiper .swiper-slide .box .info .number{
	font-family: figtree;
    margin-bottom: 1rem;
    display: block;
}

.tech-swiper .swiper-slide .box .info .name{
	font-size: max(2.4rem, 1.05vw);
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.tech-swiper .swiper-slide .box .info .desc{
	font-size: max(1.8rem, 0.85vw);
	line-height: 1.5;
	min-height: 81px;
}

.tech-list .item {
	flex: 1;
	height: 25vw;
	position: relative;
	overflow: hidden;
	border-radius: 1vw;
	transition: all 0.5s;
}

.tech-list .item .box {
	width: 100%;
	height: 100%;
}

.tech-list .item .box .icon {
	width: 3vw;
	height: auto;
	position: absolute;
	left: 2vw;
	top: 2vw;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 5px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(5px);
	z-index: 2;
	padding: 8px;
}

.tech-list .item .thum {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0.5vw;
	overflow: hidden;
	box-shadow: 0 35px 50px 0 rgba(14, 92, 169, 0.15);
}

.tech-list .item .thum::after {
	width: 100%;
	height: 70%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(0, 0, 0, .65), #0000);
}

.tech-list .item .thum img {
	position: absolute;
    width: 35vw;
    height: 25vw;
    left: 50%;
    top: 0%;
    background: #000;
    transform: translateX(-50%);
	max-width: none;
    transition: all 0.5s;
}

.tech-list .item.active {
	flex: 3;
}


.tech-list .item .box .info {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1.5vw;
	color: #fff;
	line-height: 1.6;
	opacity: 0;
	transform: translateY(25px);

}

.tech-list .item.active .box .info {
	opacity: 1;
	transform: translateY(0px);
	transition: all .5s ease 0.5s;
}

.tech-list .item .box .title {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	padding: 1.5vw;
	color: #fff;
	line-height: 1.3;
	transform: translateY(0px);
	width: 100%;
}

.tech-list .item .box .title p,.tech-list .item .box .number{
	font-family: figtree;
	font-size: 1.4rem;
    margin-bottom: 0.25vw;
    display: block;
}

.tech-list .item .box .title b{
	display: block;
	font-size: 2rem;
}

.tech-list .item.active .box .title {
	transform: translateY(-25px);
	opacity: 0;
	transition: all .4s;
}

.tech-list .item .box .info .name {
	width: 100%;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    line-height: 1.3;
    position: relative;
    font-weight: 500;
}

.tech-list .item .box .info .desc {
	width: 100%;
	line-height: 1.5;
	font-size: 1.8rem;
}


.js-wrap{
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	position: relative;
	justify-content: space-between;

}

.mb6{
	margin-bottom: 6vw;
}

.js-intro{
	width: 45%;
}

.js-intro .singe-page{
	font-size: max(1.8rem, 0.85vw);
}

.js-thum{
	width: 50%;
}

.tz-list{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1vw;
	margin-bottom: 12rem;
}

.tz-list .item{
	width: 100%;
	height: auto;
	position: relative;
}

.tz-list .item:nth-child(even){
	transition-delay: 0.2s;
}

.tz-list .item:nth-child(3n){
	transition-delay: 0.3s;
}

.tz-list .item .box{
	width: 100%;
    height: 100%;
    position: relative;
    background: #ffffff;
    padding: 1.5vw;
    border-radius: 1vw;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .1);
}

.tz-list .item .box .name{
	width: 100%;
	margin-bottom: 3vw;
	font-size: max(1.5vw, 2.8rem);
    font-weight: 500;
	line-height: 1.3;
	min-height: 7.3rem;
}

.tz-list .item .box .desc{
	width: 100%;
	height: auto;
	position: relative;
	line-height: 1.5;
	margin-bottom: 2vw;
	font-size: max(1.8rem, 0.85vw);
}

.tz-list .item .box .number{
	width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    opacity: 0.025;
    font-family: din;
    font-size: 10vw;
    bottom: -30%;
    line-height: 1;
    text-align: center;
    color: #16308E;
}

.oil-wrap {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.oil-wrap .list {
	width: calc(48% - 20px);
	position: relative;
}

.oil-wrap .thum {
	width: 52%;
	position: relative;
	border-radius: 1vw;
	overflow: hidden;
	/* box-shadow: 0 3px 12px -2px #0000000d, 0 12px 48px -10px #1366ec1c, inset 0 0 28px #ffffff80; */
	/* box-shadow: 0 35px 50px 0 rgba(14, 92, 169, 0.15); */
}

.oil-wrap .list .item {
	width: 100%;
	margin-bottom: 2rem;
}

.oil-wrap .list .item:last-child{
	margin-bottom: 0;
}

.oil-wrap .list .item .box {
	position: relative;
	align-items: center;
	transition: all 0.3s;
	/* box-shadow: 0 4px 12px -4px #00000008, 0 24px 32px -16px #1366ec14, inset 0 0 32px #ffffff80;*/
	border-radius: 0.5vw; 
	overflow: hidden;
	background: #f9f9f9;
	backdrop-filter: blur(40px);
	padding: 1.5vw;
	border: 1px solid rgba(0,0,0,.05);
}

.oil-wrap .list .item .box .top {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	justify-content: space-between;
}

.oil-wrap .list .item .box .top .name {
	width: calc(100% - 40px);
	font-size: max(2.4rem, 1.05vw);
    line-height: 40px;
    font-weight: 500;
}

.oil-wrap .list .item .box .plus {
	width: 24px;
	height: 24px;
	position: relative;
	background: #16308E;
	border-radius: 50%;
	box-shadow: rgba(22, 48, 142, 0.15) 0px 0px 20px 1.64px inset, rgba(22, 48, 142, 0.13) 0px 0.839802px 0.503881px -0.3125px, rgba(22, 48, 142, 0.13) 0px 1.99048px 1.19429px -0.625px, rgba(22, 48, 142, 0.13) 0px 3.63084px 2.1785px -0.9375px, rgba(22, 48, 142, 0.13) 0px 6.03627px 3.62176px -1.25px, rgba(22, 48, 142, 0.13) 0px 9.74808px 5.84885px -1.5625px, rgba(22, 48, 142, 0.13) 0px 15.9566px 9.57398px -1.875px, rgba(22, 48, 142, 0.13) 0px 27.4762px 16.4857px -2.1875px, rgba(22, 48, 142, 0.13) 0px 50px 30px -2.5px;
}



.oil-wrap .list .item .box .plus::after {
	width: 1px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	content: '';
	opacity: 1;
	transition: all 0.5s;
}

.oil-wrap .list .item.active .box .plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.oil-wrap .list .item .box .plus::before {
	width: 8px;
	height: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	content: '';
}

.oil-wrap .list .item .box .desc {
	line-height: 1.5;
	position: relative;
	color: #999;
	padding-top: 0.5vw;
}

.span1{
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	left: 0;
	top: -40px;
	pointer-events: none;
}

.oil-wrap .list .item .box .oil-content{
	position: relative;
	overflow: hidden;
	transition: height 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.need-warp .common-name{
	width: 100%;
	align-items: self-start;
}

.boxes.lc{
	padding-bottom: 0;
	overflow: hidden;
}

.need-warp .form-box{
	font-size: 1.7rem;
}

.need-warp .form-box{
	width: 100%;
}

.need-warp .flex{
	align-items: self-start;
}

.cp-top{
	width: 100%;
	margin-top: 0vw;
	display: flex;
	justify-content: space-between;
	margin-bottom: 48px;
	display: block;
}

.cp-top .common-name{
	margin-bottom: 50px;
}

.cp-left{
	width: 100%;
}

.cp-left .desc{
	line-height: 1.6;
    position: relative;
	font-size: max(1.8rem, 0.85vw);
}

.apps.app2{
	margin-bottom: 0;
}

.common-name.mx{
	margin-bottom: 3rem;
}

.cp-menu.s .thum{
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-115%);
    background: rgb(232, 232, 237);
    border-radius: 0.5vw;
	pointer-events: none;
	display: none;
}

.cp-top.fl{
	display: flex;
	align-items: flex-end;
}

.cp-top.fl .cp-left{
	width: 50%;
}

.cp-menu{
	width: auto;
	display: inline-flex;
	grid-template-columns: repeat(4, 1fr);
	gap: 1vw;
	background: rgb(232, 232, 237);
	padding: 6px;
	border-radius: 80px;
}

.cp-menu.three{
	grid-template-columns: repeat(3, 1fr);
}

.cp-menu .item{
	width: 100%;
	height: auto;
	position: relative;
}

.cp-menu .item a{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	cursor: pointer;
	line-height: 44px;
	font-size: 1.7rem;
}
.cp-menu .item a .thum img{
	aspect-ratio: 100 / 67;
}
.cp-menu .item a .thum img{
	object-fit: contain;

}
.cp-menu .item.active  a .name,.cp-menu .item:hover a .name{
	background: #16308E;
	color: #ffffff;
	box-shadow: rgba(22, 48, 142, 0.15) 0px 1.20932px 1.20932px -0.46875px, rgba(22, 48, 142, 0.15) 0px 2.86629px 2.86629px -0.9375px, rgba(22, 48, 142, 0.14) 0px 5.22841px 5.22841px -1.40625px, rgba(22, 48, 142, 0.14) 0px 8.69222px 8.69222px -1.875px, rgba(22, 48, 142, 0.13) 0px 14.0372px 14.0372px -2.34375px, rgba(22, 48, 142, 0.12) 0px 22.9776px 22.9776px -2.8125px, rgba(22, 48, 142, 0.1) 0px 39.5658px 39.5658px -3.28125px, rgba(22, 48, 142, 0.05) 0px 72px 72px -3.75px;
}

.cp-menu .item a .name{
	width: 100%;
    height: auto;
    position: relative;
    background: transparent;
    padding: 0 1.5vw;
    text-align: center;
    font-weight: 400;
    border-radius: 50px;
	word-break: keep-all;
	transition: all 0.5s;
	font-size: max(1.8rem, 0.85vw);
}

.cp-menu .item a .thum{
	opacity: 0;
}

.cp-menu .item.active a .thum{
	opacity: 1;
}

.cp-cards{
	width: 100%;
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5vw;
}

.cp-cards.active{
	display: grid;
}

.cp-cards .card{
	width: 100%;
	height: auto;
	position: relative;
}

.cp-cards .card a{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .05);
	border-radius: 0.5vw;
	overflow: hidden;
}

.related-news .list .item .name{
	font-size: 1.7rem;
	font-weight: 500;
}

.related-news .title{
	font-size: 2.8rem;
	font-weight: 500;
}

.related-news .list .item .date{
	opacity: 1;
	font-family: inter;
}

.n_date{
	font-family: inter;
	color: #000;
}

.detail_top .name{
	font-size: 3.6rem;
    line-height: 1.3;
    margin-bottom: 2vw;
    font-weight: 500;
}

.cp-cards .card a .thum img{
	height: 11vw;
	object-fit: contain;
	background: white;
	padding: 1vw;
}
.apps{
	width: 100%;
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
}

.apps.active{
	display: grid;
}

.pic-show{
	width: 100%;
	margin-bottom: 6vw;
}

.pic-show.active{
	display: none;
}

.apps .item{
	width: 100%;
	height: auto;
	position: relative;
}

.apps .item a{
	display: block;
	border-radius: 1vw;
    overflow: hidden;
}

.apps .item a .thum{
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 1vw;
}

.apps .item a .thum img{
	width: 100%;
	aspect-ratio: 5 / 3;
	transition: all 0.5s;
}

.apps .item a:hover .thum img{
	transform: scale(1.05);
}

.apps .item a:hover .info .name{
	color: #16308E;
}

.apps .item a .info{
	width: 100%;
	padding: 40px 0px;

}

.apps .item a .info .name{
	width: 100%;
	height: auto;
	position: relative;	
	font-size: 2.8rem;
	line-height: 1.35;
	font-weight: 500;
	margin-bottom: 1.6rem;
	font-size: max(2.8rem, 1.2vw);
}

.news-icon{
	width: 57px;
    height: 57px;
    position: absolute;
    top: 0;
    right: 0;
	transform: rotate(90deg);
    transform-origin: 100% 0% 0px;
    opacity: 1;
    will-change: transform;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
	display: none;
}

.news-icon .rotate{
	z-index: 1;
    flex: none;
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
	width: 36px;
	height: 36px;
	background: #16308E;
	color: #ffffff;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
}

.product-wrap .item a:hover .news-icon{
	transform: rotate(0deg);
}

.linear-bg{
	background: linear-gradient(180deg, #fcfcfc 0%, rgba(22, 48, 142, 0.2) 24.3243%, rgba(22, 48, 142, 0.2) 78.8288%, #fcfcfc 100%);
}

.bgs::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: url(../images/bg1.jpg) center center no-repeat;
	background-size: cover;
}

.application.bgs::before,.bgs.h100::before{
	height: 100vh;
}

.awards{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 3vw;
}

.awards .item{
	width: 32%;
	height: auto;
	position: relative;
	padding: 0 50px;
    text-align: center;
    line-height: 1.5;
	display: flex;
    align-items: center;
	font-size: max(1.7rem, 0.8vw);
}

.awards .item .txt{
	width: 100%;
}

.awards .item::before,.awards .item::after{
	width: 30px;
	height: auto;
	aspect-ratio: 100 / 157;
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.awards .item::before{
	left: 0;
	background: url(../images/leaf-left.png) no-repeat;
	background-size: contain;
}

.date2{
	display: none;
}

.awards .item::after{
	right: 0;
	background: url(../images/leaf-right.png) no-repeat;
	background-size: contain;
}

.mb6{
	margin-bottom: 120px;
}

.apps .item a .info .mark{
	width: 100%;
	height: auto;
	display: flex;
	gap: 0.5vw;
	margin-top: 40px;
}

.apps .item a .info .desc{
	line-height: 1.5;
}

.apps .item a .info .mark p{
	display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 0, 0, .05);
    font-size: 1.4rem;
    border-radius: 50px;
}

.tech-swiper .swiper-pagination{
	display: none;
}

#page{
	margin-top: 3vw;
}

.info-swiper{
	width: 100%;
	margin-bottom: 3vw;
}

.info-swiper .swiper-slide{
	display: flex;
	justify-content: space-between;
}

.info-swiper .swiper-slide .thum{
	width: 57%;
	height: auto;
	display: block;
	position: relative;
	border-radius: 1vw;
}

.info-swiper .swiper-slide .thum img{
	width: 100%;
	aspect-ratio: 100 / 56;
}

.info-swiper .swiper-slide .info{
	width: 42%;
	height: auto;
	position: relative;
	background: #F7F7F7;
	padding: 3vw;
	border-radius: 1vw;
	display: flex;
	flex-wrap: wrap;
	align-content: space-around;
}

.info-swiper .swiper-slide .info .date{
	width: 100%;
	height: auto;
	font-family: inter;
	font-size: 1.4rem;
}

.info-swiper .swiper-slide .info .name:hover{
	color: #16308E;
}

.info-swiper .swiper-slide .info .name{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 2vw;
	line-height: 1.3;
    font-weight: 500;
}

.cards-section{
	width: 100%;
	height: auto;
	position: relative;
	min-height: 100px;
}

.info-swiper .swiper-slide .info .desc{
	width: 100%;
    height: auto;
    position: relative;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    font-size: 1.8rem;
}

.info-swiper .swiper-pagination{
	width: auto;
    height: auto;
    background: rgba(255, 255, 255, .76);
    padding: 2px 7px;
    border-radius: 20px;
    left: 20px;
    bottom: 20px;
	transition: all 0.4s;
}

.info-swiper .swiper-pagination-bullet{
	border-radius: 10px;
	transition: all 0.4s;
}

.info-swiper .swiper-pagination-bullet-active{
	width: 25px;
	background: #16308E;
}

.address {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 4rem;
}

.address .item {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	margin-bottom: 1.5rem;
	font-size: 1.7rem;
	font-size: max(1.7rem, 0.75vw);
}

.address .item .icon {
	width: 30px;
	height: auto;
	line-height: 25px;
	font-size: 1.8rem;
}

.address .item .txt {
	width: calc(100% - 30px);
	line-height: 25px;
}

.address .item:first-child .txt{
	font-family: figtree;
}

.con-cols{
	width: 35%;
}

.we-chat {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 5rem;
}

.we-chat .we-box {
	height: auto;
	position: relative;
	width: 120px;
	overflow: hidden;
}

.we-chat .t,
.we-chat .r,
.we-chat .b,
.we-chat .l {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.we-chat .t::before,
.we-chat .r::before,
.we-chat .b::before,
.we-chat .l::before {
	width: 10px;
	height: 1px;
	position: absolute;
	content: '';
	background: rgba(22, 48, 142, 0.2);
}

.we-chat .t::before {
	left: 0;
	top: 0;
}

.we-chat .r::before {
	right: 0;
	top: 0;
}

.we-chat .b::before {
	right: 0;
	bottom: 0;
}

.we-chat .l::before {
	left: 0;
	bottom: 0;
}

.we-chat .t::after,
.we-chat .r::after,
.we-chat .l::after,
.we-chat .b::after {
	width: 1px;
	height: 10px;
	position: absolute;
	content: '';
	background: rgba(22, 48, 142, 0.2);
}

.we-chat .t::after {
	left: 0;
	top: 0;
}

.we-chat .r::after {
	right: 0;
	top: 0;
}

.we-chat .b::after {
	right: 0;
	bottom: 0;
}

.we-chat .l::after {
	left: 0;
	bottom: 0;
}

.we-chat .img {
	width: 100%;
	height: auto;
	position: relative;
	padding: 5px;
}

.we-chat .text {
	width: 120px;
	height: auto;
	position: relative;
	text-align: center;
	
	font-size: 1.4rem;
	line-height: 1.7;
    margin-top: 0.5vw;
}

.we-chat .we-box::after {
	width: 100%;
	height: 25px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(22, 48, 142, 0.4), rgba(22, 48, 142, 0));
	animation: imgAnimate 2s ease infinite;
}

@-webkit-keyframes imgAnimate {
	0% {
		transform: translateY(-25px);
	}

	50%,
	100% {
		transform: translateY(120px);
	}
}

.contact-content{
	width: 60%;
}

.contact .we-chat{
	display: flex;
	gap: 2vw;
}

.contact-content .form .row textarea{
	min-height: 192px;
}

.con-name{
	font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
    position: relative;
	font-size: max(2.8rem, 1.4vw);
}

.contact{
	padding-top: 15vw;
	background: url(../images/bg2.jpg) no-repeat;
	background-size: cover;
}

.form{
	padding-bottom: 30px;
}

.news_detail::before{
	display: none;
}

.news_detail{
	padding-top: 200px;
}

.pb0{
	padding-bottom: 0;
}

.pt0{
	padding-top: 0;
}

.mb0{
	padding-bottom: 0;
}

.sub-banner .text-cols{
	width: 80%;
}

.sub-banner .desc{
	font-size: 1.2vw;
	opacity: 0;
	margin-top: 1.5rem;
	font-weight: 500;
	width: 60%;
}

.sub-banner .desc b{
	display: block;
	width: 100%;
	font-size: 1.5vw;
    margin-bottom: 0.15vw;
    font-weight: 400;
}

.counts{
	width: 40%;
	display: flex;
	flex-wrap: wrap;
	margin-top: 2vw;

}

.counts .li{
	width: 33.33%;
	height: auto;
	position: relative;
	margin-bottom: 1.5vw;
}

.counts .li:nth-child(n+3){
	margin-bottom: 0;
}

.counts .li .sz{
	font-family: din;
	font-size: 2.25vw;
	margin-bottom: 0.25vw;
}

.counts .li .mz{
	font-size: 1.4rem;
	padding-right: 15%;
    line-height: 1.6;
	font-weight: 350;
}

.sub-banner{
	height: 35vw;
}

.sub-banner .txt.cn{
	line-height: 1.2;
	opacity: 0;
	transform: translateY(15px);
	font-size: 4vw;
    font-weight: 500;
}

.temp6{
	height: 6vw;
	position: relative;
}

.temp6 span{
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: -3vw;
	display: block;
}

.honor{
	padding-top: 0;
}

.sub-banner .text-cols .mr-btns{
	margin-top: 5rem;
}

.form.even .row{
	width: 32%;
}

.form.even .row.full{
	width: 100%;
}

.file{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

/* eng */

.eng .product-wrap .item a .info .name .tips{
	min-height: 5vw;
    font-size: 1vw;
    line-height: 1.5;
}

.eng .product-wrap .item a .info .desc{
	font-size: 0.85vw;
}

.eng .app-list .item .top .desc{
	height: 5vw;
    font-size: 0.85vw;
}

.eng .js-wrap{
	align-items: center;
}

.eng .common-name .text{
	font-size: 3vw;
}

.eng .about .w1400{
	align-items: center;
}

.eng .product-wrap .item a .info{
	top: 50%;
	transform: translateY(-50%);
}


.eng .banner-swiper .slogan .title,.eng .sub-banner .txt.cn{
	font-family: MontserratBold;
	text-transform: capitalize;
}

.eng .f-cols .name,.eng .common-name .text{
	font-family: MontserratBold;
	text-transform: capitalize;
}

.eng nav ul li .first-lab{
	font-weight: 800;
}

.eng .banner-swiper .slogan{
	width: 90%;
	left: 5%;
}

.eng .banner-swiper .slogan .title{
	font-size: 4.5vw;
	line-height: 1.1;
}

.eng .mr-btns a .txt{
	width: calc(100% - 60px);
	left: 10px;
}

.eng nav ul li .second-lab{
	font-size: 0.85vw;
}

.eng nav ul li .second-lab a{
	line-height: 1.2;
}

.eng .f-cols{
	width: 70%;
}

.eng .f-cols .name{
	margin-bottom: 0.5vw;
}

.eng .footer-nav ul li .row:first-child a{
	font-weight: 600;
}

.eng .cultures .item .box{
	aspect-ratio: 4 / 4.5;
}

.eng .cultures .item .box .desc{
	font-size: 1.2vw;
}

.eng .cultures .item .box .info{
	top: 35%;
}

.eng .cultures .item .box .info .name-cn{
	font-family: MontserratBold;
    text-transform: capitalize;
	font-size: 3.5vw;
}

.eng nav ul li .first-lab{
	font-size: 1vw;
}

.eng .about-info{
	font-weight: 800;
	font-size: 1.8vw;
}

.eng .about-desc{
	font-size: 1vw;
}

.eng .data-list .item .box .txt{
	font-size: 0.95vw;
}

.eng .app-list .item .links{
	gap: 0.5vw;
}

.eng .app-list .item .links a{
	display: flex;
	align-items: center;
	font-size: 0.8vw;
    padding: 10px 10px;
	justify-content: center;
}

.eng .footer-nav ul li .row:first-child{
	font-size: 1vw;
}

.eng .news-list .item a .info .cons .name{
	font-weight: 800;
	margin-bottom: 0;
	font-size: 1.5vw;
}

.footer-nav ul li .row{
	font-size: 0.85vw;
}

.eng .news-list .item a .info .cons .desc{
	display: none;
}

.common-name.n1{
	margin-bottom: 2rem;
}

.eng .about-info.i1{
	margin-bottom: 4rem;
}

.eng .product-wrap .item a .info .name .title{
	font-size: 2vw;
    font-weight: 800;
    line-height: 1.1;
}

.eng .product-wrap .item{
	height: 27vw;
}

.eng .app-list .item .top .name{
	font-weight: bold;
}

.eng .tz-list .item .box{
	padding: 2vw;
}

.eng .langue .lan-top{
	font-size: 0.8vw;
}

.eng .sub-banner .txt.cn{
	font-size: 4vw;
}

.eng .sub-banner .desc{
	font-size: 1.3vw;
}

.eng .common-name .icon{
	display: none;
}

.eng .js-intro .singe-page{
	font-size: 1vw;
}

.eng .tz-list{
	display: flex;
  	flex-wrap: wrap;
	gap: 0;
	justify-content: space-between;
}

.eng .tz-list .item{
	flex: 0 0 32%;
}

.eng .tz-list .item:nth-child(n+4){
	flex: 0 0 49%;
	margin-top: 1.5vw;
}

.eng .tz-list .item .box .name{
	font-weight: bold;
	margin-bottom: 1vw;
	font-size: 1.5vw;
}

.eng .tz-list .item .box .desc{
	font-size: 1vw;
}

.eng .oil-wrap .list .item .box .top .name{
	font-size: 1.2vw;
	font-weight: bold;
}

.eng .awards .item{
	font-size: 0.9vw;
}

.eng .oil-wrap .list .item .box .desc{
	font-size: 0.9vw;
}

.eng .tech-swiper .swiper-slide .box .info .name{
	font-size: 1vw;
	font-weight: bold;
}

.eng .tech-swiper .swiper-slide .box .info .desc{
	font-size: 0.75vw;
}

.eng .cp-menu .item a{
	font-size: 0.9vw;
}

.eng .address .item{
	font-size: 0.8vw;
}

.eng .cp-menu .item a{
	font-size: 1vw;
}

.eng .cp-menu .item{
	width: auto;
}

.cp-top .desc.d1{
	line-height: 1.5;
    margin-bottom: 4rem;
}

.eng .apps .item a .info .name{
	font-weight: bold;
	font-size: 1.5vw;
	text-align: center;
}



.eng .apps .item a .info .desc{
	font-size: 0.85vw;
}

.eng .info-swiper .swiper-slide .info .desc{
	display: none;
}

.eng .news-list .item a .info .date .day{
	font-size: 3vw;
}

.eng .detail_top .name{
	font-size: 1.75vw;
}

.eng .info-swiper .swiper-slide .info .name{
	font-size: 1.6vw;
	font-weight: bold;
}

.eng .detail_top .name{
	font-weight: bold;
}

.eng .pn_news .item p{
	width: 90px;
}

.eng .pn_news .item a{
	width: calc(100% - 90px);
}

.eng .name2 .tips{
	line-height: 1.3;
}

.eng .con-name{
	font-weight: 800;
	font-size: 1.5vw;
}

.eng .error-tips{
	font-size: 1rem;
}

.eng .singe-page{
	line-height: 1.7;
}

@media screen and (max-width: 1600px) {
	
	.product-wrap .item a .info .desc p::after{
		top: 7.5px;
	}
}

@media screen and (max-width: 1440px) {
	
	.product-wrap .item a .info .desc{
		-webkit-line-clamp: 4;
	}
	.product-wrap .item{
		height: 28vw;
	}
	.awards .item{
		padding: 0 30px;
	}
	
	.eng .about-cols{
		width: 45%;
	}
	.eng .cultures .item .box {
		aspect-ratio: 4 / 5;
	}

	.name2 .tips{
		font-size: max(1.2rem, 0.7vw);
	}

	.eng .app-list .item .top .desc{
		font-size: 1vw;
	}
	.eng .product-wrap .item a .info .name .title{
		font-size: 1.5vw;
		-webkit-line-clamp: 3;
	}
	
}

@media screen and (max-width: 1366px) {
	.product-wrap .item a .thum2{
		width: 26vw;
	}
	.info-swiper .swiper-slide .thum img,.news-list .item a .thum img{
		aspect-ratio: 100 / 60;
	}

	.about-wrap{
		padding-top: 5rem;
	}

	.product-wrap .item a .info .name .tips{
		font-size: 1.7rem;
	}

	.product-wrap .item a .info .name .title{
		font-size: 2.8rem;
	}


	.app-list .item .links a{
		padding: 8px 0;
		font-size: 1.4rem;
	}
	.app-list .item .top .name{
		font-size: 2.5vw;
	}
	.info-swiper .swiper-slide .info .desc,.news-list .item a .info .cons .desc{
		-webkit-line-clamp: 2;
	}
	.application{
		padding-top: 5rem;
	}
	.about-content{
		padding-right: 5%;
	}

	.about-flex{
		padding-left: 5%;
	}

	.product-wrap .item{
		height: 30vw;
	}

	.oil-wrap .list .item .box .top .name{
		font-size: 2rem;
	}

	.name2{
		left: 2vw;
		bottom: 2vw;
		width: 25vw;
	}

	.product-wrap .item a .info{
		width: 26vw;
	}

	.w1400{
		width: 90%;
	}
	.sub-banner .text-cols{
		width: 90%;
		left: 5%;
	}

	.data-list .item .box .txt{
		font-size: 1vw;
	}
	.data-list .item .count{
		font-size: 3.2vw;
	}

	.cultures .item .box .desc{
		font-size: 1.6rem;
		bottom: 8%;
	}

	.cultures .item .box{
		aspect-ratio: 4 / 5;
	}

	.cultures .item .box .info{
		top: 40%;
	}
	.product-wrap .item a .info .desc{
		-webkit-line-clamp: 4;
	}

	.eng .product-wrap .item a .info .desc{
		-webkit-line-clamp: 3;
        line-height: 1.6;
	}

	.eng .tz-list .item .box .name{
		font-size: 2.4rem;
	}

	.eng .oil-wrap .list .item .box .top .name{
		font-size: 1.6rem;
	}

	.eng .tech-swiper .swiper-slide .box .info .desc{
		font-size: 1.4rem;
	}

	.eng .common-name .text{
		font-size: 4.5rem;
	}
}

@media screen and (max-width: 1200px) {
	.about-wrap.pt6{
		padding: 6vw 0;
	}
	.data-list .item .box .txt {
        font-size: 1rem;
    }

	header{
		padding: 2vw 5%;
	}
	.product-wrap .item a .info .desc{
		-webkit-line-clamp: 3;
	}
}

@media screen and (max-width: 1024px) {
	nav ul li .first-lab{
		font-size: 1.4rem;
	}
	
}


@media screen and (max-width: 768px) {
	.bread-crumb{
		display: block;
		right: 5%;
	}
	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);
		margin-right: 0%;
		z-index: 10;
		padding-top: 25px;
		display: block;
		background: #f9f9f9;
		clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
		overflow-y: auto;
		padding-bottom: 25px;
		border-radius: 0;
	}

	nav ul{
		flex-wrap: wrap;
		width: 100%;
        padding: 0;
		display: block;
		padding: 0 5vw;
	}
	nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
        padding: 0vw 0px;
        width: 100%;
		display: flex;
		align-items: self-start;
		line-height: 30px;
    }
	nav ul li .first-lab {
		font-size: 2rem;
        width: 100px;
        font-weight: 500;
    }
	header{
		height: 60px;
		padding: 0 5%;
		background: #fff;
		position: fixed;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
	}
	nav ul li .second-lab{
		width: calc(100% - 100px);
		position: relative;
		backdrop-filter: blur(0px);
		max-height: none;
		background: transparent;
		padding: 15px 0px;
		pointer-events: auto;
		display: flex;
		gap:2vw 3vw;
        flex-wrap: wrap;
	}

	nav ul li .second-lab a{
		opacity: 1;
    	transform: translateY(0%);
		padding: 0;
		font-size: 2rem;
		padding: 0px 0px;
        text-align: left;
	}
	
	.logo {
		width: 90px;
	}

	.bread-crumb span{
		background-color: #16308e;
	}

	.langue .lan-top .txt{
		color: #3e3e3e;
	}
	.nav-config{
		right: 80px;
		padding: 0;
		background: transparent;
	}
	.langue .icon img:nth-child(2){
		opacity: 1;
	}
	.langue .icon img:nth-child(1){
		opacity: 0;
	}
	.langue .icon{
		width: 24px;
		height: 24px;
	}
	.langue .lan-top{
		gap: 2vw;
		background: transparent;
	}
	.langue .list a{
		line-height: 20px;
	}
	.langue .list{
		width: 100px;
		margin-left: -50px;
		font-size: 1.4rem;
	}
	.blur-container{
		display: none;
	}
	.banner-swiper{
		height: 70vw;
		margin-top: 60px;
		position: relative;
	}
	.banner-swiper video{
		height: 100%;
	}
	.scroll-down{
		display: none;
	}
	.banner-swiper .slogan{
		width: 90%;
		left: 5%;
	}
	.banner-swiper .slogan .title{
		font-size: 10vw;
	}
	.about-wrap{
		margin-top: 0;
	}
	.product-wrap .item.active a .thum {
		opacity: 1;
	}
	.boxes{
		padding: 15vw 0;
	}
	.about-wrap.pt6 {
        padding: 15vw 0;
		padding-bottom: 0;
    }
	.about-flex{
		padding:0% 5%;
		flex-wrap: wrap;
	}
	.about-cols {
		width: 100%;
	}
	.common-name .icon {
		width: 14px;
	}
	.common-name .text {
        font-size: 3.2rem;
		line-height: 1.3;
    }
	.common-name{
		gap: 2vw;
		margin-bottom: 5vw;
	}
	.about-info{
		font-size: 2rem;
		margin-bottom: 5vw;
	}
	.about-content {
		width: 100%;
		position: relative;
		padding: 10vw 0px;
		padding-right: 0%;
		padding-left: 0%;
		padding-top: 20vw;
	}
	.data-list .item{
		width: 40%;
	}
	.data-list .item .count{
		font-size: 9vw;
	}
	.data-list .item .box .txt br{
		
	}
	.data-list .item .box .txt{
		font-size: 3vw;
		padding: 0 0%;
	}
	.data-list .item:nth-child(3){
		width: 40%;
		top: -15%;
	}
	.data-list .item:nth-child(2){
		width: 55%;
        left: 62%;
        top: 45%;
	}
	.data-list{
		aspect-ratio: 4 / 5;
	}
	.data-list .item:nth-child(5) {
		right: 0%;
		bottom: -10%;
		width: 50%;
	}
	.data-list .item .box .inner{
		padding: 0 5%;
	}
	.svg-list{
		opacity: 0;
	}
	.product-wrap{
		flex-wrap: wrap;
		display: block;
	}
	.news-icon{
		display: none;
	}
	.product-wrap .item a .info{
		display: none;
	}
	.product-wrap .item.active .name2 {
		opacity: 1;
	}
	.product-wrap .item a .thum,.product-wrap .item.active a .thum{
		position: relative;
		width: 100%;
		left: 0;
		top: 0%;
		transform: translateY(0%);
	}
	.product-wrap .item{
		height: auto;
		margin-bottom: 5vw;
		border-radius: 3vw;
		
		box-shadow: none;
	}

	.product-wrap .item:last-child{
		margin-bottom: 0;
	}
	.product-wrap .item a{
		padding: 10vw 5vw;
	}
	.name2{
		width: 100%;
		position: relative;
		left: 0;
		bottom: 0;
	}
	.name2 .title{
		font-size: 2rem;
		margin-bottom: 3.5vw;
	}
	.product-wrap{
		margin-bottom: 15vw;
	}

	.app-list{
		grid-template-columns: repeat(1, 1fr);
    	gap: 5vw;
		margin-bottom: 15vw;
	}

	.app-list .item{
		box-shadow: none;
		border-radius: 3vw;
		padding: 10vw 5vw;
	}

	.app-list .item .top{
		flex-wrap: wrap;
	}
	.app-list .item .top .name{
		width: 100%;
		margin-bottom: 3vw;
		font-size: 7vw;
	}
	.app-list .item .top .desc{
		width: 100%;
		-webkit-line-clamp: 5;
		height: auto;
        font-size: 1.4rem;
	}

	.app-list .item .links a{
		font-size: 1.4rem;
		padding: 6px 0;
	}
	.app-list .item .thum{
		margin-bottom: 5vw;
	}

	.name-top .mr-btns{
		display: none;
	}

	/* .mr-btns {
		width: 120px;
		height: 40px;
	}
	.mr-btns a::before {
		width: 30px;
		height: 30px;
	}
	.mr-btns a .icon{
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	.mr-btns a .txt {
		width: auto;
		word-break: keep-all;
	} */
	.name-top{
		align-items: center;
		margin-bottom: 5vw;
	}

	.news-list .item a{
		flex-wrap: wrap;
	}

	.news-list .item a .thum,.news-list .item a .info{
		width: 100%;
	}
	.news-list .item a .info .date{
		width: 80px;
		display: none;
	}
	.news-list .item a .info .cons{
		width: calc(100% - 50px);
	}
	.news-list .item a .info .date .day{
		font-size: 1.4rem;
	}
	.news-list .item a .info .date .time{
		font-size: 1.4rem;
	}
	.news-list .item a .info .cons .desc{
		display: none;
	}
	.news-list .item a .info .cons .name{
		margin-bottom: 0;
	}
	.date2{
		display: block;
		font-family: inter;
		font-size: 1.4rem;
		width: 50px;
		line-height: 1.5;
	}
	.news-list .item a .info{
		padding: 5vw 3vw;
		align-items: flex-start;
	}
	.news-list .item a .info .cons .name{
		font-size: 2rem;
	}
	.news-list .item{
		margin-bottom: 5vw;
	}
	.footer-nav,.social-icons .item .element{
		display: none;
	}
	.social-icons .item .img{
		position: relative;
		opacity: 1;
		left: 0;
		transform: translateX(0%) translateY(0%);
		width: 100px;
	}
	.social-icons .item{
		width: 100%;
		height: auto;
		display: flex;
        justify-content: center;
	}
	.f-cols{
		width: 100%;
		text-align: center;
		margin-bottom: 10vw;
	}
	.footer-top{
		flex-wrap: wrap;
		border-bottom: none;
	}
	.f-cols .name {
		font-size: 9vw;
        font-weight: 500;
        margin-bottom: 3vw;
	}
	.f-cols .desc{
		font-size: 4.5vw;
        font-weight: 400;
        color: #fff;
        opacity: 1;
	}
	.f-cols .desc span{
		display: block;
		padding: 0;
		width: 100%;
		height: 1px;
	}
	.footer{
		padding-top: 15vw;
	}
	.social-icons{
		width: 100%;
	}
	.w1400{
		width: 90%;
	}
	.copyright{
		padding-bottom: 5vw;
		font-size: 1.2rem;
		padding-top: 5vw;
        margin-top: 10vw;
		line-height: 2;
	}
	.app-list .item .links{
		gap: 2.5vw;
	}
	nav ul li .first-lab a{
		color: #3e3e3e;
		padding: 15px 0px;
		text-align: left;
	}
	nav ul li .first-lab a p{
		text-align: left;
	}
	nav ul li .first-lab a p:last-child{
		top: 15px;
	}
	nav ul li:hover .second-lab {
		pointer-events: auto;
		max-height: none;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	nav ul li .second-lab::after{
		display: none;
	}
	.sub-banner{
		margin-top: 60px;
		height: 70vw;
	}
	.sub-banner .txt{
		font-size: 7vw;
	}
	.sub-banner .desc{
		font-size: 3.5vw;
		line-height: 1.4;
	}
	.sub-banner .text-cols {
		width: 90%;
		top: auto;
        bottom: 30%;
	}
	.about-thum{
		width: 100%;
	}
	.about-thum .thum{
		border-radius: 3vw;
	}
	.boxes.about{
		padding-bottom: 0;
	}
	.cultures{
		grid-template-columns: repeat(1, 1fr);
    	gap: 5vw;
	}

	.cultures .item .box{
		border-radius: 3vw;
		aspect-ratio: 5 / 4;
	}

	.cultures .item .box .icon{
		left: 10%;
		width: 60px;
		height: 60px;
	}

	.cultures .item .box .icon img{
		width: 30px;
	}

	.sub-banner .text-cols .mr-btns{
		display: none;
	}

	.cultures .item .box .info .name-cn{
		font-size: 8vw;
	}
	.cultures .item .box .info .name-en{
		font-size: 3.5vw;
	}

	.js-intro,.js-thum{
		width: 100%;
	}
	.js-wrap{
		flex-wrap: wrap;
		margin-bottom: 0;
	}
	.singe-page{
		line-height: 1.7;
	}
	.js-thum{
		width: 80%;
		margin-left: 10%;
		margin-top: 5vw;
	}
	.boxes.pb0{
		padding-bottom: 0;
	}
	.tz-list{
		grid-template-columns: repeat(1, 1fr);
    	gap: 5vw;
		margin-bottom: 15vw;
	}
	.tz-list .item .box{
		padding: 7.5vw 5vw;
		border-radius: 2vw;
	}
	.tz-list .item .box .name{
		font-size: 1.8rem;
		margin-bottom: 5vw;
		min-height: auto;
	}
	.tz-list .item .box .desc{
		margin-bottom: 0;
	}
	.oil-wrap{
		flex-wrap: wrap;
	}
	.oil-wrap .thum{
		width: 100%;
		border-radius: 2vw;
        margin-bottom: 5vw;
	}
	.oil-wrap .list{
		width: 100%;
	}
	.oil-wrap .list .item .box {
        padding: 3vw;
        border-radius: 2vw;
    }
	.oil-wrap .list .item{
		margin-bottom: 5vw;
	}
	.awards{
		flex-wrap: wrap;
		display: block;
		margin-top: 10vw;
	}
	.awards .item{
		width: 100%;
		max-width: 100%;
		padding: 0 25px;
		margin-bottom: 5vw;
		font-size: 1.6rem;
	}
	.awards .item::before, .awards .item::after{
		width: 20px;
	}
	.boxes.lc{
		padding-top: 0;
		padding-bottom: 0;
	}
	.tech-list{
		flex-wrap: wrap;
		gap: 0vw;
		justify-content: space-between;
	}
	.tech-list .item{
		flex: none;
		width: 48%;
		height: 60vw;
		margin-bottom: 3.5vw;
		border-radius: 2vw;
	}
	.tech-list .item .thum img{
		width: 100%;
		height: 100%;
		left: 0;
		transform: translateX(0%);
	}
	.tech-list .item .box .title{
		display: none;
	}
	.tech-list .item .box .info{
		opacity: 1;
		padding: 3vw;
		transform: translateY(0px);
	}
	.tech-list .item .box .info .desc{
		font-size: 1.2rem;
	}
	.tech-list .item .box .info .name {
		margin-bottom: 2vw;
		font-size: 4vw;
	}
	.need-warp .common-name{
		width: 100%;
	}
	.need-warp .form-box {
		width: 100%;
	}
	.form .row{
		width: 100%;
		margin-bottom: 2vw;
		border-radius: 2vw;
        overflow: hidden;
	}
	.form-submit{
		font-size: 1.4rem;
		border-radius: 2vw;
	}
	.tech-list .item.active {
		flex: none;
	}
	.cp-top{
		flex-wrap: wrap;
		margin-bottom: 7.5vw;
	}
	.cp-left{
		width: 100%;
	}
	.cp-menu{
		width: 100%;
		grid-template-columns: repeat(3, 1fr);
		gap: 3vw 2vw;
		max-width: 100%;
		padding: 0;
        flex-wrap: wrap;
        border-radius: 0;
        background: transparent;
	}
	.cp-menu .item{
		width: auto;
	}
	.cp-menu .item a .name{
		padding: 1.5vw 2.5vw;
	}
	.cp-menu .item a .thum{
		display: none;
	}
	.cp-left .desc {
		line-height: 1.5;
		position: relative;
		margin-top: 3vw;
		font-size: 1.6rem;
		margin-bottom: 5vw;
	}
	.cp-menu .item a .name{
		padding: 1.5vw 3.5vw;
		background: rgb(232, 232, 237);
	}
	.cp-cards{
		grid-template-columns: repeat(2, 1fr);
		gap: 3.5vw;
	}
	.cp-cards .card a .thum{
		border-radius: 2vw;
	}
	.cp-top .common-name {
		margin-bottom: 5vw;
	}
	.apps {
		grid-template-columns: repeat(1, 1fr);
		gap: 5vw;
		margin-bottom: 15vw;
	}
	.apps .item a .info{
		padding: 5vw 3.5vw;
	}
	.apps .item a .info .name{
		font-size: 1.6rem;
		margin-bottom: 2vw;
	}
	.apps .item a .info .mark{
		margin-top: 5vw;
	}

	.apps .item a .info .mark p{
		padding: 5px 10px;
		font-size: 1rem;
	}

	.apps .item a .info .desc{
		font-size: 1.4rem;
	}

	.apps .item a{
		border-radius: 2vw;
	}

	.info-swiper .swiper-slide{
		flex-wrap: wrap;
	}
	.info-swiper .swiper-slide .thum,.info-swiper .swiper-slide .info{
		width: 100%;
	}
	.info-swiper .swiper-slide .info .desc{
		-webkit-line-clamp: 2;
		margin: 3vw 0px 5vw;
	}
	.info-swiper .swiper-pagination{
		top: 20px;
		bottom: auto;
		height: auto;
        display: flex;
		padding: 5px;
	}
	.info-swiper .swiper-pagination-bullet-active{
		width: 15px;
	}
	.info-swiper .swiper-pagination-bullet{
		width: 5px;
		height: 5px;
		margin: 0px 2px !important;
	}
	.info-swiper .swiper-slide .info{
		padding: 5vw 3vw;
		padding-bottom: 8vw;
	}
	.info-swiper{
		margin-bottom: 5vw;
	}
	#page {
		margin-top: 7vw;
	}
	.news_detail {
		padding-top: 100px;
	}
	.detail_box{
		padding: 0;
	}
	.con-cols,.contact-content{
		width: 100%;
	}
	.contact{
		padding-top: 30vw;
	}
	.address .item{
		margin-bottom: 3vw;
	}
	.we-chat .text{
		font-size: 1.2rem;
	}
	.con-cols{
		margin-bottom: 15vw;
	}
	.con-name{
		margin-bottom: 5vw;
	}
	.form .row>input, .form .row textarea, .form .row>select{
		padding: 15px 12px;
		border-radius: 2vw;
		border-color: rgba(0, 0, 0, .1);
	}
	.form.even .row {
		width: 100%;
	}
	.form .row{
		margin-bottom: 3vw;
	}
	.backTop{
		display: none;
	}
	.cp-cards .card a .thum img{
		height: 22vw;
	}
	.about-desc{
		font-size: 1.6rem;
	}
	.product-wrap .item a .thum2{
		display: none;
	}
	.social-icons .item .chat-content{
		width: 100%;
		position: relative;
		left: 0;
		opacity: 1;
		background: transparent;
		transform: translateX(0%) translateY(0%);
		justify-content: center;
		gap: 4vw;
		box-shadow: none;
	}
	.social-icons .item .chat-content::after{
		display: none;
	}
	.social-icons .item .img p{
		opacity: 1;
		color: #fff;
		font-size: 1.4rem;
		margin-bottom: 0;
        margin-top: 10px;
	}
	nav ul li .second-lab a p{
		color: rgba(0, 0, 0, 1);
	}
	.sub-banner .txt.cn{
		font-size: 9vw;
	}
	.sub-banner .desc{
		font-size: 1.6rem;
        margin-top: 0.5rem;
        width: 100%;
	}
	.cultures .item .box .icon,.cultures .item .box .info{
		left: 5%;
	}
	.cultures .item .box .desc{
		width: 90%;
        left: 5%;
	}
	.cultures .item .box .icon{
		top: 5%;
	}
	.cultures .item .box .info{
		top: 35%;
	}

	.js-intro .singe-page{
		font-size: 1.6rem;
	}
	.form{
		padding-bottom: 20px;
	}
	.oil-wrap .thum img{
		aspect-ratio:  5 / 3;
	}
	.cp-top.fl .cp-left {
		width: 100%;
	}
	.cp-menu .item a{
		line-height: 25px;
		font-size: 1.6rem;
	}
	.need-warp .common-name .icon{
		position: relative;
        top: 7px;
	}
	.info-swiper .swiper-slide .info .name{
		font-size: 2rem;
	}
	.info-swiper .swiper-slide .info .date{
		margin-bottom: 10px;
	}
	.info-swiper .swiper-slide .info .desc{
		font-size: 1.6rem;
		margin-bottom: 7.5vw;
	}
	.detail_top .name{
		font-size: 2.8rem;
		margin-bottom: 5vw;
	}
	.pd-mbx{
		margin-bottom: 5vw;
	}
	.detail_top{
		margin-bottom: 10vw;
	}
	.related-news .list .item{
		padding-bottom: 5vw;
		margin-bottom: 5vw;
	}
	.related-news .title{
		margin-bottom: 7.5vw;
	}
	.pn_news .item p{
		opacity: 1;
	}
	.pn_news .item{
		font-size: 1.6rem;
	}
	.tech-swiper .swiper-slide{
		width: 90%;
		height: auto;
		aspect-ratio: 4 / 5;
		border-radius: 2vw;
	}
	.tech-swiper .swiper-next, .tech-swiper .swiper-prev{
		display: none;
	}
	.tech-swiper .swiper-pagination{
		display: block;
		bottom: 0;
	}
	.tech-swiper .swiper-pagination-bullet{
		width: 6px;
		height: 6px;
		margin: 0px 3px !important;
	}
	.tech-swiper .swiper-pagination-bullet-active{
		background: #16308e;
	}

	.tech-swiper{
		padding-bottom: 3rem;
	}
	.tech-swiper .swiper-slide .box .info{
		padding: 7vw;
        padding-bottom: 8vw;
	}
	.tech-swiper .swiper-slide .box .info .desc{
		font-size: 1.6rem;
	}
	.tech-swiper .swiper-slide .box .info .name{
		font-size: 2rem;
	}
	.tech-swiper .swiper-slide .box .info .number{
		font-size: 1.4rem;
	}
	.eng .about-cols{
		width: 100%;
	}
	.eng .about-info{
		font-size: 2rem;
		line-height: 1.4;
	}
	.eng .about-desc{
		margin-bottom: 10vw;
		font-size: 1.6rem;
	}
	.eng .product-wrap .item{
		height: auto;
	}
	.eng .name2 .title{
		font-weight: bold;
	}
	.eng .app-list .item .links{
		display: flex;
		flex-wrap: wrap;
		gap: 3.5vw;
	}
	.eng .news-list .item a .info .cons .name{
		font-size: 1.8rem;
	}
	.eng .f-cols{
		width: 100%;
	}
	.eng .f-cols .name {
		font-size: 7vw;
		margin-bottom: 5vw;
	}
	.eng nav ul li{
		flex-wrap: wrap;
	}
	.eng nav ul li .first-lab{
		width: 100%;
		font-size: 2.4rem;
	}
	.eng nav ul li .second-lab{
		width: 100%;
		padding-top: 0;
	}
	.eng nav ul li .first-lab a{
		padding: 3vw 0px;
	}
	.eng nav ul li .second-lab a{
		font-size: 1.8rem;
	}
	.eng .sub-banner .txt.cn{
		font-size: 3rem;
	}
	.eng .sub-banner .desc{
		font-size: 1.6rem;
	}

	.eng .common-name .text{
		font-size: 2.8rem;
	}
	.eng .about-info.i1 {
		font-size: 1.8rem;
		margin-bottom: 1rem;
	}
	.eng nav ul li .first-lab a p:last-child{
		top: 3vw;
	}

	.eng .tz-list .item{
		flex: 1;
		margin-bottom: 5vw;
	}

	.eng .tz-list .item .box .name {
        font-size: 2rem;
        margin-bottom: 3vw;
    }

	.eng .tz-list .item:nth-child(n+4){
		flex: 1;
	}

	.eng .tz-list{
		display: block;
	}

	.eng .awards .item .txt {
        font-size: 1.4rem;
        line-height: 1.5;
    }
	.eng .tech-swiper .swiper-slide .box .info .desc{
		min-height: auto;
	}
	.eng .tech-swiper .swiper-slide .box .info .name{
		font-size: 1.8rem;
	}

	.eng .form .row>input,.eng .form .row textarea,.eng .form .row>select{
		font-size: 1.4rem;
	}
	.eng .oil-wrap .list .item .box .top .name{
		line-height: 25px;
	}

	.cards-section{
		margin-bottom: 15vw;
	}

	.eng .apps .item a .info .name{
		font-size: 2rem;
	}
	.eng .info-swiper .swiper-slide .info .name{
		font-size: 2rem;
		margin-bottom: 5vw;
	}

	.eng .news-list .item a .info .cons .name{
		font-size: 1.6rem;
	}

	.eng .con-name{
		font-size: 2.4rem;
	}
	.eng .banner-swiper .slogan .title {
		font-size: 6vw;
		line-height: 1.3;
	}
	.eng .oil-wrap .list .item .box{
		padding: 5vw 3vw;
	}

	nav ul li .second-lab a:hover p{
		color: #16308E;
	}
	.name2 .tips{
		font-size: 1.4rem;
	}
	.tz-list .item .box .desc{
		font-size: 1.6rem;
	}
	.tz-list .item .box .name{
		font-size: 2.2rem;
	}
	.oil-wrap .list .item .box .desc{
		color: #3e3e3e;
	}
	.awards .item{
		font-size: 1.5rem;
	}
	.common-name .icon{
		display: none;
	}
	.common-name .text{
		width: 100%;
	}
	.cp-menu .item a .name{
		font-size: 1.6rem;
	}
	.pic-show{
		margin-bottom: 15vw;
	}
	.eng .langue .lan-top{
		font-size: 1.4rem;
	}
	.eng .data-list .item .box .txt{
		font-size: 3vw;
	}
	.eng .common-name .text{
		font-size: 8vw;
	}
	.eng .name2 .title{
		-webkit-line-clamp: 5;
	}
	.eng .app-list .item .top .desc,.eng .app-list .item .links a{
		font-size: 1.6rem;
	}
	.eng .app-list .item .links a{
		font-size: 1.4rem;
	}
	.eng .sub-banner .txt.cn{
		font-size: 10vw;
	}
	.eng .cultures .item .box .info .name-cn{
		font-size: 10vw;
	}
	.eng .cultures .item .box .desc{
		font-size: 5vw;
		top: auto;
	}
	.eng .cultures .item .box {
		aspect-ratio: 4 / 4;
	}
	.eng .sub-banner .desc{
		display: none;
	}
	.eng .js-intro .singe-page,.eng .tz-list .item .box .desc{
		font-size: 1.6rem;
	}
	.eng .tz-list .item .box{
		padding: 5vw;
	}
	.eng .oil-wrap .list .item .box .desc {
		font-size: 4vw;
		line-height: 1.3;
	}
	.eng .cp-menu .item a .name {
        font-size: 1.4rem;
        padding: 0.5vw 2.5vw;
    }

	.eng .address .item{
		font-size: 1.6rem;
	}
}
