/*
 *	Created by Edward on 25/05/07
 *	Copyright (c) 2024 ishutime.com All rights reserved
*/
html{
	/* 1rem = 16px; 2px = 0.125rem; 14px = 0.875rem; 18px = 1.125rem */
	font-size: 16px; 
}
@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');
}

.singePage strong{
    font-weight: 800;
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}

.vr_btn{
	width: auto;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #0c0f7f;
	color: #ffffff;
	padding: 0px 15px;
	border-radius: 50px;
	margin-top: 5vw;
	transition: all 0.4s;
}

.vr_btn:hover{
	box-shadow: 15px 15px 40px rgba(12, 15, 127, .3);
}

.vr_btn img{
	width: 30px;
}
.vr_btn p{
	margin-left: 5px;
}

@font-face {
	font-family: roboto;
	src: url(../fonts/Roboto_Condensed-Light.ttf);
}
@font-face {
	font-family: manrope;
	src: url(../fonts/Manrope-Medium.ttf);
}

@font-face {
	font-family: din;
	src: url(../fonts/din-bold-webfont.woff2);
}



@font-face {
	font-family: Poppins;
	src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
	font-family: PoppinsLight;
	src: url(../fonts/Poppins-Light.ttf);
}


.en .banner-swiper .slogan .title{
	font-family: PoppinsLight;
}

.en body,
html.en {
	font-family: Poppins;
}

.en textarea,
.en input {
	font-family: Poppins;
}

body,
html {
	color: #333333;
	font-family: sans-serif, "Microsoft YaHei", '微软雅黑', "Arial";
	font-weight: 400;
}

b,
strong {
	font-weight: 400;
}

textarea,
input {
	font-family: "Microsoft YaHei", '微软雅黑', "Arial";
	font-size: 1rem;
}

.scroll_icon{
	width: 23px;
	height: 38px;
	border: 1px solid #fff;
	border-radius: 35px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10%;
	z-index: 10;
}

.scroll_icon::after{
	width: 3px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 20%;
	background: #fff;
	border-radius: 5px;
	content: '';
	transform: translateX(-50%);
	-webkit-animation: scrollAnimate 2s ease infinite;
}

@-webkit-keyframes scrollAnimate{
	0%,100%{
		top: 20%;
		opacity: 1;
		height: 8px;
	}
	50%{
		top: 50%;
		opacity: 0;
		height: 3px;
	}
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 导航样式 */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav:before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	transform: translateY(-100%);
	background: rgba(255, 255, 255, 1);
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav.scrolled:before{
	transform: translateY(0%);
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .05);
}


.nav .container {
    width: 100%;
    padding: 0px 3%;
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
	position: relative;
}

.logo {
    display: block;
}

.logo img {
    height: 3rem;
    display: block;
}

.logo .logo-white {
    display: block;
}

.logo .logo-dark {
    display: none;
}

.nav.scrolled .logo .logo-white {
    display: none;
}

.nav.scrolled .logo .logo-dark {
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    width: 70%;
    justify-content: space-between;
}

.en .menu{
	width: 70%;
}

.menu li {
    margin-left: 0;
    flex: auto;
    text-align: center;
    position: relative;
}

.en .menu li{
	flex: auto;
}

.en .banner-swiper .slogan{
	width: 85%;
}

.menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1); /* 默认状态稍微透明一点 */
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: block;
	line-height: 80px;
	position: relative;
}

.menu>li>a::after{
	width: 0px;
	height: 3px;
	position: absolute;
	left: 50%;
	margin-left: 0px;
	top: 60px;
	content: '';
	background: #fff;
	border-radius: 50px;
	transition: all 0.4s ease;
}

.nav.scrolled .menu>li>a::after{
	background: #0c0f7f;
}

.menu li.active>a::after{
	width: 16px;
	margin-left: -8px;
}

/* 未滚动时的hover效果 */
.menu > li > a:hover {
    color: #fff; /* hover时变成纯白色 */
}

/* 滚动后的默认颜色 */
.nav.scrolled .menu > li > a {
    color: rgba(51, 51, 51, 0.8); /* 默认状态稍微透明一点 */
}

/* 滚动后的hover效果 */
.nav.scrolled .menu > li > a:hover {
    color: #0c0f7f;
}

/* 二级菜单样式 */
.submenu {
    position: absolute;
    top: 100%;
	background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0.5rem 0;
    border-radius: 4px;
    width: 130px;
	left: 50%;
	margin-left: -65px;
	backdrop-filter: blur(5px);
}

.en .submenu{
	min-width: 200px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0px;
}

.submenu::after{
	width: 0px;
	height: 0px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 5px solid rgba(0, 0, 0, .3);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -5px;
	content: '';
}

.submenu li:last-child a{
	border: none;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.en .has-submenu:hover .submenu{
	transform: translateY(0) translateX(-50%);
}

.submenu li {
    margin: 0;
    padding: 0;
    flex: none;
    width: 100%;
}

.submenu a {
    color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	transition: all 0.3s ease;
	line-height: 45px;
	padding: 0 15px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.submenu a:hover {
    color: #ffffff;
}

/* 响应式布局中的二级菜单样式 */
@media screen and (max-width: 768px) {
    .submenu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .submenu a {
        padding: 0.5rem 0;
        font-size: 1rem;
        text-align: center;
    }

    .has-submenu > a::after {
        display: none;
    }
}

/* 语言切换按钮样式 */
.lang-switch {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.lang-switch:before{
	width: 140%;
	height: 180%;
	position: absolute;
	left: -20%;
	top: -40%;
	background: #0c0f7f;
	content: '';
	opacity: 0;
	transition: all 0.4s;
	border-radius: 3px;
}

.lang-switch:hover:before{
	opacity: 1;
}

.lang-switch .globe-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: #fff;
	position: relative;
	z-index: 2;
}

.nav.scrolled .lang-switch .globe-icon {
    fill: #3e3e3e;
}

.nav.scrolled .lang-switch .current-lang {
    color: #3e3e3e;
}

.nav.scrolled .lang-switch:hover .globe-icon{
	fill: #ffffff;
}

.nav.scrolled .lang-switch:hover .current-lang {
    color: #ffffff;
}

.nav.scrolled .submenu{
	background: rgba(0, 0, 0, 0.5);
}

.nav.scrolled .submenu::after{
	border-bottom: 5px solid rgba(0, 0, 0, .5);
}

.lang-switch .current-lang {
    color: #fff;
	transition: color 0.3s;
	font-family: manrope;
	position: relative;
	z-index: 2;
	font-size: 0.9rem;
	line-height: 16px;

}

.lang-dropdown {
    position: absolute;
	top: -10px;
	border-radius: 4px;
	padding: 0.5rem 0;
	opacity: 1;
	visibility: visible;

	transition: all 0.3s ease;
	width: 140%;
	left: -20%;
	padding-top: 32px;
	background: #0c0f7f;
	transition: all 0.4s ease;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	
	display: none;
}

.lang-switch:hover .lang-dropdown {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.lang-dropdown a {
    display: block;
	padding: 0;
	color: rgba(255, 255, 255, .75);
	text-decoration: none;
	transition: background-color 0.3s;
	white-space: nowrap;
	text-align: center;
	font-size: 0.9rem;
	line-height: 25px;
}

.lang-dropdown a:hover {
   color: rgba(255, 255, 255, 1);
}

/* Banner样式 */
.banner {
    height: 100vh;
    margin-top: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;

    will-change: transform;
}

.banner .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100vh;
    will-change: transform;
}

/* 自定义分页器样式 */
.banner .swiper-pagination {
    bottom: 5rem !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    width: auto !important;
    position: absolute;
    z-index: 10;
    justify-content: center;
    align-items: center;
}

.banner .swiper-pagination-bullet {
    width: 2rem !important;
    height: 2px !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.banner .swiper-pagination-bullet-active {
    background: #fff;
    width: 3rem !important;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: transform;
}

.swiper-slide-active .banner-bg {
    opacity: 1;
}

/* 倒计时圆环样式 */
.progress-ring {
    position: absolute;
    right: 7.5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.progress-ring-circle {
    stroke-dasharray: 144.51;
    stroke-dashoffset: 144.51;
    transform: rotate(-90deg);
    transform-origin: center;
}

.swiper-slide.active .progress-ring-circle{
	animation: progress 6s linear 1 forwards;
}

@-webkit-keyframes progress {
	0% {
		stroke-dashoffset: 144.51;
	}
	95%,100% {
		stroke-dashoffset: 0;
		
	}
}

/* 确保banner内容在圆环上层 */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
    will-change: transform;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.5rem;
}

/* 文字动画效果 */
.animate-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    transition-delay: 0.4s;
}

.swiper-slide-active .animate-title,
.swiper-slide-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* 关于我们样式 */
.about {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 8rem 0;
}

.about-container {
    width: 85%;
    margin: 0 auto;
}

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

.about-header.left{
	text-align: left;
}

.about-header h2 {
    font-size: 2.5vw;

    font-weight: 300;
}

.about-content {
    width: 60%;
	font-size: 1.1rem;
	color: #666;
	line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 5vw;
    width: 100%;
}

.feature-item {
    text-align: left;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 60vh;
    position: relative;
    overflow: hidden;
    flex: 1;
    cursor: pointer;
}

.feature-item.active {
    flex: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-item.active::before {
    opacity: 1;
}

.feature-item.active .feature-content {
    bottom: 4rem;
}

.feature-item.active .feature-content h3 {
    color: #007bff;
    text-shadow: none;
}

.feature-item.active .feature-content .p {
    opacity: 1;
    max-height: 100px;
    margin-top: 0.5rem;
    color: #333;
    text-shadow: none;
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    transform-origin: center;
}

.feature-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
	background-image: linear-gradient(0deg, rgba(12, 15, 127, 0.95), rgba(12, 15, 127, 0));
    z-index: 1;
    transition: all 0.8s ease;
	opacity: 0;
}

.feature-item:hover::before{
	opacity: 1;
}

.feature-item:hover {
	flex: 2;
}

.feature-content {
    position: absolute;
    top: 60%;
    left: 2rem;
    z-index: 2;
    width: 29vw;
    text-align: left;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	opacity: 0;
}

.en .feature-content{
	top: 50%;
}

.en .feature-content .p{
	font-size: 1rem;
}

.feature-title{
	position: absolute;
	bottom: 4rem;
	left: 2rem;
	z-index: 2;
	width: 80%;
	text-align: left;
	color: #fff;
	font-size: 2.4rem;
	transition: all 1s;
}

.en .feature-title{
	font-size: 1.75rem;
}

.en .linian_title .title{
	line-height: 1.3;
}

.feature-item:hover .feature-content {
	opacity: 1;
}

.feature-item:hover .feature-title{
	opacity: 0;
	filter: blur(10px);
}

.feature-content h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    transition: all 1s;
	font-weight: 400;
}

.feature-content .p {
    font-size: 1.1rem;
    line-height: 30px;
    opacity: 0;
    overflow: hidden;
	color: #fff;
	transition: opacity .5s ease-in-out, transform .6s;
	transform: translateY(10px);
}
.feature-content .p p{
	position: relative;
	padding-left: 12px;
}
.feature-content .p p::after{
	
	width: 6px;
	height: 6px;
	position: absolute;
	left: 0;
	content: '';
	background: #fff;
	border-radius: 50%;
	top: 12px;
}

.feature-item:last-child .feature-content .p{
	display: flex;
	flex-wrap: wrap;
}

.feature-item:last-child .feature-content .p p{
	margin-right: 10px;
}

.feature-item:hover .feature-content .p{
	opacity: 1;
	transform: translateY(0px);
	transition-delay: .2s;
}

.feature-item .feature-img{
	width: 100%;
	height: 100%;
	transition: all .5s ease-in-out;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	background: center center no-repeat;
}

.feature-item:hover .feature-content .p {
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) .5s;
    opacity: 1;
    margin-top: 0.5rem;
    text-shadow: none;
}

/* 产品中心样式 */
.products {
    padding: 8rem 0;
    background: #f9f9f9;
    position: relative;
}

.products:before{
	width: 856px;
	height: 926px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: url(../images/xb_bg.png) center center no-repeat;
	filter: blur(3px);
	opacity: 0.5;
}

.products-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.products-text {
    flex: 0 0 30%;
    position: sticky;
    top: 10rem;
    height: fit-content;
}

.products-text .pt-detail{
	margin-top: 3vw;
}

.duori_title h2 {
    font-size: 2.5vw;
    color: #333;
    font-weight: 400;
	position: relative;
	padding-left: 4vw;
	transition: all 0.5s;
}

.en .duori_title h2{
	padding-left: 0;
}

.en .duori_title h2::after{
	display: none;
}

.advantages .duori_title h2::after{
	background: #fff;
}

.products-text h2::after,.duori_title h2::after{
	width: 0vw;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	content: '';
	background: #333333;
	opacity: 0.3;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.duori_title.is-inview h2::after{
	width: 3vw;
}

.duori_title h2 .char,.slogans .cn .char{
	transform: translateX(35px);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
}

.duori_title h2 .char:nth-child(2),.slogans .cn .char:nth-child(2){
	transition: all 1s ease .05s;
}

.duori_title h2 .char:nth-child(3),.slogans .cn .char:nth-child(3){
	transition: all 1s ease .1s;
}

.duori_title h2 .char:nth-child(4),.slogans .cn .char:nth-child(4){
	transition: all 1s ease .15s;
}

.duori_title h2 .char:nth-child(5),.slogans .cn .char:nth-child(5){
	transition: all 1s ease .2s;
}

.duori_title h2 .char:nth-child(6),.slogans .cn .char:nth-child(6){
	transition: all 1s ease .25s;
}
.duori_title h2 .char:nth-child(7),.slogans .cn .char:nth-child(7){
	transition: all 1s ease .3s;
}

.duori_title h2 .char:nth-child(8),.slogans .cn .char:nth-child(8){
	transition: all 1s ease .35s;
}

.duori_title h2 .char:nth-child(9),.slogans .cn .char:nth-child(9){
	transition: all 1s ease .4s;
}

.duori_title h2 .char:nth-child(10),.slogans .cn .char:nth-child(10){
	transition: all 1s ease .45s;
}

.duori_title h2 .char:nth-child(11),.slogans .cn .char:nth-child(11){
	transition: all 1s ease .5s;
}

.duori_title h2 .char:nth-child(12),.slogans .cn .char:nth-child(12){
	transition: all 1s ease .55s;
}

.duori_title.is-inview h2 .char,.slogans.is-inview .cn .char{
	transform: translateX(0px);
	opacity: 1;
	filter: blur(0px);
}

.about_top{
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pt-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
	text-align: justify;
	transform: translateY(45px);
	opacity: 0;
	filter: blur(5px);
	transition: all 1s ease;
}

.pt-detail.is-inview{
	transform: translateY(0);
	opacity: 1;
	filter: blur(0px);
}

.products-showcase {
    flex: 0 0 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item {
    position: relative;
    width: 46%;
    height: auto;
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    box-shadow: none;
	margin-bottom: 4vw;
}

.product-item .p-box{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	transition: all 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
	
}

.product-item.is-inview .p-box{
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.product-item .p-box .img{
	position: relative;
	overflow: hidden;
}

.product-item .p-box .img::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.product-item .p-box .img img{
	transform: scale(1.1);
	transition: all 1s;
}

.product-item:hover {
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
}

.product-item.is-inview .p-box .img img{
	transform: scale(1);
}

.product-item:nth-child(2) {
    position: relative;
    top: 25vh;
}

.product-item:nth-child(4) {
    position: relative;
    top: 25vh;
}


.product-item.is-inview:hover .img img{
    transform: scale(1.05);
}

.product-item h3 {
    position: absolute;
    top: 6rem;
    left: 2rem;
    color: #fff;
    font-size: 1.8rem;
    z-index: 2;
    font-weight: 400;
	opacity: 0;
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) .1s;
}

.product-item.is-inview h3{
	top: 4rem;
	opacity: 1;
}

.product-item p {
    position: absolute;
    top: 10rem;
    left: 2rem;
    color: #fff;
    font-size: 1.1rem;
	line-height: 1.7;
    z-index: 2;
    max-width: 80%;
	opacity: 0;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) .2s;
}

.product-item.is-inview p{
	opacity: 1;
	top: 8rem;
}


.product-item .view-more {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    z-index: 2;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 300;
    transition: all 0.8s ease;
	opacity: 0;
}

.product-item:hover .view-more{
	opacity: 1;
}

.product-item .view-more::after {
    content: '→';
    font-size: 1.2rem;
}

.product-item .view-more::before {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* 核心优势样式 */
.advantages {
    height: 90vh;
    position: relative;
    overflow: hidden;
    background: url(../images/advantage1.jpg) no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

.advantages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #000;
}

.advantages-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}


.advantages-content {
    position: relative;
    z-index: 2;
    width: 30%;
    margin-left: 7.5%;
    margin-top: 15vh;
}

.en .advantages-content{
	width: 50%;
}

.advantages-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 300;
}

.advantages-content p {   
    color: #fff;
}

.advantages-grid {
    position: absolute;
    bottom: 10%;
    left: 7.5%;
    width: 85%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    z-index: 2;
}

.advantage-item {
    position: relative;
    padding: 3rem 1.5rem;
    background: rgba(10, 68, 196, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: all 0.8s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.advantage-item:hover,
.advantage-item.active {
    background: rgba(10, 68, 196, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-item .icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 70px;
    height: 70px;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
}

.en .advantage-item .icon{
	width: 50px;
	height: 50px;
}

.en .advantage-item h3{
	font-size: 1.1rem;
}

.advantage-item:nth-child(1) .icon {
    background-image: url('../images/icon-quality.png');
}

.advantage-item:nth-child(2) .icon {
    background-image: url('../images/icon-innovation.png');
}

.advantage-item:nth-child(3) .icon {
    background-image: url('../images/icon-global.png');
}

.advantage-item:nth-child(4) .icon {
    background-image: url('../images/icon-team.png');
}

.advantage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 300;
    position: relative;
    padding-bottom: 0.5rem;
}

.advantage-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5%;
    height: 1px;
    background: #fff;
    transition: width 0.8s ease;
}

.advantage-item:hover h3::after,
.advantage-item.active h3::after {
    width: 10%;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.9);
    position: static;
    text-align: left;
}

/* 新闻资讯样式 */
.news {
    padding: 8rem 0;
    background: url('../images/news_bg.jpg') center/cover no-repeat;
    position: relative;
}

.news-header {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: 0 auto;
}

.news-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

.news-header p {
    color: #666;
    font-size: 1rem;
}

.news-header .view-more {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.news-header .view-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-header .view-more:hover::after {
    transform: translateX(5px);
}

.news-grid {
    width: 85%;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-item {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
	
}

.news-item .n-box{
	background: rgba(255, 255, 255, 0.5);
	width: 100%;
	height: auto;
	position: relative;
	transition: all 0.5s;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.news-item:nth-child(1):hover .n-box,.news-item:nth-child(2):hover .n-box{
	border-color: #0c0f7f;
	box-shadow: 15px 15px 50px rgba(12, 15, 127, 0.1);
}

.news-item:last-child .news-content:hover .n-box{
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}


.news-item:not(:last-child):hover:before {
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vw;
    background: transparent;
    height: 100%;
	overflow: initial;
}

.news-item:last-child .news-content {
    text-decoration: none;
	height: calc(50% - 1vw);
	padding: 0;
}

a.news-item:hover .news-content h3{
	color: #0c0f7f;
}

.news-item:last-child:hover .news-content .n-box{
	box-shadow: none;
}

.news-item:last-child .news-content .n-box{
	padding: 2rem;
	position: relative;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.news-item:last-child .news-content:hover h3{
	color: #0c0f7f;
}

.news-item:last-child:hover .news-content:hover .n-box {
    border-color: #0c0f7f;
    box-shadow: 15px 15px 50px rgba(12, 15, 127, 0.1);
}


.news-item .img-wrapper {
    width: 100%;
    padding-top: 65%; /* 16:9 比例 */
    position: relative;
    overflow: hidden;
}

.news-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
	min-height: 200px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.news-content .date {
    display: inline-block;
    background: #0c0f7f;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
	font-family: roboto;
	position: relative;
}

.news-content h3 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    position: relative;
	transition: all 0.5s;
	width: 100%;
}

.en .news-content h3{
	font-size: 1.2rem;
}

.en .product-item p{
	font-size: 1.1rem;
}

.en .about-content{
	text-align: justify;
}

.news-content .view-more {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
	position: relative;
}

.news-content .view-more .icon{
	transition: all 0.5s;
	margin-left: 0px;
}

.news-item:nth-child(1):hover .news-content .view-more .icon,.news-item:nth-child(2):hover .news-content .view-more .icon{
	margin-left: 5px;
}

.news-item:last-child .news-content:hover .view-more .icon{
	margin-left: 5px;
}


.footer-partners{
	width: 100%;
	display: flex;
}

/* 页脚样式 */
.footer {
    background: #0c0f7f;
    color: #fff;
    padding: 4rem 0 1rem;
}

.footer-content {
    width: 85%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-left {
    width: 30%;
}

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

.footer-logo img {
    height: 3.5rem;
	width: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-info p:first-child {
    font-size: 1.2rem;
    margin-bottom: 0rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
	width: 60%;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-group h3 {
    font-size: 1.1rem;
    font-weight: 400;
	transform: translateY(25px);
	opacity: 0;
	transition: all 0.6s ease;
}

.is-inview .footer-nav-group h3{
	transform: translateY(0px);
	opacity: 1;
}

.footer-nav-group h3 a{
	color: #fff;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

.footer-nav-list li{
	transform: translateY(25px);
	opacity: 0;
	transition: all 1s ease;
}

.footer-nav-list li:nth-child(2){
	transition: all 1s ease 0.05s;
}

.footer-nav-list li:nth-child(3){
	transition: all 1s ease 0.1s;
}

.footer-nav-list li:nth-child(4){
	transition: all 1s ease 0.15s;
}

.footer-nav-list li:nth-child(5){
	transition: all 1s ease 0.2s;
}

.footer-nav-list li:nth-child(6){
	transition: all 1s ease 0.25s;
}

.is-inview .footer-nav-list li{
	transform: translateY(0px);
	opacity: 1;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-nav-list a:hover::after {
    width: 100%;
}


.footer-partners-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-partners-list {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-partners-list img {
    height: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
	width: auto;
}

.footer-partners-list img:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
	opacity: 0;
	transition: all 0.5s;
}

.footer-bottom.is-inview{
	opacity: 1;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* 菜单按钮样式 */
.menu-toggle {
    display: none; /* PC端默认隐藏 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 2rem;
    height: 2rem;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.nav.scrolled .menu-toggle span {
    background-color: #333;
}


.banner-swiper {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 0px;
}

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

.banner-swiper .swiper-slide .slide-bg{
	width: 100%;
	height: 100%;

	position: absolute;
	left: 0;
	top: 0;
}

.banner-swiper .swiper-slide .slide-bg img{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(1.1);
}

.banner-swiper .swiper-slide.active .slide-bg img{
	-webkit-animation: imgScale 7s linear forwards;
}

@-webkit-keyframes imgScale{
	0%{
		transform: scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}

.banner-swiper.product-swiper .swiper-slide {
	background-image: url(../images/product_bg.jpg);
}

.banner-swiper .swiper-pagination {
	width: 85%;
	text-align: right;
	right: 7.5%;
	bottom: 10%;
	left: auto;
}

.banner-swiper .swiper-pagination-bullet {
	width: 85px;
	height: 30px;
	line-height: 30px;
	opacity: 1;
	border-radius: 0;
	background: transparent;
	-webkit-transition: all .5s;
	margin: 0px 2px !important;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-family: manrope;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
}

.banner-swiper .swiper-pagination-bullet::after{
	width: 0%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -1px;
	content: '';
	background: #fff;
	transition: all 0.5s;
}

.banner-swiper .swiper-pagination-bullet:hover::after{
	width: 100%;
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active,.banner-swiper .swiper-pagination-bullet:hover {
	color: rgba(255, 255, 255, 1);
}

.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	width: 100%;
}

.parallax {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.back_img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
}

.banner-swiper .slogan {
	width: 55%;
	height: auto;
	position: absolute;
	left: 7.5%;
	top: 30%;
	color: #fff;
	line-height: 1.3;
}

.banner-swiper.product-swiper .slogan {
	top: 35%;
	z-index: 2;
}

.banner-swiper .slogan .des {
	font-size: 4.5vw;
	margin-bottom: 5vw;
	transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) .4s;
	font-weight: 400;
	overflow: hidden;
}

.banner-swiper .slogan .info {
	line-height: 1.7;
	width: 90%;
	margin-bottom: 3.5vw;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
	opacity: 0;
	transform: translateY(65px);
	display: flex;
	justify-content: space-between;
}


.banner-swiper .swiper-slide.active .slogan .title p,
.banner-swiper .swiper-slide.active .slogan .des p{
	transform: translateY(0px);
}
.banner-swiper .swiper-slide.active .slogan .info{
	transform: translateY(0px);
	opacity: 1;
}
.banner-swiper .swiper-slide.active .more_btn{
	width: 180px;
	opacity: 1;
}

.banner-swiper .swiper-slide.active .more_btn .box p{
	opacity: 1;
	left: 40px;
}

.banner-swiper .swiper-slide.active .more_btn .box .icon{
	opacity: 1;
}

.more_btn{
	width: 0px;
	height: auto;
	position: relative;
	display: block;
	transition: all 1s cubic-bezier(.4, 0, .2, 1) .6s;
	opacity: 0;
}

.more_btn .box{
	width: 100%;
	height: 50px;
	position: relative;
	color: #fff;
	border-radius: 50px;
	overflow: hidden;
}

.more_btn .box::after{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content: '';
	border: 1px solid #fff;
	border-radius: 50px;
	box-sizing: border-box;
	pointer-events: none;
}

.more_btn .box:before{
	width: 0%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #fff;
	border-radius: 50px;
	transition: all 0.6s ease;
}

.more_btn:hover .box:before{
	width: 100%;
}
.more_btn:hover .box{
	color: #0c0f7f;
}
.more_btn .box .icon{
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	opacity: 0;
	overflow: hidden;
	display: flex;
	transition: all 0.7s ease 0.5s;
}


.more_btn .box .icon .i{
	width: 16px;
	height: 16px;
	position: relative;
}

.more_btn .box .icon .i:nth-child(1){
	margin-left: -20px;
	transition: all 0.6s ease;
}

.more_btn .box .icon .i:nth-child(2){
	margin-left: 4px;
}

.more_btn:hover .box .icon .i:nth-child(1){
	margin-left: 0px;
}

.more_btn .box p{
	position: absolute;
	line-height: 48px;
	left: 30px;
	top: 0;
	font-weight: 300;
	opacity: 0;
	transition: all 0.7s ease 0.3s;
}

.banner-swiper .slogan .title {
	font-size: 3vw;
	transition: all 1s cubic-bezier(.4, 0, .2, 1);
	font-weight: 100;
	overflow: hidden;
}

.banner-swiper .slogan .title p,.banner-swiper .slogan .des p{
	transform: translateY(100%);
	transition: all 1s cubic-bezier(.4, 0, .2, 1);
}
.banner-swiper .slogan .des p{
	transition: all 1s cubic-bezier(.4, 0, .2, 1) .3s;
}
.banner-swiper .slogan .info .item{
	width: 47%;
	display: flex;
	align-items: center;
}

.banner-swiper .slogan .des.des2{
	margin-bottom: 2vw;
}

.banner-swiper .slogan .des.des1{
	margin-bottom: 0;
}

.banner-swiper .slogan .info .item .i_logo{
	width: 140px;
}

.banner-swiper .slogan .info .item:nth-child(2) .i_logo{
	width: 75px;
}

.banner-swiper .slogan .info .item .txt{
	line-height: 1.5;
	width: auto;
	margin-left: 15px;
	font-weight: 300;
}

.sub_banner {
	width: 100%;
	height: 35vw;
	position: relative;
	background: #000;
	margin-top: 0px;
	overflow: hidden;
	margin-bottom: -1px;
}

.sub_img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
	opacity: 1;
	-webkit-transform:  scale(1.1);
	-webkit-animation: subAnimate 4s ease 1 forwards;
}

@-webkit-keyframes subAnimate {
	0% {
		-webkit-transform:  scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

.slogans {
	width: 80%;
	height: auto;
	position: absolute;
	left: 7.5%;
	color: #fff;
	top: 35%;
}

.slogans .cn {
	font-size: 4vw;
    position: relative;
    font-weight: 100;
}

.slogans .en {
	width: 100%;
	font-size: 1.55rem;
	font-family: monts;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.child_menu{
	width: auto;
	height: auto;
	display: flex;
	position: absolute;
	left: 7.5%;
	bottom: 13%;
	border-bottom: 1px solid rgba(255,255,255,.4);
	padding-bottom: 10px;
	align-items: center;
}

.child_menu a,.child_menu span{
	color: rgba(255, 255, 255, 1);
	line-height: 25px;
	position: relative;
	font-weight: 300;
}

.child_menu span{
	padding: 0px 10px;
}

.child_menu a:first-child::after,.child_menu a::after{
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -11px;
	content: '';
	background-color: #fff;
	transition: all 0.4s;
}

.child_menu a::after{
	width: 0%;
}

.child_menu a:hover::after{
	width: 100%;
}

.linian{
	padding: 0;
	height: 70vh;
	position: relative;
	overflow: hidden;
}

.linian_bg{
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	background: center center no-repeat;
	background-size: cover;
}

.linian_title{
	width: 50%;
	height: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	left: 25%;
}

.en .linian_title{
	width: 80%;
	left: 10%;
}

.linian_title .name{
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 1.4rem;
	margin-bottom: 0.25rem;
}
.linian_title .title{
	overflow: hidden;
}
.linian_title p{
	transform: translateY(100%);
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}

.linian_title .title p{
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) .5s;
}

.linian_title .title p span{
	padding: 0px 8px;
}

.linian_title.is-inview p{
	transform: translateY(0%);
}

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

.history_box{
	background: url(../images/history_bg.jpg) center center no-repeat;
	background-size: cover;
}
.history_swiper .swiper-slide{
	padding-right: 50px;
	height: auto;
	transition: all 1s ease .8s;
	transform: translateX(50px);
	opacity: 0;
	width: 25%;
}

.history_swiper .swiper-slide:nth-child(1){
	transition: all 1s ease .4s;
}

.history_swiper .swiper-slide:nth-child(2){
	transition: all 1s ease .5s;
}

.history_swiper .swiper-slide:nth-child(3){
	transition: all 1s ease .6s;
}

.history_swiper .swiper-slide:nth-child(4){
	transition: all 1s ease .7s;
}

.history_swiper.is-inview .swiper-slide{
	transform: translateX(0px);
	opacity: 1;
}


.history_swiper .swiper-slide::after{
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.history-btn{
	width: 140px;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.history-btn .icon{
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 16px;
	color: #0c0f7f;
	display: flex;
	overflow: hidden;
}

.history-btn .icon .iconfont:nth-child(1){
	transition: all 0.5s ease;
}
.history-btn .next .icon .iconfont:nth-child(1){
	margin-left: -16px;
}

.history-btn .next:hover .icon .iconfont:nth-child(1){
	margin-left: 0px;
}

.history-btn .prev .icon .iconfont:nth-child(1){
	margin-left: -16px;
}

.history-btn .prev:hover .icon .iconfont:nth-child(1){
	margin-left: 0px;
}

.history-btn .prev .icon{
	transform: translate(-50%, -50%) rotate(-180deg);
}

.history-btn .prev:hover .icon,.history-btn .next:hover .icon{
	color: #fff;
}

.history-btn .prev,.history-btn .next{
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	position: relative;
	cursor: pointer;
	border-radius: 50%;
}

.history-btn .prev::before,.history-btn .next::before{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: #0c0f7f;
	border-radius: 50%;
	transform: scale(0.5);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 0;
}

.history-btn .prev:hover:before,.history-btn .next:hover:before{
	transform: scale(1);
	border-radius: 50%;
	opacity: 1;
}

.history-btn .prev::after,.history-btn .next::after{
	width: 100%;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	transition: all 0.5s;
}

.history_swiper{
	padding-bottom: 5vw;
	margin-top: 5vw;
}

.history_swiper .swiper-pagination{
	top: auto !important;
	bottom: 0;
	height: 15px;
	background: url(../images/line_1.png) left top repeat-x;
}

.history_swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: url(../images/line_2.png) left top repeat-x;
	transform: none !important;
	transition: width 0.3s ease;
}

.about_top .about-header{
	margin-bottom: 0;
}

.history_swiper .swiper-slide .date{
	font-family: din;
	font-size: 3vw;
	margin-bottom: 2vw;
}

.history_swiper .swiper-slide .des{
	width: 100%;
	line-height: 1.7;
	padding-bottom: 2vw;
	font-size: 1.1rem;
}

.history-btn .prev:hover::after, .history-btn .next:hover::after{
	opacity: 0;
}

.product-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2vw;
}

.product-list .item{
	position: relative;
	display: block;
}

.product-list .item:nth-child(2n){
	transition-delay: 0.2s;
}

.product-list .item:nth-child(3n){
	transition-delay: 0.4s;
}

.product-list .item .item_box{
	border: 1px solid rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	transition: all 0.5s;
}

.product-list .item:hover .item_box{
	border-color: #0c0f7f;
	box-shadow: 15px 15px 50px rgba(12, 15, 127, 0.1);
}


.product-list .item .inner{
	padding-top: 245px;
	transition: all 0.4s ease;
}


.product-list .item .info{
	width: 100%;
	height: auto;
	position: relative;
	padding: 0px 25px;
	margin-bottom: 45px;
	margin-top: 45px;
	transition: all 0.4s ease;
}

.product-list .item .info .name{
	width: 100%;
	font-size: 1.6rem;
	margin-bottom: 5px;
	line-height: 1.4;
}

.product-list .item:hover .info .name{
	color: #0c0f7f;
}

.product-list .item .info .des{
	width: 100%;
	font-size: 1rem;
	color: #666;
	min-height: 55px;
}

.product-list .item .more{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
	line-height: 25px;
	height: 0px;
	overflow: hidden;
	transition: all 0.4s ease;
	color: #666;
}

.product-list .item .more::after{
	width: 0px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.product-list .item:hover .more::after{
	width: 100%;
}

.product-list .item:hover .more{
	height: 35px;
	margin-top: 15px;
	padding-top: 15px;
}


.product-list .item:hover .inner{
	padding-top: 190px;
}

.cd-list .item{
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	margin-bottom: 5vw;
	border-radius: 10px;
	overflow: hidden;
}

.cd-list .item:last-child{
	margin-bottom: 0;
}

.cd-list .item:nth-child(even){
	flex-direction: row-reverse;
}

.cd-list .item .left{
	width: 45%;
	padding: 5vw 3vw;
	position: relative;
	background: #f9f9f9;
	z-index: 2;
}

.cd-list .item:nth-child(odd) .thum{
	left: -55%;
}

.cd-list .item:nth-child(even) .thum{
	left: 55%;
}

.cd-list .item .thum{
	width: 55%;
	height: auto;
	border-radius: 10px;
	position: relative;
}

.cd-list .item .thum .inner{
	padding-top: 0%;
	height: 40vw;
}

.cd-list .item .left .title{
	width: 100%;
	font-size: 2.5rem;
	margin-bottom: 2vw;
	position: relative;
	color: #0c0f7f;
}

.cd-list .item .left .list{
	width: 100%;
	position: relative;
}

.cd-list .item .left .list .li{
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 15px;
	cursor: pointer;
}

.cd-list .item .left .list .li::after{
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0px;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.cd-list .item .left .list .li .name{
	font-size: 1.2rem;
}

.cd-list .item .left .list .li.active .name{
	color: #0c0f7f;
}

.cd-list .item .left .list .li .des{
	width: 100%;
	height: 0px;
	position: relative;
	overflow: hidden;
	padding-top: 10px;
	transition: all 0.4s linear;
}

.rcln_box{
	width: 100%;
	display: flex;
	position: relative;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 3rem;
	align-items: center;
}

.rcln_box .thum{
	width: 45%;
	border-radius: 10px;
}

.rcln_box .thum .inner{
	padding-top: 70%;
}

.rcln_box .info{
	width: 50%;
}

.rcln_box .info .i_item{
	width: 100%;
	margin-bottom: 3vw;
}

.en .rcln_box .info .i_item{
	margin-bottom: 2vw;
}

.rcln_box .info .i_item:last-child{
	margin-bottom: 0;
}

.rcln_box .info .i_item .name{
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.rcln_box .info .i_item .des{
	color: #666;
}

.join_left{
	width: 350px;
	position: relative;
	background: #fff;
	border-radius: 5px;
	padding: 2vw;
}

.j_name{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 1vw;
	margin-bottom: 1vw;
}

.j_name .icon{
	width: 30px;
}

.j_name .txt{
	width: auto;
	margin-left: 5px;
	font-size: 1.2rem;
}

.joins {
	width: calc(100% - 450px);
	position: relative;
}

.j_info{
	width: 100%;
	height: auto;
	position: relative;
	line-height: 1.5;
}

.j_info p{
	margin-bottom: 0.5vw;
}

.joins .item {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 1.5vw;
	background: #fff;
	padding: 2vw;
	border-radius: 5px;
	transition: all 0.5s;
}


.joins .item:last-child{
	margin-bottom: 0;
}


.joins .item.active .btms {
	display: block;
}

.joins .item .top {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
	align-items: center;
	/* border-top: 1px solid #bac7de; */
	/* padding-top: 1vw; */
}


.joins .item .top .lg {
	width: 80px;
	border-radius: 50%;
    overflow: hidden;
}

.joins .item .top .jr {
	width: calc(100% - 160px);
}

.joins .item .top .plus {
	width: 30px;
	height: 50px;
	position: relative;
	
}

.joins .item .top .plus::after{
	content: '';
	width: 18px;
	height: 2px;
	background: #0c0f7f;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.joins .item .top .plus:before{
	content: '';
	width: 2px;
	height: 18px;
	background: #0c0f7f;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}


.joins .item.active .top .plus::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.joins .item.active .top .jr .title .t {
	color: #0c0f7f;
}

.joins .item .top .jr {
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.joins .item .top .jr .title {
	width: 100%;
	height: auto;
	position: relative;
}

.joins .item .top .jr .gz {
	width: 120px;
	font-size: 1.3rem;
	line-height: 1.3;
	text-align: right;
}

.joins .item .top .jr .title .t {
	font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.25vw;
}

.joins .item .top .jr .title .d {
	line-height: 1.5;
	opacity: 0.6;
}

.joins .item .btms {
	width: 100%;
	height: auto;
	position: relative;
	line-height: 1.7;
	display: none;
	margin-top: 0.5vw;
	padding-top: 1vw;
}

.joins .item .btms .cons {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 2vw;
	line-height: 2;
}

.joins .item .apply_btn {
	width: 134px;
	height: 48px;
	position: relative;
	cursor: pointer;
	background: #0c0f7f;
	color: #fff;
	border-radius: 5px;
	line-height: 48px;
	text-align: center;
	display: block;
	transition: all .4s;
}

.joins .item .apply_btn:hover {
	border-radius: 50px;
}

.join_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 3rem;
	align-items: flex-start;
}

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

.news-header-left h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 0;
    font-weight: 300;
}

.news-header-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.news-list{
	width: 100%;
	margin-top: 2vw;
}

.news_left{
	width: calc(100% - 500px);
}

.news_right{
	width: 400px;
}

.en .news_left{
	width: calc(100% - 600px);
}

.en .news_right{
	width: 500px;
}

.news-list .item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 2vw;
	margin-bottom: 2vw;
	position: relative;
}

.news-list .item::before,.news-list .item::after{
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, .1);
}

.news-list .item::after{
	width: 0%;
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
	background: #0c0f7f;
}

.news-list .item:hover::after{
	width: 100%;
}

.news-list .item:hover .inner img{
	transform: scale(1.05);
}

.news-list .item:hover .info .title .name{
	color: #0c0f7f;
}

.news-list .item .thum{
	width: 40%;
	border-radius: 5px;
	overflow: hidden;
}

.news-list .item .thum .inner{
	padding-top: 60%;
}

.news-list .item .info{
	width: 57%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.news-list .item .info .title{
	width: 100%;
	height: auto;
	position: relative;
	
}

.news-list .item .info .title .name{
	font-size: 1.5rem;
	position: relative;
	margin-bottom: 0.5vw;
}

.en .news-list .item .info .title .name{
	font-size: 1.2rem;
}

.en .news-list .item .info .title .des{
	font-size: 0.875rem;
}

.news-list .item .info .title .des{
	width: 100%;
	color: #666;
	-webkit-line-clamp: 4;
}

.news-list .item .info .date{
	font-family: roboto;
	color: #666;
}

.jsgk{
	margin-top: 2vw;
	position: relative;
	
}

.jsgk_box{
	background: #f3f3f8;
	padding: 1.5vw;
	border-radius: 5px 5px 0px 0px;
	position: relative;
	width: 100%;
}

.jsgk_box .item{
	width: 100%;
	height: auto;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	display: block;
	padding-bottom: 1vw;
	margin-bottom: 1vw;
}

.jsgk_box .item:hover .name{
	color: #0c0f7f;
}

.jsgk_box .i_box{
	width: 100%;
	display: block;
	position: relative;
}

.jsgk_box .item:last-child{
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.jsgk_box .item::after{
	width: 6px;
	height: 6px;
	position: absolute;
	left: -0.5vw;
	top: 11px;
	content: '';
	background: #0c0f7f;
	border-radius: 50%;
}

.en .jsgk_box .item::after{
	display: none;
}

.jsgk_box .item .name{
	font-size: 1.2rem;
	margin-bottom: 0.5vw;
}

.en .jsgk_box .item .name{
	font-size: 1.1rem;
}

.en .jsgk_box .item .des{
	display: none;
}

.en .jsgk_box .item .name{
	margin-bottom: 0;
}

.jsgk_box .item .des{
	width: 100%;
	height: auto;
	position: relative;
	color: #666;
	line-height: 1.6;
}

.ts_more{
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}

.detail_top .des p:first-child{
	color: #0c0f7f;
}

.ts_more .m_box{
	background: #0c0f7f;
	display: flex;
	justify-content: center;
	width: 100%;
	color: #fff;
	padding: 1vw;
	border-radius: 0px 0px 5px 5px;
}
.ts_more:hover .m_box{
	opacity: 0.9;
}

.ts_more .m_box .icon{
	margin-left: 5px;
}

.contact_box{
	position: relative;
	padding: 0;
}

.contacts{
	width: 35%;
	height: auto;
	position: absolute;
	right: 7.5%;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	border-radius: 5px;
	padding: 3vw;
}

.contacts .name{
	font-size: 2.3vw;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 1vw;
	margin-bottom: 2vw;
}
.en .contacts {
	width: 40%;
}
.en .contacts .name{
	font-size: 1.8vw;
}

.contact_info{
	width: 100%;
	height: auto;
	position: relative;
}

.contact_info .item{
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2vw;
}

.contact_info .item .icon{
	width: 30px;
}

.contact_info .item .info{
	width: calc(100% - 35px);
	margin-left: 5px;
}

.contact_info .item .info .title{
	line-height: 30px;
	opacity: 0.7;
}

.contact_info .item .info a.des{
	font-family: din;
	font-size: 2rem;
}

.contact_info .item .info div.des{
	font-size: 1.2rem;
	line-height: 1.5;
}

.intro_box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.intro_box:before{
	width: 20vw;
	height: 20vw;
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	background: url(../images/logo_shader.png) no-repeat;
	background-size: cover;
	opacity: 0.02;
	pointer-events: none;
}

.about_swiper{
	width: 50%;
	margin: 0px;
	border-radius: 10px;
}
.intro_box .about_top .about-header{
	margin-bottom: 2vw;
}
.intro_box .about_top{
	width: 45%;
	align-content: flex-start;
}

.intro_box .about-content{
	width: 100%;
}

.about_swiper .swiper-pagination-bullet-active{
	background: #ffffff;
}

/* 响应式布局 */
@media screen and (max-width: 1440px) {
    
    .en .advantage-item h3{
        font-size: 0.875rem;
    }
    
	.news-list .item .info .title .des{
		-webkit-line-clamp: 2;
	}
	.cd-list .item .left .title{
		font-size: 2rem;
	}
	.cd-list .item .left .list .li .name {
	    font-size: 1.1rem;
	}
	.cd-list .item .left .list .li {
	    margin-bottom: 15px;
	    padding-bottom: 10px;
	}
	.menu a{
		font-size: 1.1rem;
	}
	.cd-list .item .thum .inner{
		height: 0;
		padding-top: 100%;
	}
	.feature-content{
		width: 35vw;
	}
	.feature-title,.feature-content h3{
		font-size: 2rem;
	}
	.en .footer-nav{
		width: 65%;
	}
	.en .footer-nav-group h3{
		font-size: 0.7rem;
	}
	.en .footer-nav-list a{
		font-size: 0.75rem;
		line-height: 1.5;
        display: block;
	}
	.en .footer-info{
		font-size: 0.875rem;
	}
	.en .footer-info p:first-child{
		font-size: 1rem;
	}
	.en .footer-nav-group{
	    width: 100%;
	    padding-right: 5%;
	}
	.en .advantage-item p{
		font-size: 12px;
        line-height: 20px;
        min-height: 60px;
	}
	.en .advantage-item{
	    padding-top: 5rem;
	}
	.en .footer-left{
	    width: 30%;
	}
	.en .footer-logo img{
	    height: 2.5rem;
	}
	.en .advantages-grid{
		gap: 1rem;
	}
	.en .menu a{
		font-size: 1.1rem;
	}
	.en .submenu a{
		font-size: 0.875rem;
	}
	.en .rcln_box .info .i_item .name{
		font-size: 1.1rem;
	}
	.en .rcln_box .info .i_item .des{
		font-size: 0.875rem;
	}
	.en .contact_info .item .info div.des{
		font-size: 1rem;
	}
	.en .contact_info .item .info .title{
		font-size: 0.875rem;
	}
	.en .feature-content{
		width: 35vw;
	}
	.en .feature-content .p{
		font-size: 0.875rem;
	}
	.en .feature-content h3,.linian_title .title{
		font-size: 2rem;
	}
	.en .history_swiper .swiper-slide .des{
		font-size: 0.9rem;
	}
	.en .pt-detail{
		font-size: 1rem;
	}
}

@media screen and (max-width: 768px) {
	.menu{
		width: 70%;
	}
	.menu a{
		font-size: 1.3rem;
		padding: 0 0.5rem;
	}
    .nav .container {
        height: 100%;
    }
	.nav{
		height: 60px;
	}
	.logo img{
		height: 2rem;
	}

    .logo {
        margin-left: 3%;
        order: 1;
		position: relative;
		z-index: 20;
    }

    .menu-toggle {
        display: block;
		position: absolute;
		right: 3%;
		top: 50%;
		transform: translateY(-50%);
    }

    .menu {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        opacity: 1;
	    visibility: visible;
	    pointer-events: auto;
    }

    .menu li {
        width: 100%;
        text-align: center;
		transform: translateY(25px);
		opacity: 0;
    }
	
	.menu.active li{
		transform: translateY(0px);
		opacity: 1;
		transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.5s;
	}
	
	.menu.active li:nth-child(2){
		transition-delay: 0.6s;
	}
	
	.menu.active li:nth-child(3){
		transition-delay: 0.7s;
	}
	
	.menu.active li:nth-child(4){
		transition-delay: 0.8s;
	}
	
	.menu.active li:nth-child(5){
		transition-delay: 0.9s;
	}
	
	.menu.active li:nth-child(6){
		transition-delay: 1s;
	}
	
	.menu.active li:nth-child(7){
		transition-delay: 1.1s;
	}
	.menu > li > a:hover {
	    color: #0c0f7f;
	}
    .menu a {
        color: #3e3e3e;
        display: block;
		line-height: 60px;
		padding: 0px;
		
    }
	
	
    .lang-switch {
        position: absolute;
        right: 80px;
		top: 50%;
		transform: translateY(-50%);
		z-index: 20;
    }
	
	.linian_title .title p span{
		display: block;
	}
	.linian_title .title {
	    font-size: 1.8rem;

	}

    .about,
    .products {
        padding: 15vw 0;
    }

    .about-text p,
    .products-text p {
        font-size: 1.3rem;
    }

    .about-features {
        flex-wrap: wrap;
    }

    .feature-item {
        width: 100%;
        height: 40vh;
        flex: none !important;
		border-radius: 5px;
    }
	
	.linian_title{
		width: 90%;
		left: 5%;
	}
	.linian_title .name{
		font-size: 1rem;
		margin-bottom: 3vw;
	}
	.history-btn{
		display: none;
	}
	.boxes{
		padding: 15vw 0px;
	}
	.feature-title{
		display: none;
	}
	.feature-content{
		width: 90%;
		left: 5%;
		opacity: 1;
		top: auto;
		bottom: 5%;
	}
	.feature-content h3{
		font-size: 1.3rem;
		text-align: left;
	}
    .feature-item.active .feature-content {
        bottom: 2rem;
    }

    .feature-item.active .feature-content h3,
    .feature-content h3 {
        color: #fff;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .feature-content .p {
        display: block;
		opacity: 1;
		font-size: 0.9rem;
		line-height: 22px;
		transform: translateY(0px);
    }
	.linian{
		height: 50vh;
	}
	.feature-content .p p::after{
		top: 8px;
	}
	.feature-item:last-child .feature-content .p p{
		margin-right: 15px;
	}
    .products-container {
        flex-wrap: wrap;
		gap: initial;
    }

    .products-text {
        width: 100%;
        flex: 1;
        position: relative;
        top: 0;
    }

    .products-showcase {
        flex: none;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .product-item {
        width: 48%;
        height: 35vh;
        margin-bottom: 4vw;
		border-radius: 5px;
    }

    .product-item:nth-child(2),
    .product-item:nth-child(4) {
        top: 0;
    }

    .advantages {
        height: auto;
        padding: 5rem 0;
        display: flex;
        flex-direction: column;

    }

    .advantages-content {
        order: 1;
        width: 90%;
        margin: 0 auto 3rem;
    }


    .advantages-bg {
        position: relative;
        height: 30vh;
        order: 2;
    }
	
	.advantage-item h3{
		font-size: 1.15rem;
		margin-bottom: 0.5rem;
	}
	.advantage-item p{
		font-size: 0.9rem;
	}
    .advantages-grid {
        position: relative;
        bottom: auto;
        left: auto;
        width: 90%;
        margin: 2rem auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        justify-content: space-between;
        order: 3;
    }

    .advantage-item {
        width: 48%;
        margin: 0 0 4vw 0;
        padding: 1rem;
        height: auto;
        min-height: auto;
    }

    .advantage-item .icon {
        width: 2rem;
        height: 2rem;
        top: 0.75rem;
    }

    .news {
        padding: 15vw 0;
    }

    .news-grid {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 5vw;
		margin-top: 5vw;
    }

    .news-item:last-child .news-content {
        margin-bottom: 4vw;
    }

    .footer-nav {
        display: none;
    }

    .footer-left {
        width: 100%;
    }
	
	.nav.scrolled .menu_btn span,.nav.scrolled .menu_btn span:after,.nav.scrolled .menu_btn span:before{
		background: #333333;
	}
	
	.banner-swiper .slogan{
		width: 90%;
		left: 5%;
	}
	.banner-swiper .slogan .title{
		font-size: 7vw;
	}
	.banner-swiper .slogan .des{
		font-size: 9vw;
	}
	.scroll_icon{
		display: none;
	}
	.banner-swiper .slogan .info{
		width: 100%;
		flex-wrap: wrap;
	}
	.banner-swiper .slogan .info .item{
		width: 100%;
	}
	
	.progress-ring{
		display: none;
	}
	.banner-swiper .swiper-pagination{
		text-align: center;
		bottom: 5%;
	}
	.banner-swiper .swiper-pagination-bullet{
		overflow: hidden;
		text-indent: 999px;
	}
	.banner-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
		bottom: 0;
	}
	.banner-swiper .swiper-pagination-bullet{
		width: 35px;
	}
	.banner-swiper .slogan .des.des2 {
	    margin-bottom: 5vw;
	}
	.banner-swiper .slogan .info .item .i_logo{
		width: 40px;
	}
	.banner-swiper .slogan .info .item .txt{
		width: calc(100% - 50px);
		margin-left: 10px;
		font-size: 14px;
	}
	.banner-swiper .slogan .info .item:nth-child(2) .i_logo{
		width: 40px;
	}
	.banner-swiper .slogan .info{
		margin-bottom: 10vw;
	}
	
	.more_btn2{
		margin-top: 15vw;
	}
	
	.banner-swiper .swiper-slide.active .more_btn{
		width: 130px;
		font-size: 14px;
	}
	.more_btn .box{
		height: 40px;
	}
	
	.more_btn .box p{
		line-height: 38px;
	}
	.banner-swiper .swiper-slide.active .more_btn .box p {
	    opacity: 1;
	    left: 25px;
	}
	.more_btn .box .icon{
		right: 20px;
	}
	
	.about-text p, .products-text p{
		font-size: 1rem;
	}
	
	.duori_title h2{
		font-size: 7vw;
	}
	.products-container{
		width: 90%;
	}
	
	.product-item .p-box,.product-item .p-box .img,.product-item .p-box .img img{
		height: 100%;
	}
	
	.product-item h3{
		font-size: 1.1rem;
		width: 90%;
		left: 5%;
		text-align: center;
		top: 35%;
	}
	.product-item p{
		font-size: 0.9rem;
		max-width: 90%;
		left: 5%;
		text-align: center;
		top: 50%;
	}
	
	.product-item.is-inview h3{
		top: 30%;
	}
	.product-item.is-inview p{
		top: 45%;
	}
	.product-item .view-more{
		display: none;
	}
	
	.news-header-left p{
		display: none;
	}
	
	.news-header .view-more{
		font-size: 0.9rem;
	}
	
	.news-item .img-wrapper{
		padding-top: 60%;
	}
	
	.news-content{
		padding: 5vw;
		min-height: auto;
	}
	
	.news-content .view-more{
		display: none;
	}
	
	.news-content h3{
		font-size: 1.1rem;
	}
	
	.news-content .date{
		font-size: 0.8rem;
		padding: 0.3rem 0.5rem;
		margin-bottom: 2vw;
	}
	
	.news-item:last-child .news-content .n-box{
		padding: 5vw;
	}
	
	.footer-logo{
		display: none;
	}
	
	.footer-partners{
		display: none;
	}
	.footer{
		padding: 10vw 0px 5vw;
	}
	.footer-top{
		margin-bottom: 0;
	}
	.footer-bottom{
		flex-wrap: wrap;
		font-size: 0.6rem;
		line-height: 1.6;
		margin-top: 1rem;
	}
	.footer-info p:first-child{
		font-size: 1rem;
		margin-bottom: 0.35rem;
	}
	.footer-info{
		gap: 2px;
	}
	.product-item .p-box .img::after{
		background: rgba(0, 0, 0, 0.2);
	}
	
	.product-item:last-child{
		width: 100%;
		height: 20vh;
	}
	.product-item:last-child.is-inview p{
		top: 55%;
	}
	.nav.scrolled .menu_btn.active span{
		background: transparent;
	}
	
	.menu {
		height: calc(100vh - 0px);
		position: fixed;
		left: 0px;
		top: 0px;
		display: flex;
		align-items: center;
		width: 100%;
		-webkit-transition: all .5s;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		margin-right: 0%;
		z-index: 10;
		padding-top: 70px;
		display: block;
		background: #f9f9f9;
	}
	
	.menu:before{
		width: 100%;
		height: 60px;
		position: absolute;
		left: 0;
		top: 0;
		content: '';
		background: #fff;
	}
	
	.submenu{
		display: none;
	}
	
	.nav.active:before{
		background: #ffffff;
		transform: translateY(0%);
	}
	
	.nav.active .logo .logo-dark{
		display: block;
	}
	
	.nav.active .logo .logo-white{
		display: none;
	}
	.nav.active .lang-switch .globe-icon{
		fill: #3e3e3e;
	}
	.nav.active .lang-switch .current-lang{
		color: #3e3e3e;
	}
	.nav.active .menu_btn span:after,.nav.active .menu_btn span:before{
		background: #3e3e3e;
	}
	
	.has-submenu.active .submenu{
		display: none;
	}
	
	.about-content{
		width: 100%;
		margin-top: 5vw;
	}
	
	.about-container{
		width: 90%;
	}
	.about-features{
		margin-top: 10vw;
		gap: 5vw;
	}
	.history_swiper{
		margin-top: 10vw;
	}
	.history_swiper .swiper-slide .date{
		font-size: 10vw;
	}
	.history_swiper .swiper-slide .des{
		font-size: 1rem;
	}
	.history_swiper .swiper-slide{
		padding-right: 0;
		padding-bottom: 10vw;
	}
	.history_swiper .swiper-slide::after{
		display: none;
	}
	.advantages{
		padding: 15vw 0px;
	}
	.advantages-content h2{
		margin-bottom: 5vw;
	}
	.pt-detail{
		font-size: 1rem;
	}
	
	.advantages .pt-detail{
		margin-bottom: 0;
	}
	
	.advantages-content{
		margin-bottom: 10vw;
	}
	
	.advantages-grid{
		margin-top: 0;
	}
	
	.sub_banner{
		height: 65vw;
	}
	
	.child_menu{
		display: none;
	}
	
	.slogans .cn{
		font-size: 7vw;
	}
	.slogans{
		top: 45%;
	}
	.w1400{
		width: 90%;
	}
	.product-list{
		grid-template-columns: repeat(1, 1fr);
		gap: 5vw;
	}
	.product-list .item .inner,.product-list .item:hover .inner {
	    padding-top: 45%;
	}
	.product-list .item .info{
		padding: 0px 5%;
		margin-bottom: 5vw;
		margin-top: 5vw;
	}
	.product-list .item .info .name{
		font-size: 1.1rem;
		margin-bottom: 0;
	}
	.product-list .item .info .des{
		font-size: 0.9rem;
		opacity: 0.7;
	}
	.product-list .item .more{
		display: none;
	}
	.cd-list .item{
		flex-wrap: wrap;
		border-radius: 0;
		margin-bottom: 15vw;
	}
	.cd-list .item .thum{
		width: 100%;
	}
	.cd-list .item .left{
		width: 100%;
		background: transparent;
		padding: 0;
	}
	.cd-list .item:nth-child(odd) .thum{
		width: 100%;
		border-radius: 0;
		left: 0;
	}
	.cd-list .item .left .title{
		font-size: 1.5rem;
		text-align: center;
		margin-bottom: 5vw;
	}
	.cd-list .item .left .list .li .des{
		height: auto;
		padding-top: 1vw;
		font-size: 0.9rem;
		opacity: 0.7;
		line-height: 1.5;
	}
	.cd-list .item .left .list .li .name{
		font-size: 1rem;
	}
	.cd-list .item .left .list .li{
		margin-bottom: 5vw;
		padding-bottom: 3vw;
	}
	.cd-list .item .left .list .li:last-child{
		margin-bottom: 0;
	}
	.cd-list .item .left .list .li:last-child::after{
		display: none;
	}
	.cd-list .item:nth-child(even) .thum{
		left: 0;
	}
	.rcln_box{
		margin-top: 5vw;
		flex-wrap: wrap;
	}
	.rcln_box .thum{
		width: 100%;
		border-radius: 5px;
		margin-bottom: 5vw;
	}
	.rcln_box .thum .inner {
	    padding-top: 60%;
	}
	.rcln_box .info{
		width: 100%;
	}
	.rcln_box .info .i_item .name{
		font-size: 1.1rem;
		margin-bottom: 0.5vw;
	}
	.rcln_box .info .i_item .des{
		font-size: 0.9rem;
		opacity: 0.7;
		line-height: 1.5;
	}
	.rcln_box .info .i_item{
		margin-bottom: 5vw;
	}
	.join_box{
		margin-top: 5vw;
	}
	.joins{
		width: 100%;
	}
	.joins .item{
		padding: 5vw;
		margin-bottom: 5vw;
	}
	.joins .item .top .lg{
		width: 50px;
	}
	.joins .item .top .plus{
		display: none;
	}
	.joins .item .top .jr .title .t{
		font-size: 1.1rem;
	}
	.joins .item .top .jr{
		width: calc(100% - 60px);
	}
	.joins .item .top .jr .title .d{
		font-size: 0.9rem;
		opacity: 0.7;
	}
	
	.join_left{
		width: 100%;
		margin-top: 10vw;
		padding: 5vw;
	}
	.j_name .txt{
		font-size: 1.1rem;
	}
	.j_name .icon {
	    width: 25px;
	}
	.j_name{
		padding-bottom: 2vw;
		margin-bottom: 2vw;
	}
	.j_info{
		font-size: 0.9rem;
	}
	.news_box,.news-list .item{
		flex-wrap: wrap;
	}
	.news_left,.news_right{
		width: 100%;
	}
	.news-list{
		margin-top: 5vw;
	}
	.news-list .item .thum,.news-list .item .info{
		width: 100%;
	}
	.news-list .item .info .title .des{
		display: none;
	}
	.news-list .item .info .title .name{
		font-size: 1.1rem;
		margin-bottom: 1vw;
	}
	.news-list .item .info{
		margin-top: 3vw;
	}
	.news-list .item .info .date {
	    font-size: 0.8rem;
	    opacity: 0.7;
	}
	.news-list .item{
		padding-bottom: 3vw;
		margin-bottom: 5vw;
	}
	#page li{
		width: 35px;
		line-height: 33px;
		margin: 0px;
		margin-right: 5px;
		font-size: 12px;
	}
	.news_left{
		margin-bottom: 15vw;
	}
	.jsgk_box{
		background: transparent;
		padding: 0;
	}
	.jsgk_box .item::after{
		left: 0;
	}
	.jsgk_box .item .des{
		display: none;
	}
	.jsgk_box .item{
		padding-left: 15px;
		margin-bottom: 5vw;
		padding-bottom: 5vw;
	}
	.jsgk_box .item .name{
		font-size: 1.1rem;
		margin-bottom: 0;
	}
	.jsgk{
		margin-top: 5vw;
	}
	.ts_more .m_box{
		padding: 3vw;
		font-size: 0.9rem;
	}
	.jsgk_box .item:last-child{
		margin-bottom: 5vw;
	}
	.news_detail:before {
	    height: 60px;
	}
	.detail_box{
		width: 100%;
		padding: 5vw;
		padding-bottom: 15vw;
		border-radius: 0;
		box-shadow: none;
	}
	.news_detail{
		padding-top: 60px;
		padding-bottom: 0;
	}
	.detail_top .des p{
		font-size: 0.8rem;
		margin-right: 10px;
	}
	.detail_top .name {
	    font-size: 6vw;
	    line-height: 1.2;
	    margin-bottom: 1vw;
	}
	.detail_top{
		padding-bottom: 3vw;
		margin-bottom: 5vw;
	}
	.pn_news {
	    margin-top: 5vw;
	    padding-top: 3vw;
	}
	.pn_news .item{
		font-size: 0.9rem;
	}
	.pn_news .item p{
		width: 60px;
	}
	.pn_news .item a {
	    width: calc(100% - 60px);
	}
	.contact_box{
		padding: 0;
		overflow: hidden;
	}
	
	.contact_box>img{
		max-width: none;
		width: 300%;
		position: relative;
		left: -65%;
		height: 50vh;
	}
	.contacts{
		width: 100%;
		height: auto;
		position: relative;
		right: 0%;
		top: 0%;
		transform: translateY(0%);
		padding: 5vw;
		padding-top: 10vw;
	}
	.contact_info .item .icon {
	    width: 25px;
	}
	.contact_info .item .info{
		width: calc(100% - 30px);
	}
	.contact_info .item .info .title{
		line-height: 25px;
		font-size: 0.9rem;
	}
	.contacts .name{
		font-size: 6vw;
		padding-bottom: 3vw;
		margin-bottom: 5vw;
	}
	.contact_info .item .info div.des{
		font-size: 1rem;
	}
	.contact_info .item .info a.des{
		font-size: 1.5rem;
	}
	.contact_info .item{
		margin-bottom: 5vw;
	}
	.en .banner-swiper .slogan .title{
		font-size: 5vw;
		margin-bottom: 3vw;
	}
	.en .banner-swiper .slogan .des.des2{
		margin-bottom: 10vw;
	}
	.en .banner-swiper .slogan {
	    width: 90%;
	}
	.en .banner-swiper .slogan .info .item{
		margin-bottom: 5vw;
	}
	.en .banner-swiper .swiper-slide.active .more_btn .box p{
		left: 15px;
	}
	.en .more_btn .box .icon{
		right: 15px;
	}
	.en .product-item p {
	    font-size: 0.875rem;
	}
	.en .product-item h3{
		line-height: 1.2;
	}
	.en .product-item:last-child.is-inview p {
        top: 46%;
    }
	.en .news-header{
		width: 90%;
		flex-wrap: wrap;
	}
	.en .news-content h3{
		font-size: 1rem;
	}
	.en .menu {
	    width: 100%;
	}
	.en .feature-content {
		width: 90%;
	}
	.en .feature-content h3, .linian_title .title {
	    font-size: 1.3rem;
	}
	.en .feature-content{
		top: auto;
		bottom: 5%;
	}
	.en .linian_title {
	    width: 90%;
	    left: 5%;
	}
	.en .advantages-content {
	    width: 90%;
	}
	.en .pt-detail {
	    font-size: 0.875rem;
		text-align: left;
	}
	.en .advantages-grid {
		gap: 0rem;
	}
	.en .advantage-item{
		padding-top: 65px;
	}
	.en .advantage-item .icon{
		right: auto;
		left: 50%;
		margin-left: -25px;
	}
	.en .advantage-item h3 {
	    font-size: 1rem;
	    text-align: center;
	}
	.advantage-item h3::after{
		left: 40%;
		width: 10%;
	}
	.en .advantage-item p {
		font-size: 0.75rem;
		text-align: center;
	}
	.en .cd-list .item .left .title{
		text-align: left;
	}
	.en .news_left,.en .news_right{
		width: 100%;
	}
	.en .news-list .item .info .title .name{
		font-size: 1rem;
		margin-bottom: 3vw;
	}
	.en .jsgk_box .item{
		padding-left: 0%;
	}
	.en .jsgk_box .item .name{
		font-size: 1rem;
	}
	.en .contacts {
	    width: 100%;
	}
	.en .contacts .name{
		font-size: 5vw;
	}
}