html{-webkit-text-size-adjust:none; /*解决chrome浏览器下字体不能小于12px*/}

/* 强制修复页面缩放问题 */
html, body {
	width: 100% !important;
	max-width: none !important;
	transform: none !important;
	zoom: normal !important;
}

/* 专门修复hero页面slide结构的缩放问题 */
.section.page1,
.section.page1 .slide-wrap,
.section.page1 .slide-wrap ul,
.section.page1 .slide-wrap li {
	width: 100% !important;
	height: 100% !important;
	transform: none !important;
	zoom: normal !important;
}

.section.page1 .slide-wrap li .slide-bg {
	width: 100% !important;
	height: 100% !important;
	background-size: cover !important;
	background-position: center !important;
	transform: none !important;
}

/* Phone图标样式 - 只在轮播图页面显示 */
.phone-icon {
	position: absolute;
	right: -140px; /* 向右移动更多，避免被logo挡住 */
	top: 60%;
	transform: translateY(-50%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.phone-icon img {
	width: 30vw; /* 进一步增大到视口宽度的30% */
	height: 30vw; /* 保持正方形比例 */
	min-width: 200px; /* 进一步提高最小尺寸 */
	min-height: 200px; /* 进一步提高最小尺寸 */
	max-width: 600px; /* 提高最大尺寸限制 */
	max-height: 600px; /* 提高最大尺寸限制 */
	object-fit: contain;
}

/* 显示phone图标的状态 */
.phone-icon.show-phone {
	opacity: 1;
	visibility: visible;
}

/* 微信二维码弹窗样式 */
.wechat-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.wechat-popup-overlay.show {
	opacity: 1;
	visibility: visible;
}

.wechat-popup-container {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 20px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 
				0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	overflow: hidden;
	max-width: 480px;
	width: 90%;
	max-height: 90vh;
	transform: scale(0.7);
	transition: all 0.3s ease-in-out;
}

.wechat-popup-overlay.show .wechat-popup-container {
	transform: scale(1);
}

.wechat-popup-header {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffff;
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.wechat-popup-title {
	font-size: 18px;
	font-weight: 600;
	font-family: "微软雅黑", Microsoft YaHei, sans-serif;
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wechat-popup-close {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.wechat-popup-close:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	transform: scale(1.05);
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.wechat-popup-content {
	padding: 40px 30px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.wechat-qr-container {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wechat-qr-image {
	width: 280px;
	height: 280px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1),
				0 0 0 1px rgba(255, 255, 255, 0.1) inset;
	object-fit: contain;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.wechat-popup-text {
	font-size: 16px;
	color: #ffffff;
	font-family: "微软雅黑", Microsoft YaHei, sans-serif;
	line-height: 1.5;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.wechat-popup-container {
		width: 95%;
		margin: 20px;
	}
	
	.wechat-popup-content {
		padding: 30px 20px;
	}
	
	.wechat-qr-image {
		width: 240px;
		height: 240px;
	}
	
	.wechat-popup-title {
		font-size: 16px;
	}
	
	.wechat-popup-text {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.wechat-qr-image {
		width: 200px;
		height: 200px;
	}
	
	.wechat-popup-header {
		padding: 15px 20px;
	}
	
	.wechat-popup-content {
		padding: 25px 15px;
	}
}

 body{ color:#000000; font-family:Verdana, Arial, Helvetica, sans-serif;}

 * {}

a{outline:none; text-decoration:none;} a:hover{ text-decoration:underline;}

html{zoom:1;}html *{outline:0;zoom:1;} html button::-moz-focus-inner{border-color:transparent!important;} 

body{overflow-x: hidden; font-size:12px;} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;} table{/*border-collapse:collapse;border-spacing:0;*/} fieldset,a img{border:0;} address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;} li{list-style:none;} caption,th{text-align:left;} h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;} q:before,q:after{content:'';}

input[type="submit"], input[type="reset"], input[type="button"], button { -webkit-appearance: none; /*去掉苹果的默认UI来渲染按钮*/} em,i{ font-style:normal;}







/**

 +------------------------------------------------------------------------------

 * Public Class

 +------------------------------------------------------------------------------

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */

.clearfix:after {content:"."; display:block; height:0; clear:both; visibility:hidden; }.clearfix {display:block;}.clear{ clear:both;}/* 清除浮动*/

.colwrapper { overflow:hidden; zoom:1 /*for ie*/; margin:5px auto; }/* 高度自适应 */ 

.strong{ font-weight: bold;} .left{ float: left;} .right{ float: right;} .center{ margin:0 auto; text-align:center;}

.block{ display:block;} .inline{ display:inline;}

.transparent{filter:alpha(opacity=50); -moz-opacity:0.5;/** Firefox 3.5即将原生支持opacity属性，所以本条属性只在Firefox3以下版本有效 ***/ -khtml-opacity: 0.5; opacity: 0.5; } .break{ word-wrap:break-word;overflow:hidden; /*word-break:break-all;*/}



.tal{ text-align:left} .tar{ text-align:right;}



/*文字两侧对齐*/

.justify {

	text-align:justify;

	text-justify:distribute-all-lines;/*ie6-8*/

	text-align-last:justify;/* ie9*/

	-moz-text-align-last:justify;/*ff*/

	-webkit-text-align-last:justify;/*chrome 20+*/

}



.toe{

	/*超出省略号*/

	 word-break:keep-all;

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;

}

@media screen and (-webkit-min-device-pixel-ratio:0){/* chrome*/

	.justify:after{

		content:".";

		display: inline-block;

		width:100%;

		overflow:hidden;

		height:0;

	}

}



/* 兼容IE6的定位属性fixed，固定不动样式 */

.fixed{

	position:fixed; 

	clip:rect(0 100% 100% 0);

	_position:absolute;

	

	/* 底部 */

	bottom:0px;

	left:0px;

	_top:expression(document.documentElement.scrollTop+document.documentElement.clientHeight-this.clientHeight);

	/*_left:expression(document.documentElement.scrollLeft + document.documentElement.clientWidth - offsetWidth);*/

	

	/* 左侧 */

	/*left:0px;*/

	/*_top:expression(document.documentElement.scrollTop+document.documentElement.clientHeight-this.clientHeight);*/

	/*_left:expression(document.documentElement.scrollLeft + document.documentElement.clientWidth - offsetWidth);*/

}

/* 解决固定层在IE6下闪的问题 */

*html{

	background-image:url(about:blank);

	background-attachment:fixed;

}





/*png图片ie6下透明滤镜实现写法*/

.pngimg{filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='images/x.png');}



/**

 +------------------------------------------------------------------------------

 * FCK 兼容解决方案

 +------------------------------------------------------------------------------

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */

em{ font-style:italic !important;} strike{ text-decoration:line-through !important;} strong{ font-weight:bold !important;} u{ text-decoration:underline !important;}



/**

 +------------------------------------------------------------------------------

 * 表单样式

 +------------------------------------------------------------------------------

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */



/**

 +------------------------------------------------------------------------------

 * 网站整体颜色总汇

 +------------------------------------------------------------------------------

 * @codex  颜色:使用颜色的名称或者16进制代码,如 

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */

.ff8600,ff86aa a{ color:#ff8600;}



/**

 +------------------------------------------------------------------------------

 * 网站整字体大小

 +------------------------------------------------------------------------------

 * @codex   字体大小,直接使用"font+字体大小"作为名称,如

 * @package  ORG

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */

.font14px{ font-size:14px;}

.font9pt{ font-size:9pt;}

/*自定义字体*/

/* @font-face {  font-family: danley;  src: url('../font/danley.ttf');  }  .danley {  font-family: danley; } */





/**

 +------------------------------------------------------------------------------

 * 网站整布局命名规范

 +------------------------------------------------------------------------------

 * @codex   id和class命名采用该版块的英文单词或组合命名 如:newRelease

 * @package  ORG

 * @subpackage  RBAC

 +------------------------------------------------------------------------------

 */

  a{ color:#5d5d5e; transition: all 0.3s ease-in-out 0s;}

  a:hover{ color:#3e6ed4;}

 

body{font-family: "Microsoft YaHei",sans-serif;}



.css3{

	/*transition: all 0.3s ease-in-out 0s;*/

	

	-webkit-transform:translate3d(0, -20px, 0);

	-ms-transform:translate3d(0, -20px, 0);

	transform:translate3d(0, -20px, 0);

	

	-webkit-transition-property:opacity, -webkit-transform;

	transition-property:opacity, transform;

	-webkit-transition-duration:1000ms;

	transition-duration:1000ms;

	-webkit-transition-timing-function:cubic-bezier(0.25, 0.46, 0.33, 0.98);

	transition-timing-function:cubic-bezier(0.25, 0.46, 0.33, 0.98);

	

	-webkit-transition-delay:800ms;

	transition-delay:800ms

}

.css3.animated{

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

@media screen and (max-width: 650px) {    

  

  }

  

  @media screen and (max-width: 480px) {   

	 

  }

.rotate

{

transform:rotate(7deg);

-ms-transform:rotate(7deg); 	/* IE 9 */

-moz-transform:rotate(7deg); 	/* Firefox */

-webkit-transform:rotate(7deg); /* Safari 和 Chrome */

-o-transform:rotate(7deg); 	/* Opera */

}

body{

	font-size: 12px; line-height: 22px;

}

.wrapper{

	width: 1200px; margin: 0 auto; position: relative; 

}



.gb-header,

.gb-nav{

	height: 86px; background: transparent; position: fixed; left: 0; right: 0; z-index: 8;

}

.gb-nav{

	background: transparent; z-index: 99999;

}

.gb-nav,

.gb-header{

	 top: -86px; 

	/*css3*/

	-webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -o-transition: all 0.5s;

    transition: all 0.5s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.gb-nav.show,

.gb-header.show{

	top: 0;

	opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.gb-nav.show{

	background: transparent;

}

.gh {

	float:right;

	height:34px;

	width:34px;

	margin-right:30px;

	margin-top:25px;

	position:relative;

	transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	cursor:pointer;

}

.gh.selected {

	transform: rotate(90deg);

}

.gh a {

	background-color: #000;

	display: block;

	height: 4px;

	margin-top: -2px;

	position: relative;

	top: 50%;

	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	width: 100%;

}

.gh:hover a:before {

	transform: translateY(-2px) rotate(0deg);

	-webkit-transform: translateY(-2px) rotate(0deg);

	-ms-transform: translateY(-2px) rotate(0deg);

}

.gh:hover a:after {

	transform: translateY(2px) rotate(0deg);

	-webkit-transform: translateY(2px) rotate(0deg);

	-ms-transform: translateY(2px) rotate(0deg);

}

.gh.selected:hover a:before {

	transform: translateY(0px) rotate(-55deg);

	-webkit-transform: translateY(0px) rotate(-55deg);

	-ms-transform: translateY(0px) rotate(-55deg);

}

.gh.selected:hover a:after {

	transform: translateY(0px) rotate(55deg);

	-webkit-transform: translateY(0px) rotate(55deg);

	-ms-transform: translateY(0px) rotate(55deg);

}

.gh a:after, .gh a:before {

	background-color: #000;

	content: "";

	display: block;

	height: 4px;

	left: 0;

	position: absolute;

	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;

	width:100%;

}

.gh a:after {

	top:10px;

}

.gh a:before {

	top:-10px;

}

.gh.selected a:after, .gh.selected a:before {

	top: 0;

}

.gh.selected a:before {

	transform: translateY(0px) rotate(-45deg);

	-webkit-transform: translateY(0px) rotate(-45deg);

	-ms-transform: translateY(0px) rotate(-45deg);

}

.gh.selected a:after {

	transform: translateY(0px) rotate(45deg);

	-webkit-transform: translateY(0px) rotate(45deg);

	-ms-transform: translateY(0px) rotate(45deg);

}

.gh.selected a {

	background-color: transparent !important;

}

.gb-nav.show .gh a,

.gb-nav.show .gh a:after, 

.gb-nav.show .gh a:before{ background-color:#fff;}





.header .logo,

.gb-nav .logo{

	margin-left: 60px; float: left; display: inline; margin-top: 24px;
	width: 180px; /* 增加logo容器宽度以容纳phone图标 */
	height: 40px; /* 限制logo容器高度 */
	position: relative; /* 为phone图标定位做准备 */

}

/* 为header的logo图片也添加尺寸控制 */
.header .logo img {
	width: 120px; /* 固定logo图片宽度 */
	height: 100%; /* 适应容器高度 */
	object-fit: contain; /* 保持比例，适应容器 */
}

.gb-nav .logo{

	position: relative;

}

.gb-nav .logo img{

	position: absolute; left: 0; top: 0;
	width: 120px; /* 固定logo图片宽度 */
	height: 100%; /* 适应容器高度 */
	object-fit: contain; /* 保持比例，适应容器 */

}

.gb-nav .logo img.img2{

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.gb-nav.show .logo img.img2{

    opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.header .nav{

	margin-right: 50px; float: right; display: inline; margin-top: 40px;

}

.header .nav li{

	float: left; display: inline; margin-left: 38px; font-size: 14px;

}

.header .nav li a{

	display: block; height: 24px; line-height: 24px; overflow: hidden;
text-decoration: none;
}

.header .nav li span{

	display: block;
	color: #fff;

	/*css3*/

	transition: all 0.3s ease-in-out 0s;

}

.header .nav li span.s2{

	color: #E31414; font-weight: bold;

}

.header .nav li a:hover .s1,

.header .nav li.selected a .s1{

	transform: scale(1.1);
	transition: transform 0.3s ease;

}



.section{

	position: relative; 

}

.page1{

	background: url("../imgs/bg1.jpg") no-repeat center; background-size: cover !important; height: 100vh !important;

}

/* 强制所有section使用视窗高度 - 使用更高优先级的选择器 */
.fullpage-wrapper .fp-section,
div.fullpage-wrapper div.fp-section,
.page-wrap .section,
div[style*="height"] {
	height: 100vh !important;
	min-height: 100vh !important;
}

/* 专门针对动态设置的内联样式 */
.fp-section[style*="height"] {
	height: 100vh !important;
}

/*.page1 .nav{

	background: url(../imgs/img4.png) repeat-x center; height: 32px; position: absolute; left: 0; right: 0; bottom: -60px; text-align: center;

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

}

.page1.active .nav{

	bottom: 40px;

}

.page1 .nav li{

	display: inline; margin: 0 75px;

}

.page1 .nav li a{

	background: url(../imgs/img3.png) no-repeat center; width: 32px; height: 32px; display: inline-block;

}

.page1 .nav li.selected a{

	background-image: url(../imgs/img2.png);

}*/



.page1 .arrow,

.page1 .nav{

	z-index: 2; 

}

.page1 .arrow{

	width: 87px; height: 87px; position: absolute; left: 50%; margin-left: -44px; bottom: 110px; cursor: pointer;

	

	display:block;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

}

.page1 .arrow table{

	width: 100%; height: 100%; text-align: center; position: relative; top: 5px;

}

.page1 .arrow:before, .page1 .arrow:after {

	content:'';

	position:absolute;

	left:0;

	top:0;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	pointer-events:none

}

.page1 .arrow:before {

	width:88px;

	height:88px;

	border:1px solid #fff;

	-moz-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-o-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-webkit-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)

}

.page1 .arrow:after {

	width:86px;

	height:86px;

	border:2px solid #fff;

	background-color:rgba(255, 255, 255, 0.1);

	opacity:0;

	-moz-transform:scale(0.5, 0.5);

	-ms-transform:scale(0.5, 0.5);

	-webkit-transform:scale(0.5, 0.5);

	transform:scale(0.5, 0.5);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.page1 .arrow:hover:before {

	opacity:0;

	-moz-transform:scale(1.5, 1.5);

	-ms-transform:scale(1.5, 1.5);

	-webkit-transform:scale(1.5, 1.5);

	transform:scale(1.5, 1.5);

	-moz-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-o-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-webkit-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)

}

.page1 .arrow:hover:after {

	opacity:1;

	-moz-transform:scale(1, 1);

	-ms-transform:scale(1, 1);

	-webkit-transform:scale(1, 1);

	transform:scale(1, 1)

}





.page2{

	background: url("../../../22vd/images/bg2.jpg") no-repeat center; background-size: cover !important; height: 964px;

}

.page2 .wrapper{

	height: 100%;

}

.page2 ul{

	height: 100%;

}

.page2 li{

	width: 25%; float: left; display: inline; text-align: center; color: #fff; height: 100%; position: relative;

	/*css3*/

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.page2 li .bg{

	position: absolute; left: 0; right: 0; bottom: 0; background: #9a02e0; height: 0;

	-webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -o-transition: all 0.5s;

    transition: all 0.5s;

}

.page2 li.selected .bg{

	height: 100%;

}

.page2 li.l2 .bg{

	background-color: #acd146;

}

.page2 li.l3 .bg{

	background-color: #04afa6;

}

.page2 li.l4 .bg{

	background-color: #f8c200;

}

.page2 li .wrap{

	position: absolute; left: 30px; right: 30px; top: 30%; margin-top: -160px;

}

.page2 li .ico{

 	width: 109px; height: 109px; border-radius: 109px; margin: 0 auto; background-position: center top; background-repeat: no-repeat; overflow: hidden;

 	-webkit-transition: all 0.3s;

    -moz-transition: all 0.3s;

    -o-transition: all 0.3s;

    transition: all 0.3s;

	-webkit-transition-delay:400ms;

	transition-delay:400ms;

}

.page2 li.l1 .ico{

	background-image: url("../imgs/img5.png");

}

.page2 li.l2 .ico{

	background-image: url("../imgs/img6.png");

}

.page2 li.l3 .ico{

	background-image: url("../imgs/img7.png");

}

.page2 li.l4 .ico{

	background-image: url("../imgs/img8.png");

}

.page2 li.selected .ico{

	background-position: center bottom;

}

.page2 li .link{

	text-align: center; margin-top: 35px;

}

.page2 li .link a{

	background: url("../imgs/img41.png") no-repeat; width: 48px; height: 48px; display: inline-block;

}

.page2 li .img{

	position: absolute; left: 0; right: 0; bottom: -200px;

	-webkit-transition: all 0.3s;

    -moz-transition: all 0.3s;

    -o-transition: all 0.3s;

    transition: all 0.3s;

	-webkit-transition-delay:400ms;

	transition-delay:400ms;

	opacity: 0;

	-webkit-opacity: 0;

	-moz-opacity: 0;

}

.page2 li.selected .img{

	bottom: 0;

	opacity: 1;

	-webkit-opacity: 1;

	-moz-opacity: 1;

}

.page2 li .img img{

	display: block; width: 100%;

}

.page2 li a{

	color: #fff; text-decoration: none;

}

.page2 li.selected{

	

}

.page2 li.l1{

	-webkit-transform:translate3d(-600px, 0, 0);

	-ms-transform:translate3d(-600px, 0, 0);

	transform:translate3d(-600px, 0, 0);

}

.page2 li.l2{

	-webkit-transform:translate3d(-300px, 0, 0);

	-ms-transform:translate3d(-300px, 0, 0);

	transform:translate3d(-300px, 0, 0);

}

.page2 li.l3{

	-webkit-transform:translate3d(300px, 0, 0);

	-ms-transform:translate3d(300px, 0, 0);

	transform:translate3d(300px, 0, 0);

}

.page2 li.l4{

	-webkit-transform:translate3d(600px, 0, 0);

	-ms-transform:translate3d(600px, 0, 0);

	transform:translate3d(600px, 0, 0);

}

.page2.active li{

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

	opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.page2 li h2{

	margin-top: 20px; font-size: 26px; font-weight: bold; line-height: 1.2;

}

.page2 li dl{

	margin-top: 18px;

}

.page2 li dd{

	display: inline;

}

.page2 li dd span{

	width: 1px; height: 15px; display: inline-block; background: #fff; margin: 0 15px;

	

}

.page2 li p{

	margin-top: 30px; line-height: 28px; font-size: 16px;

}



.page3{

	background: url("../../../22vd/images/bg3.jpg") repeat center; height: 1040px;

}

.page3 .wrapper{

	position: absolute; left: 50%; margin-left: -600px; top: 50%; margin-top: -220px;

}

.page3 .head{

	position: relative; padding-left: 350px; 

	-webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -o-transition: all 0.5s;

    transition: all 0.5s;

	-webkit-transition-delay:600ms;

	transition-delay:600ms;

	/*opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;*/

}

.page3.active .head{

	/*opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;*/

}

.page3 .head .img{

	position: absolute; left: -400px; top: 0;

	transition: all 1s ease 0s; 

	-webkit-transition: all 1s ease 0s; 

	-ms-transition: all 1s ease 0s; 

	opacity: 0;

	-webkit-opacity: 0;

	-ms-opacity: 0;

}

.page3.active .head .img{

	left: 0;

	opacity: 1;

	-webkit-opacity:1;

	-ms-opacity: 1;

}

.page3 .head .nav{

	padding-top: 30px;

}

.page3 .head .nav li{

	display: inline; margin-right: 30px;

}

.page3 .head .sort{

	position: absolute; left: 1500px; bottom: 0; padding-top: 20px; color: #e9930b; text-transform: uppercase;

	transition: all 1s ease 0s; 

	-webkit-transition: all 1s ease 0s; 

	-ms-transition: all 1s ease 0s; 

	opacity: 0;

	-webkit-opacity: 0;

	-ms-opacity: 0;

}

.page3.active .head .sort{

	left: 610px;

	opacity: 1;

	-webkit-opacity: 1;

	-ms-opacity: 1;

}

.page3 .head .sort a{

	color:#e9930b ;

}

.page3 .head .sort dt{

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

}

.page3 .head .sort dd{

	display: inline; 

}

.page3 .head .sort dd span{

	margin: 0 10px; display: inline-block; width: 1px; height: 11px; background: #f19f1c;

}

.page3 .body{

	margin-top: 45px;

    position: relative;

    top: 0;

}

.page3 .body ul{

	height: auto; overflow: hidden; width: 105%;

}

.page3 .body li{

	width: 290px; height: 190px; position: relative; float: left; display: inline; margin: 0; overflow: hidden;

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

	opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

    -webkit-transform:translate3d(0, 100px, 0);

	-ms-transform:translate3d(0, 100px, 0);

	transform:translate3d(0, 100px, 0);

}

.page3.active .body li{

	opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

    -webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

.page3.active .body li:nth-child(2){

	-webkit-transition-delay:200ms;

	transition-delay:200ms;

}

.page3.active .body li:nth-child(3){

	-webkit-transition-delay:400ms;

	transition-delay:400ms;

}

.page3.active .body li:nth-child(4){

	-webkit-transition-delay:600ms;

	transition-delay:600ms;

}

.page3.active .body li:nth-child(5){

	-webkit-transition-delay:800ms;

	transition-delay:800ms;

}

.page3.active .body li:nth-child(6){

	-webkit-transition-delay:1000ms;

	transition-delay:1000ms;

}

.page3.active .body li:nth-child(7){

	-webkit-transition-delay:1200ms;

	transition-delay:1200ms;

}

.page3.active .body li:nth-child(8){

	-webkit-transition-delay:1400ms;

	transition-delay:1400ms;

}

/* 图片容器样式 */
.page3 .body li .img {
	width: 100%;
	height: 100%;
	overflow: hidden !important;
	position: relative; /* 为图片提供定位基准 */
	border-radius: 8px; /* 与卡片圆角保持一致 */
}

.page3 .body li .img img{
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    
    transform: scale(1); /* 正常尺寸 */
    
    width: 100% !important; /* 覆盖内联样式 */
    height: 100% !important; /* 覆盖内联样式中的height: auto */
    object-fit: cover; /* 图片覆盖整个容器，保持比例 */
    border-radius: 8px; /* 图片圆角 */
}

.page3 .body li:hover .img img{
	transform: scale(1.05); /* 悬停时稍微放大 */
}

.page3 .body li .brand{
	/* 隐藏橙色遮罩层，使用纯净的卡片效果 */
	display: none;

    opacity:0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.page3 .body li a:hover .brand{

    opacity:1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.page3 .body li .brand table{

	width: 100%; height: 100%; text-align: center;

}

.page3 .jian{

	width: 46px; height: 46px; border-radius:46px; display: inline-block; position: relative;

}

.jian:before, .jian:after {

	content:'';

	position:absolute;

	left:0;

	top:0;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	pointer-events:none

}

.jian:before {

	width:46px;

	height:46px;

	border:1px solid #f19f1c;

	-moz-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-o-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-webkit-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)

}

.jian:after {

	width:46px;

	height:46px;

	border:1px solid #f19f1c;

	background-color:rgba(255, 255, 255, 0.1);

	opacity:0;

	-moz-transform:scale(0.5, 0.5);

	-ms-transform:scale(0.5, 0.5);

	-webkit-transform:scale(0.5, 0.5);

	transform:scale(0.5, 0.5);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.jian:hover:before {

	opacity:0;

	-moz-transform:scale(1.5, 1.5);

	-ms-transform:scale(1.5, 1.5);

	-webkit-transform:scale(1.5, 1.5);

	transform:scale(1.5, 1.5);

	-moz-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-o-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-webkit-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)

}

.jian:hover:after {

	opacity:1;

	-moz-transform:scale(1, 1);

	-ms-transform:scale(1, 1);

	-webkit-transform:scale(1, 1);

	transform:scale(1, 1)

}



.page4{

	background: url("../../../22vd/images/bg4.jpg") no-repeat center; background-size: cover !important; height: 998px;

}

.page4 .wrapper{

	position: absolute; left: 50%; margin-left: -600px; top: 50%; margin-top: -220px;

}

.page4 .head .img,

.page4 .head .list,

.page4 .head .list dl#dl1,

.page4 .head .list dl#dl2,

.page4 .list li{

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.page4.active .head .img,

.page4.active .head .list,

.page4.active .head .list dl#dl1,

.page4.active .head .list dl#dl2,

.page4.active .list li{

	opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.page4 .head{

	position: relative; width: 105%; 

}

.page4 .head .img{

	margin-left: 30px; position: relative; left: -100px;

}

.page4.active .head .img{

	left: 0;

}

.page4 .head .nav{

	position: absolute; left: 260px; top: 20px;

}

.page4 .head .nav li{

	display: inline; margin-right: 20px;

}

.page4 .head .list{

	position: absolute; left: 485px; top: 25px;

	-webkit-transform:translate3d(-300px, 0, 0);

	-ms-transform:translate3d(-300px, 0, 0);

	transform:translate3d(-300px, 0, 0);

}

.page4.active .head .list{

	

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

.page4 .head .list dl{

	float: left; display: inline; border-top: #f2f4f3 solid 1px; position: relative; padding-top: 45px; color: #fff; 

}

.page4 .head .list dl a{

	color: #fff;

}

.page4 .head .list dl#dl1{

	width: 470px;

}

.page4 .head .list dl#dl2{

	width: 240px; margin-left: 15px;

}

.page4 .head .list dt{

	position: absolute; left: 0; top: 10px; font-size: 14px; font-weight: bold;

}

.page4 .head .list dd span{

	margin: 0 5px;

}

.page4 .body{

	margin-top: 75px;

}

.page4 .list{

	height: auto; overflow: hidden; width: 105%;

}

.page4 .list li{

	float: left; display: inline; width: 228px; height: 306px; background: #fff; margin-right: 15px; position: relative;

	transition-delay: 1s;

	-webkit-transition-delay: 1s;

	-ms-transition-delay: 1s;

}

.page4 .list li:nth-child(2){

	top: 200px; left: 100px;

}

.page4 .list li:nth-child(3){

	top: 400px; left: 200px;

}

.page4 .list li:nth-child(4){

	top: 600px; left: 300px;

}

.page4 .list li:nth-child(5){

	top: 800px; left: 400px;

}

.page4.active .list li{

	top: 0; left: 0;

}

.page4 .view{

	position: relative; padding-top: 140px; padding-left: 35px; padding-right: 30px;

}

.page4 .view h4{ font-size:14px; color:#000;}



.page4 .view .date{

	position: absolute; left: 115px; top: 40px;

}

.page4 .view .date big{

	font-size: 50px; font-weight: bold; font-family: impact;

}

.page4 .view .date span{

	position: absolute; left: 18px; bottom: 0; background: #fff; padding: 0 5px; line-height: 1.3; font-family: arial; width: 80px;

}

.page4 .view .img{

	height: 90px;

}

.page4 .view .img table{

	width: 100%; height: 100%;

}

.page4 .view h2{

	font-size: 15px; line-height: 25px;

}

.page4 .mask{

	background: #e50581; position: absolute; left: 0; right: 0; top: 400px; bottom: 0; padding: 40px 30px; color: #fff; 

	-webkit-transition: all 0.3s;

    -moz-transition: all 0.3s;

    -o-transition: all 0.3s;

    transition: all 0.3s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.page4 .mask .img img{

	display: block;

}

.page4 a:hover .mask,

.page4 .selected .mask{

	top: 0;

    opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.page4 .mask h2{

	margin-top: 20px; font-size: 15px;

}

.page4 .mask hr{

	width: 37px; height: 1px; border: none; background: #fff; display: block; margin-top: 20px; margin-left: 0;

}

.page4 .mask p{

	margin-top: 20px; clear: both;

}



.page4 .wen{

	width: 46px; height: 46px; border-radius:46px; display: inline-block; position: relative;

}

.page4 .wen:before, .wen:after {

	content:'';

	position:absolute;

	left:0;

	top:0;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	pointer-events:none

}

.page4 .wen:before {

	width:46px;

	height:46px;

	border:1px solid #fff;

	-moz-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-o-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-webkit-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)

}

.page4 .wen:after {

	width:46px;

	height:46px;

	border:1px solid #fff;

	background-color:rgba(255, 255, 255, 0.1);

	opacity:0;

	-moz-transform:scale(0.5, 0.5);

	-ms-transform:scale(0.5, 0.5);

	-webkit-transform:scale(0.5, 0.5);

	transform:scale(0.5, 0.5);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.page4 .wen:hover:before {

	opacity:0;

	-moz-transform:scale(1.5, 1.5);

	-ms-transform:scale(1.5, 1.5);

	-webkit-transform:scale(1.5, 1.5);

	transform:scale(1.5, 1.5);

	-moz-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-o-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-webkit-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)

}

.page4 .wen:hover:after {

	opacity:1;

	-moz-transform:scale(1, 1);

	-ms-transform:scale(1, 1);

	-webkit-transform:scale(1, 1);

	transform:scale(1, 1)

}



.page5{

	background: url("../../../22vd/images/homePage/bg4.jpg") no-repeat center center; background-size: cover; background-attachment: fixed; height: 1115px; position: relative;

}

.page5::before{

	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); z-index: 1;

}

.page5 .wrapper{

	position: absolute; left: 50%; margin-left: -600px; top: 20%; margin-top: -240px; z-index: 2;

}

.page5 .img-wrap{

	width: 500px; float: left; display: inline; border-top: #000000 solid 3px; position: relative; 

}

.page5 .img-wrap .img1,

.page5 .img-wrap .img2,

.page5 .img-wrap .img3,

.page5 .img-wrap .img4,

.page5 .text,

.page5 .nav li{

	-webkit-transition: all 1s;

    -moz-transition: all 1s;

    -o-transition: all 1s;

    transition: all 1s;

    transition-delay: 0.5s;

    -webkit-transition-delay: 0.5s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.page5.active .img-wrap .img1,

.page5.active .img-wrap .img2,

.page5.active .img-wrap .img3,

.page5.active .img-wrap .img4,

.page5.active .text,

.page5.active .nav li{

    opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

	

}

.page5 .img-wrap .img1{

	margin-left: 90px; margin-top: 30px; 

    transition-delay: 0s;

    -webkit-transition-delay: 0s;

	transform: scale(0);

	-webkit-transform: scale(0);

}

.page5.active .img-wrap .img1{

	transform: scale(1);

	-webkit-transform: scale(1);

}

.page5 .img-wrap .img2{

	position: absolute; left: 60px; top: 20px;

	-webkit-transform:translate3d(-100px, 0, 0);

	-ms-transform:translate3d(-100px, 0, 0);

	transform:translate3d(-100px, 0, 0);

}

.page5.active .img-wrap .img2{

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

.page5 .img-wrap .img3{

	position: absolute; left: -100px; top: 80px;

}

.page5.active .img-wrap .img3{

	left: 0;

}

.page5 .img-wrap .img4{

	margin-top: 20px; margin-left: 290px;

}

.page5.active .img-wrap .img4{

	margin-left: 90px;

}

.page5 .text{

	width: 260px; float: left; display: inline; margin-left: 130px; border-top: #ffffff solid 1px; padding-top: 40px; position: relative; top: 200px;

}

.page5 .text.text-only{

	width: 600px; float: none; display: block; margin: 0 auto; text-align: center; top: 0; color: #ffffff;

}

.page5.active .text{

	top: 0;

}

.page5.active .text.text-only{

	top: 0;

}

.page5 .text h2{

	font-size: 18px; margin-bottom: 20px; font-weight: bold;

}

.page5 .text p{

	margin-bottom: 30px; font-size: 14px; line-height: 26px;

}

.page5 .nav{

	width: 240px; float: right; display: inline;

}

.page5 .nav li{

	 border-top: #000000 solid 1px; padding-top: 40px; padding-bottom: 80px; position: relative; top: -200px;

}

.page5 .nav li:first-child{

	transition-delay: 0.7s;

	-webkit-transition-delay: 0.7s;

}

.page5.active .nav li{

	top: 0;

}





/* 合作伙伴页面样式 */
.page5 .partners-title {
	font-size: 42px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	letter-spacing: 2px;
	margin-top: 100px;
	margin-bottom: 60px;
}

.page5 .partners-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: 25px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	justify-items: center;
	align-items: center;
}

.page5 .partner-item {
	position: relative;
	width: 200px;
	height: 130px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 10px;
	background: #ffffff !important;
	transition: all 0.3s ease;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	/* 强制使用纯白背景，确保所有容器背景一致 */
}

.page5 .partner-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: all 0.4s ease;
	padding: 15px;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background: #ffffff;
	/* 确保所有图片背景统一为纯白色 */
}

/* 彩色版本的图片，初始状态在下方隐藏 */
.page5 .partner-item img.color-version {
	filter: grayscale(0%);
	transform: translateY(100%);
	z-index: 2;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	background: #ffffff;
	/* 确保彩色版本也有统一的白色背景 */
}

/* 为所有合作伙伴图片添加统一的白色背景处理 */
.page5 .partner-item img {
	background-color: #ffffff !important;
	/* 强制所有图片使用纯白背景，覆盖可能的透明背景 */
}

/* 添加背景混合模式来处理图片颜色一致性 */
.page5 .partner-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
	z-index: 0;
	pointer-events: none;
}

.page5 .partner-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(128, 128, 128, 0.6);
	z-index: 1;
	transition: all 0.4s ease;
	pointer-events: none;
}

.page5 .partner-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page5 .partner-item:hover::before {
	opacity: 0;
	transform: translateY(-10px);
}

/* 基础悬浮效果已被具体的滑动效果替代 */

/* 悬浮时彩色版本向上滑入 */
.page5 .partner-item:hover img.color-version {
	transform: translateY(0);
}

/* 悬浮时灰度版本向上滑出 */
.page5 .partner-item:hover img:not(.color-version) {
	transform: translateY(-100%);
}

/* 动画效果 */
.page5 .partners-grid .partner-item {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.6s ease;
}

.page5.active .partners-grid .partner-item {
	opacity: 1;
	transform: translateY(0);
}

.page5.active .partners-grid .partner-item:nth-child(1) { transition-delay: 0.1s; }
.page5.active .partners-grid .partner-item:nth-child(2) { transition-delay: 0.2s; }
.page5.active .partners-grid .partner-item:nth-child(3) { transition-delay: 0.3s; }
.page5.active .partners-grid .partner-item:nth-child(4) { transition-delay: 0.4s; }
.page5.active .partners-grid .partner-item:nth-child(5) { transition-delay: 0.5s; }
.page5.active .partners-grid .partner-item:nth-child(6) { transition-delay: 0.6s; }
.page5.active .partners-grid .partner-item:nth-child(7) { transition-delay: 0.7s; }
.page5.active .partners-grid .partner-item:nth-child(8) { transition-delay: 0.8s; }
.page5.active .partners-grid .partner-item:nth-child(9) { transition-delay: 0.9s; }
.page5.active .partners-grid .partner-item:nth-child(10) { transition-delay: 1.0s; }
.page5.active .partners-grid .partner-item:nth-child(11) { transition-delay: 1.1s; }
.page5.active .partners-grid .partner-item:nth-child(12) { transition-delay: 1.2s; }
.page5.active .partners-grid .partner-item:nth-child(13) { transition-delay: 1.3s; }
.page5.active .partners-grid .partner-item:nth-child(14) { transition-delay: 1.4s; }
.page5.active .partners-grid .partner-item:nth-child(15) { transition-delay: 1.5s; }
.page5.active .partners-grid .partner-item:nth-child(16) { transition-delay: 1.6s; }

.page6{

	/*background: url(/22vd/images/bg6.jpg) no-repeat center; */background-size: cover !important; height: 900px;

}

.page6 video{

	position: absolute; left: 0; right: 0; top: 0; bottom: 0;
	min-width:100%;

}

.page6 .bg{

	background: url("../../../22vd/images/img50.png") repeat; position: absolute; left: 0; right: 0; top: 0; bottom: 0;

}

.page6 .wrapper{

	position: absolute; left: 50%; margin-left: -600px; top: 50%; margin-top: -205px;

}

.page6 .img{

	margin-left: 340px; position: relative;

}

.page6 .img .quan,

.page6 .img .wen{

	-webkit-transition: all 2s;

    -moz-transition: all 2s;

    -o-transition: all 2s;

    transition: all 2s;

    opacity: 0.9;

    -webkit-opacity: 0.9;

    -moz-opacity: 0.9;

}

.page6.active .img .quan,

.page6.active .img .wen{

	opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}

.page6 .img .wen{

	position: absolute; left: 160px; top: 60px;

	-webkit-transform:translate3d(100px, 0, 0);

	-ms-transform:translate3d(100px, 0, 0);

	transform:translate3d(100px, 0, 0);

}

.page6.active .img .wen{

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

.page6 .img .quan{

	-webkit-transform:translate3d(-100px, 0, 0);

	-ms-transform:translate3d(-100px, 0, 0);

	transform:translate3d(-100px, 0, 0);

}

.page6.active .img .quan{

	-webkit-transform:translate3d(0, 0, 0);

	-ms-transform:translate3d(0, 0, 0);

	transform:translate3d(0, 0, 0);

}

.page6 .text{

	height: auto; margin-top: 60px;

}

.page6 .time{

	width: 340px; float: left; display: inline; color: #fff; font-family: arial; line-height: 1;

}

.page6 .time .wrap{

	display: inline-block; text-align: center;

}

.page6 .time h2{

	margin-top: 10px; color: #fff; font-size: 21px;

}

.page6 .time h4{

	margin-top: 10px;

}

.page6 .tele{

	width: 860px; float: right; display: inline; 

}

.page6 .tele img{

	display: block;

}

.page6 .tele .weixin{

	margin-top: 30px;

}

.page6 .info{

	height: auto; overflow: hidden; width: 1200px; position: absolute; left: 50%; margin-left: -600px; bottom: 35px; color: #ffffff; padding: 20px;

}

.page6 .info a{

	color: #ffffff;

}

/* 底部主要内容行 */
.page6 .info .footer-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	gap: 30px;
}

/* 底部列样式 */
.page6 .info .footer-col {
	flex: 1;
	min-width: 200px;
}

.page6 .info .footer-col h4 {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	border-bottom: 2px solid rgba(255,255,255,0.3);
	padding-bottom: 8px;
}

.page6 .info .footer-col p {
	color: #ffffff;
	font-size: 13px;
	line-height: 1.8;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* 隐藏移动端专用按钮在电脑端的显示 */
.page6 .info .footer-row .footer-col.company-info .mobile-contact-btn {
	display: none;
}

/* 二维码区域 */
.page6 .info .qr-codes {
	max-width: 280px;
}

.page6 .info .qr-container {
	display: flex;
	justify-content: space-between;
	gap: 0px;
}

.page6 .info .qr-item {
	text-align: center;
	flex: 1;
}

.page6 .info .qr-item .qr-code {
	width: 90px;
	height: 90px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	margin-bottom: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 2px solid rgba(255,255,255,0.1);
}

.page6 .info .qr-item .qr-code:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.page6 .info .qr-item p {
	color: #ffffff;
	font-size: 12px;
	text-align: center;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	font-weight: 500;
}

/* 底部版权信息 */
.page6 .info .footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 15px;
	text-align: center;
	margin-top: 10px;
}

.page6 .info .footer-bottom p {
	color: rgba(255,255,255,0.8);
	font-size: 12px;
	margin: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.page6 .info {
		width: 95%;
		margin-left: -47.5%;
		padding: 15px;
	}
	
	.page6 .info .footer-row {
		flex-direction: column;
		gap: 25px;
	}
	
	.page6 .info .qr-container {
		justify-content: center;
		gap: 25px;
	}
	
	.page6 .info .qr-item .qr-code {
		width: 100px;
		height: 100px;
	}
}



.flink{

	background: #202020; padding: 25px 0; color: #4f4f4f;

}

.flink dt,

.flink dd{

	display: inline; margin-right: 35px; line-height: 27px;

}

.flink dt{

	font-weight: bold;

}



.gb-arrow{

	background: url("../../../22vd/images/img42.png") no-repeat left center; height: 47px; line-height: 47px; padding-left: 30px; position: absolute; left: 30px; top: 50%; margin-top: 1500px; font-size: 12px; color: #fff;

	-webkit-transition: all 2s;

    -moz-transition: all 2s;

    -o-transition: all 2s;

    transition: all 2s;

    opacity: 0;

    -webkit-opacity: 0;

    -moz-opacity: 0;

}

.active .gb-arrow{

	margin-top: -23px;

    opacity: 1;

    -webkit-opacity: 1;

    -moz-opacity: 1;

}





.slide-wrap{

	width: 100%; height: 100%; position: relative;

}

.slide-wrap ul{

	width: 100%; height: 100%;

}

.slide-wrap li{

	width: 100%; height: 100%; overflow: hidden; text-align: center; position: absolute; left: 0; right: 0; top: 0; bottom: 0; 

}

.slide-wrap li .wrap{

	position: absolute; left: 0; right: 0; top: 50%; margin-top: -250px;

}

.slide-wrap li.selected{

}

.slide-wrap li .bg{

	background: url("../../../22vd/images/img50.png") repeat; position: absolute; left: 0; right: 0; top: 0; bottom: 0;

	transition: all 1s;

	-webkit-transition: all 1s;

	-ms-transition: all 1s;

	-moz-transition: all 1s;

	opacity: 0;

	-webkit-opacity: 0;

	-ms-opacity: 0;

	-moz-opacity: 0;

}

.slide-wrap li.selected .bg{

	opacity: 1;

	-webkit-opacity: 1;

	-ms-opacity: 1;

	-moz-opacity: 1;

}

.slide-wrap li .img{

	position: relative; z-index: 9;

	transition: all 1s;

	-webkit-transition: all 1s;

	-ms-transition: all 1s;

	-moz-transition: all 1s;

}

.slide-wrap li.selected .img{

	-webkit-transform:translate3d(0, 0, 0) !important;

	-ms-transform:translate3d(0, 0, 0) !important;

	transform:translate3d(0, 0, 0) !important;

}

.slide-wrap li .text{

	color: #fff; font-size: 20px; margin-top: 25px; position: relative; z-index: 9;

	transition: all 0.5s;

	-webkit-transition: all 0.5s;

	-ms-transition: all 0.5s;

	-moz-transition: all 0.5s;

}

.slide-wrap .slide-bg{
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-moz-transition: all 0.5s;
}



.slide-wrap li#s1 .slide-bg{
	opacity:0;
}

.slide-wrap li#s1.selected .slide-bg{
	opacity:1;
}

.slide-wrap li#s1 .img{

	opacity:0;

	-webkit-transform:translate3d(0, 50px, 0);

	-ms-transform:translate3d(0, 50px, 0);

	transform:translate3d(0, 50px, 0);

}

.slide-wrap li#s1.selected .img{

	opacity:1;

	

}

.slide-wrap li#s1 .text{

	opacity:0;

}

.slide-wrap li#s1.selected .text{

	opacity:1;

}







.slide-wrap li#s2 .slide-bg{
	opacity:0;
	-webkit-opacity:0;
	-ms-opacity:0;
	-moz-opacity:0;
}

.slide-wrap li#s2.selected .slide-bg{
	opacity:1;
	-webkit-opacity:1;
	-ms-opacity:1;
	-moz-opacity:1;
}

.slide-wrap li#s2 .img{

	position: relative; display: inline-block; opacity:0;

	-webkit-transform:translate3d(0, 50px, 0);

	-ms-transform:translate3d(0, 50px, 0);

	transform:translate3d(0, 50px, 0);

}

.slide-wrap li#s2.selected .img{

	opacity:1;

}

.slide-wrap li#s2 .quan{

	position: absolute; right: 0; top: 0;

}

.slide-wrap li#s2 .img{

	opacity:0;

}

.slide-wrap li#s2 .text{

	opacity:0;

}



.slide-wrap li#s3 .slide-bg{
	opacity: 0;
}

.slide-wrap li#s3.selected .slide-bg{
	opacity: 1;
}

.slide-wrap li#s3 .img{

	opacity:0;

	-webkit-transform:translate3d(0, 50px, 0);

	-ms-transform:translate3d(0, 50px, 0);

	transform:translate3d(0, 50px, 0);

}

.slide-wrap li#s3.selected .img{

	opacity:1;

}

.slide-wrap li#s3 .text{

	opacity:0;

}

.slide-wrap li#s3.selected .text{

	opacity:1;

}



.slide-nav-wrap {

	position:absolute;

	left:0;

	bottom:0;

	width:100%;

	padding-top:25px;

	margin-bottom:-22px;

	opacity:1;

	overflow:hidden;

	z-index:8;

	-moz-transform:translateY(100%);

	-ms-transform:translateY(100%);

	-webkit-transform:translateY(100%);

	transform:translateY(100%);

	transform: matrix(1, 0, 0, 1, 0, 0);

	-webkit-transform: matrix(1, 0, 0, 1, 0, 0);

	-moz-transform: matrix(1, 0, 0, 1, 0, 0);

	-ms-transform: matrix(1, 0, 0, 1, 0, 0);

	height: 84px;

}

#slide-nav {

	position:relative;

	width:620px;

	height:26px;

	margin:auto;

	-moz-transform:translateX(90px);

	-ms-transform:translateX(90px);

	-webkit-transform:translateX(90px);

	transform:translateX(90px)

}

.nav-line {

	float:left;

	position:relative;

	width:90px;

	height:1px;

	top:13px

}

.nav-line:after {

	content:'';

	position:absolute;

	top:0;

	width:90px;

	height:100%;

	background-color:#fff;

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.nav-line.small:after {

	width:78px

}

.nav-line.x-small:after {

	width:63px;

	-moz-transition:all 1s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 1s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 1s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 1s cubic-bezier(0.77, 0, 0.175, 1)

}

.nav-line.prev:after {

	left:0

}

.nav-line.next:after {

	right:0

}

.nav-line:first-child:before, .nav-line:last-child:before {

	content:'';

	position:absolute;

	top:0;

	width:8000px;

	height:1px;

	background-color:#fff;

	-moz-backface-visibility:hidden;

	-webkit-backface-visibility:hidden;

	backface-visibility:hidden

}

.nav-line:first-child:before {

	left:-8000px

}

.nav-line:last-child:before {

	right:-8000px

}

.nav-bullet-container {

	float:left;

	position:relative;

	width:26px;

	height:26px;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%

}

.nav-bullet-container:nth-child(1) {

margin-left:100px

}

.nav-bullet-container:before {

	content:'';

	position:absolute;

	top:-15px;

	left:8px;

	opacity:0;

	pointer-events:none;

	width:0;

	height:0;

	border-style:solid;

	border-width:6px 5px 0 5px;

	border-color:#fff transparent transparent transparent;

	-moz-transform:translateY(-10px);

	-ms-transform:translateY(-10px);

	-webkit-transform:translateY(-10px);

	transform:translateY(-10px);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-moz-backface-visibility:hidden;

	-webkit-backface-visibility:hidden;

	backface-visibility:hidden

}

.desktop #slide-nav .nav-bullet-container:hover:before {

	-moz-transform:translateY(0px);

	-ms-transform:translateY(0px);

	-webkit-transform:translateY(0px);

	transform:translateY(0px);

	opacity:1

}

.desktop #slide-nav .nav-bullet-container:hover .nav-link:before {

	-moz-transform:scale(2, 2);

	-ms-transform:scale(2, 2);

	-webkit-transform:scale(2, 2);

	transform:scale(2, 2);

	opacity:0;

	-moz-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-o-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-webkit-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)

}

.desktop #slide-nav .nav-bullet-container:hover .nav-link:after {

	-moz-transform:scale(3.3, 3.3);

	-ms-transform:scale(3.3, 3.3);

	-webkit-transform:scale(3.3, 3.3);

	transform:scale(3.3, 3.3);

	opacity:0.2

}

.desktop #slide-nav .nav-bullet-container:hover .nav-bullet {

	opacity:1;

	-moz-transform:scale(1, 1);

	-ms-transform:scale(1, 1);

	-webkit-transform:scale(1, 1);

	transform:scale(1, 1)

}

.desktop #slide-nav .nav-bullet-container:hover .nav-text {

	opacity:1;

	-moz-transform:translateY(0px);

	-ms-transform:translateY(0px);

	-webkit-transform:translateY(0px);

	transform:translateY(0px)

}

.nav-bullet-container.active .nav-link:after {

	opacity:1

}



.nav-link {

	display:block;

	position:relative;

	width:100%;

	height:100%;

	color:#fff;

}

.nav-link:before {

	content:'';

	position:absolute;

	left:5px;

	top:5px;

	width:14px;

	height:14px;

	border:1px solid #fff;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	opacity:0.5;

	-moz-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-o-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-webkit-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)

}

.nav-link:after {

	content:'';

	position:absolute;

	left:9px;

	top:9px;

	width:8px;

	height:8px;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	background-color:#fff;

	opacity:0.5;

	-moz-backface-visibility:hidden;

	-webkit-backface-visibility:hidden;

	backface-visibility:hidden;

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.nav-bullet {

	position:absolute;

	left:9px;

	top:9px;

	width:8px;

	height:8px;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	background-color:#fff;

	opacity:0;

	-moz-transform:scale(0, 0);

	-ms-transform:scale(0, 0);

	-webkit-transform:scale(0, 0);

	transform:scale(0, 0);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.nav-text {

	position:absolute;

	left:-44px;

	bottom:-22px;

	width:113px;

	text-align:center;

	opacity:0;

	pointer-events:none;

	-moz-transform:translateY(10px);

	-ms-transform:translateY(10px);

	-webkit-transform:translateY(10px);

	transform:translateY(10px);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	color: #fff;

}











/*雷达波纹效果*/

.gb-radar{

	position: relative;

}

.gb-radar:before, .gb-radar:after {

	content:'';

	position:absolute;

	left:0;

	top:0;

	-moz-border-radius:50%;

	-webkit-border-radius:50%;

	border-radius:50%;

	pointer-events:none

}

.gb-radar:before {

	width:88px;

	height:88px;

	border:1px solid #fff;

	-moz-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-o-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	-webkit-transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955);

	transition:all 0.8s cubic-bezier(0.455, 0.03, 0.515, 0.955)

}

.gb-radar:after {

	width:86px;

	height:86px;

	border:2px solid #fff;

	background-color:rgba(255, 255, 255, 0.1);

	opacity:0;

	-moz-transform:scale(0.5, 0.5);

	-ms-transform:scale(0.5, 0.5);

	-webkit-transform:scale(0.5, 0.5);

	transform:scale(0.5, 0.5);

	-moz-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-o-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	-webkit-transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1);

	transition:all 0.8s cubic-bezier(0.77, 0, 0.175, 1)

}

.gb-radar:hover:before {

	opacity:0;

	-moz-transform:scale(1.5, 1.5);

	-ms-transform:scale(1.5, 1.5);

	-webkit-transform:scale(1.5, 1.5);

	transform:scale(1.5, 1.5);

	-moz-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-o-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	-webkit-transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

	transition:all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)

}

.gb-radar:hover:after {

	opacity:1;

	-moz-transform:scale(1, 1);

	-ms-transform:scale(1, 1);

	-webkit-transform:scale(1, 1);

	transform:scale(1, 1)

}





/*弹出菜单*/

#nav {

	position:fixed;

	top:0;

	width:0;

	width:100%;

	height:100%;

	background:#282828;

	z-index:9999;

	transition: all 0.6s;

	-webkit-transition: all 0.6s;

	-ms-transition: all 0.6s;

	-moz-transition: all 0.6s;

	opacity: 1;

	-webkit-opacity: 1;

	-ms-opacity: 1;

	-moz-opacity: 1;

}

#nav.hide{

	top: -100%;

	opacity: 0;

	-webkit-opacity: 0;

	-ms-opacity: 0;

	-moz-opacity: 0;

}

.nav_top {

	width:100%;

}

.nav_main {

	max-width:1050px;

	height:514px;

	margin:0 auto;

	position:relative;

	top:50%;

	margin-top:-250px;

	display:table;

}

.nav_main h1 {

	color:#fff;

	font-size:48px;

	clear:both;

	padding-left:10px;

	font-style:italic;

	font-family: "MS Serif","New York",Microsoft YaHei;

}

.nav_main ul {

	width:100%;

	padding-top:130px;

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 40px 20px;

	justify-items: center;

	align-items: flex-start;

}

.nav_main ul li {

	height:130px;

	padding-left:45px;

	color:#fff;

	width: 200px; /* 固定宽度保持一致 */

	text-align: left;

	margin-bottom: 20px; /* 增加垂直间距 */

}

.nav_main ul li a {

	color:#fff;
text-decoration: none;
}

.nav_main ul li h2 {

	height:50px;

	line-height:50px;

	font-size:16px;

}



.nav_main ul li h2 a em {

	color:#949494;

	margin-left:20px;

	font-size:12px;

	font-style:normal;

	font-family:Verdana, Geneva, sans-serif;

	display: block;

	margin-top: 5px;

}

.nav_main ul li div a {

	color:#dbdbdb;

	display:block;

	line-height:22px;

	font-size:12px;

}

.nav_main ul li div a:hover {

	color:#fff;

}

.nav_main ul li.homes {

	background:url("../../../22vd/images/homes.png") no-repeat 10px 12px;

}

.nav_main ul li.services {

	background:url("../../../22vd/images/services.png") no-repeat 10px 12px;

}

.nav_main ul li.cases {

	background:url("../../../22vd/images/cases.png") no-repeat 10px 12px;

}

.nav_main ul li.abouts {

	background:url("../../../22vd/images/abouts.png") no-repeat 10px 12px;

}

.nav_main ul li.news {

	background:url("../../../22vd/images/news.png") no-repeat 10px 12px;

}

.nav_main ul li.Advantages {

	background:url("../../../22vd/images/Advantages.png") no-repeat 10px 12px;

}

.nav_main ul li.Experiences {

	background:url("../../../22vd/images/tiyans.png") no-repeat 10px 12px;

}

.nav_main ul li.Jobs {

	background:url("../../../22vd/images/jobs.png") no-repeat 10px 12px;

}

.nav_main ul li.Contacts {

	background:url("../../../22vd/images/contacts.png") no-repeat 10px 12px;

}

.nav_main ul li.About {

	background:url("../../../22vd/images/abouts.png") no-repeat 10px 12px;

}

.nav_main ul li div a:after {

	-webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

	transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

	-webkit-transform: translate3d(0, 0, 0);

	transform: translate3d(0, 0, 0);

}

/* 响应式导航栏间距调整 */
@media screen and (max-width: 1200px) {
	.nav_main {
		max-width: 950px;
	}
	.nav_main ul li {
		max-width: 140px;
		padding-left: 40px;
	}
}

@media screen and (max-width: 1024px) {
	.nav_main {
		max-width: 850px;
	}
	.nav_main ul li {
		max-width: 120px;
		padding-left: 35px;
	}
	.header .nav li {
		margin-left: 35px;
	}
}

@media screen and (max-width: 768px) {
	.nav_main {
		max-width: 650px;
	}
	.nav_main ul li {
		max-width: 90px;
		padding-left: 25px;
		font-size: 13px;
	}
	.nav_main ul li h2 {
		font-size: 14px;
	}
	.header .nav li {
		margin-left: 25px;
	}
}

@media screen and (max-width: 480px) {
	.nav_main {
		max-width: 450px;
	}
	.nav_main ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 15px;
	}
	.nav_main ul li {
		width: 150px;
		margin-bottom: 15px;
		padding-left: 20px;
	}
}

.nav-toggle {

	background-color: #fff;

	position: fixed;

	-webkit-transform: rotate(0deg);

	-ms-transform: rotate(0deg);

	transform: rotate(0deg);

	-webkit-transition: 0.5s ease-in-out;

	transition: 0.5s ease-in-out;

	cursor: pointer;

	border-radius: 50%;

	width: 36px;

	height: 36px;

	top: 15px;

	right: 13px;

	z-index: 30;

	overflow: hidden;

}

.nav-toggle span {

	width: 16px;

	display: block;

	height: 2px;

	position: absolute;

	left: 10px;

	background-color: #24252f;

	opacity: 1;

	-webkit-transform: rotate(0deg);

	-ms-transform: rotate(0deg);

	transform: rotate(0deg);

	-webkit-transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);

	transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

 .nav-toggle span:nth-child(1) {

 top: 13px;

}

 .nav-toggle span:nth-child(2) {

 top: 18px;

}

 .nav-toggle span:nth-child(3) {

 top: 23px;

}

 .nav-toggle.close span:nth-child(1) {

 top: 18px;

 -webkit-transform: rotate(135deg);

 -ms-transform: rotate(135deg);

 transform: rotate(135deg);

}

 .nav-toggle.close span:nth-child(2) {

 opacity: 0;

 left: -30px;

}

 .nav-toggle.close span:nth-child(3) {

 top: 18px;

 -webkit-transform: rotate(-135deg);

 -ms-transform: rotate(-135deg);

 transform: rotate(-135deg);

}





a.logo_menu {

	margin-top:21px;

	display:inline-block;

	margin-left:31px;

}

a.close_menu {

	width:50px;

	height:48px;

	display:inline-block;

	margin-top:20px;

	background:url("../images/close.png") no-repeat;

	float:right;

	margin-right:30px;

	-moz-transition:-moz-transform 0.5s; /* Firefox 4 */

	-webkit-transition: -webkit-transform 0.5s; /* Safari and Chrome */

	-o-transition: -o-transform 0.5s; /* Opera */

}

a.close_menu:hover {

	-moz-transform:rotate(90deg); /* Firefox 4 */

	-webkit-transform:rotate(90deg); /* Safari and Chrome */

	-o-transform:rotate(90deg); /* Opera */

}



.sidebar{

	position: fixed; right: 0; top: 50%; margin-top: -80px; width: 55px; background: rgba(0,0,0,0.3); padding: 12px 0 0 0; border-radius:8px 0 0 8px; z-index:999999;

}

.sidebar li{

	height: 50px; width: 160px; padding-left: 17px; border-radius:8px 0 0 8px;

	

	-webkit-transition: all 0.5s;

    -moz-transition: all 0.5s;

    -o-transition: all 0.5s;

    transition: all 0.5s;

}

.sidebar li img{

	display: block;

}

.sidebar li:hover{

	margin-left: -105px; background: rgba(0,0,0,0.6); 

}



/*进度条*/

#loader{

	position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 999999; background: #none;

}

#loader .myStat{

	margin: 0 auto;

}

#loader .wrap{

	text-align: center; color: #fff; position: absolute; left: 50%; margin-left: -100px; width: 200px; height: 120px; top: 50%; margin-top: -60px;

}

#loader .wrap h2{

	margin-top: 20px;

}

#loader .quan{

	width: 100px; height: 100px; border-radius:100px; margin: 0 auto; text-align: center; line-height: 100px; font-size: 12px; position: relative;

}

#loader .quan .num{

	width:60px ; height: 22px; background: #000; position: absolute; top: 50%; margin-top: -8px; left: 20px; text-align: center; color: #fff; line-height: 1;

}

/* 左上角图标组样式 */
.page3 .top-left-icons {
	position: absolute;
	left: 50px;
	top: 50px;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 20px;
}

.page3 .top-left-icons .icon-main {
	width: auto;
	height: 60px;
}

.page3 .top-left-icons .nav-icons {
	display: flex;
	align-items: center;
	gap: 15px;
}

.page3 .top-left-icons .nav-icons img {
	width: 40px;
	height: 40px;
}

.page3 .top-left-icons .nav-icons a {
	display: inline-block;
}

/* 调整作品展示区域为一排三个布局 */
.page3 .wrapper {
	position: absolute !important;
	left: 50% !important;
	margin-left: -750px !important; /* 调整以适应新间距：(480*3 + 20*4) / 2 = 750px */
	top: 50% !important;
	margin-top: -300px !important;
	width: 1500px !important; /* 调整宽度：480px * 3 + 20px * 4 = 1520px，取1500px */
}

.page3 .body {
	margin-top: 10px !important;
	position: relative;
	top: 0;
}

.page3 .body ul {
	height: auto;
	overflow: hidden;
	width: 100% !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 20px !important; /* 卡片间距 */
	row-gap: 20px !important; 
	column-gap: 20px !important; 
	align-items: flex-start !important; /* 项目顶部对齐 */
	align-content: flex-start !important; /* 行顶部对齐 */
	margin: 0 !important;
	padding: 20px !important; /* 容器内边距 */
	line-height: 0 !important; /* 消除行高影响 */
	font-size: 0 !important; /* 消除文字间隙 */
	box-sizing: border-box !important;
}

.page3 .body li {
	width: 460px !important; /* 调整宽度适应间距：(1500-80)/3-20 = 460px */
	height: 330px !important; /* 稍微减小高度 */
	position: relative;
	display: block !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	box-sizing: border-box !important;
	overflow: hidden;
	flex-shrink: 0 !important; /* 防止收缩 */
	flex-grow: 0 !important; /* 防止增长 */
	line-height: normal !important; /* 重置行高 */
	vertical-align: top !important; /* 垂直对齐顶部 */
	/* 卡片样式 */
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	/* 过渡动画 */
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-webkit-transform: translate3d(0, 100px, 0);
	-ms-transform: translate3d(0, 100px, 0);
	transform: translate3d(0, 100px, 0);
}

/* 允许所有作品显示，支持多排布局 */
.page3 .body li {
	display: block !important;
}

/* 产品名称提示框样式 */
.page3 .body li .product-name-tooltip {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: normal;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 10;
}

/* 卡片悬停效果 */
.page3 .body li:hover {
	transform: translateY(-8px) !important;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* 鼠标悬停时显示产品名称 */
.page3 .body li:hover .product-name-tooltip {
	opacity: 1;
	visibility: visible;
}

/* 产品分类筛选样式 */
.page3 .product-categories {
	position: absolute;
	top: -30px;
	right: 30px;
	z-index: 20;
}

.page3 .category-filters {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.page3 .category-btn {
	background: none;
	border: none;
	color: #fff;
	padding: 6px 12px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page3 .category-btn:hover {
	color: #fff;
	transform: translateY(-1px);
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.page3 .category-btn.active {
	color: #fff;
	font-weight: bold;
	text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

/* 产品筛选动画 */
.page3 .body li {
	transition: all 0.5s ease;
	opacity: 1;
	transform: translateY(0);
}

.page3 .body li.hidden {
	opacity: 0;
	transform: translateY(20px);
}

/* 产品重排动画 */
.page3 .body ul {
	transition: all 0.3s ease;
}

