@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */

@font-face
{
	font-family: myOneFont;
	src: url('../font/SOURCEHANSANSCN-REGULAR.OTF'),
		 url('../font/SOURCEHANSANSCN-REGULAR.eot'); /* IE9 */
}

/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Arial"; color:#666;}
div,a{color:#666;font-family:"Arial";}
p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}


ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */
/*清除内外边距*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
}

/*设置默认字体*/
:focus {
    outline: 0;
}


/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.fl,.left{ float: left; }

.fr,.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }

img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);
    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);
    transition: transform .75s cubic-bezier(.19, 1, .22, 1);
    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);
}


/* header
-------------------------------------------------------------- */
.header{
	width:100%;
	height:100px;
	position:absolute;
	top:0;
	padding:0 1%;
	z-index:99;
	}
/*å·¦ä¾§logo*/
.logo{
	height:100%;
	display:flex;
	align-items:center;
}
.language{
	height:100%;
	font-size:16px;
	color:#fff;
	text-align:center;
	line-height:100px;
	position:relative;
}
.language a{
	font-size:15px;
	color:#fff;
}
.language a > img{
	margin-right:10px;
}
.language a i{
	margin-left:10px;
}
.language .languagenr{
	width:100px;
    display: none;
    position: absolute;
    right: 0;
    top: 100px;
}
.language .languagenr p{
	width:100%;
	padding:0;
	background: #fff;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin:1px 0 0 0;
}
.language .languagenr p a {
	width:100%;
    height: 40px;
    line-height: 40px;
    color: #333;
    font-size: 14px;
	display:block;
}
.language .languagenr p:hover{
	background:#ea3f08;
}
.language .languagenr p:hover a{
	color:#fff;
}
.topsearch{
	height:100%;
	display:flex;
	align-items:center;
	margin-left:42px;
}
.search_box{
	width:260px;
	position: absolute;
	top:100px;
	right:0;
	background-color:#ea3f08;
	padding:10px; 
	z-index:99;
	display:none;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	}
.search_box input{
	width:80%;
	height: 45px;
	line-height: 45px;
	padding-left: 10px;
	float:left;
	background:#fff;
	}
.search_box button{
	width:18%;
	height: 45px;
	line-height: 45px;
	text-align:center;
	float:right;
	background:none;
	}
.search_box button img{
	max-width:100%;
	height:auto;
}
.topewm{
	padding:32.5px 0 32.5px 50px;
	position:relative;
}
.topewm:before{
	content:"";
	width:1px;
	height:16px;
	background:#fff;
	position:absolute;
	left:0;
	top:42px;
}
.toggle,#toggleMenu{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
	.header .nav,.side{
		display:none
	}
	/**/
	#toggleMenu {
	  position: absolute;
	  width: 100%;
	  min-height: 0;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  overflow: hidden;
	  top:0;
	  left:0;
	  z-index:-1;
	  opacity:0;
	}
	#toggleMenu.active{
		min-height:100vh;
	}
	#toggleMenu.active{
		z-index:999;
	  opacity:1;
	}
	#toggleMenu nav {
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  padding: 40px 100px;
	  z-index: 100;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
			  justify-content: space-between;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}

	#toggleMenu nav .logo {
	  position: relative;
	  font-size: 2em;
	  color: #fff;
	  text-transform: uppercase;
	  font-weight: 700;
	  z-index: 15;
	  text-decoration: none;
	  text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu nav .full-width-menu {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100vh;
	  width: 100%;
	  overflow-y: auto;
	  visibility: hidden;
	  opacity: 0;
	  background: #ea3f08;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	  overflow: hidden;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu {
	  opacity: 1;
	  visibility: visible;
	}

	#toggleMenu nav .full-width-menu .cntBox {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	}

	#toggleMenu nav .full-width-menu .cntBox:nth-child(1) {
	  width: 100%;
	  background: #ea3f08;
	  -webkit-transform: translateX(-100%);
		  -ms-transform: translateX(-100%);
			  transform: translateX(-100%);
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu .cntBox:nth-child(1) {
	  -webkit-transform: translateX(0);
		  -ms-transform: translateX(0);
			  transform: translateX(0);
	  visibility: visible;
	  opacity: 1;
	}

	#toggleMenu nav .full-width-menu .cntBox:nth-child(2) {
	  padding: 0 15px;
	  width: 40%;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
	  background: #ea3f08;
	  -webkit-transform: translateX(100%);
		  -ms-transform: translateX(100%);
			  transform: translateX(100%);
	  visibility: hidden;
	  opacity: 0;
	  -webkit-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  -o-transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	  transition: all .8s cubic-bezier(0.3, 1, 0.3, 1) .1s;
	}

	#toggleMenu.active nav .full-width-menu .cntBox:nth-child(2) {
	  -webkit-transform: translateX(0);
		  -ms-transform: translateX(0);
			  transform: translateX(0);
	  visibility: visible;
	  opacity: 1;
	  background: -webkit-linear-gradient(top, #14b29d , #0b2c65);
		background: -o-linear-gradient(bottom, #14b29d , #0b2c65);
		background: -moz-linear-gradient(bottom, #14b29d , #0b2c65);
		background: linear-gradient(to bottom, #14b29d , #0b2c65);
	}

	#toggleMenu nav .navigation {
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  width: 80%;
	}

	#toggleMenu nav .navigation li {
	  padding: 5px 0;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-30px);
		  -ms-transform: translateX(-30px);
			  transform: translateX(-30px);
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}

	#toggleMenu.active nav .navigation li {
		width:100%;
		overflow:hidden;
	  line-height:40px;
	  visibility: visible;
	  opacity: 1;
	  -webkit-transform: translateX(0px);
		  -ms-transform: translateX(0px);
			  transform: translateX(0px);
	}

	#toggleMenu.active nav .navigation li:nth-child(1) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu.active nav .navigation li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu.active nav .navigation li:nth-child(3) {
	  -webkit-transition-delay: 0.5s;
		   -o-transition-delay: 0.5s;
			  transition-delay: 0.5s;
	}

	#toggleMenu.active nav .navigation li:nth-child(4) {
	  -webkit-transition-delay: 0.6s;
		   -o-transition-delay: 0.6s;
			  transition-delay: 0.6s;
	}

	#toggleMenu.active nav .navigation li:nth-child(5) {
	  -webkit-transition-delay: 0.7s;
		   -o-transition-delay: 0.7s;
			  transition-delay: 0.7s;
	}

	#toggleMenu nav .navigation li a {
	  letter-spacing: 0.5px;
	  font-size: 20px;
	  line-height:30px;
	  font-weight: 700;
	  text-decoration: none;
	  color: #fff;
	  margin:0;
	  -webkit-transition: all ease 0.3s;
	  -o-transition: all ease 0.3s;
	  transition: all ease 0.3s;
	}


	#toggleMenu nav .hinfo {
		width:100%;
	  list-style: none;
	  margin: 0;
	  padding: 0;
	  width: 80%;
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(30px);
		  -ms-transform: translateX(30px);
			  transform: translateX(30px);
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}

	#toggleMenu.active nav .hinfo {
	  opacity: 1;
	  visibility: visible;
	  -webkit-transform: translateX(0px);
		  -ms-transform: translateX(0px);
			  transform: translateX(0px);
	}

	#toggleMenu.active nav .hinfo{
	  -webkit-transition-delay: 0.5s;
		   -o-transition-delay: 0.5s;
			  transition-delay: 0.5s;
	}

	#toggleMenu.active nav .hinfo:nth-child(2) {
	  -webkit-transition-delay: 0.6s;
		   -o-transition-delay: 0.6s;
			  transition-delay: 0.6s;
	}

	#toggleMenu.active nav .hinfo:nth-child(3) {
	  -webkit-transition-delay: 0.7s;
		   -o-transition-delay: 0.7s;
			  transition-delay: 0.7s;
	}

	#toggleMenu nav .hinfo:not(:first-child) {
	  margin-top: 30px;
	}

	#toggleMenu nav .hinfo li {
		width:100%;
		overflow:hidden;
		line-height:30px;
	  font-size: 16px;
	  font-weight: 600;
	  padding-top: 5px;
	  color: #fff;
	  text-align:left;
	  font-weight:normal;
	}

	#toggleMenu nav .hinfo li:nth-child(1) {
	  font-size: 18px;
	  opacity: 0.5;
	}

	#toggleMenu nav .hinfo li a {
	  text-decoration: none;
		line-height:30px;
	  font-size: 16px;
	  color: #fff;
	  display: inline-block;
	  margin:0;
	  font-weight:normal;
	}

	#toggleMenu nav .hinfo li a:hover {
	  opacity: 0.5;
	  color:#fff !important;
	}

	#toggleMenu nav .social {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	}

	#toggleMenu nav .social li:first-child {
	  width: 100%;
	}

	#toggleMenu nav .social li {
	  width: 50%;
	}
	.toggle {
	  position: absolute;
	  width: 40px;
	  height: 40px;
	  background:#fff;
	  border-radius:50%;
	  cursor: pointer;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-box-pack: center;
		  -ms-flex-pack: center;
			  justify-content: center;
	  -webkit-box-align: center;
		  -ms-flex-align: center;
			  align-items: center;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: column;
			  flex-direction: column;
			  right:100px;
			  top:10px;
			  z-index:9999;
	}

	.toggle span {
	  height: 2px;
	  margin: 2px 0;
	  width: 18px;
	  display: block;
	  background: #ea3f08;
	  -webkit-transition: all 0.3s ease;
	  -o-transition: all 0.3s ease;
	  transition: all 0.3s ease;
	}
	.showHeader .toggle span,.hover .toggle span{
		background: #000;
	}
	.toggle.active span{
		background: #ea3f08;
	}

	.toggle.active span:nth-child(1) {
	  -webkit-transform: rotate(-45deg) translate(-2px, 3px);
		  -ms-transform: rotate(-45deg) translate(-2px, 3px);
			  transform: rotate(-45deg) translate(-2px, 3px);
	}

	.toggle.active span:nth-child(2) {
	  opacity: 0;
	}

	.toggle.active span:nth-child(3) {
	  -webkit-transform: rotate(45deg) translate(-6px, -7px);
		  -ms-transform: rotate(45deg) translate(-6px, -7px);
			  transform: rotate(45deg) translate(-6px, -7px);
	}


	#toggleMenu .content {
	  position: relative;
	  z-index: 10;
	  text-align: center;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	  -webkit-transition-delay: 1s;
		   -o-transition-delay: 1s;
			  transition-delay: 1s;
	}

	#toggleMenu .content h2 {
	  position: relative;
	  color: #fff;
	  font-size: 4rem;
	  text-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu .content h2 span {
	  font-size: 0.2em;
	  font-weight: 300;
	  letter-spacing: 5px;
	  padding: 0 10px;
	  text-transform: uppercase;
	  background: #fff;
	  color: #111;
	  text-shadow: 0 5px 5px rgba(0,0,0,0);
	  -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.2);
			  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
	}

	#toggleMenu.active .content {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateX(-200px);
		  -ms-transform: translateX(-200px);
			  transform: translateX(-200px);
	  -webkit-transition-delay: 0s;
		   -o-transition-delay: 0s;
			  transition-delay: 0s;
	}

	#toggleMenu .sci {
	  position: absolute;
	  bottom: 40px;
	  right: 100px;
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  z-index: 100;
	}

	#toggleMenu .sci li {
	  list-style: none;
	  margin: 5px;
	  padding: 0 6px;
	  -webkit-transition: 0.5s;
	  -o-transition: 0.5s;
	  transition: 0.5s;
	}

	#toggleMenu.active .sci li {
	  opacity: 0;
	  visibility: hidden;
	  -webkit-transform: translateY(100px);
		  -ms-transform: translateY(100px);
			  transform: translateY(100px);
	}

	#toggleMenu .sci li a {
	  color: #111;
	  background: #fff;
	  text-decoration: none;
	  display: inline-block;
	  letter-spacing: 2px;
	  font-weight: 500;
	  font-size: 12px;
	  padding: 2px 5px;
	  text-transform: uppercase;
	}

	#toggleMenu .sci li a:hover {
	  background: #111;
	  color: #fff;
	}

	#toggleMenu .sci li:nth-child(1) {
	  -webkit-transition-delay: 0.2s;
		   -o-transition-delay: 0.2s;
			  transition-delay: 0.2s;
	}

	#toggleMenu .sci li:nth-child(2) {
	  -webkit-transition-delay: 0.3s;
		   -o-transition-delay: 0.3s;
			  transition-delay: 0.3s;
	}

	#toggleMenu .sci li:nth-child(3) {
	  -webkit-transition-delay: 0.4s;
		   -o-transition-delay: 0.4s;
			  transition-delay: 0.4s;
	}

}
.icon1{
	overflow:hidden;
	padding-top:37px;
	margin-right:80px;
}
/*å³ä¾§*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	margin-right:74px;
}
.header .navbar_nav li{
	float:left;
	position: relative;
	display: block;
}

.header .navbar_nav li a{
	text-decoration: none;
	height: 100%;
	padding: 0 48px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 16px;
	line-height:100px;
	position:relative;
}
.header .navbar_nav li:after{
	content:"";
	width:6px;
	height:6px;
	background:#ea3f08;
	position:absolute;
	left:50%;
	margin-left:-9px;
	bottom:24px;
	border-radius:50%;
	    -webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	opacity:0;
}
.header .navbar_nav li:hover:after,.header .navbar_nav li.active:after{
	opacity:1;
}
.header .navbar_nav li:hover a,.header .navbar_nav li.active a{
	font-weight:bold;
	color:#ea3f08;
}
.header .navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}
.header .navbar_nav li.dropdown .jt{
	width: 20px;
	height: 20px;
	background: url(i/top.png) no-repeat;
	background-size: 100% 100%;
	display: block;
}
.header .navbar_nav li.dropdown .dropdown_menu{
	display: none;
	position: absolute;
	top:100px;
	width: 100%;
	background: #fff;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 120%;
    left: -10%;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	font-size: 14px;
	color: #666;
	padding: 8px 10px;
	line-height: 24px;
	text-align: center;
	background: #fff;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	background: #ea3f08;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #666;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #fff;
	background: #ea3f08;
}

.header .navbar_nav li.dropdown:hover a:after{
	display:none;
}
/*ç™½è‰²èƒŒæ™¯çš„å¤´éƒ¨*/
.header.on{
	background: #fff;
}

.header.on .navbar_nav li a{
	color: #333;
}
.header.on .navbar_nav li:hover a{
	color: orangered;
}
#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
.banner{
	width: 100%;
}
.banner img{
	width: 100%;
}

@media screen and (max-width: 992px){
	.header{
		padding: 0 10px;
	}
	.header #navToggle {
		height: 100%;
		padding: 9px 15px;
		margin-right: -15px;
		display: inline-block;
		float: right;
	}
	.header #navToggle span {
		position: relative;
		width: 25px;
		height: 1px;
		margin-top: 19px;
	}
	.header #navToggle span:before,
	.header #navToggle span:after {
		content: '';
		position: relative;
		width: 100%;
		height: 1px;
		left: 0;
	}
	.header #navToggle span,
	.header #navToggle span:before,
	.header #navToggle span:after {
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		transition: 0.3s;
		display: block;
		background: #4f4f4f;
	}
	.header #navToggle span:before {
		top: 8px;
	}
	.header #navToggle span:after {
		bottom: 10px;
	}
	.header #navToggle.open span:before {
		top: 10px;
		-webkit-transform: translateY(-11px) rotate(-45deg);
		-moz-transform: translateY(-11px) rotate(-45deg);
		-ms-transform: translateY(-11px) rotate(-45deg);
		-o-transform: translateY(-11px) rotate(-45deg);
		transform: translateY(-11px) rotate(-45deg);
	}
	.header #navToggle.open span:after {
		bottom: 12px;
		-webkit-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-o-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}
	.header #navToggle.open span {
		background: none;
	}
	.header #navToggle.open span:before,
	.header #navToggle.open span:after {
		background: #4f4f4f;
	}
	
	.header .nav{
		display: none;
	}
	
	.banner img{
		height: 600px;
		object-fit: cover;
	}
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
/*.slick-dots li button:focus:before
{
    opacity: 1;
}*/
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: 'â€¢';
    text-align: center;

 /*   opacity: .25;*/
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}*/

/* mouse
-------------------------------------------------------------- */
.shubiao{
	position:absolute;
	left:50%;
	margin-left:-12px;
	bottom:24px;
	z-index:99;
}
.shubiao span{
	width:1px;
	height:40px;
	background:#fff;
	position:absolute;
	left:11.5px;
	bottom:50px;
}
.mouse {
  position: relative;
  width: 24px;
  height: 38px;
  border-radius: 15px;
  border: 2px solid #fff;
  margin:0 auto 0;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 3px;
  height: 8px;
  border-radius: 30%;
  background-color: #fff;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}
.shubiao p{
	overflow:hidden;
	text-align:center;
	color:#fff;
	margin-top:2px;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

/* tit
-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	margin:0;
	}
.tit h3,.tit h3 a{
	font-size:38px;
	line-height:48px;
	color:#fff;
	font-weight:bold;
	}
.ntit h3{
	color:#333;
}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:38px;
	color:#ea3f08;
	font-family:Arial;
	line-height:48px;
	font-weight:bold;
	}
/* about
-------------------------------------------------------------- */
.index_main .section3{
	position:relative;
	}
.aboutcont{
	width:100%;
	overflow:hidden;
	position:relative;
	z-index:9;
}
.about .aboutnr{
	width:40%;
	overflow:hidden;
	}
.aboutimg{
	width:50%;
	overflow:hidden;
	border-radius:0 40px 0 40px;
}
.aboutimg img{
	width:100%;
	height:auto;
}
.about .abouttit{
	width:11%;
	overflow:hidden;
}
.about .abouttit img{
	max-width:100%;
	height:auto;
}
.about .aboutnr h3{
	width:100%;
	overflow:hidden;
	font-size:38px;
	color:#fff;
	line-height:48px;
	margin:0;
	font-weight:bold;
	}
.aboutnr .aboutjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.77);
	line-height:30px;
	margin-top:5px;
	text-align: justify;
}
.aboutnr .aboutjs p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:30px;
}
#starsCanvas{
	width:100%;
	height:100%;
  display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
	opacity:0.5;
}
.more{
	overflow:hidden;
}
.more a{
	display:block;
	width:200px;
	height:50px;
	background:#ea3f08;
	border-radius:25px;
	font-size:16px;
	color:#fff;
	line-height:50px;
	padding-left:50px;
}
.more a span{
	font-size:16px;
	color:#fff;
	margin-left:26px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.more a:hover span,.newsin .newsmore:hover span{
	margin-left:30px;
}
.about .more{
	margin-top:82px;
}
.aboutlist{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	}
.aboutlist ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	}
.aboutlist ul li{
	overflow:hidden;
	padding:40px 0;
}
.aboutlist ul li .aboutnum,.aboutlist ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
}
.aboutlist ul li .aboutnum font{
	font-size:40px;
	color:#fff;
}
.aboutlist ul li .timer{
	font-size:79px;
	color:#fff;
	font-family:Arial;
	line-height:79px;
	font-weight:bold;
	margin-right:5px;
}
.aboutlist ul li.line span{
	display:block;
	width:1px;
	height:96px;
	background:rgba(255,255,255,0.2);
}

.swiper-container {
	margin: 0 auto;
	position: relative;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.swiper-container-android .swiper-slide,.banner .swiper-wrapper {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform,-webkit-transform
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,.banner .swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height,-webkit-transform;
	transition-property: height,-webkit-transform;
	-o-transition-property: transform,height;
	transition-property: transform,height;
	transition-property: transform,height,-webkit-transform
}

.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: -o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));
	background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
}

.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}



.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction {
	bottom:0;
	right: 88px;
	height:40px;
	line-height: 40px;
	color:#b1b1b1;
	font-size:16px;
	top:40px;
}
.swiper-pagination-fraction span{
	color:#b1b1b1;
	line-height:40px;
	font-size:16px;
}
.swiper-pagination-fraction .swiper-pagination-current{
	color:#cf1423;
	font-size:26px;
	font-weight:bold;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top,.2s -webkit-transform;
	transition: .2s top,.2s -webkit-transform;
	-o-transition: .2s transform,.2s top;
	transition: .2s transform,.2s top;
	transition: .2s transform,.2s top,.2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left,.2s -webkit-transform;
	transition: .2s left,.2s -webkit-transform;
	-o-transition: .2s transform,.2s left;
	transition: .2s transform,.2s left;
	transition: .2s transform,.2s left,.2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right,.2s -webkit-transform;
	transition: .2s right,.2s -webkit-transform;
	-o-transition: .2s transform,.2s right;
	transition: .2s transform,.2s right;
	transition: .2s transform,.2s right,.2s -webkit-transform
}

.swiper-pagination-progressbar {
	background: rgba(0,0,0,.25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255,255,255,.25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0,0,0,.25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0,0,0,.1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0,0,0,.5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
	animation: swiper-preloader-spin 1s steps(12,end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}

/* pro
-------------------------------------------------------------- */
.pro .prolf{
	width:23%;
	overflow:hidden;
}
.pro .prolf ul,.pro .prolf ul li{
	width:100%;
	overflow:hidden;
}
.pro .prolf ul{
	margin-top:40px;
}
.pro .prolf ul li{
	line-height:30px;
	display: flex;
    align-items: center;
	margin-top:10px;
}
.pro .prolf ul li a{
	font-size:16px;
	color:#fff;
}
.pro .prolf ul li span{
	display:block;
	width:0;
	height:1px;
	background:#fff;
	margin-left:15px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.pro .prolf ul li:hover span,.pro .prolf ul li.active span{
	width:36px;
}
.prolf .swiper-button{
	width:100%;
	overflow:hidden;
	height:0;
	visibility:hidden;
}
.prolf .swiper-button.active{
	margin-top:80px;
	height:auto;
	visibility:visible;
}
.prolf .swiper-button div{
	float:left;
}
.prolf .swiper-button .swiper-pagination{
	margin:0 20px;
}
.prolf .swiper-button .swiper-pagination span::before{
	content:"0";
}
.prolf .swiper-pagination-fraction span{
	font-size:20px;
	color:#fff;
	font-family:Arial;
}
.prolf .swiper-pagination-fraction .swiper-pagination-current{
	font-size:45px;
	color:#ea3f08;
}
.prolf .swiper-pagination-fraction .swiper-pagination-current::after{
	content:"/";
	font-size:20px;
	color:#fff;
	font-family:Arial;
	font-weight:normal;
	margin-left:5px;
}
.prolf .swiper-button-prev,.prolf .swiper-button-next{
	width:16px;
	height:12px;
	margin-top:14px;
}
.prolf .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
}
.prolf .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
}
.pro .prort{
	width:75%;
	overflow:hidden;
	padding-left:40px;
}
.pro .prort .swiper-slide{
}
.prort .prolist{
	width:100%;
	height:540px;
	background:#fff;
	border-radius:10px;
	padding-top:48px;
	position:relative;
}
.prolist .protext,.prolist .proimg,.prolist .protext h5,.prolist .protext p{
	width:100%;
	overflow:hidden;
}
.prolist .protext{
	padding:0 40px;
}
.prolist .protext h5,.prolist .protext p{
	text-align:right;
}
.prolist .protext h5{
	font-size:25px;
	color:#242424;
	line-height:35px;
	margin-bottom:5px;
}
.prolist .protext p{
	font-size:16px;
	font-family:Arial;
	color:#959595;
}
.prolist .proimg{
	margin-top:40px;
}
.prolist .proimg img{
	width:100%;
	height:auto;
}
.prolist:hover .proimg img{
	transform:scale(1.05);
}
.prolist .promore{
	width:0;
	height:0;
	background:#ea3f08 url(../images/icon5.png) no-repeat center;
	border-radius:50%;
	position:absolute;
	left:-40px;
	top:50%;
	margin-top:-40px;
	z-index:9;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.prolist:hover .promore{
	width:80px;
	height:80px;
}
.pronr{
	width:100%;
	height:0;
	visibility:hidden;
}
.pronr.active{
	height:auto;
	visibility:visible;
}

/* newstit
-------------------------------------------------------------- */
.newstit{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex:flex-wrap;
}
.newsmenu,.newsmenu ul{
	overflow:hidden;
}
.newsmenu{
	margin-top:50px;
}
.newsmenu ul{
	display:flex;
	justify-content:flex-end;
	flex:flex-wrap;
}
.newsmenu ul li{
	overflow:hidden;
	line-height:30px;
	margin-left:70px;
	padding-bottom:4px;
	position:relative;
}
.newsmenu ul li a{
	font-size:16px;
	color:#fff;
}
.newsmenu ul li::after{
	content:"";
	width:0;
	height:2px;
	background:#fff;
	position:absolute;
	left:0;
	bottom:0;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsmenu ul li:hover::after{
	width:100%;
}
.newsnr{
	width:100%;
	overflow:hidden;
	margin-top:31px;
}
.newsnr .newslf,.newsnr .newsin{
	width:30.8%;
	height:544px;
	overflow:hidden;
	border-radius:10px;
}
.newsnr .newsin{
	background:rgba(0,57,200,0.9);
	padding:56px 40px 0 40px;
	margin-left:20px;
}
.newsnr .newslf{
	background:#fff;
}
.newsnr .newslf .newsimg,.newsnr .newslf .newstext,.newsnr .newslf .newstext h5,.newsnr .newslf .newstext p{
	width:100%;
	overflow:hidden;
}
.newsnr .newslf .newstext{
	padding:0 30px;
}
.newsnr .newslf .newsimg{
	height:329px;
}
.newsnr .newslf .newsimg img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.newsnr .newslf .newstext .newsdate{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#ea3f08;
	line-height:30px;
	margin-top:28px;
}
.newsnr .newslf .newstext h5{
	font-size:23px;
	color:#232323;
	line-height:33px;
	margin-top:12px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsnr .newslf .newstext p{
	font-size:16px;
	color:#a9a9a9;
	margin-top:12px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}
.newsin .newsdate,.newsin h5.newsin p{
	width:100%;
	overflow:hidden;
}
.newsin .newsdate{
	font-size:16px;
	color:#ea3f08;
	line-height:30px;
}
.newsin h5{
	font-size:23px;
	color:#fff;
	line-height:33px;
	margin-top:30px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsin p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:rgba(255,255,255,0.5);
	margin-top:33px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
.newsin .newsmore{
	width: 200px;
    height: 50px;
    background: #ea3f08;
    border-radius: 25px;
    font-size: 16px;
    color: #fff;
    line-height: 50px;
    padding-left: 50px;
	margin-top:120px;
}
.newsin .newsmore span {
    font-size: 16px;
    color: #fff;
    margin-left: 26px;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.newsnr .newsrt{
	width:34.8%;
	overflow:hidden;
}
.newsnr .newsrt dl{
	width:100%;
	overflow:hidden;
	padding-bottom:28px;
	border-bottom:solid 1px rgba(255,255,255,0.4);
	margin-bottom:28px;
}
.newsnr .newsrt dl:last-child{
	margin-bottom:0;
	border-bottom:none;
}
.newsnr .newsrt dl dt{
	width:43%;
	height:144px;
	overflow:hidden;
	float:left;
	border-radius:5px;
}
.newsnr .newsrt dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.newsnr .newsrt dl dd{
	width:53%;
	overflow:hidden;
	float:right;
}
.newsnr .newsrt dl dd h5,.newsnr .newsrt dl dd p{
	width:100%;
	overflow:hidden;
}
.newsnr .newsrt dl dd h5{
	font-size:20px;
	color:#fff;
	line-height:30px;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.newsnr .newsrt dl dd p{
	font-size:15px;
	color:rgba(255,255,255,0.6);
	margin-top:8px;
	margin-bottom:20px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}
.newsnr .newslf:hover .newsimg img,.newsnr .newsrt dl:hover dt img{
	transform:scale(1.05);
}
/* casetit
-------------------------------------------------------------- */
.casetit{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.casetit .more{
	margin-top:24px;
}
.casenr,.casenr .caselist,.caselist .caseimg,.caselist p{
	width:100%;
	overflow:hidden;
}
.casenr{
	margin-top:50px;
}
.caselist .caseimg{
	border-radius:15px;
}
.caselist .caseimg img{
	width:100%;
	height:auto;
}
.caselist:hover .caseimg img{
	transform:scale(1.05);
}
.caselist p{
	color:#fff;
	font-size:20px;
	line-height:30px;
	text-align:center;
	margin-top:22px;
}
.case .swiper-button{
	overflow:hidden;
	text-align:center;
	margin-top:54px;
	position:relative;
}
.case .swiper-button::before,.case .swiper-button::after{
	content:"";
	width:40%;
	height:1px;
	background:rgba(255,255,255,0.3);
	position:absolute;
	top:50%;
	margin-top:-0.5px;
	}
.case .swiper-button::before{
	left:0;
	}
.case .swiper-button::after{
	right:0;
	}
.case .swiper-button div{
	width:34px;
	height:34px;
	border-radius:50%;
	border:solid 2px #fff;
	display:inline-block;
	margin:0 15px;
	opacity:0.4;
	    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.case .swiper-button .swiper-button-prev{
	background:url(../images/prev2.png) no-repeat center;
}
.case .swiper-button .swiper-button-next{
	background:url(../images/next2.png) no-repeat center;
}
.case .swiper-button div:hover{
	opacity:1;
}
/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#000000;
	line-height:30px;
	margin-top:65px;
}
.link a{
	margin-left:10px;
	font-size:16px;
	color:#000000;
}
.link img{
	margin-right:18px;
}

/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#e9e6e6;
	padding-top:55px;
	padding-bottom:34px;
	}
.footerlf{
	width:34%;
	overflow:hidden;
}
.footerrt{
	width:52%;
	overflow:hidden;
}
.footerrt ul{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.footerrt ul li{
	overflow:hidden;
	float:left;
}
.footerrt ul li h5,.footerrt ul li h5 a{
	font-size:17px;
	color:#303030;
}
.footerrt ul li h5 a:hover{
	font-weight:bold;
}
.footerrt ul li h5{
	margin-bottom:16px;
}
.footerrt ul li p{
	margin-top:4px;
}
.footerrt ul li p a{
	font-size:15px;
	color:#807e7e;
	transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
}
.footerrt ul li p{
	line-height:30px;
}
.footerrt ul li p a:hover{
	color:#303030;
}
.footer .botlogo{
	width:100%;
	overflow:hidden;
	}
.footer .botlogo img{
	max-width:100%;
	height:auto;
	}
.botlxfs{
	width:100%;
	overflow:hidden;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	border-top:solid 1px #c3c3c3;
	margin-top:60px;
	padding-top:50px;
}
.botlxfslf{
	width:70%;
	overflow:hidden;
}
.botlxfslf .bottel{
	width:100%;
	overflow:hidden;
	font-size:40px;
	font-family:Arial;
	color:#000;
	line-height:50px;
	margin-bottom:16px;
}
.botlxfslf .bottel a{
	font-size:40px;
	font-family:Arial;
	color:#000;
}
.botlxfslf p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	line-height:28px;
}
.botlxfslf p a{
	font-size:15px;
}
.botlxfsrt{
	width:28%;
	overflow:hidden;
}
.botlxfsrt dl{
	overflow:hidden;
	float:right;
}
.botlxfsrt dl dt,.botlxfsrt dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.botlxfsrt dl dt img{
	max-width:100%;
	height:auto;
}
.botlxfsrt dl dd{
	font-size:13px;
	color:#000;
	line-height:30px;
}
.footernr{
	width:100%;
	overflow:hidden;
	border-top:solid 1px #dad1bb;
	margin-top:44px;
	padding-top:80px;
	border-bottom:solid 1px #dad1bb;
	padding-bottom:15px;
}
.footernr .footerlf{
	width:31%;
	overflow:hidden;
}
.footernr .footerlf dl,.footernr .footerlf dl dt,.footernr .footerlf dl dd{
	width:100%;
	overflow:hidden;
}
.footernr .footerlf dl{
	margin-bottom:32px;
}
.footernr .footerlf dl dt{
	font-size:20px;
	color:#000;
	line-height:30px;
	font-weight:normal;
}
.footernr .footerlf dl dd{
	font-size:18px;
	color:#000;
	line-height:30px;
	margin-top:3px;
}

.bot{
	margin-top:37px;
}
.bot,.bot p{
	width:100%;
	overflow:hidden;
}
.bot p{
	font-size:15px;
	color:#9a9898;
	line-height:30px;
	text-align:right;
}
.bot p a{
	font-size:15px;
	color:#9a9898;
}
/* side
-------------------------------------------------------------- */
.side {
    position: fixed;
    right:20px;
	bottom:60px;
    z-index: 999;
}
.side ul li {
    width:56px;
	height:56px;
    position: relative;
    cursor: pointer;
	background:rgba(255,255,255,0.3);
	border-radius:50%;
	margin:24px 0 0 0;
	box-shadow:0px 3px 7px rgba(65,75,87,0.1);
	-webkit-box-shadow:0px 3px 7px rgba(65,75,87,0.1);
	-moz-box-shadow:0px 3px 7px rgba(65,75,87,0.1);
}

.side ul li .sideimg{
	width:100%;
	height:100%;
	overflow:hidden;
}
.side ul li .ewm-box {
    position: absolute;
    z-index: 99;
    padding: 10px;
    background: #fff;
    width: 160px;
	overflow:hidden;
	border-radius:5px;
	text-align:center;
	font-size:16px;
    right: calc(100% + 5px);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .7s;
    transition: all .7s;
    -webkit-box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
    box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
}
.side ul .sidetel .sideimg{
	background:url(../images/icon6.png) no-repeat center;
}
.side ul .sidezx .sideimg{
	background:url(../images/icon7.png) no-repeat center;
}
.side ul .sidetop .sideimg{
	background:url(../images/icon8.png) no-repeat center;
}
.side ul li:last-child{
	background:#0039c8;
}
.side ul li p{
	width:100%;
	overflow:hidden;
	font-size:13px;
	color:#333333;
	text-align:center;
	margin-top:2px;
}
.side ul li .sideimg img,.side ul li .ewm-box img{
	max-width:100%;
	height:auto;
}
.side ul li.sidetel:hover .ewm-box{
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
/* searchnr
-------------------------------------------------------------- */
.search_n{
	margin-top:60px;
	margin-bottom:60px;
}
.searchnr{
	overflow:hidden;
	margin-bottom:15px;
	padding: 0 10px;
}
.searchnr .card,.card-img-150,.card-body,.card-title,.card-text{
	width:100%;
	overflow:hidden;
}
.card-img-150{
	height:240px;
	border: 1px solid #ebebeb;
	position:relative;
}
.card-img-150 img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	height:100%;
	object-fit:cover;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.card-img-150:hover img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.searchlist{
	width:100%;
	overflow:hidden;
}
.my-4{
	width: 100%;
    overflow: hidden;
    text-align: center;
}
.search_n .btn-info{
	background:#064b8a;
	border:solid 1px #064b8a;
}
.card-body h5{
	width:100%;
	height:30px;
	overflow:hidden;
	line-height:30px;
	color:#000;
	font-size:16px;
	margin-top:10px;
	text-align:center;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.card-body h5 a,.card-body h5 span{
	color:#000 !important;
	font-size:16px;
}
.card-body p{
	width:100%;
	overflow:hidden;
}
/* banner_n
-------------------------------------------------------------- */
.banner_n{ 
	width:100%; 
	height:500px;
	position:relative;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:667px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:438px;
	}
}
@media(max-width:1600px) {
	.banner_n{
		height:417px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:375px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:354px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:333px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:300px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:267px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:258px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:200px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:167px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:141px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:100%;
	overflow:hidden;
	background:#eee;
}
.positionnr .positionrt{
	text-align:right;
	font-size:16px;
	color:#343434;
	line-height:30px;
	padding:15px 0 15px 30px;
	background:url(../images/icon9.png) no-repeat left 19.5px;
	}
.positionnr .positionrt a{
	font-size:16px;
	color:#343434;
	}
.position a:hover {
	color: #ea3f08;
}
.nmenu{
	overflow:hidden;
	}
.nmenu ul{
	overflow:hidden;
	margin:0;
	}
.nmenu ul li{
	overflow:hidden;
	float:left;
	line-height:60px;
	margin-right:30px;
	text-align:center;
	}
.nmenu ul li a{
	font-size:16px;
	color:#000;
	display:block;
	position:relative;
	}
.nmenu ul li a:after{
	content:"";
	width:0;
	height:2px;
	background:#ea3f08;
	position:absolute;
	bottom:0;
	left:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.nmenu ul li:hover a:after,.nmenu ul li.active a:after{
	width:100%;
	}
.nmenu ul li.active a{
	color:#ea3f08;
}

/* about_n
-------------------------------------------------------------- */
.about_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-top:50px;
	}
.aboutnr_n p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	}
.aboutnr_n img{
	max-width:100%;
	height:auto;
}
.aboutimg_n{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:50px;
	}
.aboutimg_n img{
	width:100%;
	height:auto;
	}
.aboutlist_n,.aboutlist_n ul{
	width:100%;
	overflow:hidden;
}
.aboutlist_n{
	margin-top:50px;
}
.aboutlist_n ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.aboutlist_n ul li{
	width:25%;
	overflow:hidden;
}
.aboutlist_n ul li .aboutnum,.aboutlist_n ul li p{
	width:100%;
	overflow:hidden;
}
.aboutlist_n ul li .aboutnum{
	font-size:16px;
	color:#ea3f08;
}
.aboutlist_n ul li .aboutnum font{
	font-size:40px;
	color:#ea3f08;
}
.aboutlist_n ul li p{
	font-size:16px;
}
.aboutlist_n ul li .aboutnum .timer{
	font-size:79px;
	color:#ea3f08;
	font-family:Arial;
	line-height:79px;
	font-weight:bold;
}
.aboutlist_n ul li{
	overflow:hidden;
	text-align:center;
	border-right:solid 1px #e0e0e0;
}
.aboutlist_n ul li:last-child{
	border-right:none;
}
/* cqcm_n
-------------------------------------------------------------- */
.cqcm_n{
	margin-top:60px;
	margin-bottom:60px;
}
.cqcmnr_n{
	width:100%;
	overflow:hidden;
}
.cqcmnr_n dl{
	overflow:hidden;
	padding:0 10px;
	margin:15px 0;
}
.cqcmnr_n dl dt,.cqcmnr_n dl dd{
	width:100%;
	overflow:hidden;
}
.cqcmnr_n dl dt{
	height:277px;
}
.cqcmnr_n dl dt img{
    width: 100%;
	height:100%;
	object-fit:cover;
}
.cqcmnr_n dl:hover dt img{
	transform:scale(1.03);
	}
.cqcmnr_n dl dd{
	text-align:center;
	line-height:30px;
	margin-top:5px;
	color:#333;
	font-size:16px;
	text-overflow:ellipsis;
	white-space:nowrap;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.cqcmnr_n dl:hover dd{
	color: #ea3f08;
}
/* cqcm_n
-------------------------------------------------------------- */
.case_n{
	margin-top:60px;
	margin-bottom:60px;
}
.casenr_n{
	width:100%;
	overflow:hidden;
}
.casenr_n dl{
	overflow:hidden;
	padding:0 10px;
	margin:15px 0;
}
.casenr_n dl dt,.casenr_n dl dd{
	width:100%;
	overflow:hidden;
}
.casenr_n dl dt{
	height:277px;
}
.casenr_n dl dt img{
    width: 100%;
	height:100%;
	object-fit:cover;
}
.casenr_n dl:hover dt img{
	transform:scale(1.03);
	}
.casenr_n dl dd{
	text-align:center;
	line-height:30px;
	margin-top:5px;
	color:#333;
	font-size:16px;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.casenr_n dl:hover dd{
	color: #ea3f08;
}
/* promenu_n
-------------------------------------------------------------- */
.promenu_n,.promenu_n dl{
	width:100%;
	overflow:hidden;
}
.promenu_n ul{
	overflow:hidden;
	margin:0;
	}
.promenu_n ul li{
	overflow:hidden;
	float:left;
	line-height:60px;
	margin-right:52px;
	text-align:center;
	}
.promenu_n ul li a{
	font-size:16px;
	color:#000;
	display:block;
	position:relative;
	}
.promenu_n ul li a:after{
	content:"";
	width:0;
	height:2px;
	background:#ea3f08;
	position:absolute;
	bottom:0;
	left:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.promenu_n ul li:hover a::after,.promenu_n ul li.active a::after{
	width:100%;
	}
.promenu_n ul li:hover a,.promenu_n ul li.active a{
	color:#ea3f08;
}
.promenu_n dl{
	border-bottom:solid 1px #e9e3db;
	display:flex;
	justify-content:left;
	padding:9px 0;
}
.promenu_n dl dt{
	font-size:18px;
	color:#333333;
	line-height:30px;
}
.promenu_n dl dt a{
	font-size:18px;
	color:#333333;
}
.promenu_n dl dd{
	font-size:18px;
	color:#969595;
	line-height:30px;
	padding-left:32px;
}
.promenu_n dl dd a{
	font-size:18px;
	color:#969595;
	margin:0 40px;
}
.promenu_n dl dd a:hover,.promenu_n dl dd a.active{
	font-weight:bold;
	color:#ea3f08;
}
/* pro_n
-------------------------------------------------------------- */
.probg{
	background:#fafafa;
}
.pro_n{
	margin-top:60px;
	margin-bottom:60px;
}
.pronr_n{
	width:100%;
	overflow:hidden;
	margin-top:30px;
}
.pronr_n dl{
	width:32%;
	overflow:hidden;
	float:left;
	margin:20px 2% 20px 0;
}
.pronr_n dl:nth-child(3n){
	margin-right:0;
}
.pronr_n dl dt,.pronr_n dl dd{
	width:100%;
	overflow:hidden;
}
.pronr_n dl dt{
	position:relative;
	height:399px;
	border-radius:10px;
}
.pronr_n dl dt img{
    width: 100%;
    height: 100%;
	object-fit:cover;
	}
.pronr_n dl:hover dt img{
	transform:scale(1.05);
	}
.pronr_n dl dd{
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-top:20px;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.pronr_n dl:hover dd{
	color:#ea3f08;
}
.prolist_n{
	width:100%;
	overflow:hidden;
	margin-top:40px;
}
.mySwiper2,.mySwiper{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.mySwiper2 img, .mySwiper img{
	max-width:100%;
	height:auto;
}
.mySwiper2 .swiper-slide{
	background:#efefef;
	padding:60px;
}
.mySwiper2{
	position:relative;
}
.mySwiper{
	margin-top:30px;
}
.mySwiper .swiper-wrapper{
	justify-content:center;
}
.mySwiper .swiper-slide{
	width:100%;
	overflow:hidden;
	border: solid 1px #ddd;
}
.mySwiper .swiper-slide-thumb-active{
	border: solid 1px #ea3f08;
}
.mySwiper2 .swiper-button-prev,.mySwiper2 .swiper-button-next{
	width:30px;
	height:30px;
	border-radius:50%;
	position:absolute;
	top:50%;
	margin-top:-15px;
	z-index:9;
}
.mySwiper2 .swiper-button-prev{
	background:rgba(0,0,0,.25) url(../images/prev2.png) no-repeat center;
	left:10px;
}
.mySwiper2 .swiper-button-next{
	background:rgba(0,0,0,.25) url(../images/next2.png) no-repeat center;
	right:10px;
}

.pro_n h1{
	width:100%;
	overflow:hidden;
	color:#333;
	font-size:24px;
	line-height:34px;
	text-align:center;
	margin-top:40px;
}
.prorq_n .prort_n h5,.procs_n h5,.tjpro h5{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#333;
	line-height:35px;
	margin-top:33px;
}
.pro_n .fbnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#343434;
	line-height:30px;
	margin-top:40px;
}
.pro_n .fbnr p{
	font-size:16px;
	color:#343434;
	line-height:30px;
}
.pro_n .fbnr img{
	max-width:100%;
	height:auto;
}
.pro_n .fbnr table{
	width:100%;
	white-space: nowrap;
	}
.pro_n .fbnr table tr,.pro_n .fbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
	color: #343434;
}
.tjpro h5{
	text-align:center;
}
.tjpronr{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	margin-bottom:95px;
}
.tjpronr dl{
	width:32%;
	overflow:hidden;
	float:left;
	margin:10px 2% 10px 0;
}
.tjpronr dl:last-child{
	margin-right:0;
}
.tjpronr dl dt,.tjpronr dl dd{
	width:100%;
	overflow:hidden;
}
.tjpronr dl dt img{
	width:100%;
	height:auto;
}
.tjpronr dl dd{
	line-height:30px;
	font-size:20px;
	color:#333;
	margin-top:17px;
}
/* video_n
-------------------------------------------------------------- */
.video_n{
	margin-top:60px;
	margin-bottom:60px;
}
.videonr_n{
	width:100%;
	overflow:hidden;
}
.videonr_n video{
	width:100%;
	height:auto;
}
.zgzbtit .ntit,.zgzbtit .zgzbmore{
	padding:0;
}
.zgzbtit .zgzbmore{
	text-align:right;
}
.zgzbtit .zgzbmore a{
	font-size:18px;
	color:#333333;
}
.zgzbtit .zgzbmore a i{
	margin-left:30px;
}
.zgzbnr{
	width:100%;
	overflow:hidden;
	margin-top:40px;
}
.zgzbnr ul li{
	position:relative;
	}
.zgzbnr ul li:first-child{
	background:url(../images/zgzbbg1.jpg) no-repeat top center;
	background-size:cover;
	}
.zgzbnr ul li:nth-child(2){
	background:url(../images/zgzbbg2.jpg) no-repeat top center;
	background-size:cover;
	}
.zgzbnr ul li:nth-child(3){
	background:url(../images/zgzbbg1.jpg) no-repeat top center;
	background-size:cover;
	}
.zgzbnr ul li:nth-child(4){
	background:url(../images/zgzbbg2.jpg) no-repeat top center;
	background-size:cover;
	}
.zgzbnr ul li:nth-child(5){
	background:url(../images/zgzbbg1.jpg) no-repeat top center;
	background-size:cover;
	}
.zgzbnr ul li .yylybg{
	width:100%;
	height:41%;
	background-image: linear-gradient(to top, rgba(127,50,34,0.8), rgba(127,50,34,0));
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
	}
.zgzbnr ul li.active .yylybg{
	background:rgba(0,0,0,0.1);
	}
.cloud-product-ul li .normal-inner,.cloud-product-ul li .normal-inner .yylyicon,.cloud-product-ul li .normal-inner h4,.cloud-product-ul li .normal-inner .yylyen{
	width:100%;
	overflow:hidden;
	}
.cloud-product-ul li .normal-inner{
	position:absolute;
	z-index:99;
	bottom:56px;
	}
.cloud-product-ul li .normal-inner h4{
	font-size:18px;
	color:#fff;
	line-height:30px;
	font-weight:normal;
	text-align:center;
	}
.cloud-product-ul li .normal-inner .zgzbmore{
	width:100%;
	overflow:hidden;
	line-height:30px;
	text-align:center;
	}
.cloud-product-ul li .normal-inner .zgzbmore a{
	font-size:16px;
	color:#fff;
	}
.cloud-product-ul li .normal-inner .zgzbmore a span{
	font-size:16px;
	color:#fff;
	margin-left:8px;
}
.cloud-product-ul li .normal-inner .yylyicon img{
	max-width:100%;
	height:auto;
	}
.cloud-product-ul li .normal-inner .yylyen{
	font-size:15px;
	color:#fff;
	line-height:25px;
	text-align:center;
	}
.active-inner-item {
	width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}
.cloud-product-ul li.active {
    z-index: 9;
    width:60%;
}
.cloud-product-ul li.active .active-inner-item{
	display:block;
	}
.cloud-product-ul li.active .normal-inner{
	display:none;
	}
.cloud-product-wrapper {
	margin: 0 auto;
	width: 1200px
}
.cloud-product {
	position: relative;
	z-index: 9;
}
.cloud-product-title {
	height: 32px;
	text-align: center;
	line-height: 32px;
	font-size: 32px;
	color: #333
}
.color-blue {
	color: #009fd9
}
.cloud-product-explain {
	margin-top: 26px;
	margin-bottom: 82px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	font-size: 16px;
	color: #999
}
.cloud-product-ul {
	width: 100%;
	margin:0;
	height:100%;
}
.cloud-product-ul li {
	height:100%;
	height:1000px;
	position: relative;
	background:#fff;
	width: 10%;
	float: left;
	-webkit-transition: width .15s linear;
	-o-transition: width .15s linear;
	-moz-transition: width .15s linear;
	transition: width .15s linear
}
.cloud-product-ul li .ourslicon{
	width:100%;
	overflow:hidden;
	}
.cloud-product-ul li .ourslicon img{
	max-width:100%;
	height:auto;
	}
.cloud-product-ul li .ourslmore{
	width:100%;
	overflow:hidden;
	border-top:solid 2px rgba(255,255,255,0.4);
	padding-top:32px;
	position:absolute;
	left:0;
	bottom:48px;
	}
.cloud-product-ul li .ourslmore a{
	width:130px;
	overflow:hidden;
	line-height:30px;
	font-size:16px;
	color:#fff;
	display:block;
	background:url(../images/icon7.png) no-repeat 100px 10.5px;
	border-bottom:solid 3px #fff;
	padding-bottom:6px;
	}
.active-inner-item{
	width:100%;
	height:100%;
	overflow:hidden;
	}
.active-inner-item .oursl_nr{
	width:100%;
	overflow:hidden;
	padding:0 70px 0 80px;
	position:absolute;
	left:0;
	bottom:94px;
	z-index:10;
	}
.active-inner-item .oursl_nr h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#fff;
	line-height:40px;
	font-weight:normal;
	}
.active-inner-item .oursl_nr .zgzbmore{
	width:100%;
	overflow:hidden;
	line-height:30px;
	margin-top:20px;
	}
.active-inner-item .oursl_nr .zgzbmore a{
	font-size:16px;
	color:#fff;
	}
.active-inner-item .oursl_nr .zgzbmore a span{
	font-size:16px;
	color:#fff;
	margin-left:8px;
	}
.active-inner-item .oursl_nr .yslist{
	width:86%;
	height:216px;
	overflow:hidden;
	background:#a8cf38;
	float:right;
	padding-left:52px;
	padding-right:20px;
	padding-top:37px;
	}
.active-inner-item .oursl_nr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:41px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.active-inner-item .oursl_nr .num{
	font-size:200px;
	font-family:Arial;
	color:rgba(255,255,255,0.2);
	line-height:150px;
	position:absolute;
	right:0;
	bottom:0;
	font-weight:bold;
	z-index:0;
	}
.cloud-product-single-top {
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #f2f2f2
}
.cloud-product-name {
	font-size: 18px;
	color: #333;
	font-weight: 700
}
.cloud-product-single-bottom {
	width: 100%;
	height: 340px
}
/* dsfc
-------------------------------------------------------------- */
.dsfc{
	margin-top:116px;
}
.dsfcnr,.dsfclist{
	width:100%;
	overflow:hidden;
}
.dsfcnr{
	margin-top:58px;
}
.dsfcnr .swiper-container{
	width:200%;
	margin-left:-50%;
}
.dsfclist{
	position:relative;
}
.dsfcnr .dsfcimg{
	width:66%;
	overflow:hidden;
}
.dsfcnr .dsfcimg img{
	width:100%;
	height:auto;
}
.dsfcnr .dsfcjs{
	width:48%;
	height:512px;
	overflow:hidden;
	background:#fff;
	padding:54px 64px 0 64px;
	position:absolute;
	right:0;
	top:55px;
}
.dsfcnr .dsfcjs h5{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#353535;
	line-height:50px;
}
.dsfcnr .dsfcms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#a2a2a2;
	margin-top:30px;
}
.yyly{
	margin-bottom:60px;
}
.yyly .message_n{
	margin-top:76px;
}
/* ncontact
-------------------------------------------------------------- */
.contact_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.contactnr_n{
	width:100%;
	overflow:hidden;
	margin-top:40px;
}
.contactnr_n .slide{
	width:32%;
	height:308px;
	float:left;
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px;
    overflow: hidden;
	margin:20px 2% 0 0;
}
.contactnr_n .slide:last-child{
	margin-right:0;
}
.slide .e1 {
    z-index: 2;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.slide .e2 {
    z-index: 2;
    position: relative;
    margin:30px 0 0;
}
.slide .e2 .text {
    font-size: 26px;
	line-height:36px;
    color: #000;
}
.slide .e2 .desc {
    display: block;
    margin: 20px 0 0;
	font-size: 20px;
	line-height:30px;
    display: grid;
}
.slide .e2 .desc p{
	font-size: 20px;
	line-height:30px;
}
.slide .e2 .desc p a{
	font-size: 20px;
}
.slide::after {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 6px;
    background: #ea3f08;
}
.slide:hover::after {
	width:100%;
}
.map{
	width: 100%;
    overflow: hidden;
	}
.map img{
	width: 100%;
	height:auto;
	}
/* nmessagenr
-------------------------------------------------------------- */
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding:0 10px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:300px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding:18px 10px;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:last-of-type{
	width:100%;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #d30808;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.btn1{
	width:100%;
	overflow:hidden;
	margin-top:6px;
	color:#343434;
	}
.btn1 input{
	width:100px;
	height:45px;
	line-height:45px;
	overflow:hidden;
	font-size:16px;
	color: #333;
	padding:0 5px;
	border: solid 1px #e4e4e4;
	}
.btn1 a{
	color:#343434;
}
/* nnews
-------------------------------------------------------------- */
.nnews{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
	}
.nnews .nnewslist{
	width:100%;
	overflow:hidden;
	}
.nnewslist dl{
	padding:35px 0;
	}
.nnewslist dl dt{
	width:23%;
	overflow:hidden;
	float:left;
	position:relative;
	height:207px;
	}
.nnewslist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	height:100%;
	object-fit:cover;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nnewslist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nnewslist dl dd{
	width:77%;
	overflow:hidden;
	float:right;
	padding-left:42px;
	}
.nnewslist dl dd .dllf{
	width:86%;
	overflow:hidden;
	float:left;
	padding-right:68px;
	padding-top:16px;
	border-right:solid 1px #e7e7e7;
	}
.nnewslist dl dd .dllf h4{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#000;
	font-weight:bold;
	margin:0;;
	line-height:30px;
	}
.nnewslist dl dd .dllf .nnewsms{
	width:100%;
	overflow:hidden;
	color:#8d8d8d;
	font-size:15px;
	line-height:28px;
	margin-top:13px;
	text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
	}
.nnewslist dl dd .dllf .nnewsmore{
	width:118px;
	overflow:hidden;
	line-height:30px;
	background:url(../images/icon10.png) no-repeat right center;
	font-size:16px;
	margin-top:30px;
	}
.nnewslist dl dd .dlrt{
	width:14%;
	overflow:hidden;
	float:left;
	}
.nnewslist dl dd .dlrt hr{
	width:30px;
	border:none;
	border-bottom:solid 1px #d7d7d7;
	margin:7px 0 0 0;
	}
.nnewslist dl dd .nnewsdate{
	overflow:hidden;
	float:right;
	}
.nnewslist dl dd .nnewsday{
	overflow:hidden;
	font-size:30px;
	font-weight:bold;
	color:#343434;
	line-height:35px;
	}
.nnewslist dl dd .nnewsyear{
	overflow:hidden;
	font-size:18px;
	color:#737373;
	line-height:30px;
	font-weight:bold;
	}
.nnews .nnewslist:hover{
	background:#ea3f08;
	}
.nnews .nnewslist:hover dl dd .dllf h4,.nnewslist:hover dl dd .nnewsday{
	color:#fff;
	}
.nnewslist:hover dl dd .nnewsyear{
	color:rgba(255,255,255,0.7);
	}
.nnewslist:hover dl dd .dllf .nnewsms{
	color:rgba(255,255,255,0.6);
	}
.nnewslist:hover dl dd .dllf .nnewsmore{
	color:rgba(255,255,255,0.9);
	background:url(../images/icon4.png) no-repeat right center;
	}
.marg{
	margin-top:40px;
	}
.newsnr_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #333;
	line-height:34px;
    text-align: center;
    padding: 0 0 30px 0;
	margin:0;
    border-bottom: solid 1px #ece1d1;
	}
.newsnr_n .fbtime {
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: #99958f;
	margin-top:30px;
}
.newsnr_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    font-size: 16px;
    line-height: 30px;
    color: #343434;
}
.newsnr_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    color: #343434;
}
.newsnr_n .fbnr img{
	max-width:100%;
	height:auto;
	}
/* npro
-------------------------------------------------------------- */
.npro{
	margin-top:60px;
	margin-bottom:60px;
	}
.npro dl{
	padding:0 10px;
	margin:20px 0;
	}
.npro dl dt,.npro dl dd{
	width:100%;
	overflow:hidden;
	}
.npro dl dt{
	width:100%;
	overflow:hidden;
	height:366px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	font-weight:normal;
	}
.npro dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.npro dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.npro dl dd{
	padding:17px 0;
	font-size:18px;
	line-height:30px;
	color:#000;
	text-align:center;
	}
.npro .npro_infolf{
	padding:0 30px 0 0;
}
.npro .npro_infolf img{
	max-width:100%;
	height:auto;
}
.npro .npro_infort{
	padding:32px 0 0 60px;
}
.npro .npro_infort h1{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	padding-bottom:28px;
}
.npro .npro_infort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-bottom:40px;
}
.npro .npro_infort .npro_infolei span{
	font-size:16px;
	color:#004b94;
	}
.npro .npro_infort .npro_ms{
	width:100%;
	overflow:hidden;
}
.npro .npro_infort .npro_ms p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:32px;
	color:#646160;
}
.npro .npro_infort .npro_lxfs{
	width:100%;
	overflow:hidden;
}
.npro .npro_infort .npro_lxfs p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
}
.npro .npro_infort .npro_lxfs p a{
	font-size:16px;
	color:#333;
}
.npro_lxbtn{
	width:100%;
	overflow:hidden;
	margin-top:66px;
	}
.npro_lxbtn a{
	width:160px;
	height:50px;
	display:block;
	text-align:center;
	line-height:50px;
	font-size:16px;
	color:#fff;
	background:#0e746e;
	}
.nprofbnr{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:40px;
	}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#fff;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}	
.post-content {
	background: #fff;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 60px;
}
.npro h1{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:24px;
	line-height:30px;
	color:#000;
	margin:30px 0 0 0;
	}
.nprolist{
	width:100%;
	overflow:hidden;
	background:#f9f9f9;
	}
.nprofh{
	padding:0;
	}
.nprofh a{
	display:block;
	width:140px;
	height:44px;
	text-align:center;
	line-height:44px;
	background:#ea3f08;
	font-size:16px;
	color:#fff;
	margin:auto;
	}
article img {
	max-width: 100%;
	height: auto
}

article .photo>img {
	width: 100%;
	height: auto
}

a.photo {
	position: relative;
	display: block;
	overflow: hidden
}

a.photo .description {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
	background: rgba(0,0,0,.4);
	background: linear-gradient(transparent,rgba(0,0,0,.6));
	padding: 0 15px;
	font-size: 14px;
	text-shadow: 0 2px 2px rgba(0,0,0,.5);
	line-height: 1em;
	opacity: 0;
	transition: .3s
}

a.photo:hover .description {
	opacity: 1;
	line-height: 3.5em;
	transition: .3s
}

.model {
	padding: 15px;
	border-top: 1px solid #f0f2f4
}

.model .modelTitle,.comment-reply-title {
	margin-left: -15px;
	border-left: 3px solid #50585f;
	padding-left: 12px;
	font-size: 16px;
	margin-bottom: 15px;
	margin-top: 0
}

.model .modelTitle i {
	margin-right: 5px
}

.exif .info {
	font-weight: bold;
	transition: .3s
}

.exif .info label {
	font-weight: normal;
	width: 3em;
	opacity: .5;
	transition: .3s
}

.exif .info:hover {
	color: #20a0ff;
	transition: .3s
}

.exif .info:hover label {
	opacity: 1;
	color: #50585f;
	transition: .3s
}

.comment-reply-title:before {
	content: '\f1d8';
	margin-right: 5px
}[pandaPicshow] .thumbnails {
	position: relative;
	text-align: center;
	letter-spacing: -0.31em;
	white-space: nowrap;
	overflow: hidden;
	line-height: 0;
	background:#fff;
}[pandaPicshow] .thumbnails>a {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
	border: 2px solid #fff;
	transition: .3s
}[pandaPicshow] .thumbnails>a:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: .5;
	transition: .3s
}[pandaPicshow] .thumbnails>a.current {
	border-color: #0b56a6;
	box-shadow: 0 0 0 1px #fff inset;
	transition: border-color .3s
}[pandaPicshow] .thumbnails>a.current:before {
	opacity: 0
}[pandaPicshow] .showBox {
	position: relative;
	height: 200px;
	overflow: hidden;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}[pandaPicshow] .showBox>a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #efefef;
	cursor: pointer;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	transition: .6s;
	text-decoration: none
}[pandaPicshow] .showBox.contain>a {
	background-size: contain
}[pandaPicshow][shadowBox="disable"] .showBox a {
	cursor: default
}[pandaPicshow] .showBox>a.current {
	z-index: 1;
	opacity: 1
}[pandaPicshow] .showBox>a.past {
	opacity: 0
}[pandaPicshow] .showBox>a>p.description {
	color: #fff;
	position: absolute;
	margin: 0;
	width: 100%;
	text-shadow: 0 2px 2px rgba(0,0,0,.5);
	background: rgba(0,0,0,.5);
	background: linear-gradient(transparent,rgba(0,0,0,.3),rgba(0,0,0,.7));
	font-size: 14px;
	line-height: 14px;
	text-align: left;
	bottom: 0;
	padding: 0 15px;
	opacity: 0;
	transition: .3s
}[pandaPicshow] .showBox:hover>a>p.description {
	opacity: 1;
	line-height: 50px;
	transition: .3s
}[pandaPicshow] .showBox>.loading {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 1
}[pandaPicshow] .showBox>.loading.complete {
	opacity: 0
}[pandaPicshow] .showBox>.loading:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	left: calc(50% - 15px);
	top: calc(50% - 15px);
	z-index: 2;
	opacity: 1;
	border-radius: 50%;
	border-top: 2px solid transparent;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
	animation: imageLoading 1s linear infinite;
	transition: 1s ease .3s
}[pandaPicshow] .showBox>.loading.complete:before {
	opacity: 0;
	transition: .5s
}[pandaPicshow] .showBox>.loading:after {
	content: "";
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	background-color: #000;
	opacity: .5;
	z-index: 1;
	transition: 1s
}[pandaPicshow] .showBox>.loading.complete:after {
	opacity: 0;
	transition: .5s
}[pandaPicshow] .showBox>.navigator>* {
	position: absolute;
	z-index: 1;
	outline: 0 none;
	top: 0;
	bottom: 0;
	border: 0;
	width: 80px;
	max-width: 30%;
	background-color: transparent
}[pandaPicshow] .showBox>.navigator>.prev {
	left: 0
}[pandaPicshow] .showBox>.navigator>.prev:before,[pandaPicshow] .showBox>.navigator>.next:before {
	content: "";
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.5);
	top: calc(50% - 15px);
	left: calc(50% - 15px);
	background: rgba(0,0,0,.25)
}[pandaPicshow] .showBox>.navigator>.prev:after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-right: 15px solid rgba(255,255,255,.7);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	top: calc(50% - 5px);
	left: calc(50% - 10px)
}[pandaPicshow] .showBox>.navigator>.next {
	right: 0
}[pandaPicshow] .showBox>.navigator>.next:after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 15px solid rgba(255,255,255,.7);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	top: calc(50% - 5px);
	right: calc(50% - 10px);
	opacity: .8
}[pandaPicshow] .showBox>.navigator>.prev {
	background: linear-gradient(-90deg,rgba(0,0,0,0),rgba(0,0,0,.5))
}[pandaPicshow] .showBox>.navigator>.next {
	background: linear-gradient(90deg,rgba(0,0,0,0),rgba(0,0,0,.5))
}[pandaPicshow] .showBox>.navigator>.next,[pandaPicshow] .showBox>.navigator>.prev {
	transition: .3s;
	opacity: 0
}[pandaPicshow] .showBox>.navigator>.next:hover,[pandaPicshow] .showBox>.navigator>.prev:hover {
	opacity: 1
}

@keyframes imageLoading {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(1turn)
	}
}

@keyframes showboxCover {
	0% {
		background-position: top left
	}

	50% {
		background-position: bottom right
	}

	100% {
		background-position: top left
	}
}
/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp,.news-exp2{
	width:100%;
	overflow: hidden;
	margin-top:20px;
}
.news-exp .news-explf,.news-exp .news-exprt{
	padding:0;
	line-height:30px;
}
.news-exp .news-explf a,.news-exp .news-exprt a {
	overflow: hidden;
	font-size:16px;
	color:#343434;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-exp .news-exprt{
	text-align:right;
}
.news-exp .news-explf a:hover,.news-exp .news-exprt a:hover{
	color:#ea3f08;
	text-decoration:none;
}
.news-exp2{
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color: #ea3f08;
}

/* 图片和滚屏样式
-------------------------------------------------------------- */

/*bannerèƒŒæ™¯å›¾ç‰‡åŠ¨ç”»*/
@-webkit-keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
@keyframes scale-bg{
	from{
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
	}
	to{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
}
/*banner */
.index_main{
	background: #f7f7f7;
}
.index_main .section1{
	position: relative;
}
.index_main .section1 .index_banner .item{
	background-size: cover;
	-webkit-background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height:100vh;
	position: relative;
}
.index_main .section1 .index_banner .item.slick-current .scaleBg{
	visibility: visible; 
	-webkit-animation:scale-bg 6s linear forwards;
	animation:scale-bg 6s linear forwards;
}
.index_main .section1 .index_banner .items{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.index_main .section1 .index_banner .items video{ width:100%; height:100%; object-fit: cover;}
.index_main .section1 .index_banner .items video::-webkit-media-controls{ 
	display:none !important;
}
.index_main .section1 .index_banner .items video::-webkit-media-controls-enclosure{
    display: none !important;
}
.index_main .section1 .index_banner .items .indexbg{
	width:100%;
	height:100%;
	background:url(../images/indexbg.png) no-repeat top center;
	background-size:cover;
	position:absolute;
	left:0;
	top:0;
	z-index:9;
}
.index_main .section1 .index_banner .items::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(17,61,172,0.05);
	z-index:6;
}
.index_main .section1 .index_banner .items::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.15);
	z-index:7;
}
.index_main .section1 .index_banner .item .inner{
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
}
.index_main .section1 .index_banner .item .inner .block_txt{
	overflow:hidden;
	position: absolute;
	opacity: 0; 
	transform: translateY(40px);
	-webkit-transform: translateY(40px); 
	-webkit-transition: all 500ms ease; 
	transition: all 500ms ease;
}
.index_main .section1 .index_banner .item .inner .block_txt1{
	width:56%;
	text-align:center;
	left:50%;
	margin-left:-28%;
}
.index_main .section1 .index_banner .item .inner .block_txt2{
	width:45%;
	left:9.4%;
}
.index_main .section1 .index_banner .item.active .inner .block_txt{
	opacity: 1; 
	-webkit-transform: translateY(0); 
	transform: translateY(0); 
	-webkit-transition-delay: 100ms; 
	transition-delay: 100ms;
}
.index_main .section1 .index_banner .item .inner .block_txt a{
	outline: none;
}
.index_main .section1 .index_banner .item .inner .block_txt h4{
	font-size: 30px;
	color: #fff;
	text-align: center;
	font-family: 'COCO';
}
.index_main .section1 .index_banner .item .inner .block_txt h4 img{
	max-width:100%;
	height:auto;
}
.index_main .section1 .index_banner .item .inner .block_txt1 h4 img{
	margin:auto;
}
.index_main .section1 .index_banner .item .inner .block_txt h2{
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	text-align:center;
	letter-spacing:5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h2 span{
	color: #f5c920;
	display: inline-block;
	letter-spacing: 5px;
}
.index_main .section1 .index_banner .item .inner .block_txt h3{
	color: #fff;
	font-size: 22px;
	text-align:center;
	margin-top: 10px;
	letter-spacing: 3px;
}
.index_main .section1 .slick_txt{
	width: 58px;
	height: 58px;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease; 
	background-repeat: no-repeat;
	position: absolute;
	bottom: 82px;
	font-size: 0;
	outline: none;
}
.index_main .section1 .left{
	left: 0;
}
.index_main .section1 .right{
	right:0;
}
.index_main .section1 .slick_txt:hover .slick_arrow{
	opacity: 1;
	visibility: visible;
}
.index_main .section1 .slick_txt .slick_arrow{
	width: 58px;
	height: 58px;
	border:solid 1px #fff;
	border-radius:50%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .slick_txt .prev{
	background-image:url(../images/ban_prev.png);
	left:36px;
}
.index_main .section1 .slick_txt .next{
	background-image:url(../images/ban_next.png);
	left:118px;
}
.index_main .section1 .number{
	position: absolute;
	bottom:34px;
	left: 9.4%;
	display: table;
	width: auto;
	text-align: center;
	z-index:99;
}
.index_main .section1 .number span{
	width:10px;
	height:10px;
	line-height:40px;
	border-radius:50%;
	background:#fff;
	font-size: 18px;
	font-weight:bold;
	color: #fff;
	font-family:Arial;
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin:0 7px;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.index_main .section1 .number span.active{
	width:28px;
	background:#ea3f08;
	border-radius:14px;
}
.wapbanner{
	display:none;
}

.index_main .section2{
	background:url(../images/aboutbg.jpg) no-repeat top center;
	background-size:cover;
}
.index_main .section3{
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
}
.index_main .section4{
	background:url(../images/newsbg.jpg) no-repeat top center;
	background-size:cover;
}
.index_main .section5{
	background:url(../images/casebg.jpg) no-repeat top center;
	background-size:cover;
}
.index_main .section6{
	background:url(../images/newsbg.jpg) no-repeat top center;
	background-size:cover;
}

@media only screen and (max-width: 1768px){
	.aboutlist {
		margin-top: 30px;
	}
	.newsnr .newslf, .newsnr .newsin{
		height:514px;
	}
	.newsnr .newsrt dl {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 1680px){
	.aboutlist ul li .timer,.aboutlist_n ul li .aboutnum .timer{
		font-size:70px;
		line-height:70px;
	}
	.about .aboutnr{
		width:44%;
	}
	.pronr_n dl dt{
		height:378px;
	}
	.cqcmnr_n dl dt {
		height: 262px;
	}
	.casenr_n dl dt {
		height: 262px;
	}
	.footerlf {
		width: 35%;
	}
	.footerrt {
		width: 54%;
	}
}
@media only screen and (max-width: 1600px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 28px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 20px;
	}
	.header .nav{
		margin-right:60px;
	}
	.aboutnr .aboutjs{
		margin-top:0;
	}
	.about .more {
		margin-top:50px;
	}
	.aboutlist ul li {
		padding: 30px 0;
	}
	.prort .prolist{
		height:500px;
	}
	.pro .prolf ul {
		margin-top: 30px;
	}
	.prolist .protext {
		padding: 0 30px;
	}
	.prolist .protext h5{
		font-size:22px;
		line-height:32px;
	}
	.newsnr {
		margin-top: 20px;
	}
	.newsin .newsmore{
		margin-top:80px;
	}
	.newsnr .newslf .newsimg {
		height: 280px;
	}
	.newsnr .newslf, .newsnr .newsin {
		height: 480px;
	}
	.newsnr .newsrt dl dt {
		height: 132px;
	}
	.casenr,.case .swiper-button {
		margin-top: 30px;
	}
	.caselist p{
		margin-top:15px;
	}
	.prolf .swiper-button.active{
		margin-top: 50px;
	}
	.pronr_n dl dt{
		height:360px;
	}
	.cqcmnr_n dl dt {
		height: 249px;
	}
	.casenr_n dl dt {
		height: 249px;
	}
}
@media only screen and (max-width: 1440px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 24px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 18px;
		margin-top: 5px;
	}
	.header .navbar_nav li a {
		padding: 0 40px;
	}
	.tit h3, .tit h3 a,.tit p{
		font-size: 34px;
		line-height: 44px;
	}
	.aboutlist ul li .timer,.aboutlist_n ul li .aboutnum .timer{
		font-size:60px;
		line-height:60px;
	}
	.prolist .protext {
		padding: 0 20px;
	}
	.prolist .protext h5{
		font-size:20px;
		line-height:30px;
	}
	.nmenu ul li{
		margin-right:20px;
	}
	.pronr_n dl dt{
		height:324px;
	}
	.pronr_n dl dd{
		font-size:18px;
	}
	.cqcmnr_n dl dt {
		height: 222px;
	}
	.casenr_n dl dt {
		height: 222px;
	}
	.botlxfslf .bottel,.botlxfslf .bottel a{
		font-size: 36px;
		line-height:46px;
	}
}
@media only screen and (max-width: 1366px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 20px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 26px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 16px;
	}
	.index_main .section1 .index_banner .slick-arrow{
		background-size: auto 30px;
	}
	.tit h3, .tit h3 a,.tit p{
		font-size: 30px;
		line-height: 40px;
	}
	.newsmenu {
		margin-top: 40px;
	}
	.about .aboutnr h3{
		font-size:34px;
		line-height:44px;
	}
	.aboutnr .aboutjs p{
		margin-top:10px;
	}
	.about .more {
		margin-top: 20px;
	}
	.aboutlist ul li {
		padding:0;
	}
	.aboutlist ul li .timer,.aboutlist_n ul li .aboutnum .timer{
		font-size:50px;
		line-height:50px;
	}
	.aboutlist_n ul li .aboutnum font {
		font-size: 30px;
	}
	.aboutlist {
		margin-top: 20px;
	}
	.prort .prolist {
		height: 430px;
	}
	.pro .prolf ul {
		margin-top: 20px;
	}
	.pro .prolf ul li {
		margin-top: 5px;
	}
	.prolf .swiper-button.active{
		margin-top: 30px;
	}
	.newsnr .newslf .newsimg {
		height: 200px;
	}
	.newsnr .newslf, .newsnr .newsin {
		height: 370px;
	}
	.newsin .newsmore {
		margin-top: 40px;
	}
	.newsnr .newslf .newstext .newsdate,.newsin h5,.newsin p{
		margin-top:20px;
	}
	.newsnr .newslf .newstext h5,.newsin h5{
		font-size:20px;
		line-height:30px;
	}
	.newsnr .newsrt dl dd h5{
		font-size:18px;
	}
	.newsnr .newslf .newstext p,.newsin p{
		font-size:15px;
	}
	.newsnr .newsrt dl dd p{
		font-size:14px;
	}
	.newsnr .newsin {
		padding: 50px 30px 0 30px;
	}
	.newsnr .newslf .newstext {
		padding: 0 20px;
	}
	.newsnr .newsrt dl dt {
		height: 108px;
	}
	.newsnr .newsrt dl dd p{
		margin-bottom:10px;
	}
	.newsnr .newsrt dl {
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	.caselist p{
		font-size:18px;
		margin-top: 10px;
	}
	.casenr, .case .swiper-button {
		margin-top: 20px;
	}
	.pronr_n dl dt{
		height:307px;
	}
	.cqcmnr_n dl dt {
		height: 210px;
	}
	.casenr_n dl dt {
		height: 210px;
	}
}
@media only screen and (max-width: 1360px){
	.header .nav {
		margin-right: 40px;
	}
	.topsearch{
		margin-left:30px;
	}
	.pronr_n dl dt{
		height:306px;
	}
	.cqcmnr_n dl dt {
		height: 209px;
	}
	.casenr_n dl dt {
		height: 209px;
	}
}
@media only screen and (max-width: 1300px){
	.header .navbar_nav li a {
		padding: 0 35px;
	}
}
@media only screen and (max-width: 1280px){
	.header .navbar_nav li a {
		padding: 0 32px;
	}
	.header .nav {
		margin-right:20px;
	}
	.topsearch {
		margin-left:20px;
	}
	.about .aboutnr{
		width:46%;
	}
	.card-img-150{
		height:214px;
	}
	.prolist .protext {
		padding: 0 10px;
	}
	.prolist .protext h5{
		font-size:18px;
		line-height:28px;
	}
	.pronr_n dl dt{
		height:288px;
	}
	.cqcmnr_n dl dt {
		height: 196px;
	}
	.casenr_n dl dt {
		height: 196px;
	}
	.botlxfslf .bottel,.botlxfslf .bottel a{
		font-size: 32px;
		line-height:42px;
	}
	.footerrt {
		width: 55%;
	}
}
@media only screen and (max-width: 1152px){
	.header .navbar_nav li a {
		padding: 0 25px;
	}
	.pronr_n dl dt{
		height:259px;
	}
	.cqcmnr_n dl dt {
		height: 175px;
	}
	.casenr_n dl dt {
		height: 175px;
	}
	.card-img-150{
		height:173px;
	}
}
@media only screen and (max-width: 1199px){
	.index_main .section1 .index_banner .item .inner .block_txt h4{
		font-size: 18px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt h2{
		font-size: 22px;
		}
	.index_main .section1 .index_banner .item .inner .block_txt h3{
		font-size: 14px;
	}
}
@media only screen and (max-width: 1080px){
	.header .navbar_nav li a {
		padding: 0 22px;
	}
}
@media only screen and (max-width: 1024px){
	.pronr_n dl dt{
		height:230px;
	}
	.cqcmnr_n dl dt {
		height: 153px;
	}
	.casenr_n dl dt {
		height: 153px;
	}
}
@media only screen and (max-width: 1023px){
	.header{
		height:60px;
	}
	.logo img{
		height:40px;
	}
	.language{
		line-height:60px;
	}
	.topsearch {
		margin-left: 10px;
	}
	.language a > img{
		display:none;
	}
	.search_box{
		top:60px;
	}
	.pcbanner{
		display:none;
	}
	.wapbanner{
		display:block;
	}
	.about .aboutnr{
		width:100%;
	}
	.about .abouttit,.aboutlist,.aboutimg{
		display:none;
	}
	.about .aboutnr h3{
		font-size:30px;
		line-height:40px;
	}
	.prolist .protext {
		padding: 0 20px;
	}
	.newsmenu ul li{
		margin-left:50px;
	}
	.newsnr{
		display:flex;
		justify-content:space-between;
	}
	.newsnr .newslf, .newsnr .newsin{
		width:49%;
	}
	.newsnr .newsrt{
		display:none;
	}
	.positionnr .positionrt,.nmenu{
		width:100%;
	}
	.positionnr .positionrt{
		text-align:left;
	}
	.pro .prolf,.pro .prort{
		width:100%;
	}
	.pro .prort{
		padding-left:0;
		margin-top:20px;
	}
	.pro .prolf ul{
		display:none;
	}
	.prort .prolist {
		overflow:hidden;
		height: auto;
	}
	.prolist .proimg {
		margin-top: 0;
	}
	.prolist .promore{
		display:none;
	}
	.nmenu ul li,.promenu_n ul li{
		line-height:40px;
		margin-right: 0;
		width: 33.333333333333333333333%;
	}
	.footerlf,.footerrt{
		width:100%;
	}
	.botlxfs {
		margin-top: 20px;
		padding-top: 20px;
	}
	.footerrt ul li p{
		display:none;
	}
	.footer {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.footerrt ul li h5 {
		margin-bottom: 10px;
	}
	.bot p{
		text-align:center;
		line-height:25px;
	}
	.bot {
		margin-top: 10px;
	}
	.footer .botlogo img{
		width:180px;
	}
}
@media only screen and (max-width: 992px){
	.index_main .section1 .index_banner .item{
		height: 100vh;
	}
	.index_main .section1 .index_banner .slick-arrow{
		display: none !important;
	}
    .index_main .section1 .index_banner .slick-dots{
    	position: absolute;
    	bottom: 12px;
    }
    .index_main .section1 .index_banner .slick-dots li{
    	width: 12px;
    	height: 12px;
    	border-radius: 50%;
    	border:2px solid #fff;
    }
    .index_main .section1 .index_banner .slick-dots li button{
    	display: none;
    }
    .index_main .section1 .index_banner .slick-dots li.slick-active{
    	background:#ea3f08;
		border: 2px solid #ea3f08;
    }
	.index_main .section1 .number{
		bottom: 12%;
		display: none;
	}
	.index_main .section1 .number span{
		margin-right: 22px;
	}
	.index_main .section1 .number span:after{
		bottom: -14px;
	}

}
@media only screen and (max-width: 991px){
	.mouse {
		width: 20px;
		height: 34px;
	}
	.shubiao{
		bottom:30px;
		margin-left:-10px;
	}
	.shubiao span{
		height:30px;
		left:9.5px;
	}
	.aboutlist_n ul li .aboutnum .timer {
		font-size: 40px;
		line-height: 40px;
	}
	.aboutlist_n ul li .aboutnum font {
		font-size: 25px;
	}
	.pronr_n dl{
		width:49%;
	}
	.pronr_n dl:nth-child(2n) {
		margin-right: 0;
	}
	.pronr_n dl:nth-child(2n+1) {
		margin-right:2%;
	}
	.pronr_n dl dd{
		margin-top:10px;
	}
	.pronr_n dl dt {
		height:341px;
	}
	.cqcmnr_n dl dt {
		height: 203px;
	}
	.casenr_n dl dt {
		height: 203px;
	}
	.mySwiper2 .swiper-slide {
		padding: 50px;
	}
	.nnewslist dl dd .dlrt {
		display: none;
	}
	.nnewslist dl dd .dllf {
		width: 100%;
		border-right: none;
		padding-right: 0;
	}
	.nnews h1,.pro_n h1{
		font-size:22px;
	}
	.news-exp .news-explf, .news-exp .news-exprt{
		text-align:left;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child{
		text-align:left;
	}
	.newsnr_n .fbnr{
		margin-top:40px;
	}
	.newsnr_n h1{
		padding: 0 0 20px 0;
	}
	.newsnr_n .fbtime{
		margin-top:20px;
	}
	.contactnr_n .slide {
		width: 100%;
		height:auto;
		margin-right:0;
	}
	.slide .e1 img{
		width:50px;
	}
}
@media only screen and (max-width: 860px){
	.pronr_n dl dt {
		height:296px;
	}
	.cqcmnr_n dl dt {
		height: 174px;
	}
	.casenr_n dl dt {
		height: 174px;
	}
}
@media only screen and (max-width: 820px){
	.nmenu ul li,.promenu_n ul li{
		width:50%;
	}
	.aboutlist_n ul li .aboutnum .timer {
		font-size: 35px;
		line-height: 35px;
	}
	.aboutlist_n ul li .aboutnum font {
		font-size: 20px;
	}
	.pronr_n dl dt {
		height:282px;
	}
	.cqcmnr_n dl dt {
		height: 165px;
	}
	.casenr_n dl dt {
		height: 165px;
	}
}
@media only screen and (max-width: 768px){
	.index_main .section1 .index_banner .item .inner .block_txt1{
		width:66%;
	}
	.index_main .section1 .index_banner .item .inner .block_txt2{
		width:55%;
	}
	.pronr_n dl dd {
		font-size: 16px;
	}
	.more a,.newsin .newsmore{
		width: 140px;
		padding-left: 20px;
	}
	.newsmenu ul li{
		margin-left:30px;
	}
	.about .aboutnr h3 {
		font-size: 26px;
		line-height: 36px;
	}
	.prolf .swiper-pagination-fraction .swiper-pagination-current {
		font-size: 40px;
	}
	.aboutlist_n ul li .aboutnum,.aboutlist_n ul li p{
		font-size:14px;
	}
	.pronr_n dl dt {
		height:264px;
	}
	.cqcmnr_n dl dt {
		height: 153px;
	}
	.casenr_n dl dt {
		height: 153px;
	}
	.botlxfs {
		margin-top: 10px;
		padding-top: 10px;
	}
	.botlxfslf .bottel{
		margin-bottom:10px;
	}
}
@media only screen and (max-width: 767px){
	.card-img-150{
		height:236px;
	}
	.aboutlist_n ul li {
		width: 50%;
		margin:10px 0;
	}
	.aboutlist_n {
		margin-top:30px;
	}
	.aboutlist_n ul li:nth-child(2n){
		border-right:none;
	}
}
@media only screen and (max-width: 640px){
	.language a i {
		margin-left:5px;
	}
	.toggle{
		right:90px;
	}
	.logo img {
		height: 36px;
	}
	.tit h3, .tit h3 a, .tit p {
		font-size: 26px;
		line-height: 36px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt1{
		width:76%;
	}
	.index_main .section1 .index_banner .item .inner .block_txt2{
		width:65%;
		left:6%;
	}
	.about .aboutnr h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.aboutnr .aboutjs p {
		margin-top: 0;
	}
	.aboutnr .aboutjs,.about .more{
		margin-top:20px;
	}
	.newsmenu{
		display:none;
	}
	.newsnr .newsin{
		display:none;
	}
	.newsnr .newslf{
		width:100%;
	}
	.case .swiper-button div{
		margin:0 10px;
	}
	.case .swiper-button::before, .case .swiper-button::after {
		width: 35%;
	}
	.prolf .swiper-pagination-fraction span{
		font-size:18px;
	}
	.prolf .swiper-pagination-fraction .swiper-pagination-current {
		font-size: 30px;
	}
	.pronr_n dl dt {
		height:220px;
	}
	.cqcmnr_n dl dt {
		height: 196px;
	}
	.casenr_n dl dt {
		height: 196px;
	}
	.mySwiper2 .swiper-slide {
		padding: 20px 30px;
	}
	.mySwiper2 .swiper-button-prev{
		left:5px;
	}
	.mySwiper2 .swiper-button-next{
		right:5px;
	}
	.mySwiper2 .swiper-button-prev, .mySwiper2 .swiper-button-next {
		width: 20px;
		height: 20px;
		background-size:6px !important;
	}
    .nnewslist dl dt, .nnewslist dl dd {
		width: 100%;
	}
	.nnewslist dl dd {
		padding-left: 0;
	}
	.nnewslist dl dd .dllf .nnewsms,.nnewslist dl dd .dllf .nnewsmore{
		margin-top:10px;
	}
	.contactnr_n .slide {
		padding: 30px 20px;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right:0;
	}
	.nmessagenr dl:nth-child(2n){
		margin-left:0;
	}
	.nmessagenr dl dd textarea{
		height:200px;
	}
	.botlxfslf,.botlxfsrt{
		width:100%;
	}
	.botlxfsrt dl{
		float:left;
		margin-top:10px;
	}
	.footerrt{
		margin-top:20px;
	}
	.footerrt ul li h5, .footerrt ul li h5 a {
		font-size: 16px;
	}
	.botlxfslf .bottel, .botlxfslf .bottel a {
		font-size: 30px;
		line-height: 40px;
	}
	.card-body h5{
		font-size:15px;
	}
	.card-img-150 {
		height: 194px;
	}
	.aboutlist_n,.aboutimg_n{
		margin-top:40px;
	}
}
@media only screen and (max-width: 540px){
	.nmenu ul li,.promenu_n ul li{
		width:100%;
	}
	.pronr_n dl dt {
		height:186px;
	}
	.cqcmnr_n dl dt {
		height: 163px;
	}
	.casenr_n dl dt {
		height: 163px;
	}
	.searchnr {
		padding: 0 5px;
	}
	.card-img-150 {
		height: 169px;
	}
}
@media only screen and (max-width:425px){
	.index_main .section1 .index_banner .item .inner .block_txt1{
		width:86%;
	}
	.index_main .section1 .index_banner .item .inner .block_txt2{
		width:75%;
	}
	.pronr_n dl dd {
		font-size: 15px;
	}
	.aboutlist_n ul li .aboutnum .timer {
		font-size: 30px;
		line-height: 30px;
	}
	.pronr_n dl dt {
		height:146px;
	}
	.cqcmnr_n dl dt {
		height: 125px;
	}
	.cqcmnr_n dl dd{
		font-size:15px;
	}
	.casenr_n dl dt {
		height: 125px;
	}
	.casenr_n dl dd{
		font-size:15px;
	}
	.footerrt ul li{
		width:33.33333333333333333333%;
	}
	.footerrt ul{
		justify-content:left;
	}
	.card-img-150 {
		height: 131px;
	}
	.card-body h5 {
		font-size: 14px;
	}
}
@media only screen and (max-width:375px){
	.case .swiper-button::before, .case .swiper-button::after {
		width: 30%;
	}
	.pronr_n dl dt {
		height:129px;
	}
	.cqcmnr_n dl dt {
		height: 108px;
	}
	.casenr_n dl dt {
		height: 108px;
	}
	.card-img-150 {
		height: 114px;
	}
	.pronr_n dl dd {
		font-size: 14px;
	}
	.botlxfslf .bottel, .botlxfslf .bottel a {
		font-size: 26px;
		line-height: 36px;
	}
}
@media only screen and (max-width: 360px){
	.pronr_n dl dt {
		height:124px;
	}
	.cqcmnr_n dl dt {
		height: 103px;
	}
	.casenr_n dl dt {
		height: 103px;
	}
	.card-img-150 {
		height: 109px;
	}
}
@media only screen and (max-width: 320px){
	.pronr_n dl dt {
		height:110px;
	}
	.cqcmnr_n dl dt {
		height: 90px;
	}
	.casenr_n dl dt {
		height: 90px;
	}
	.card-img-150 {
		height: 96px;
	}
}
@media only screen and (max-width: 319px){
	.aboutlist_n ul li .aboutnum, .aboutlist_n ul li p {
		font-size: 13px;
	}
	.aboutlist_n ul li .aboutnum .timer {
		font-size: 26px;
		line-height: 26px;
	}
}



