@charset "utf-8";
/* CSS Document */
		
		input[type="button"],
		input[type="submit"],
		input[type="text"],
		input[type="email"],
		input[type="search"] {
			transition: 0.5s all;
			-webkit-transition: 0.5s all;
			-moz-transition: 0.5s all;
			-o-transition: 0.5s all;
			-ms-transition: 0.5s all;
			font-family: 'Poppins', sans-serif;
		}
		
		h1,
		h2,
		h3,
		h4,
		h5,
		h6 {
			margin: 0;
			letter-spacing: 1px;
		}
		
		p {
			font-size: 0.9em;
			line-height: 2em;
		}
                                            
                                       


.tf-wrap{background: url(../images/home-banner-bg.jpg) no-repeat center 0; height:calc(100vh - 120px); height:calc(var(--vh) * 100 - 120px); width:100%; background-size: cover;}
.tf-wrap .f_shu.donghua_1{ margin:0;
-webkit-animation: fadeInRight 1.5s 0.1s;
    animation: fadeInRight 1.5s 0.1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
	padding-top: 24%;
}
.tf-wrap .f_shu.donghua_2{
	margin:0;
	-webkit-animation: fadeInLeft 1.5s 0.1s;
    animation: fadeInLeft 1.5s 0.1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;}
.tf-wrap .f_shu.donghua_3 {
    -webkit-animation: scaleInCenter 1s 0.1s;
    animation: scaleInCenter 1s 0.1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.tf-wrap .f_shu.donghua_4 {
    -webkit-animation: scaleInCenter 1s 0.8s;
    animation: scaleInCenter 1s 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.tf-wrap .more{ width:120px; height:27px; letter-spacing:0px !important;}
.tf-wrap .more{}
.link .icon,
			.link .icon1,
			.link .icon2 {
				/*继承父元素宽度*/
				width: 100%;
				height: 190px;
				/*span为行内元素*/
				display: inline-block;
				/*添加过度效果*/
				/*如果使用过度,需要开始结束he开关都设定*/
				transition: all 0.3s linear;
				/*兼容代码*/
				-webkit-transition: all 0.3s linear;
				-moz-transition: all 0.3s linear;
				-o-transition: all 0.3s linear;
				-ms-transition: all 0.3s linear;
			}
			
			.box .link {
				width: 205px;
				height: 280px;
				margin: 0 20px;
				float: left;
			}
			
			.icon {
				background: url(img/mission.png) no-repeat center center;
			}
			
			.icon1 {
				background: url(img/play.png) no-repeat center center;
			}
			
			.icon2 {
				background: url(img/touch.png) no-repeat center center;
			}
			
			.link .icon:hover,
			.link .icon1:hover,
			.link .icon2:hover {
				transform: rotate(360deg) scale(1.2);
				/*兼容IE浏览器*/
				-ms-transform: rotate(360deg) scale(1.2);
				/*兼容Safari和Chrome浏览器*/
				-webkit-transform: rotate(360deg) scale(1.2);
				/*兼容火狐浏览器*/
				-moz-transform: rotate(360deg) scale(1.2);
			}
			/*设置幽灵按钮*/
			
			.button {
				display: block;
				width: 180px;
				text-align:center;
				height: 40px;
				line-height:36px;
				border: 2px solid #fff;
				box-sizing: border-box;
				/*兼容代码*/
				/*兼容IE浏览器*/
				-ms-box-sizing: border-box;
				/*兼容Safari和Chrome浏览器*/
				-webkit-box-sizing: border-box;
				/*兼容火狐浏览器*/
				-moz-box-sizing: border-box;
				/*加入箭头*/
				/*添加过度效果*/
				transition: all 0.3s linear;
				position: relative;
			}
			
			.button:hover {
				border: 2px solid #ff7c01;
				color:#ffcc8f;
				background-position: 140px center;
			}
			/*添加四条线的样式*/
			
			.button:hover .line {
				background: #ff7c01;
			}
			/*是四条闪现过来的线 ，很多重复的部分*/
			
			.button .line {
				display: block;
				position: absolute;
				background: none;
				transition: all 0.3s linear;
				-webkit-transition: all 0.3s linear;
				-moz-transition: all 0.3s linear;
			}
			/*顶端的线标注*/
			/*1.高度 不变
			2.盒子宽度不变
			3.位置左右位置移动*/
			
			.button .line_top {
				height: 2px;
				width: 0;
				left: -110%;
				top: -2px;
			}
			
			.button:hover .line_top {
				width: 100%;
				left: -2px;
			}
			
			.button .line_bottom {
				height: 2px;
				width: 0;
				right: -110%;
				bottom: -2px;
			}
			
			.button:hover .line_bottom {
				width: 100%;
				right: -2px;
			}
			
			.button .line_right {
				height: 0px;
				width: 2px;
				right: -2px;
				top: -110%;
			}
			
			.button:hover .line_right {
				height: 100%;
				top: -2px;
			}
			
			.button .line_left {
				height: 0px;
				width: 2px;
				left: -2px;
				bottom: -110%;
			}
			
			.button:hover .line_left {
				height: 100%;
				bottom: -2px;
			}
		
		
			
			@keyframes btn-anim1 {
				0% {
					left: -100%;
				}
				50%,
				100% {
					left: 100%;
				}
			}
			
			.a span:nth-child(2) {
				top: -100%;
				right: 0;
				width: 2px;
				height: 100%;
				background: linear-gradient(180deg, transparent, #03e9f4);
				animation: btn-anim2 1s linear infinite;
				animation-delay: .25s
			}
			
			@keyframes btn-anim2 {
				0% {
					top: -100%;
				}
				50%,
				100% {
					top: 100%;
				}
			}
			
			.a span:nth-child(3) {
				bottom: 0;
				right: -100%;
				width: 100%;
				height: 2px;
				background: linear-gradient(270deg, transparent, #03e9f4);
				animation: btn-anim3 1s linear infinite;
				animation-delay: .5s
			}
			
			@keyframes btn-anim3 {
				0% {
					right: -100%;
				}
				50%,
				100% {
					right: 100%;
				}
			}
			
			.a span:nth-child(4) {
				bottom: -100%;
				left: 0;
				width: 2px;
				height: 100%;
				background: linear-gradient(360deg, transparent, #03e9f4);
				animation: btn-anim4 1s linear infinite;
				animation-delay: .75s
			}
			
			@keyframes btn-anim4 {
				0% {
					bottom: -100%;
				}
				50%,
				100% {
					bottom: 100%;
				}
			}	


.about{ height:100vh; height: calc(var(--vh) * 100);}
.about .about_more{ width:100%; }
.about .about_more:hover{ cursor:pointer;}
.about .about_more a{ color:#fff; text-align:left;width:90px; height:33px; background:url(../images/s_more.jpg) no-repeat;line-height: 33px; margin-left:7px; display:block; float:left}
.about .about_more a b{ width:7px; display:block; height:33px; float:left}

		
.business{ height:100vh;height: calc(var(--vh) * 100);}
.business_1{ width:255px; height:225px; cursor:pointer;}
.business_2{ width:255px; height:225px; cursor:pointer;}
.business_mb{ background-color:rgb(75 73 72 / 60%); position:relative; width:100%; height:100%; z-index:10; top:-100%; text-align:center; color:#fff; font-size:24px; cursor:pointer;line-height: 210px;transition: all 0.5s;}
.business_1:hover .business_mb{ background:none !important; transition: all 0.5s;}
.business_2:hover .business_mb{ background:none !important; transition: all 0.5s;}
.business .gqtz{}
.business .gqtz ul{ padding:0}
.business .gqtz ul li{ float:left; height:225px}
.business .gqtz ul li .gqtz_tit span{ display:block;}

.imgScaleBig .img{overflow:hidden;}
.w-simImg .image-w{position:relative; overflow:hidden;}
.w-simImg img{ max-width: 100%;}
.caption{ position:relative;}
.caption .captionbg{position:absolute;width:100%; height:100%;}
.caption .caption-text{z-index:10; position:relative;word-break: break-all; word-wrap: break-word;padding:0.5em 1px 0.7em;}
.caption h3{ font-weight:normal; font-size:115%; margin:0; line-height:1.5;text-align: center; }
.caption p{ margin:0; padding-top:0.5em; opacity:0.85;}
.bg_main{ background: #a18343;}

.simImg_spec .caption{ overflow:hidden;}
.specFull .caption{position:absolute;bottom:0; left:0; width:100%;height:100%;color:#fff; padding-top:0; }
.specFull .caption .captionbg{ opacity:0.9; *filter:alpha(opacity=90); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=90); z-index:0;}
.specFull .caption .caption-text{ display:table; height:100%; width:100%; }
.specFull .caption .caption-text .caption-text-in{ display: table-cell; vertical-align: middle;padding:10px;}

.simImg_spec5 .captionbg{ left:0; top:0;  opacity:0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:all 0.35s;transition:all 0.35s;}
.simImg_spec5:hover .captionbg{ opacity:0.7;*filter:alpha(opacity=70); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);}
.simImg_spec5 .w-img-caption{position: absolute;top: 0;left: 0;right:0;bottom:0; color:#fff;padding:1.5em;}
.simImg_spec5 .w-img-caption::before{position: absolute;top: 1em;right: 1em;bottom: 1em;left: 1em;border: 1px solid rgba(255,255,255,0.7);content: '';}
.simImg_spec5 h3 {-webkit-transition: -webkit-transform 0.35s;transition: transform 0.35s;-webkit-transform: translate3d(0,100%,0);transform: translate3d(0,100%,0);}
.simImg_spec5 .w-img-caption::before{opacity: 0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;transition: opacity 0.35s, transform 0.35s;-webkit-transform: scale(0);transform: scale(0);}
.simImg_spec5 p {opacity: 0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;transition: opacity 0.35s, transform 0.35s;-webkit-transform: scale(0);transform: scale(0);}
.simImg_spec5:hover h3 {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
.simImg_spec5:hover .w-img-caption::before{opacity: 1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);-webkit-transform: scale(1);transform: scale(1);}
.simImg_spec5:hover p {opacity: 1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);-webkit-transform: scale(1);transform: scale(1);}
.simImg_spec5:hover .w-img-caption{background-color: rgba(58,52,42,0);}

/*.simImg_spec6 img{-webkit-transition:-webkit-transform 0.35s;transition:transform 0.35s;-webkit-transform: translate3d(-5%,0,0) scale(1.1);transform: translate3d(-5%,0,0) scale(1.1);-webkit-backface-visibility: hidden;backface-visibility: hidden;}
.simImg_spec6:hover img{-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}*/
.simImg_spec6 .captionbg{ left:0; top:0; opacity:0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:all 0.35s;transition:all 0.35s;}
.simImg_spec6:hover .captionbg{ opacity:0.7;*filter:alpha(opacity=70); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);}
.simImg_spec6 .w-img-caption{position: absolute;top: 0;left: 0;right:0;bottom:0; color:#fff;padding:1em;}
.simImg_spec6 h3 {position: relative;overflow: hidden;padding-bottom:0.5em;}
.simImg_spec6 h3::after {position: absolute;bottom: 0;left: 0;width: 100%;height: 3px;background: #fff;content: '';-webkit-transition: -webkit-transform 0.35s;transition: transform 0.35s;-webkit-transform: translate3d(-100%,0,0);transform: translate3d(-100%,0,0);}
.simImg_spec6:hover h3::after {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
.simImg_spec6 p {padding: 1em 0;opacity: 0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;transition: opacity 0.35s, transform 0.35s;-webkit-transform: translate3d(100%,0,0);transform: translate3d(100%,0,0);}
.simImg_spec6:hover p {opacity: 1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}

.simImg_spec7 .w-img-caption{position: absolute;top: 0;left: 0;right:0;bottom:0; color:#fff;padding:1em;}
.simImg_spec7 .caption-text{position: absolute;left: 0;right:0;bottom:0; padding:0;}
.simImg_spec7 img,.simImg_spec7 h3 {-webkit-transition: -webkit-transform 0.35s;transition: transform 0.35s;}
.simImg_spec7 h3{padding: 1em;}
.simImg_spec7 p { padding:0 1.2em; text-transform: none;font-size: 90%;  box-sizing:border-box;opacity: 0;-webkit-transition: all 0.35s;transition: all 0.35s; height:0; overflow:hidden; -webkit-transform: translate3d(0,50%,0) scale(1,0);transform: translate3d(0,50%,0) scale(1,0); line-height:1.5; }
.simImg_spec7:hover img {-webkit-transform: translate3d(0,-30px,0) scale(1,1);transform: translate3d(0,-30px,0) scale(1,1);}
.simImg_spec7:hover p{padding:1em 1.2em;opacity: 1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);-webkit-transform: translate3d(0,0,0) scale(1);transform: translate3d(0,0,0) scale(1); height:auto;}

.simImg_spec4 .captionbg{ left:0; top:0; opacity:0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:all 0.35s;transition:all 0.35s;}
.simImg_spec4:hover .captionbg{ opacity:0.7;*filter:alpha(opacity=70); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);}
.simImg_spec4 .w-img-caption{/*text-align: right;*/position:absolute; left:0; right:0; top:0; bottom:0; color:#fff;}
.simImg_spec4 .caption-text {position: absolute;bottom: 0;left: 0; top:0; right:0;}
.simImg_spec4 h3,.simImg_spec4 p {position: absolute;right: 1em;left: 1em;padding: 10px 0;}
.simImg_spec4 p {bottom: 1em;line-height: 1.5;-webkit-transform: translate3d(0,100%,0);transform: translate3d(0,100%,0);}
.simImg_spec4 h3 {top: 1em;-webkit-transition: -webkit-transform 0.35s;transition: transform 0.35s;-webkit-transform: translate3d(0,10px,0);transform: translate3d(0,10px,0);}
.simImg_spec4:hover h3 {-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
.simImg_spec4 h3::after {position: absolute;top: 100%;left: 0;width: 100%;height: 4px;background: #fff;content: '';-webkit-transform: translate3d(0,40px,0);transform: translate3d(0,40px,0);}
.simImg_spec4 h3::after {opacity: 0; *filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;transition: opacity 0.35s, transform 0.35s;}
.simImg_spec4 p {opacity: 0; *filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;transition: opacity 0.35s, transform 0.35s;}
.simImg_spec4:hover h3::after{opacity:1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}
.simImg_spec4:hover p {opacity:0.9;*filter:alpha(opacity=90); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=90);-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}

.simImg_spec28{ overflow:hidden}
.simImg_spec28 .caption{ position:absolute; left:0; top:0; width:100%; height:100%; color:#fff;transition:all .4s cubic-bezier(.88,-.99,0,1.81); overflow:hidden}
.simImg_spec28 .captionbg{ opacity:0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);-webkit-transition:opacity .35s;transition:opacity .35s;}
.simImg_spec28:hover .captionbg{ opacity:0.7;*filter:alpha(opacity=70); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=70);}
.simImg_spec28 .caption-text{top:60%;top:10%\9; *top:10%; transform:translateY(-50%); -webkit-transform:translateY(-50%); padding:0.5em 0;}
:root .simImg_spec28 .caption-text{ top:58%;}
.simImg_spec28 h3 { background:rgba(0,0,0,0.5); padding:0.5em 1.6em; transform:translateY(100%);transition:all .4s cubic-bezier(.88,-.99,0,1.81);}
.simImg_spec28:hover h3{transform:none;}
.simImg_spec28 p{opacity:0;*filter:alpha(opacity=0); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);transform:scale(0);transition:all .4s cubic-bezier(.88,-.99,0,1.81);border:1px solid #fff;margin:1em;padding:1em;}
.simImg_spec28:hover p{opacity:1;*filter:alpha(opacity=100); filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100); transform:scale(1);}

.tzzh{ height:100vh;height: calc(var(--vh) * 100);}
.tzzh .tzzh_r_img{width: calc((100% - 1200px)/2 + 808px); background:url(../images/tzzh.jpg) no-repeat; height:105px;}
.tzzh .tzzh_l_tit{ margin-left:calc((100% - 1200px)/2);}
.tzzh .gdzz{ position:relative; z-index:20;}
.tzzh .miaobian{ -webkit-text-stroke:1px #dcdcdc; color:#fff; position:relative; top:-18px; z-index:10}



.tzzh .bg_r_img{ background:url(../images/tzzh.jpg) no-repeat; background-position:right 200px;} 
/********************************
 * generic als elements styling
 ********************************/
.als-container {
	position: relative;
	width:1200px;
	margin: 0px auto;
}

.als-viewport {
	position: relative;
	overflow: hidden;
	margin-left:60px;
}

.als-wrapper {
	position: relative;
	list-style: none;
	padding:0;
	margin:0;
}

.als-item {
	position: relative;
	display: block;
	text-align: center;
	cursor: pointer;
	float: left;
}

.als-prev, .als-next {
	position: absolute;
	cursor: pointer;
	clear: both;
}


/**************************
 * specific als elements
 * styling for #lista1
 **************************/

#lista1 {
	margin: 60px auto 80px auto;
}

#lista1 .als-item {
	margin: 0px 30px;
	min-height: 152px;
	min-width: 128px;
}

#lista1 .als-item img {
	position: relative;
	display: block;
	vertical-align: middle;
	margin-bottom: 8px;
}

#lista1 .als-prev, #lista1 .als-next {
	top: 58px;
	width: 15px;
	height: 22px;
}

#lista1 .als-prev {
	left: 90px;
}

#lista1 .als-next {
	right: 100px;
}

/************************
 * specific als element
 * styling for #lista2
 ***********************/

#lista2 {
	margin-bottom: 80px;
}

#lista2 .als-item {
	margin: 10px 0px;
	min-height: 152px;
	min-width: 128px;
}

#lista2 .als-item img {
	position: relative;
	display: block;
	vertical-align: middle;
	margin-bottom: 8px;
}

#lista2 .als-prev, #lista2 .als-next {
	left: 460px;
	width: 22px;
	height: 15px;
}

#lista2 .als-prev {
	top: -25px;
}

#lista2 .als-next {
	bottom: -20px;
}

#lista2 .als-item {
	vertical-align: middle;
}
#demo3 {
	margin:25px auto;
	margin-bottom:70px;
}

#demo3 .als-item {
	margin: 0px 40px 0 0;
	padding: 4px 0px;
	min-height: 120px;
	min-width: 240px;
	text-align: center;
	background:#fff;
}

#demo3 .als-item img {
	display: block;
	margin: 0 auto;
	vertical-align: middle;
	position: absolute;
    left: 50%;
    margin-left: -80px;
    top: 50%;
    margin-top: -37px;
}

#demo3 .als-prev, #demo3 .als-next {
	top: 40px;
}

#demo3 .als-prev {
	left: 0;
}

#demo3 .als-next {
	right: 0;
}
#demo4 {
	margin: 25px auto;
}

#demo4 .als-item {
	margin: 0px 40px 0 0;
	padding: 4px 0px;
	height: 120px;
	min-width: 240px;
	text-align: center;
	background:#fff;
}

#demo4 .als-item img {
	display: block;
	margin: 0 auto;
	vertical-align: middle;
		position: absolute;
    left: 50%;
    margin-left: -95px;
    top: 50%;
    margin-top: -45px;
	width:80%;
}

#demo4 .als-prev, #demo4 .als-next {
	top: 40px;
}

#demo4 .als-prev {
	left: 0;
}

#demo4 .als-next {
	right: 0;
}

/* Slider wrapper*/
.css-slider-wrapper {
  display: block;
  background:none;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  bottom: 0;
  width:1200px;
  height:720px;
  margin: 0 auto;
}
/* Slider */
.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  right:: 0;
  top: 50px;
  opacity: 1;
  z-index: 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
  -webkit-transition: -webkit-transform 1600ms;
  transition: -webkit-transform 1600ms, transform 1600ms;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* each slide backgound color */  
.slide1 {
  right: 0;
}
.slider ul{ padding:0; margin:0;position: relative;top: -30px; width:530px; right:-10px;}
.left_news_tj{background:#f2f2f2;position: relative;top:-35px; padding:20px; left:-10px; width:650px;}
.left_news_tj:hover{ background:#fef2e6;cursor:pointer;transition: all 0.5s;}
.left_news_tj:hover .new_more{ background: #f08200; transition: all 0.5s;}
.zd_news{ width:100%; height:350px; overflow:hidden;}
.zd_news img{ width:100%}
.zd_news_tit{ width:100%;}
.slider ul li{
	float:left;
	padding:13px 20px;
	background:#f2f2f2;
	margin-bottom: 10px;
}
.slider ul li a{ font-size:14px;}
.slider ul li:nth-child(even){ float:right; margin-right:0}
.slider ul li img { width:100%; height:100%}
.slider li:hover{ background:#fef2e6; cursor:pointer;transition: all 0.5s;}
.slider li:hover .new_more{ background: #f08200; transition: all 0.5s;}
.slider span{ display:block; overflow:hidden;}
.slider .new_more{ width: 27px;
    height: 22px;
    text-align: center;
    line-height: 20px;
    background: #ccc;
    color: #ccc;
    letter-spacing: -4px; margin-top:20px; float:right}
.slider .new_more a{ color:#fff;}
.slider .slider_more{ width:100%; }
.slider .slider_more:hover{ cursor:pointer;}
.slider .slider_more a{ color:#fff; text-align:left;width:90px; height:33px; background:url(../images/s_more.jpg) no-repeat;line-height: 33px; margin-left:7px; display:block; float:right}
.slider .slider_more a b{ width:7px; display:block; height:33px; float:left}
.slide2 {
  left: 100%
}
.slide3 {
  background: #ff5608;
  left: 200%
}
.slide4 {
  background: #607d8d;
  left: 300%;
}
/* Slider inner slide effect */
.slider h2 {
  color: #FFF;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 45px;
  line-height: 120%;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
}
.slider .button {
  color: #FFF;
  padding: 5px 30px;
  background: rgba(255,255,255,0.3);
  text-decoration: none;
  opacity: 0;
  font-size: 15px;
  line-height: 30px;
  display: inline-block;
  -webkit-transform: translateX(-500px);
  transform: translateX(-500px);
}
.slider h2, .slider .button {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}
/* Next and Preive arrow */ 
.control {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  z-index: 55;
}
.control label {
  z-index: 0;
  display: none;
  text-align: center;
  line-height: 50px;
  font-size: 50px;
  color: #FFF;
  cursor: pointer;
  opacity: 0.2;
}
.control label:hover {
  opacity: 0.5;
}
.next {
  right: 1%;
}
.previous {
  left: 1%;
}
/* Slider Pagger */ 
.slider-pagination {
  position: absolute;
  top: 0;
  width:320px;
  right: 0;
  text-align: center;
  z-index: 1000;
}
.slider-pagination label {
  display: inline-block;
  border-radius:5px;
  margin: 0 2px;
  cursor: pointer;
  padding:4px 15px;
  color:#4b4948;
}
/* Slider Pagger arrow event */
.slide-radio1:checked ~ .next .numb2, 
.slide-radio2:checked ~ .next .numb3, 
.slide-radio3:checked ~ .next .numb4, 
.slide-radio2:checked ~ .previous .numb1, 
.slide-radio3:checked ~ .previous .numb2, 
.slide-radio4:checked ~ .previous .numb3 {
  display: block;
  z-index: 1
}
/* Slider Pagger event */
.slide-radio1:checked ~ .slider-pagination .page1, 
.slide-radio2:checked ~ .slider-pagination .page2, 
.slide-radio3:checked ~ .slider-pagination .page3, 
.slide-radio4:checked ~ .slider-pagination .page4 {
  background: #4b4948;
  color:#fff;
}
/* Slider slide effect */
.slide-radio1:checked ~ .slider {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.slide-radio2:checked ~ .slider {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.slide-radio3:checked ~ .slider {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}
.slide-radio4:checked ~ .slider {
  -webkit-transform: translateX(-300%);
  transform: translateX(-300%);
}
.slide-radio1:checked ~ .slide1 h2,  
.slide-radio2:checked ~ .slide2 h2,  
.slide-radio3:checked ~ .slide3 h2,  
.slide-radio4:checked ~ .slide4 h2,  
.slide-radio1:checked ~ .slide1 .button,  
.slide-radio2:checked ~ .slide2 .button,  
.slide-radio3:checked ~ .slide3 .button,  
.slide-radio4:checked ~ .slide4 .button {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1
}

@media only screen and (max-width: 767px) {
.slider h2 {
  font-size: 20px;
}
.slider > div {
  padding: 0 2%
}
.control label {
  font-size: 35px;
}
.slider .button {
  padding: 0 15px;
}
}


.tzdj{     width: 100%;
    background: url(../images/guomao.jpg) no-repeat;
    height:100vh;
	height: calc(var(--vh) * 100);
    background-size: cover;
    background-attachment: fixed; }
.tzdj-text-one{ background: linear-gradient(#fff, #666, #fff, #666);    
 -webkit-background-clip: text;
 color: transparent;
}
.tzdj_li { clear:both;}
.tzdj_li ul{ width:100%; padding:0}
.tzdj_li ul li{ float:left; margin: 70px 30px 0 0; padding:55px 20px;color:#fff;
    background:rgba(123,122,122,0.7);
    background:#959595 9;/*CSS Hack,只能对ie9以下浏览器ie6,ie7,ie8有效，否侧ie10,FF,Cherome会失去透明效果*/
    filter:Alpha(opacity=70); cursor:pointer; }
.tzdj_li ul li:hover .tzdj_tit{ background-color:#f08200;border:2px solid #f08200; background-image: url(../images/q_logo_1.png);background-repeat:no-repeat; background-position:170px 0; background-size:contain; transition: all 0.5s;}
.tzdj_li ul li:nth-child(3){ float:right; margin-right:0}
.tzdj_tit{position:relative; border:2px solid #fff; line-height:41px; max-width:215px; padding:0 20px; margin:0 auto}
.tzdj_list{ position:relative; top:50px;}
.tzdj_list ul li{ padding:0; margin:0; background:none; width:100%;    height: 40px;}
.tzdj_list ul li:nth-child(3){ float:left;}
.tzdj_list ul li a:hover{ color:#fff;transition: all 0.5s;}
.tzdj_list span{ font-size:16px; color:#f08200;float: right;line-height: 40px; }

.jqry{ height:100vh; height: calc(var(--vh) * 100);}
.jqry .jqry_tit_img{width: calc((100% - 1200px)/2 + 763px); background:url(../images/jqry_tit.jpg) no-repeat; height:138px; margin-top:140px;}
.jqry .jqry_tit_r{ margin-right:calc((100% - 1200px)/2); padding-top:170px;}
.Box {position: relative; padding-top:120px;}
			.Box .content {width: 1200px;margin: 0 auto;}
			.Box h2 {text-align: center;margin-bottom: 35px;padding-top: 250px;}
			.Box .Box_con {position: relative;}
			.Box .Box_con .btnl {position: absolute;}
			.Box .Box_con .btn {display: block;width: 41px;height: 41px;position: absolute;top: 80px;cursor: pointer;}
			.Box .Box_con .btnl {background: url(img/jtl02.png) no-repeat center;left: -72px;}
			.Box .Box_con .btnr {background: url(img/jtr02.png) no-repeat center;right: -72px;}
			.Box .Box_con .btnl:hover {background: url(img/jtl03.png) no-repeat center;}
			.Box .Box_con .btnr:hover {background: url(img/jtr03.png) no-repeat center;}
			.Box .Box_con .conbox {position: relative;overflow: hidden; }
			.Box .Box_con .conbox ul {position: relative;list-style: none;}
			.Box .Box_con .conbox ul li{ }
			.Box .Box_con .conbox ul li .f_one{float: left;width:260px;height:400px;margin-left:53px;overflow: hidden; background:url(../images/jqry_bg.png) no-repeat; background-size:100% 100% ; cursor:pointer;}    
			.jqry_list{ padding-top:100px;transition: all 0.5s;}
			.jqry_list_2{ padding-top:100px;transition: all 0.5s;}
			.jqry_list_3{ font-size:14px; text-align:center; width:230px; padding:15px 15px; color:#ff7c01; display: none; line-height:20px;transition: all 0.5s; box-sizing: content-box !important;}
			.jqry_list_3 p{ line-height:20px;text-align: center;vertical-align: middle;width: 200px; margin-left: 15px;}
			.Box .Box_con .conbox ul li .f_one:hover .jqry_list{padding-top:40px;transition: all 0.5s;}
			.Box .Box_con .conbox ul li .f_one:hover .jqry_list_2{ display:none;transition: all 0.5s;}
			.Box .Box_con .conbox ul li .f_one:hover .jqry_list_3{ display:block !important;transition: all 0.5s;}
			.Box .Box_con .conbox ul li .f_one:hover{background:#fff; }
			
			.Box .Box_con .conbox ul li div:first-child{ margin-left:0}
			.Box .Box_con .conbox ul li .f_one img {display: block;transition: all 0.5s;box-sizing: content-box !important;}
			/*.Box .Box_con .conbox ul li:hover img {transform: scale(1.2);}*/
			
			.Box .BoxSwitch {margin-top: 90px;text-align: center;}
			.Box .BoxSwitch span {display: inline-block;*display: inline;*zoom: 1;vertical-align: middle;width: 25px;height:5px;background: #ccc;margin: 0 5px;cursor: pointer; border-radius:5px;}
			.Box .BoxSwitch span.cur {background: #ff7c01; width:50px !important;}
.hxtzys{ height:100vh; height: calc(var(--vh) * 100);}			
.hxtzys_text{ text-align:center; cursor:pointer; background:#f2f2f2; height:288px; transition: all 0.5s;}
.hxtzys_text_d{ padding-top:100px; text-align:center; margin:0; color:#666; font-size:22px; font-weight:bold; transition: all 0.5s;}
.hxtzys_text:hover{background:#4b4948 !important; transition: all 0.5s; color:#fff;}
.hxtzys_text:hover .hxtzys_text_d{transition: all 1s; display:none}
.hxtzys_text:hover img{ display:none;transition: all 1s;}
.hxtzys_text:hover .hxtzys_text_en{ display:none; transition: all 1s;}
.hxtzys_text:hover .hxtzys_text_none{ display:block !important; padding:40px 30px 20px 30px; transition: all 1s; font-size:14px; line-height:32px; letter-spacing:1px;}
.hxtzys_text_none{ padding:0 25px; color:#fff; font-size:14px; line-height:20px; display:none;text-align: justify; }

.about_top_k{ height:20%}
.gdzc_top_k{ height:100px;}
.jjbl_top_k{ margin-top:70px;}
.jjbl_top_k_1{ margin-top:80px;}
.tzzh_top_k{ height:130px;}
.tzzh_top_k_1{ height:70px}
.news_top_k{ height:70px;}
.news_li_w190{ width:190px;}
.news_li_hg165{ height:165px;}
.news_top_hg515{height:515px;}
.news_li_hg137{ height:137px;}
.tzdj_top_k{ padding-top:200px;}
.hxtzys_top_k{ height:100px;}
.hxtzys_top_g{ height:80px;}
.hxtzys_r_img{ height:590px;}
.business_top_k{ height:100px;}
.slider_zsy{ width:100%}
@media screen and (max-height:900px){
	.tf-wrap .pt15{ padding-top:5px;}
	.tf-wrap .mt40{ margin-top:25px;}
	header.hg140{ height:110px;}
	header .mt45{ margin-top:25px;}
	header .sub-nav{ padding: 45px 0 0 105px;}
	header .search{ padding-top:28px !important;}
	.tf-wrap .f_shu.donghua_1{ padding-top:15%; line-height: 50px;}
	.about_top_k{ height:10%;}
	.about .ln36{ line-height:32px;}
	.about .hg420{ height:390px;}
	.business_top_k{ height:5%}
	.gdzc_top_k{ height:45px;}
	.jjbl_top_k{ margin-top:30px;}
	.jjbl_top_k_1{ margin-top:40px;}
	.tzzh_top_k{ height:8%;}
	.tzzh_top_k_1{ height:6%}
	.tzzh .tzzh_r_img{ height:85px;}
	#demo3{ margin:15px auto 55px auto;}
	#demo4{margin:15px auto 25px auto;}
	.news_top_k{ height:5%;}
	
	.hg137{ height:100px;}
	
	
	
	.tzdj_top_k{ padding-top:10%;}
	.hxtzys_top_k{ height:5%;}
	.hxtzys_top_g{ height:30px}
	.hxtzys_text{ height:230px;}
	.hxtzys_text_d{ padding-top:70px}
	.hxtzys_text:hover .hxtzys_text_d{padding-top:30px;}
	.hxtzys_text p{ line-height:14px;}
	.hxtzys_text_none{ line-height:24px !important;}
	.hxtzys_r_img{ height:470px;}
	.jqry .jqry_tit_img{ margin-top:5%}
	.jqry .jqry_tit_r{ padding-top:8%;}
	.Box{ padding-top:3%;}
	.Box .BoxSwitch{ margin-top:20px;}
	
	
	
	
	/*
	.news_li_w190{ width:150px;}
	.news_li_hg165{ height:125px}
	.news_li_hg137{ height:100px;}
	.slider .new_more{ margin-top:-5px}
	.slider ul{ top:60px;}
	.slider ul li{ margin-bottom:15px;}
	.zd_news{ height:240px;}
	.css-slider-wrapper{ height:530px; top:110px}
	.slider_zsy{ width:80%}
	.slider{ top:0;}
	.slider .slider_more{ margin-top:70px;margin-right: 160px;}
	.slider ul li.w530{ width:400px;}
	.news_top_hg515 {height: 406px;}
	.left_news_tj{ top:53px; width:400px;}
	.slider ul{width:400px; right:-40px;}
	.slider ul li{ padding:13px;}
	.news_li_hg165 .w280{ width:210px !important;}
	.slider .new_more{ width:20px; height:15px; line-height:15px;}
	.slider ul li a{ font-size:12px;padding-right: 4px;}
	.news_li_hg165 .ln26{ line-height:20px;}
	.slider .new_more a{ font-size:12px;}*/
	}