/*
 *	Created by Edward on 26/04/30
*/
html {
	font-size: 62.5%;
}

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2?t=20260518') format('woff2'),
		url('iconfont.woff?t=20260518') format('woff'),
		url('iconfont.ttf?t=20260518') format('truetype');
}

:root {
	--primary-color: #1F4397;
	--text-primary: #3e3e3e;
	--text-second: #666666;
	--text-third: #999999;
	--active-color: #F9AD44;
}

.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: "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: "MontserratRegular";
    src: url("../fonts/MontserratRegular.woff2") format("woff2"),
        url("../fonts/MontserratRegular.woff") format("woff"),
        url("../fonts/MontserratRegular.ttf") format("truetype"),
        url("../fonts/MontserratRegular.eot") format("embedded-opentype"),
        url("../fonts/MontserratRegular.svg") format("svg");
}

body{
	font-family: 'MontserratLight', "Microsoft Yahei", 'PingFang SC',  "PingFangSC-Light",  "Microsoft Yahei", "Hiragino Sans GB", SimSun, sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
}

body.zh-version{
	font-family: "Microsoft Yahei", 'PingFang SC',  "PingFangSC-Light",  "Microsoft Yahei", "Hiragino Sans GB", SimSun, sans-serif;
}

b,
strong {
	font-weight: 400;
}

textarea,
input,
select {
	font-family: 'MontserratLight', "Microsoft Yahei", 'PingFang SC',  "PingFangSC-Light",  "Microsoft Yahei", "Hiragino Sans GB", SimSun, sans-serif;
	outline: none;
	border: none;
}

button {
	border: none;
}

header {
	height: auto;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	padding: 15px 5%;
	z-index: 10;
	align-items: center;
	background: rgba(255, 255, 255, 0);
	backdrop-filter: blur(0px);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

header::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #ffffff;
	transition: all 0.35s;
	opacity: 0;
}

header.active::before {
	opacity: 1;
}

header.active{
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .1);
}

.logo {
	width: 200px;
	height: auto;
	position: relative;
	display: block;
}

.logo img {
	transition: all 0.35s;
}

.logo img:nth-child(2) {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}

header.active .logo img:nth-child(1) {
	opacity: 0;
}

header.active .logo img:nth-child(2) {
	opacity: 1;
}

header.active nav ul li .first-lab a {
	color: #3e3e3e;
}

.cols-right {
	width: auto;
	display: flex;
	gap: 2vw;
	align-items: center;
	color: #fff;
}

nav {
	width: auto;
	display: flex;
	align-items: center;
	gap: 2vw;
	margin-right: 120px;
}

nav ul {
	display: flex;

}

nav ul li {
	position: relative;
	line-height: 25px;
	padding: 10px 0px;
}

nav ul li .second-lab {
	width: 120%;
	position: absolute;
	left: -10%;
	top: 56px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s cubic-bezier(.38, 0, 0, 1);
	background: #fff;
	border-radius: 0.5vw;
	padding: 15px 0px;
	backdrop-filter: blur(5px);
	transform: translateY(10px);
	transition: all 0.4s;
	box-shadow: 0 3px 12px -2px #0000000d, 0 12px 48px -10px #1366ec1c, inset 0 0 28px #ffffff80;
}

nav ul li .second-lab::after {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #fff;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	top: -6px;
	content: '';
}

nav ul li:hover .second-lab {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0px);
}

nav ul li:hover .second-lab a {
	opacity: 1;
	transform: translateY(0%);
}

nav ul li .second-lab a {
	padding: 5px 5%;
	line-height: 20px;
	text-align: center;
	font-size: 1.5rem;
	transition: .8s 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;
	font-size: 2rem;
	font-family: "MontserratRegular";
}


nav ul li .first-lab a p {
	position: relative;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

nav ul li .first-lab a p:last-child {
	position: absolute;
	left: 0;
	top: 0;
	/* color: #00a6ce; */
}

header.active nav ul li .first-lab a p:last-child{
	/* color: #ed7100; */
}

nav ul li:hover .first-lab a p::after {
	width: 90%;
	right: auto;
	left: 5%;
}

nav ul li .first-lab a {
	display: block;
	position: relative;
	color: #fff;
	padding: 0 1.5vw;
	text-transform: uppercase;
}




.nav-config {
	width: auto;
	display: flex;
	gap: 1vw;
	align-items: center;
	position: relative;
}



.langue {
	width: auto;
	height: auto;
	position: absolute;
	line-height: 40px;
	display: flex;
	gap: 0.75vw;
	font-size: 1.4rem;
	right: 5%;
	top: 50%;
	transform: translateY(-50%);
}

header.active .langue a{
	color: #3e3e3e;
}

.langue a {
	color: #fff;
	opacity: 0.5;
	text-transform: uppercase;
}

.langue a:hover,
.langue a.active {
	opacity: 1;
}


.banner-swiper {
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	will-change: transform;
	background: #000;
}

.banner-swiper .swiper-slide video{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}

.banner-swiper .slogan {
	width: 80%;
	height: auto;
	position: absolute;
	left: 7.5%;
	color: #fff;
	line-height: 1;
	z-index: 3;
	font-weight: 400;
	top: 50%;
	transform: translateY(-50%);

}

.banner-swiper .slogan .title {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 2.7vw;
	line-height: 1.3;
	font-family: "MontserratBold";
}


.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%);
}


.banner-swiper .tips {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 1.8rem;
	line-height: 1.5;
	margin-bottom: 1vw;
	opacity: 0.75;
}

.banner-swiper .slogan .line {
	width: 3vw;
	height: 1px;
	overflow: hidden;
	position: relative;
	margin-bottom: 4vw;
	background: rgba(255, 255, 255, 0.2);
	margin-top: 1vw;
}

.banner-swiper .slogan .line::before {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #fff;
	transform-origin: left top;
	animation: spanAnimate 2s ease infinite;
}

@-webkit-keyframes spanAnimate {
	0% {
		transform: translateX(-100%);
	}

	35% {
		transform: translateX(0%);
	}

	70%,
	100% {
		transform: translateX(100%);
	}
}

.banner-swiper .swiper-slide::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .15);
	display: none;

}

.banner-swiper .swiper-pagination-bullet {
	background: #fff;
	border-radius: 10px;
	height: 8px;
	line-height: 20px;
	overflow: hidden;
	position: relative;
	transition: all 0.5s;
	margin: 0px !important;
	width: 10px;
	color: rgba(255, 255, 255, .4);
	font-family: Quicksand;
	opacity: 1;
	font-size: 1.4rem;
}

.banner-swiper .swiper-pagination-bullet::before {
	width: 0%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: #fff;
	z-index: 2;
}

.banner-swiper .swiper-slide .img,
.banner-swiper .swiper-slide .img picture,
.banner-swiper .swiper-slide .img picture img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}


.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	color: rgba(255, 255, 255, 1);
	width: 40px;
}


.banner-swiper .swiper-pagination {
	width: auto;
	height: auto;
	bottom: auto;
	display: flex;
	gap: 0.5vw;
	position: relative;
	top: auto;
	margin-bottom: 3vw;
}


.scroll-down {
	width: 50px;
	height: auto;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 5%;
	pointer-events: none;
	z-index: 2;
}


.sfr-btn{
	width: 188px;
	height: 53px;
}

.sfr-btn.c{
	margin: 0px auto;
}

.sfr-btn a{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5vw;
	color: #fff;
	transition: all 0.35s;
}


.sfr-btn a::before,.sfr-btn a::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
}

.sfr-btn a::before{
	background: url(../images/btn-hover.png?v=2026) no-repeat;
	background-size: auto 200%;
	transition: all 0.35s;
}

.sfr-btn a::after{
	background: url(../images/btn-hover.png?v=2026) no-repeat;
	background-size: auto 200%;
	background-position: 0% 100%;
	opacity: 0;
	transition: all 0.35s;
}

.sfr-btn a:hover::before{
	opacity: 0;
}
.sfr-btn a:hover{
	gap: 0.5vw;
}
.sfr-btn a:hover::after{
	opacity: 1;
}

.sfr-btn.b a{
	
	color: #3e3e3e;
}
.sfr-btn.b a .icon::before, .sfr-btn.b a .icon::after{
	background: #3e3e3e;
}

.sfr-btn.b a::before,.sfr-btn.b a::after{
	background-image: url(../images/btn-hover2.png?v=2026);
}

.sfr-btn.b a:hover{
	color: #ffffff;
}

.sfr-btn.b a:hover .icon::before, .sfr-btn.b a:hover .icon::after{
	background: #ffffff;
}

.sfr-btn a .txt{
	text-transform: uppercase;
	font-family: "MontserratLight";
	position: relative;
	z-index: 2;
}

.sfr-btn a .icon{
	width: 16px;
	height: 16px;
	position: relative;
	z-index: 2;
	transition: all 0.4s;
}


.sfr-btn a .icon::before,.sfr-btn a .icon::after{
	width: 12px;
	height: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	background: #fff;
}

.sfr-btn a .icon::after{
	width: 1px;
	height: 12px;
}

.common-title{
	width: 100%;
	display: flex;
	position: relative;
	margin-bottom: 3vw;
	flex-wrap: wrap;
	opacity: 0;
}

.common-title .txt{
	font-size: 2.5vw;
	font-family: MontserratBold;
	color: transparent;
	background-clip: text;
	background-image: linear-gradient(0deg, #ed7100, #ffbb7d);
}

.common-title .desc{
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 0.5vw;
	font-size: 1.8rem;
}

.drive-list{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
	margin-bottom: 6vw;
}

.drive-list .item{
	width: 100%;
	height: auto;
	position: relative;
}

.drive-list .item:nth-child(2n){
	transition-delay: 0.25s;
}

.drive-list .item:nth-child(3n){
	transition-delay: 0.5s;
}

.drive-list .item a{
	width: 100%;
	display: block;
	height: auto;
	border: 1px solid rgba(0, 0, 0, .05);

	overflow: hidden;
	aspect-ratio: 1 / 0.75;
	position: relative;
}

.drive-list .item a::before,.drive-list .item a::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #F7F7F7;
	transition: all 0.5s;
}

.drive-list .item a::after{
	background-image: linear-gradient(0deg, #db6900, #ffbb7d);
	opacity: 0;
}

.drive-list .item a .thum{
	width: 70%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 55%;
	z-index: 2;
	transform: translate(-50%, -50%);
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.lang-switch {
	width: auto;
	height: auto;
	position: absolute;
	cursor: pointer;
	z-index: 2;
	right: 5%;
}

.lang-dropdown {
	width: calc(100% + 50px);
	position: absolute;
	left: -15px;
	top: -15px;
	padding: 15px;
	padding-top: 45px;
	border-radius: 5px;
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	background: #fff;
	box-shadow: 10px 10px 35px rgba(0, 0, 0, .15);
}

.lang-switch:hover .lang-dropdown {
	opacity: 1;
	pointer-events: auto;
}


.lang-dropdown a {
	display: flex;
	line-height: 28px;
	padding-left: 21px;
	transition: all 0.3s cubic-bezier(0.38, 0, 0, 1);
	transform: translateY(20%);
	opacity: 0;
	transition-delay: 0.02s;
	font-size: 1.4rem;
	color: rgba(0, 0, 0, .35);
}

.lang-dropdown a:nth-child(2) {
	transition-delay: 0.04s;
}

.lang-dropdown a:nth-child(3) {
	transition-delay: 0.06s;
}

.lang-dropdown a:nth-child(4) {
	transition-delay: 0.08s;
}

.lang-dropdown a:nth-child(5) {
	transition-delay: 0.1s;
}

.lang-dropdown a:nth-child(6) {
	transition-delay: 0.12s;
}

.lang-dropdown a:nth-child(7) {
	transition-delay: 0.14s;
}

.lang-switch:hover .lang-dropdown a {
	transform: translateY(0%);
	opacity: 1;
}

.lang-dropdown a:hover{
	color: rgba(0, 0, 0, .85);
}

.lang-dropdown a p {
	width: auto;
	height: auto;
	position: relative;
}

.lang-dropdown a p::after {
	width: 0%;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 3px;
	content: '';
	background: #fff;
	transition: all 0.35s;
}

.lang-dropdown a:hover p::after {
	right: auto;
	left: 0;
	width: 100%;
}

.current-lang {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	gap: 7px;
	z-index: 2;
	color: #ffffff;
}

header.active .current-lang{
	color: #3e3e3e;
}


.lang-switch:hover .current-lang{
	color: #3e3e3e;
}

.drive-list .item a .thum img{
	width: 100%;
	height: auto;
	aspect-ratio: 100 / 68;
	object-fit: contain;
}

.drive-list .item a .name{
	width: 90%;
	height: auto;
	position: absolute;
	left: 5%;
	top: 2vw;
	z-index: 2;
	font-family: "MontserratRegular";
	font-size: 2rem;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.drive-list .item a .info{
	width: 90%;
	height: auto;
	position: absolute;
	left: 5%;
	bottom: 0vw;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	display: flex;
	justify-content: space-between;
	font-family: "MontserratLight";
	text-transform: uppercase;
	opacity: 0;
	z-index: 2;
	color: #fff;
	align-items: center;
}

.drive-list .item:hover a .info{
	bottom: 1.5vw;
	opacity: 1;
}

.drive-list .item a .info .icon{
	font-size: 2rem;
	line-height: 20px;
}

.drive-list .item:hover a .name{
	top: 1.5vw;
	color: #ffffff;
}

.drive-list .item:hover a .thum{
	top: 50%;
}

.drive-list .item:hover a::after{
	opacity: 1;
}

.strength-box{
	width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding: 5vw 3vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 6vw;
    /* background: linear-gradient(180deg, hsla(0, 0%, 100%, .9), hsla(0, 0%, 100%, .85) 14%, hsla(0, 0%, 100%, .25) 47%, hsla(0, 0%, 100%, .9) 99%);
    backdrop-filter: blur(40px);
    box-shadow: 0 1px 16px 0 rgba(30, 118, 255, .13); */
	background: #F7F7F7;
}

.str-cols{
	width: 45%;
	height: auto;
	position: relative;
	margin: 0;
}

.str-cols .name{
	font-size: 1.8vw;
	font-family: "MontserratRegular";
	margin-bottom: 1vw;
}

.str-cols .desc{
	width: 100%;
	line-height: 1.7;
	margin-bottom: 3vw;
}

.strength-swiper{
	width: 40%;
	height: auto;
	position: relative;
	margin: 0;

	overflow: hidden;
}


.strength-swiper .swiper-slide{
	overflow: hidden;
}

.strength-swiper .swiper-slide .thum{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 3.5;
}

.strength-swiper .swiper-slide .thum img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.strength-swiper .swiper-pagination-bullet {
	background: #fff;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	transition: all 0.5s;

}

.strength-swiper .swiper-pagination-bullet::before {
	width: 0%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #fff;
	border-radius: 5px;
}


.strength-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 25px;
	background: rgba(255, 255, 255, .5);
}

.strength-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
	animation: progress-animate 6s linear forwards;
}

@-webkit-keyframes progress-animate {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

.title-content{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3vw;
	align-items: flex-end;
}

.title-content .common-title{
	max-width: 70%;
	margin-bottom: 0;
}

.app-list{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1vw;
	justify-content: space-between;
	margin-bottom: 6vw;
}
.app-list .cols{
	width: 100%;
	gap: 1vw;
	display: flex;
	flex-wrap: wrap;
}
.app-list .item{
	width: 100%;
	height: auto;
	position: relative;
    overflow: hidden;
}

.app-list .item img{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 4;
}

.app-list .cols:nth-child(2) .item img{
	aspect-ratio: none;
}

.app-list .cols:nth-child(2) .item .thum{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.app-list .cols:nth-child(2) .item .thum img{
	width: 100%;
	height: 100%;
}

.inquery-box{
	width: 100%;
	height: 60vh;
	position: relative;
	overflow: hidden;
	background: #000000;
}

.inquery-box .in-img{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0.5;
}

.inquery-box .info{
	width: 80%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	text-align: center;
}

.inquery-box .info .name{
	font-size: 1.8vw;
    font-family: "MontserratRegular";
    margin-bottom: 1vw;
}

.inquery-box .info .desc{
	width: 100%;
	height: auto;
	line-height: 1.7;
	font-size: 1.8rem;
	margin-bottom: 3vw;
}

.sfr-btn.c a .icon::after,.sfr-btn.c a .icon::before{
	display: none;
}

.sfr-btn.c .txt{
	font-size: 1.4rem;
}

.form-content{
	width: 100%;
	margin-top: 6vw;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.form-content .common-title{
	width: 40%;
}

.form-box{
	width: 50%;
}

.footer{
	width: 100%;
	height: auto;
	position: relative;
	background: #aa5100;
	padding: 5vw 0px 100px;
	overflow: hidden;
}

.footer-top{
	display: flex;
	justify-content: space-between;
	color: #fff;
	width: 100%;
	align-items: flex-start;
	flex-wrap: wrap;
}

.foot-cols{
	width: 20%;
}

.footer-right{
	width: 80%;
}

.socials{
	width: 100%;
	height: auto;
	display: flex;
	gap: 1vw;
	margin-top: 2vw;
}

.socials .item{
	width: 40px;
	height: auto;
	position: relative;
	background: rgba(255, 255, 255, .15);
	border-radius: 5px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: rgba(255,255,255,0.75);
	transition: all 0.35s;
}

.socials .item:hover{
	background: rgba(255, 255, 255, 1);
	box-shadow: 5px 5px 30px rgba(0, 0, 0, .1);
	color: #3e3e3e;
}

.socials .item.fb{
	font-size: 2rem;
}

.socials .item.what{
	font-size: 2.2rem;
}

.footer-nav{
	width: 70%;
	display: flex;
	justify-content: space-between;
}

.footer-nav .item{
	width: auto;
	height: auto;
	position: relative;
}

.footer-nav .item .title{
	font-size: 1.8rem;
	margin-bottom: 25px;
}

.footer-nav .item:nth-child(3) .title{
	opacity: 0;
}

.footer-nav .item  a{
	color: rgba(255, 255, 255, .75);
	line-height: 25px;
	margin-bottom: 2vw;
	display: flex;
	transition: all 0.3s;
}

.footer-nav .item a p{
	width: auto;
	height: auto;
	position: relative;
}

.footer-nav .item a p::after{
	width: 0%;
	height: 1px;
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	background: #fff;
	transition: all 0.3s;
	transform: scaleY(0.5);
}

.footer-nav .item a:hover{
	color: rgba(255, 255, 255, 1);
}

.footer-nav .item a:hover p::after{
	right: auto;
	left: 0;
	width: 100%;
}

.footer-nav .item .row{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	gap: 0.5vw;
	line-height: 25px;
	margin-bottom: 1vw;
	color: rgba(255, 255, 255, .75);
}

.copyright{
	width: 100%;
    height: auto;
    position: relative;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2vw;
    padding-top: 2vw;
	display: flex;
    justify-content: space-between;
	font-size: 1.4rem;
}

.copyright .links{
	width: auto;
	font-size: 1.4rem;
	display: flex;
	gap: 1vw;
}

.copyright .links a,.copyright a{
	color: rgba(255, 255, 255, .3);
	transition: all 0.35s;
}

.copyright .links a:hover,.copyright a:hover{
	color: rgba(255, 255, 255, 1);
}

.copyright .cp{
	width: auto;
	display: flex;
	gap: 1vw;
}

.foot-cols .logo{
	width: 200px;
}

.sub-banner .text-cols .cn{
	font-size: 4vw;
	font-family: "MontserratRegular";
	text-transform: uppercase;
}

.sub-banner .img{
	width: 100%;
	height: auto;
	position: relative;
}

.sub-banner .img::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	content: '';
	top: 0;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}

.sub-banner .text-cols .desc{
	font-size: 1.8rem;
	position: relative;
	transform: translateY(25px);
	opacity: 0;
}

.sub-banner .text-cols{
	top: 65%;
	text-shadow: 5px 0px 5px rgba(0, 0, 0, .1);
}

.intro-box .w1400{
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.intro-cols{
	width: 40%;
}

.about-thum{
	width: 50%;
	overflow: hidden;
}

.supply-box{
	background: #f9f9f9;
}

.supply-top{
	width: 100%;
	height: auto;
	position: relative;
	background: #fff;
	display: flex;

    overflow: hidden;
}

.supply-top .cols{
	width: 55%;
	padding: 3vw;
}

.supply-top .thum{
	width: 45%;
	position: relative;
}

.supply-top .thum img{
	height: 100%;
}

.supply-top .cols .mark{
	width: auto;
    font-size: 1.2rem;
    background: #fff9f3;
    color: #ed7100;
    display: inline-block;
    padding: 5px 10px;
	margin-bottom: 1vw;
}

.supply-top .cols .name{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 1.8vw;
	font-family: "MontserratRegular";
    margin-bottom: 2vw;
}

.supply-top .cols .desc{
	width: 100%;
	-webkit-line-clamp: 4;
	line-height: 1.5;
    color: #666;
    margin-bottom: 3vw;
}

.supply-top .cols .more,.supply-top .cols .more a{
	width: auto;
	display: inline-flex;
	align-items: center;
	position: relative;
}

.supply-top .cols .more a{
	font-size: 1.4rem;
	color: #ed7100;
	gap: 0.5vw;
}

.supply-list{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 3vw;
	gap: 2vw;
}

.supply-list .item{
	width: 100%;
	height: auto;
	position: relative;
}

.supply-list .item:nth-child(2n){
	transition-delay: 0.25s;
}

.supply-list .item:nth-child(3n){
	transition-delay: 0.5s;
}

.supply-list .item .box{
	width: 100%;
	background: #fff;
	height: 100%;
	position: relative;
	border-radius: 0.25vw;
	overflow: hidden;
	padding: 2vw;
	border-top: 3px solid #ed7100;
}

.supply-list .item .box .icon{
	width: 50px;
	margin-bottom: 1vw;
}

.supply-list .item .box .name{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 1.8rem;
	font-family: "MontserratRegular";
	margin-bottom: 1.5vw;
}

.supply-list .item ul{
	display: block;
	width: 100%;
}

.supply-list .item ul li{
	width: 100%;
	height: auto;
	line-height: 20px;
	position: relative;
	font-size: 1.4rem;
	color: #666666;
	padding-left: 18px;
	margin-bottom: 7px;
}

.supply-list .item ul li::before{
	width: 14px;
	height: 14px;
	position: absolute;
	left: 0;
	top: 3px;
	content: '';
	background: url(../images/icon-circle.png) no-repeat;
	background-size: cover;
}

.product-box .w1400{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.product-menu{
	width: 350px;
	height: auto;
	position: sticky;
    top: 100px;
}

.product-menu .title{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "MontserratRegular";
    text-transform: uppercase;
	font-size: 3rem;
	/* background-image: linear-gradient(0deg, #ed7100, #ffbb7d); */
	background: #ed7100;
	color: #fff;
	padding: 25px 15px;
	overflow: hidden;
	font-weight: bold;
}

.product-menu .title .icon{
	opacity: 0;
}

.product-content{
	width: calc(100% - 400px);
	height: auto;
	position: relative;
}

.product-list{
	width: 100%;
	height: auto;
	position: relative;
}

.product-list .item{
	width: 100%;
	height: auto;
	margin-bottom: 3vw;
}

.product-list .item a{
	display: flex;
	background: #f1f1f1;
	position: relative;

	justify-content: space-between;
}

.product-list .item a::after{
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -3px;
	content: '';
	background-image: linear-gradient(0deg, #ed7100, #ffbb7d);
	transition: all 0.5s;
	transform: scaleX(0);
}

.product-list .item a:hover::after{
	transform: scaleX(1);
}

.product-list .item a .thum{
	width: 40%;
	background: #f9f9f9;
	aspect-ratio: 5 / 3.5;
}

.product-list .item a .thum img{
	width: 70%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.4s;
}

.product-list .item a:hover .thum img{
	transform: translate(-50%, -50%) scale(1.1);
}

.product-list .item a .info{
	width: 60%;
	padding: 2vw;
    position: relative;
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2vw;
}

.product-list .item a .info .name{
	width: 100%;
	height: auto;
	position: relative;
	font-family: "MontserratRegular";
    font-size: 2rem;
	line-height: 1.3;
}

.product-list .item a:hover .info .name{
	color: #ed7100;
}


.product-list .item a .info .desc{
	width: 100%;
	line-height: 1.7;
	position: relative;
	opacity: 0.5;
	-webkit-line-clamp: 4;
}

.product-list .item a .info .tips{
	width: 100%;
	display: flex;
	align-items: center;
	opacity: 0.5;
	gap: 0.25vw;
	text-transform: uppercase;
	font-size: 1.4rem;
}

.menu{
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 4px;
}

.menu a{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	color: #666666;
	background: #F5F5F5;
	padding: 20px 15px;
    margin-bottom: 4px;
	transition: all 0.35s;
	overflow: hidden;
}

.menu a::after{
	width: 15px;
	height: 15px;
	background: #fff;
	content: '';
	position: absolute;
	right: -7.5px;
	bottom: -7.5px;
	transform: rotate(45deg);
	z-index: 2;
}

.product-menu .title::after{
	width: 25px;
	height: 25px;
	background: #fff;
	content: '';
	position: absolute;
	right: -12.5px;
	bottom: -12.5px;
	transform: rotate(45deg);
	z-index: 2;
}

.menu a::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background-image: linear-gradient(0deg, #ed7100, #ffbb7d);
	content: '';
	opacity: 0;
	transition: all 0.35s;
	z-index: 1;
}

.menu a .txt{
	position: relative;
	width: calc(100% - 50px);
	z-index: 2;
	font-size: 1.8rem;
    font-weight: 600;
}

.menu a .icon{
	width: 20px;
	height: auto;
	position: absolute;
	right: 15px;
	top: 50%;
	opacity: 0;
	transform: translateY(-50%);
	z-index: 2;
	color: #fff;
	transition: all 0.35s;
}

.menu a:hover::before,.menu a.active::before{
	opacity: 1;
}

.menu a:hover,.menu a.active{
	color: #fff;
	padding-left: 25px;
}

.menu a:hover .icon,.menu a.active .icon{
	opacity: 1;
	right: 25px;
}

.beam{
	left: 50%;
    position: absolute;
    top: 0;
    width: 30vw;
}

.light-beam {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; 
	z-index: 10;
}

.beam-core {
	position: absolute;
	top: -5%;
	left: 14%;
	width: 30%;
	transform: translateX(-50%);
	height: 115%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.75) 0%,
		rgba(255, 2255, 255, 0.35) 30%,
		rgba(255, 225, 255, 0.15) 60%,
		transparent 95%
	);
	filter: blur(35px);
	mix-blend-mode: plus-lighter;
	border-radius: 50% 50% 30% 70% / 90% 90% 10% 10%;
}

.pd-top{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 2vw;
	margin-bottom: 6vw;
}

.pd-top .strength-swiper{
	width: 45%;
}

.pd-top .strength-swiper .swiper-slide{
	width: 100%;
	height: auto;
	aspect-ratio: 100 / 68;
	background: #F8FAFC;
}

.pd-top .strength-swiper .swiper-slide .thum img{
	aspect-ratio: 100 / 68;
    object-fit: contain;
}

.pd-top .strength-swiper .swiper-slide .thum{
	width: 70%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.pd-cols{
	width: 52%;
	height: auto;
	background: #F8FAFC;
	position: relative;
	padding: 2vw;
}

.related-news .list .item .thum{
	border-radius: 0;
}

.pd-cols .mark{
	width: auto;
	display: inline-block;
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, .1);
	font-size: 1.2rem;
	padding: 5px 15px;
	color: #666666;
	margin-bottom: 1vw;
}

.pd-cols .name{
	width: 100%;
    height: auto;
    position: relative;
    font-family: "MontserratRegular";
    margin-bottom: 2vw;
	font-size: 2rem;
}

.pd-cols .desc{
	width: 100%;
	font-size: 1.4rem;
    line-height: 1.5;
    color: #666;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
	padding-bottom: 2vw;
	margin-bottom: 2vw;
}

.pd-cols .list{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.pd-cols .list .item{
	width: 46%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5vw;
}

.pd-cols .list .item:nth-child(n+3){
	margin-bottom: 0;
}

.pd-cols .list .item .icon{
	width: 35px;
}

.pd-cols .list .item .info{
	width: calc(100% - 45px);
	font-size: 1.2rem;
}
.pd-cols .list .item .info .t{
	margin-bottom: 0.25vw;
	font-family: MontserratRegular;
}
.pd-cols .list .item .info .d{
	opacity: 0.5;
	font-size: 1rem;
}

.singePage table{
	line-height: 1.3;
	font-size: 1.4rem;
	text-align: center;
}

.singePage tbody tr:first-child {
    padding: 12px 6px;
	background-image: linear-gradient(180deg, #ed7100, #ffbb7d);
	color: #fff;
	border: 1px solid rgba(255,255,255,.2);
	font-weight: bold;
}

.singePage tbody tr td {
    padding: 10px 6px;
}

.common-title.mb2{
	margin-bottom: 1.5vw;
}

.app-intro{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.app-intro .common-title{
	width: 40%;
	margin-bottom: 0;
}

.app-intro .singePage{
	width: 40%;
}

.applications{
	width: 100%;
	height: auto;
	position: relative;
}

.applications .item{
	width: 100%;
	height: auto;
	position: relative;
}

.applications .item .pic img{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 2;
}

.applications .item .info{
	width: 35%;
	height: auto;
	position: absolute;
	left: 7.5%;
	top: 50%;
	transform: translateY(-50%);
}

.applications .item:nth-child(even) .info{
	left: auto;
	right: 7.5%;
}

.applications .item .list{
	width: 100%;
	display: flex;
	gap: 0.5vw;
	margin-top: 2vw;
}

.applications .item .list .li{
	width: 25%;
}

.applications .item .info .name{
	font-size: 2vw;
	font-family: "MontserratRegular";
    margin-bottom: 2vw;
}

.applications .item .info .more-btn{
	display: none;
}

.applications .item .info .desc{
	width: 100%;
	height: auto;
	position: relative;
	line-height: 1.5;
	opacity: 0.5;
	margin-bottom: 2.5vw;
}

.more-btn{
	width: auto;
	display: inline-block;
}

.more-btn a{
	display: flex;
	width: auto;
	gap: 0.5vw;
    align-items: center;
	text-transform: uppercase;
    font-size: 1.4rem;
	transition: all 0.4s;
}

.more-btn a:hover{
	color: #0060AF;
	gap: 0.25vw;
}

.applications .item .list .li a{
	display: block;
	padding: 1vw;
	border: 1px solid rgba(0, 0, 0, .05);
}

.applications .item .list .li a img{
	width: 100%;
	height: auto;
	aspect-ratio: 100 / 68;
}

.app-banner{
	width: 100%;
	height: auto;
	position: relative;
}

.app-banner .img{
	width: 100%;
	height: auto;
	position: relative;
}

.app-banner .img::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .1);
}

.app-banner .text-cols{
	width: 70%;
	height: auto;
	position: absolute;
	left: 7.5%;
	top: 55%;
	font-size: 4vw;
	transform: translateY(-50%);
	font-family: "MontserratRegular";
    text-transform: uppercase;
}

.profile-box{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 6vw;
}

.profile-cols{
	width: 35%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	position: relative;
}

.app-swiper{
	width: 55%;
	height: auto;
	position: relative;
	margin: 0;
}

.app-swiper .swiper-slide{
	border-radius: 0.5vw;
	overflow: hidden;
}

.profile-cols .common-title{
	margin-bottom: 2vw;
}

.profile-cols .desc{
	width: 100%;
	height: auto;
	line-height: 1.7;
	position: relative;
}

.profile-cols .common-btns{
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 1vw;
}

.app-swiper .swiper-slide .thum img{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 3;
}

.blur-container{
	pointer-events: none;
    height: 160px;
    position: fixed;
    z-index: 10;
    flex: none;
    order: -998;
    left: 0;
    right: 0;
	bottom: 0;
}

.blur-mask{
    border-radius: 0px;
    pointer-events: none;
    backdrop-filter: blur(0.0625px);
	opacity: 1;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blur-mask.m1{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%);
}

.blur-mask.m2{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%);
	z-index: 2;
	backdrop-filter: blur(0.125px);
}

.blur-mask.m3{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%);
	z-index: 3;
	backdrop-filter: blur(0.25px);
}

.blur-mask.m4{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%);
	z-index: 4;
	backdrop-filter: blur(0.5px);
}

.blur-mask.m5{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%);
	z-index: 5;
	backdrop-filter: blur(1px);
}

.blur-mask.m6{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%);
	z-index: 6;
	backdrop-filter: blur(2px);
}

.blur-mask.m7{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%);
	z-index: 7;
	backdrop-filter: blur(4px);
}

.blur-mask.m8{
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%);
	z-index: 8;
	backdrop-filter: blur(8px);
}

.mechan-list{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.mechan-list .item{
	width: 100%;
	height: auto;
	position: relative;
}

.mechan-list .item::after{
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .05);
}

.mechan-list .item:nth-child(1){
	padding-right: 2vw;
}

.mechan-list .item:nth-child(n+2){
	padding-right: 2vw;
	padding-left: 2vw;
}

.mechan-list .item:nth-child(4n){
	padding-right: 0;
}

.mechan-list .item:nth-child(4n)::after{
	display: none;
}

.mechan-list .item .icon{
	width: 62px;
	margin-bottom: 4vw;
}

.mechan-list .item .desc{
	width: 100%;
	height: auto;
	line-height: 1.7;
}

.solution-box{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 6vw;
}

.solution-box .common-title{
	width: 35%;
}

.intro-info{
	width: 45%;
}

.intro-info p{
	position: relative;
	width: 100%;
	line-height: 25px;
	padding-left: 20px;
	margin-bottom: 10px;
}

.intro-info p::after{
	width: 5px;
	height: 5px;
	position: absolute;
	left: 0;
	top: 10px;
	content: '';
	background: #666666;
	border-radius: 50%;
}

.solution-imgs{
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2vw;
	justify-content: space-between;
	position: relative;
	margin-top: 3vw;
	margin-bottom: 6vw;
}

.solution-imgs .item{
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 0.5vw;
	overflow: hidden;
}

.solution-imgs .item img{
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 3;
}

.real-box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
}

.real-box .item {
	width: 100%;
	position: relative;
}

.real-box .item .box {
	width: 100%;
	height: auto;
	position: relative;
	border-radius: 0.5vw;
	overflow: hidden;
	background: #000;
}

.real-box .item .box .thum{
	opacity: 0.7;
}

.real-box .item .box img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1.25;
}

.real-box .item .box .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 2vw;
	color: #fff;
	font-family: "MontserratRegular";
	font-size: 1.35vw;
	text-transform: capitalize;
}

.news-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
	position: relative;
	margin-bottom: 3vw;
}

.news-list .item {
	width: 100%;
	height: auto;
	position: relative;
}


.news-list .item .thum {
	margin-bottom: 1.5vw;
}

.news-list .item .thum img {
	width: 100%;
	aspect-ratio: 1.75;
	transition: all 1s;
}

.news-list .item .info{
	width: 100%;
	height: auto;
	position: relative;
	padding-bottom: 1.5vw;
}

.news-list .item .date {
	width: 100%;
	margin-bottom: 1vw;
	padding-bottom: 1vw;
	position: relative;
	color: #999999;
	font-size: 1.4rem;
}

.news-list .item .date::after {
	width: 4%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, .2);
}

.news-list .item .name {
	font-size: 1.8rem;
    line-height: 1.4;
    font-family: "MontserratRegular";
}

.news-list .item a:hover .name {
	color: #ed7100;
}

.news-list .item a:hover .thum img {
	transform: scale(1.1);
}

.news-list .item a {
	width: 100%;
	height: auto;
	display: block;
	padding: 1vw;
	position: relative;
	border: 1px solid rgba(0, 0, 0, .1);
	overflow: hidden;
	transition: all 0.35s;
	will-change: transform;
}

.news-list .item a:hover {
	box-shadow: 0 15px 25px 0 rgba(0, 0, 0, 0.10);
}

.detail_top .name{
	font-family: "MontserratRegular";
	line-height: 1.3;
}

.addres-list {
	width: 100%;
	margin-bottom: 3vw;
}

.addres-list .item {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	margin-bottom: 2vw;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 2vw;
}

.addres-list .item .icon {
	width: 35px;
	height: auto;
	position: relative;
	line-height: 20px;
	font-size: 2rem;
}

.addres-list .item .text {
	width: calc(100% - 45px);
	position: relative;
}

.addres-list .item .text p {
	font-size: 1.4rem;
	text-transform: capitalize;
	margin-bottom: 0.25vw;
	opacity: 0.5;
	line-height: 20px;
}

.addres-list .item .text b {
	display: block;
	position: relative;
	font-size: 1.8rem;
}

.contact-cols{
	width: 40%;
}

.form-content .contact-cols .common-title{
	width: 100%;
}

.form-content .socials .item{
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: rgba(0, 0, 0, .5);
	background: rgba(0, 0, 0, .02);
}

.form-content.mt0{
	margin-top: 0;
}

.form .row{
	margin-bottom: 1.5vw;
}

.map{
	width: 100%;
	margin-top: 6vw;
	display: none;
	overflow: hidden;
}

.news-menu{
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1vw;
	margin-bottom: 3vw;
}

.news-menu a{
	display: block;
	width: auto;
	position: relative;
}

.news-menu a .box{
	padding: 15px 20px;
	height: auto;
	display: flex;
	gap: 1vw;
	background: #F5F5F5;
	transition: all 0.35s;
}

.news-menu a.active .box,.news-menu a:hover .box{
	background: #ed7100;
	color: #ffffff;
}

@media screen and (max-width: 1600px) {
	nav ul li .first-lab,.drive-list .item a .name,.drive-list .item a .info .icon{
		font-size: 1.8rem;
	}
	.drive-list .item a .info{
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 1366px) {
	nav ul li .first-lab,.drive-list .item a .name{
		font-size: 1.6rem;
	}
	.common-title .txt{
		font-size: 3vw;
	}
}

@media screen and (max-width: 1025px) {
	nav ul li .first-lab a{
		padding: 0 0.75vw;
	}
}

@media screen and (max-width: 1025px) {
	nav ul li .first-lab{
		font-size: 1.4rem;
	}
	.banner-swiper .slogan .title{
		font-size: 4vw;
	}
	.str-cols{
		width: 55%;
	}

	.str-cols .desc{
		font-size: 1.4rem;
	}
	.str-cols .name,.inquery-box .info .name {
		font-size: 2.2vw;
	}
	.footer-nav .item .title,.menu a .txt,.product-list .item a .info .desc,.inquery-box .info .desc,.addres-list .item .text b,.form .row label,.form-submit{
		font-size: 1.4rem;
	}
	.footer-nav .item a,.footer-nav .item .row .txt,.copyright,.copyright .links,.product-list .item a .info .tips{
		font-size: 1.2rem;
	}
	.foot-cols .logo {
		width: 100px;
	}

	.w1400{
		width: 90%;
	}

	.product-menu{
		width: 300px;
	}

	.product-menu .title .txt{
		font-size: 1.8rem;
	}
	.product-content {
		width: calc(100% - 325px);
	}
	.product-list .item{
		margin-bottom: 2vw;
	}

	.product-list .item a .info .name,.news-list .item .name{
		font-size: 1.6rem;
	}
	.applications .item .info{
		width: 45%;
	}

	.applications .item .info .desc{
		font-size: 1.2rem;
	}
	.applications .item .info .more-btn a{
		font-size: 1.2rem;
	}

	.applications .item .info .name{
		font-size: 1.8vw;
		margin-bottom: 1vw;
	}
}

@media screen and (max-width: 768px) {
	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;
	}
	.bread-crumb{
		display: block;
	}

	.langue{
		right: 80px;
		gap: 3.5vw;
	}

	header{
		height: 60px;
		padding: 0 5%;
	}

	.logo {
		width: 150px;
	}

	.bread-crumb span{
		background-color: #3e3e3e;
	}

	.current-lang{
		color: #3e3e3e;
	}

	.sfr-btn {
		width: 142px;
		height: 40px;
	}

	.sfr-btn a{
		gap: 1.5vw;
	}

	.sfr-btn a .txt{
		font-size: 1.4rem;
	}

	.sfr-btn a .icon::before{
		width: 10px;
	}
	
	.sfr-btn a .icon::after{
		height: 10px;
	}

	.cursor{
		display: none;
	}

	.banner-swiper .slogan{
		width: 90%;
		left: 5%;
	}
	.banner-swiper .slogan .title {
        font-size: 6.5vw;
    }
	.banner-swiper .slogan .line{
		margin-top: 5vw;
		margin-bottom: 0vw;
		width: 10vw;
	}

	.banner-swiper{
		height: 80vw;
		margin-top: 60px;
	}


	.banner-swiper .slogan .sfr-btn{
		margin-top: 5vw;
	}

	header::before {
		opacity: 1;
	}
	header .logo img:nth-child(1) {
		opacity: 0;
	}
	
	header .logo img:nth-child(2) {
		opacity: 1;
	}
	
	header nav ul li .first-lab a {
		color: #3e3e3e;
	}
	header .langue a{
		color: #3e3e3e;
	}

	.banner-swiper .slogan .sfr-btn{
		display: none;
	}
	
	.scroll-down{
		display: none;
	}
	.common-title{
		margin-bottom: 7.5vw;
	}
	.common-title .txt {
        font-size: 7vw;
    }
	.els .common-title .txt{
		line-height: 1.2;
	}
	.els .copyright .links{
		flex-wrap: wrap;
		justify-content: center;
	}
	.els .copyright .links a{

	}
	.boxes{
		padding: 15vw 0px;
	}

	.drive-list {
		grid-template-columns: repeat(1, 1fr);
		gap: 5vw;
		margin-bottom: 15vw;
	}

	.drive-list .item a .name{
		top: 5vw;
	}
	.drive-list .item:hover a .name{
		top: 5vw;
	}
	.drive-list .item:hover a .info {
		bottom: 5vw;
	}
	.backTop{
		display: none;
	}
	.drive-list .item:hover a .thum {
		top: 55%;
	}
	.common-title .desc{
		font-size: 1.4rem;
		margin-top: 2vw;
	}
	.strength-box{
		padding: 10vw 5vw;
		margin-bottom: 15vw;
	}
	.str-cols,.strength-swiper{
        width: 100%;
    }

	.str-cols .name,.inquery-box .info .name{
		font-size: 5vw;
		margin-bottom: 3.5vw;
	}
	.str-cols .desc {
        font-size: 1.4rem;
        margin-bottom: 5vw;
    }
	.strength-swiper{
		margin-top: 15vw;
	}

	.strength-swiper .swiper-pagination-bullet{
		height: 5px;
	}
	.title-content .common-title {
		max-width: 100%;
		margin-bottom: 5vw;
	}
	.title-content{
		margin-bottom: 5vw;
	}
	.app-list{
		margin-bottom: 15vw;
	}
	.inquery-box .info{
		width: 90%;
	}
	.inquery-box .info .name{
		font-size: 4.5vw;
	}
	.inquery-box .info .desc{
		line-height: 1.5;
		margin-bottom: 5vw;
	}

	.sfr-btn.c .txt{
		font-size: 1.2rem;
	}
	.els .sfr-btn.c .txt{
		font-size: 1rem;
	}
	.form-content{
		margin-top: 15vw;
		flex-wrap: wrap;
	}

	.form-content .common-title,.form-box{
		width: 100%;
	}

	.form .row label{
		margin-bottom: 0;
	}
	.form .row {
		margin-bottom: 5vw;
	}

	.footer-nav .item{
		display: none;
	}

	.footer-nav .item:nth-child(4){
		display: block;
		width: 100%;
	}

	.foot-cols,.footer-nav{
		width: 100%;
	}

	.footer{
		padding-top: 15vw;
		padding-bottom: 5vw;
	}

	.foot-cols{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 10vw;
	}
	.socials{
		margin-top: 5vw;
		justify-content: center;
		gap: 3vw;
	}

	.footer-nav .item .title{
		display: none;
	}

	.footer-nav .item .row .txt{
		font-size: 1.4rem;
	}

	.footer-nav .item .row{
		margin-bottom: 2vw;
		gap: 2vw;
		padding-left: 20%;
	}

	.copyright{
		margin-top: 5vw;
		padding-top: 5vw;
		flex-wrap: wrap;
		justify-content: center;
	}

	.copyright .cp{
		flex-wrap: wrap;
		margin-bottom: 2vw;
		justify-content: center;
		text-align: center;
	}
	nav.active {
        pointer-events: auto;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
	nav ul{
		flex-wrap: wrap;
	}
	nav ul li {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
        padding: 0vw 0px;
        width: 100%;
    }
	nav ul li .first-lab {
        font-size: 7vw;
    }
	nav ul li .first-lab a{
		padding: 5vw 0px;
	}

	header{
		border-bottom: none;
	}
	.bread-crumb span{
		
	}
	.sub-banner,.app-banner{
		margin-top: 60px;
	}

	.sub-banner .img img,.app-banner img{
		width: 100%;
		aspect-ratio:  2 / 1;
	}
	.sub-banner .text-cols{
		top: auto;
        bottom: 10%;
	}
	.sub-banner .text-cols .desc{
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.sub-banner .text-cols .cn{
		font-size: 7vw;
		margin-bottom: 1.5vw;
	}

	.intro-cols,.about-thum {
		width: 100%;
	}

	.about-thum{
		margin-top: 5vw;
	}

	.supply-top{
		flex-wrap: wrap;
	}

	.supply-top .cols,.supply-top .thum{
		width: 100%;
	}

	.supply-top .cols{
		padding: 5vw;
	}

	.supply-top .cols .mark,.pd-cols .mark{
		font-size: 1rem;
		padding: 3px 6px;
		margin-bottom: 2vw
	}
	.supply-top .cols .name,.pd-cols .name{
		font-size: 5vw;
		margin-bottom: 5vw;
	}

	.supply-top .cols .more, .supply-top .cols .more a{
		font-size: 1.4rem;
		gap: 1vw;
	}

	.supply-top .cols .desc,.pd-cols .desc{
		margin-bottom: 7.5vw;
	}
	.pd-cols .desc{
		padding-bottom: 5vw;
	}
	.supply-list{
		grid-template-columns: repeat(1, 1fr);
		margin-top: 5vw;
		gap: 5vw;
	}

	.supply-list .item .box{
		padding: 5vw;
	}
	.supply-list .item .box .icon{
		width: 40px;
		margin-bottom: 3vw;
	}

	.supply-list .item .box .name{
		font-size: 5vw;
		margin-bottom: 5vw;
	}

	.beam-core{
		left: 50%;
		width: 50%;
	}
	.product-box .w1400{
		flex-wrap: wrap;
	}

	.product-menu,.product-content{
		width: 100%;
	}

	.product-menu .title{
		display: none;
	}

	.menu{
		display: grid;		
		grid-template-columns: repeat(2, 1fr);
		gap: 3vw;
		margin-top: 0;
	}
	.menu a{
		padding: 2.5vw 3vw;
		margin-bottom: 0;
		display: flex;
        align-items: center;
	}
	.menu a:hover, .menu a.active{
		padding-left: 3vw;
	}

	.menu a:hover .icon, .menu a.active .icon{
		right: 3vw;
	}

	.menu a .txt{
		width: calc(100% - 30px);
	}

	.product-content{
		margin-top: 7.5vw;
	}

	.product-list .item a .info .desc{
		display: none;
	}

	.product-list .item a .thum{
		width: 45%;
	}

	.product-list .item a .info{
		width: 55%;
		padding: 4vw 3vw;
		align-content: space-between;
	}

	.product-list .item a .info .name{
		font-size: 4vw;
	}

	.product-list .item{
		margin-bottom: 5vw;
	}
	.product-menu{
		position: relative;
		top: 0;
	}

	.product-list .item a .thum img{
		width: 80%;
	}

	.pd-mbx{
		margin-top: 70px;
		font-size: 1.2rem;
		flex-wrap: wrap;
		margin-bottom: 7.5vw;
	}
	.pd-top{
		margin-top: 0;
		margin-bottom: 15vw;
	}

	.pd-top .strength-swiper{
		width: 100%;
		margin-top: 0;
	}
	.pd-cols{
		width: 100%;
		padding: 5vw;
	}
	.pd-cols .list .item{
		flex-wrap: wrap;
		margin-bottom: 5vw;
	}

	.pd-cols .list .item .info{
		width: 100%;
	}

	.pd-cols .list .item .icon {
		width: 30px;
		margin-bottom: 2vw;
	}

	.pd-cols .list .item .info .t{
		margin-bottom: 0.5vw;
	}

	.singePage table{
		font-size: 12px;
	}

	.common-title.mb2{
		margin-bottom: 5vw;
	}
	.app-intro{
		flex-wrap: wrap;
	}
	.app-intro .common-title {
		width: 100%;
		margin-bottom: 5vw;
	}

	.app-intro .singePage{
		width: 100%;
	}
	.applications .item .info {
        width: 100%;
        left: 0;
        top: 0;
        transform: translateY(0%);
		position: relative;
		padding: 5vw;
		padding-top: 7.5vw;
    }

	.applications .item{
		margin-bottom: 10vw;
	}

	.applications .item .info .name{
		font-size: 5vw;
		margin-bottom: 3.5vw;
	}

	.applications .item .info .desc{
		margin-bottom: 5vw;
	}

	.applications .item .list{
		margin-top: 5vw;
	}

	.applications .item:nth-child(even) .info {
		left: auto;
		right: 0%;
	}

	.applications .item .list{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2vw;
	}

	.applications .item .list .li,.profile-cols,.app-swiper,.solution-box .common-title,.intro-info{
		width: 100%;
	}

	.inquery-box .in-img,.inquery-box .in-img img{
		height: 100%;
	}
	.profile-cols .common-btns{
		display: none;
	}
	.profile-cols{
		margin-bottom: 7.5vw;
	}
	.profile-cols .common-title{
		margin-bottom: 5vw;
	}
	.profile-box{
		margin-bottom: 15vw;
	}
	.mechan-list{
		grid-template-columns: repeat(2, 1fr);
		gap: 3vw;
	}
	.mechan-list .item:nth-child(1),.mechan-list .item:nth-child(n+2),.mechan-list .item:nth-child(4n){
		padding: 0;
	}
	.mechan-list .item::after{
		display: none;
	}
	.mechan-list .item .icon{
		width: 35px;
        margin-bottom: 3vw;
	}
	.mechan-list .item .desc{
		line-height: 1.3;
		font-size: 1.2rem;
	}
	.mechan-list .item{
		background: #f9f9f9;
		padding: 3vw !important;
	}
	.app-banner .text-cols{
		font-size: 7vw;
	}

	.solution-box{
		margin-top: 15vw;
		flex-wrap: wrap;
	}

	.intro-info p{
		margin-bottom: 2vw;
	}
	.solution-imgs{
		margin-bottom: 15vw;
	}
	.real-box{
		grid-template-columns: repeat(2, 1fr);
    	gap: 2vw;
	}
	.real-box .item .box .name{
		font-size: 3.5vw;
		padding: 3vw;
	}
	.news-menu a .box{
		padding: 3vw 2vw;
        font-size: 3.8vw;
	}
	.news-menu{
		gap: 2vw;
		margin-bottom: 7.5vw;
	}
	.news-list{
		grid-template-columns: repeat(1, 1fr);
		gap: 7.5vw;
		margin-bottom: 7.5vw;
	}
	.news-list .item a{
		padding: 0;
		border: none;
	}

	.news-list .item .thum{
		margin-bottom: 3vw;
	}

	.news-list .item .date{
		margin-bottom: 3vw;
    	padding-bottom: 3vw;
		font-size: 1.2rem;
	}
	.n_date{
		font-size: 1.2rem;
	}

	.related-news .list .item{
		padding-bottom: 3vw;
		margin-bottom: 7.5vw;
	}
	.contact-cols{
		width: 100%;
		margin-bottom: 15vw;
	}
	.addres-list{
		margin-bottom: 7.5vw;
	}

	.addres-list .item{
		margin-bottom: 5vw;
		border-bottom: 1px solid rgba(0, 0, 0, .05);
		padding-bottom: 5vw;
	}
	.addres-list .item .text p{
		font-size: 1.6rem;
		margin-bottom: 1.5vw;
	}
	.addres-list .item .text b{
		font-size: 1.6rem;
	}
	.contact-cols .socials{
		margin-top: 0vw;
        justify-content: flex-start;
	}

	.map{
		margin-top: 7.5vw;
		display: none;
	}
	.error-tips{
		font-size: 1.2rem;
	}
	.lang-switch{
		right: 80px;
	}
	.current-lang .txt{
		font-family: "MontserratRegular";
		font-size: 1.4rem;
	}
	.blur-container{
		display: none;
	}
}