@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */



/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}
div,a{color:#666;font-family:"Microsoft YaHei","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;}

.body{background:#fff;}

.nbody{background:#efefef;}

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:"Microsoft YaHei","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);
}
.cont{
	width:1476px;
	overflow:hidden;
	margin:auto;
}

/* header
-------------------------------------------------------------- */
.header{
	width:100%;
	height:100px;
	background:#fff;
	position:fixed;
	left:0;
	top:0;
	padding:0 1%;
	z-index:998;
	}
/*å·¦ä¾§logo*/
.logo{
	padding:19px 0;
}
.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;
}

/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
	.nav,.icon1,.icon2{
		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: #151515;
  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) {
  padding: 0 15px;
  width: 60%;
  background: #000;
  -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: #131313;
  -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);
	display:none;
}

#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 {
	width:112px;
	height:42px;
	background:#f25d0a;
	border-radius:20px;
  position: absolute;
  cursor: pointer;
  -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:1%;
		  top:30px;
		  z-index:9999;
}
.top_menu{
	line-height:26px;
	font-size:15px;
	color:#fff;
	text-transform:uppercase;
	margin-left:20px;
	margin-top:8px;
}
.top_line{
	overflow:hidden;
	margin-top:8px;
}
.toggle span {
  height: 2px;
  margin: 5px 5px;
  width: 24px;
  display: block;
  background: #fff;
  -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: #d64904;
	height:3px;
}

.toggle.active span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
      -ms-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.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:28.5px;
	margin-right:126px;
}
.cnen{
	overflow:hidden;
	line-height:30px;
	color:#151515;
	margin-top:35px;
	margin-right:26px;
}
.cnen a{
	font-size:16px;
	color:#151515;
	margin:0 14px;
}
.search{
	width:138px;
	height:32px;
	overflow:hidden;
	background:#00a0e9;
	border-left:solid 2px #df0519;
	margin-top:34px;
}
.search input{
	width:76%;
	overflow:hidden;
	color:#fff;
	background:#00a0e9;
	line-height:32px;
	float:left;
	padding-left:5px;
}
.search input::-webkit-input-placeholder {
    color: #fff;
}
.search input:-moz-placeholder {
    color: #fff;
}
.search input::-moz-placeholder {
    color: #fff;
}
.search input:-ms-input-placeholder {
    color: #fff;
}
.search button{
	width:24%;
	height:32px;
	overflow:hidden;
	background:url(../images/icon2.png) no-repeat center;
	line-height:32px;
	float:left;
}
.header .left .img2{
	display: none;
}
/*å³ä¾§*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	line-height: 50px;
	margin-right:12px;
}
.header .navbar_nav li{
	float:left;
	position: relative;
	display: block;
}

.header .navbar_nav li a{
	text-decoration: none;
	height: 100%;
	padding: 0 40px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #151515;
	font-size: 17px;
	font-weight:bold;
	line-height:100px;
	position:relative;
}
.header .navbar_nav li a:after{
	content:"";
	width:0;
	height:2px;
	background:#f25d0a;
	position:absolute;
	left:50%;
	margin-left:-19px;
	bottom:0;
	border-radius:2px;
	    -webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.header .navbar_nav li:hover a:after,.header .navbar_nav li.active a:after{
	width:38px;
}
.header .navbar_nav li:hover a,.header .navbar_nav li.active a{
	font-weight:bold;
	color:#f25d0a;
}
.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: 16px;
	color: #666;
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	background: #fff;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	background: #f25d0a;
	-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: #f25d0a;
}

.header .navbar_nav li.dropdown:hover a:after{
	display:none;
}

.header.on .left .img1{
	display: none;
}
.header.on .left .img2{
	display: block;
}
.header.on .navbar_nav li a{
	color: #333;
}
.header.on .navbar_nav li:hover a{
	color: #f25d0a;
}
#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;
}
/* pc_header
-------------------------------------------------------------- */
.header .tog {
  display: none;
      width: 112px;
    height: 42px;
	line-height:42px;
    background: #fff;
	border-radius: 20px;
	padding-left:20px;
	cursor:pointer;
	position: absolute;
	    right: 1%;
    top: 30px;
}
.header .tog svg{
    padding-top: 5px;
}
.header .tog .f18{
  color:#dc5513;
}
.menu svg {
  transition: 0.4s;
}
.header.active .tog {
  display: flex;
}
.header.active .menu {
  display: none;
}
.pc_header.active,
.pc_header.sticky {
  background: #fff;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.menu .tog {
  cursor: pointer;
}
.menu .tog > div {
  width: 25px;
  position: relative;
   
}
/* pu_select
-------------------------------------------------------------- */
.pu_select {
  z-index: 992;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:100vh;
  background: #dc5513;
  padding: 0 6%;
  -webkit-clip-path: ellipse(0 0 at 100% 0);
  clip-path: ellipse(0 0 at 100% 0);
  pointer-events: none;
  transition: clip-path 0.6s, -webkit-clip-path 0.6s;
}
.pu_selectnr{
	width:100%;
	height:100%;
	overflow:hidden;
	position:relative;
}
.pu_select ul{
	width:100%;
	overflow:hidden;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pu_select ul li{
	width:16.666666666667%;
	overflow:hidden;
	float:left;
}
.pu_select ul li h4,.pu_select ul li p{
	width:100%;
	overflow:hidden;
}
.pu_select ul li h4{
	line-height:42px;
}
.pu_select ul li p{
	line-height:34px;
	margin-top:10px;
}
.pu_select ul li h4{
	margin-bottom:10px;
	font-weight:bold;
}
.pu_select ul li h4 a{
	color:#fff;
}
.pu_select ul li p a{
	color:rgba(255,255,255,0.8);
}
.pu_select ul li h4 a{
	font-size:32px;
}
.pu_select ul li p a{
	font-size:24px;
}
.pu_select.active {
  -webkit-clip-path: ellipse(142% 142% at 100% 0);
  clip-path: ellipse(142% 142% at 100% 0);
  pointer-events: auto;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate_1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* banner

-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	}
.banner .img{
	width:100%;
	height:100vh;
	overflow:hidden;
	position:relative;
}
.banner .swiper-slide .img img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.banner .swiper-button{
	width:100%;
	}
.banner .swiper-slide-active img,.banner .swiper-slide-duplicate-active img{
		transition:6s linear;
		transform:scale(1,1);
		}
.banner .swiper-container-wp8-vertical,.banner .swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}

.banner .swiper-button-lock {
	display: none
}

.banner .swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}
@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;
	}
	
	
}

/* 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;
}*/


/* tit
-------------------------------------------------------------- */
.tit{
	overflow:hidden;
	}
.tit h4{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#dc5513;
	line-height:36px;
	background:url(../images/titbg1.png) no-repeat left center;
	padding-left:50px;
	margin-bottom:58px;
	}
.tit h4 a{
	font-size:26px;
	color:#dc5513;
}
.tit .titen{
	width:100%;
	overflow:hidden;
	color:#dc5513;
	font-weight: bold;
	font-family:Arial;
	font-size:80px;
	line-height:80px;
	text-transform:uppercase;
}
.tit p{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-size:90px;
	color:#dc5513;
	line-height:90px;
	text-transform:uppercase;
	margin-top:4px;
	}
/* itit
-------------------------------------------------------------- */
.itit,.itit h4,.itit p{
	width:100%;
	overflow:hidden;
}
.itit h4,.itit h4 a{
	font-size:25px;
	color:#181411;
	line-height:35px;
	letter-spacing:5px;
}
.itit h4{
	margin-bottom:12px;
}
.itit p{
	font-size:45px;
	color:#f25d0a;
	line-height:55px;
	margin-top:9px;
}
/* more
-------------------------------------------------------------- */
.more{
	overflow:hidden;
	}
.more a{
	display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    padding-top: 50px;
    text-align: center;
    font-weight: bold;
    background: #019141 url(../images/icon24.png) no-repeat center 78%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.more a span{
	color:#fff;
	margin-left:14px;
}
/* about
-------------------------------------------------------------- */
.index_main .section3{
	position:relative;
	}
.about{
	width:100%;
	overflow:hidden;
	background:#f9f8f4;
	padding-top:100px;
	}
.aboutnr{
	position:relative;
	z-index:99;
}
.about .aboutlf{
	width:50%;
	overflow:hidden;
	}
.aboutlist,.aboutlist dl,.aboutlist dl dt,.aboutlist dl dd{
	width:100%;
	overflow:hidden;
}
.aboutlist dl,.aboutmore{
	margin-top:50px;
}
.aboutlist dl dt{
	font-size:16px;
	color:#019141;
	font-weight:normal;
}
.aboutlist dl dt .timer{
	font-size:66px;
	color:#019141;
	font-family:Arial;
	line-height:66px;
}
.aboutlist dl dd{
	font-size:16px;
	color:#181411;
	line-height:30px;
}
.about .aboutrt{
	width:36%;
	overflow:hidden;
	position:relative;
}
.aboutrt .aboutimg{
	width:100%;
	overflow:hidden;
	border-radius:50px 0 50px 0;
}
.aboutrt .aboutimg img{
	width:100%;
	height:auto;
}
.aboutjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#181411;
	line-height:30px;
	margin-top:35px;
}
.aboutjs p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#181411;
	line-height:30px;
}
.aboutmore{
	width:100%;
	overflow:hidden;
}
.aboutmore a{
	display:block;
	width:130px;
	height:130px;
	border-radius:50%;
	font-size:15px;
	color:#fff;
	padding-top:50px;
	text-align:center;
	font-weight:bold;
	background:#f25d0a url(../images/icon24.png) no-repeat center 78%;
}
.about .map{
	width:53.5%;
	height:542px;
	overflow:hidden;
	background:url(../images/map.jpg) no-repeat right top;
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
}
.about .map .plusDiv1{
	width:190px;
	height:190px;
	background:rgba(242,93,10,0.2);
	position:absolute;
	top:80px;
	right:124px;
	border-radius:100%;
	text-align:center;
}
.about .map .plusDiv1 img{
	margin-top:75px;
	position:relative;
	z-index:9;
}
.about .map .plusDiv1::before {
    content: "";
    -webkit-border-radius: 100%;
    border-radius: 100%;
    height: 122px;
    width: 122px;
    background:rgba(242,93,10,0.3);
    position: absolute;
    margin: 34px;
	left:0;
	top:0;
	z-index:1;
}
.about .map .plusDiv1::after {
    content: "";
    -webkit-border-radius: 100%;
    border-radius: 100%;
    height: 258px;
    width:258px;
	background:rgba(242,93,10,0.1);
    position: absolute;
	left:0;
	top:0;
    margin: -34px 0 0 -34px;
    box-shadow: 0 0 6px 2px rgba(242,93,10,0.1);
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.1s;
}
@keyframes pulsate {
	 0% {
	 transform: scale(0.1, 0.1);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
	 50% {
	 opacity: 1;
	 filter: none;
	}
	 100% {
	 transform: scale(1.2, 1.2);
	 opacity: 0;
	 filter: alpha(opacity=0);
	}
}
/* ly
-------------------------------------------------------------- */
.ly{
	width:100%;
	overflow:hidden;
	}
.ly h5{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#fff;
	line-height:35px;
	text-align:center;
	margin-bottom:90px;
	}
.ly h4{
	width:100%;
	overflow:hidden;
	font-size:45px;
	color:#fff;
	line-height:55px;
	text-align:center;
	margin-top:7px;
	}
.lylist{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:66px;
	}
.lylist ul{
	overflow:hidden;
	display:inline-block;
	}
.lylist ul li{
	overflow:hidden;
	float:left;
	margin:0 29px;
	}
.lylist ul li .lyicon{
	width:88px;
	height:88px;
	border:solid 1px #fff;
	border-radius:50%;
	    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.lylist ul li p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	text-align:center;
	margin-top:10px;
	}
.lylist ul li:first-child .lyicon{
	background:url(../images/icon5.png) no-repeat center;
	}
.lylist ul li:nth-child(2) .lyicon{
	background:url(../images/icon6.png) no-repeat center;
	}
.lylist ul li:nth-child(3) .lyicon{
	background:url(../images/icon7.png) no-repeat center;
	}
.lylist ul li:nth-child(4) .lyicon{
	background:url(../images/icon8.png) no-repeat center;
	}
.lylist ul li:hover .lyicon{
	border:solid 1px #14b29d;
	background-color:#14b29d;
}
/* fwbz
-------------------------------------------------------------- */
.fwbz .tit span:after{
	display:none;
	}
.fwbz .tit h4{
	color:#fff;
	text-align:left;
	}
.fwbz .tit h4 a{
	color:#fff;
}
.fwbz .tit{
	text-align:left;
	}
.fwbz .tit span{
	color:rgba(255,255,255,0.08);
	}
.fwbz .more{
	text-align:left;
	margin-top:34px;
	}
.fwbz .more span{
	color:#fff;
	border-bottom: solid 2px #fff;
	}
/* proyy
-------------------------------------------------------------- */
.proyy_tit{
	width:100%;
	overflow:hidden;
	margin-bottom:60px;
}
.proyy_tit h4,.proyymore{
	overflow:hidden;
	padding:0;
}
.proyy_tit h4,.newstit h4{
	font-size:50px;
	color: #f08336;
	line-height:60px;
}
.proyymore a{
	display:block;
	width:200px;
	height:55px;
	text-align:center;
	line-height:55px;
	font-size:16px;
	color:#fff;
	background:#f08336;
	border-radius:30px;
	font-weight:bold;
	float:right;
}
.jssl{
	position:relative;
}
.proyynr{
	width:100%;
	overflow:hidden;
	margin-top:70px;
	border-radius:0 20px 20px 0;
}
.proyynr .swiper-container {
    width: 130%;
}
.jsslnr,.jsslnr h4,.jsslnr .jsslen,.jsslnr .jssljs,.jsslnr .jssltit{
	width:100%;
	overflow:hidden;
}
.proyynr .swiper-slide-active{
	overflow:hidden;
	border-radius:20px 0 0 20px;
}
.proyynr .jsslnr{
	height:515px;
	transform-origin: top left;
	transform: perspective(100px) skewX(-10deg);
	position:relative;
}
.proyynr .swiper-slide-active .jsslnr{
	transform-origin: top left;
	transform: perspective(100px) skewX(-10deg);
}
.jsslnr img{
	width:120%;
	height:100%;
	object-fit:cover;
	transform: perspective(100px) skewX(10deg);
	position:absolute;
	left:-100px;
	top:0;
	z-index:0;
}
.proyynr .swiper-slide-active .jsslnr img{
	width:110%;
	height:100%;
	object-fit:cover;
	transform: perspective(100px) skewX(10deg);
	position:absolute;
	left:0;
	top:0;
	z-index:0;
}
.proyynr .swiper-slide .jsslnr .jsslbg{
	width:100%;
	height:100%;
	overflow:hidden;
	background:rgba(228,228,228,0.77);
	position:absolute;
	left:0;
	top:0;
	z-index:1;
}
.proyynr .swiper-slide-active .jsslnr .jsslbg{
	background: -webkit-linear-gradient(top, rgba(10,181,158,0.77), rgba(10,46,99,0.77));
    background: -o-linear-gradient(bottom, rgba(10,181,158,0.77), rgba(10,46,99,0.77));
    background: -moz-linear-gradient(bottom, rgba(10,181,158,0.77), rgba(10,46,99,0.77));
    background: linear-gradient(to bottom, rgba(10,181,158,0.77), rgba(10,46,99,0.77));
}
.proyynr .swiper-slide-active .jsslnr .jssltit{
	border-bottom:solid 1px rgba(255,255,255,0.3);
	padding-bottom:28px;
}
.jsslin{
	width:100%;
	overflow:hidden;
	padding:60px 126px 0 56px;
	position:absolute;
	left:5%;
	top:0;
	transform: perspective(100px) skewX(12deg);
	z-index:9;
}
.jsslnr h4{
	font-size:35px;
	color:#2c3441;
	line-height:45px;
	font-weight:bold;
	margin-top:-35px;
}
.jsslnr .jsslen{
	font-size:15px;
	color:#2c3441;
	font-family:Arial;
}
.jsslnr .jsslnum{
	width:100%;
	overflow:hidden;
	font-family:Arial;
	font-weight:bold;
	font-size:97px;
	color:rgba(44,52,65,0.2);
	line-height:97px;
}
.jsslnr .jssljs{
	margin-top:32px;
	color:#fff;
	opacity:0;
}
.jsslnr .jsslmore{
	width:60px;
	overflow:hidden;
	color:#fff;
	line-height:30px;
	background:url(../images/icon19.png) no-repeat top center;
	padding-top:23px;
	margin-top:66px;
	opacity:0;
}
.jssl .jsslgd{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:70px;
}
.jssl .jsslgd span{
	color:#2c3441;
	font-size:16px;
	border-bottom:solid 2px #2c3441;
	padding-bottom:4px;
	margin-left:24px;
}
.proyynr .swiper-slide-active .jsslnr .jssljs,.proyynr .swiper-slide-active .jsslnr .jsslmore{
	opacity:1;
}
.proyynr .swiper-slide-active .jsslnr .jsslnum{
	color:rgba(255,255,255,0.3);
}
.proyynr .swiper-slide-active .jsslnr h4,.proyynr .swiper-slide-active .jsslnr .jsslen{
	color:#fff;
}
.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	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
}

.proyynr .swiper-button{
	overflow:hidden;
	}
.proyynr .swiper-button div{
	width:21px;
	height:38px;
	outline:none;
	position:absolute;
	top:50%;
	margin-top:-19px;
	z-index:99;
	}
.proyynr .swiper-button .swiper-button-prev{
	background:url(../images/prev.png) no-repeat center;
	left:-50px;
	}
.proyynr .swiper-button .swiper-button-next{
	background:url(../images/next.png) no-repeat center;
	right:-50px;
	}
.proyynr .swiper-button-lock {
	display: none
}


.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{
	position:relative;
	padding-top:100px;
	z-index:9;
}
.probot{
	width:100%;
	overflow:hidden;
	text-align:center;
	position:absolute;
	left:0;
	bottom:64px;
	z-index:0;
}
.probot img{
	width:100%;
	height:auto;
}
.pro ul{
	width:100%;
	height:26vw;
	overflow:hidden;
	margin-bottom:0;
}
.pro ul li{
	width:32%;
	height: calc(26vw - 90px);
	overflow:hidden;
	margin-right:2%;
	float:left;
	border-radius: 12px;
	transition: all 0.6s;
}
.pro ul li:nth-child(3n){
	margin-right:0;
}
.pro ul li .pronr{
	width:100%;
	height:100%;
	overflow:hidden;
	position:relative;
}
.pro ul li .proimg{
	width:100%;
	height:100%;
	overflow:hidden;
	position: relative;
}
.pro ul li .proimg img{
	width:100%;
	transition: all 0.3s;
}
.pro ul li:hover .proimg img { 
	transform: scale(1.05); 
	}
.pro ul li .protit{
	overflow:hidden;
	padding-left:38px;
	padding-right:38px;
	position:absolute;
	left:0;
	bottom:44px;
	z-index:1;
}
.pro ul li .protit h4,.pro ul li .protit p{
	width:100%;
	overflow:hidden;
}
.pro ul li .protit h4{
	font-size:35px;
	color:#fff;
	line-height:45px;
}
.pro ul li .protit p{
	font-size:20px;
	color:#fff;
	line-height:30px;
	margin-top:4px;
}
.pro ul li .pronr .probg{
	width:100%;
	height:50%;
	background: -webkit-linear-gradient(bottom, rgba(1,145,65,0.8), rgba(1,145,65,0));
    background: -o-linear-gradient(top, rgba(1,145,65,0.8), rgba(1,145,65,0));
    background: -moz-linear-gradient(top, rgba(1,145,65,0.8), rgba(1,145,65,0));
    background: linear-gradient(to top, rgba(1,145,65,0.8), rgba(1,145,65,0));
	position:absolute;
	left:0;
	bottom:0;
	z-index:0;
	transition: all 0.6s;
}
.pro ul li .protit .promore{
	width:100%;
	height:0;
	font-size:16px;
	color:#181411;
	line-height:40px;
	background:#fff url(../images/icon25.png) no-repeat 90% center;
	border-radius:20px;
	padding-left:24px;
	transition: all 0.6s;
	opacity:0;
}
.pro ul li:hover{
	height:26vw;
}
.pro ul li:hover .protit .promore{
	opacity:1;
	height:40px;
	margin-top:27px;
}
.pro ul li:hover .pronr .probg{
	background: -webkit-linear-gradient(bottom, rgba(242,93,11,0.8), rgba(242,93,11,0));
    background: -o-linear-gradient(top, rgba(242,93,11,0.8), rgba(242,93,11,0));
    background: -moz-linear-gradient(top, rgba(242,93,11,0.8), rgba(242,93,11,0));
    background: linear-gradient(to top, rgba(242,93,11,0.8), rgba(242,93,11,0));
}
@media only screen and (max-width: 1920px){
	.pro ul,.pro ul li:hover{
		height:35vw;
	}
	.pro ul li{
		height: calc(35vw - 90px);
	}
}
@media only screen and (max-width: 1152px){
	.pro ul,.pro ul li:hover{
		height:45vw;
	}
	.pro ul li{
		height: calc(45vw - 90px);
	}
}
@media only screen and (max-width: 1024px){
	.pro ul,.pro ul li:hover{
		height:36vw;
	}
	.pro ul li{
		height: calc(36vw - 90px);
	}
}
@media only screen and (max-width: 991px){
	.pro ul,.pro ul li:hover{
		height:40vw;
	}
	.pro ul li{
		height: calc(40vw - 60px);
	}
}

/* pro_n
-------------------------------------------------------------- */
.pro_n{
	position:relative;
	margin-top:60px;
	margin-bottom:60px;
}
.pro_n dl{
	width:46%;
	overflow:hidden;
	background:#dc5513;
	float:left;
	border-radius:60px;
	margin:30px 2%;
}
.pro_n dl dt{
	width:64%;
	overflow:hidden;
	background:#fff;
	float:left;
	border-radius:55px;
	height:434px;
	position:relative;
}
.pro_n 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;
}
.pro_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.08);
	}
.pro_n dl dd{
	width:36%;
	overflow:hidden;
	padding-top:96px;
	float:left;
}
.pro_n dl dd .proen_n{
	width:100%;
	overflow:hidden;
	color:rgba(255,255,255,0.5);
	text-transform:uppercase;
	text-align:center;
	font-size:20px;
	line-height:25px;
	font-family:Arial;
	margin-bottom:17px;
}
.pro_n dl dd h4{
	width:100%;
	overflow:hidden;
	font-size:28px;
	color:#fff;
	line-height:38px;
	text-align:center;
}
.pro_n dl dd .promore_n{
	width:100%;
	overflow:hidden;
	margin-top:35px;
}
.pro_n dl dd .promore_n span{
	display:block;
	width:100px;
	height:100px;
	border-radius:50%;
	text-align:center;
	line-height:100px;
	color:#fff;
	border:solid 1px #fff;
	margin:auto;
}
/* gylclist_n
-------------------------------------------------------------- */
.gylclist_n{
	width:100%;
	overflow:hidden;
	padding:60px 0;
	background:url(../images/gylcbg.jpg) no-repeat top center;
	background-size:cover;
	text-align:center;
	margin-top: 100px;
}
.gylclist_n img{
	max-width:100%;
	height:auto;
}
/* gylcnr_n
-------------------------------------------------------------- */
.bgcolor{
	background:#fafafa;
}
.gylcrq_n{
	width:100%;
	overflow:hidden;
	margin-top:60px;
}
.gylcimg_n{
	width:100%;
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
	text-align:center;
}
.gylcimg_n img{
	max-width:100%;
	height:auto;
}
.gylc_n{
	margin-top:60px;
	margin-bottom:60px;
}
.gylcnr_n{
	width:100%;
	overflow:hidden;
	margin-top:100px;
}
.gylcnr_n .swiper-container{
	width:102%;
	margin-left:-1%;
}
.gylc_n .tit h4{
	background: url(../images/titbg3.png) no-repeat left center;
	color: #404040;
}
.gylc_n .tit h4 a{
	color: #404040;
}
.gylcnr_n .gylcimg{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.gylcnr_n .gylcimg img{
	max-width:100%;
	height:auto;
}
.gylcnr_n .swiper-slide{
	padding:0 25px;
	position:relative;
}
.gylcnr_n .swiper-slide:after{
	content:"";
	width:25px;
	height:22px;
	background:url(../images/icon9.png) no-repeat center;
	position:absolute;
	right:-12.5px;
	top:50%;
	margin-top:-11px;
}

.gylc_n .swiper-button{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:100px;
}
.gylc_n .swiper-button div{
	width:60px;
	height:60px;
	border-radius:50%;
	border:solid 1px #dc5513;
	display:inline-block;
	margin:0 14px;
}
.gylc_n .swiper-button .swiper-button-prev{
	background:url(../images/prevh2.png) no-repeat center;
}
.gylc_n .swiper-button .swiper-button-prev:hover{
	background:#dc5513 url(../images/prev2.png) no-repeat center;
}
.gylc_n .swiper-button .swiper-button-next{
	background:url(../images/nexth2.png) no-repeat center;
}
.gylc_n .swiper-button .swiper-button-next:hover{
	background:#dc5513 url(../images/next2.png) no-repeat center;
}
/* hyyy
-------------------------------------------------------------- */
.hyyy{
	width:100%;
	overflow:hidden;
	padding-top:100px;
	position:relative;
	z-index:9;
}
.hyyy .itit h4,.hyyy .itit h4 a,.hyyy .itit p{
	color:#fff;
}
.hyyybg{
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.1);
	position:absolute;
	left:0;
	top:0;
	z-index:0;
}
.hyyynr{
	width:39%;
	overflow:hidden;
	margin-top:56px;
}
.hyyynr ul{
	width:100%;
	overflow:hidden;
	margin:0;
}
.hyyynr ul li{
	width:49%;
	height:82px;
	overflow:hidden;
	float:left;
	border-radius:15px;
	line-height:82px;
	padding-left:70px;
	margin:7px 2% 7px 0;
	transition: all 0.6s;
}
.hyyynr ul li a{
	color:#fff;
	font-size:18px;
	display:block;
}
.hyyynr ul li:nth-child(2n){
	margin-right:0;
}
.hyyynr ul li a i{
	width:11px;
	height:17px;
	background:url(../images/next3.png) no-repeat center;
	float:right;
	margin-top:32.5px;
	margin-right:30px;
}
.hyyynr ul li:first-child{
	background:rgba(255,255,255,0.2) url(../images/icon33.png) no-repeat 26px center;
}
.hyyynr ul li:nth-child(2){
	background:rgba(255,255,255,0.2) url(../images/icon34.png) no-repeat 26px center;
}
.hyyynr ul li:nth-child(3){
	background:rgba(255,255,255,0.2) url(../images/icon35.png) no-repeat 26px center;
}
.hyyynr ul li:nth-child(4){
	background:rgba(255,255,255,0.2) url(../images/icon36.png) no-repeat 26px center;
}
.hyyynr ul li:nth-child(5){
	background:rgba(255,255,255,0.2) url(../images/icon37.png) no-repeat 26px center;
}
.hyyynr ul li:nth-child(6){
	background:rgba(255,255,255,0.2) url(../images/icon38.png) no-repeat 26px center;
}
.hyyynr ul li:hover{
	background-color:#f25d0a;
}
.hyyymore{
	width:100%;
	overflow:hidden;
	margin-top:60px;
}
.hyyymore a{
	display:block;
	width: 130px;
    height: 130px;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    padding-top: 50px;
    text-align: center;
    font-weight: bold;
    background: #019141 url(../images/icon24.png) no-repeat center 78%;
}
/* sdbz
-------------------------------------------------------------- */
.section5{
	position:relative;
}
.sdbz{
	margin-top:240px;
	display:none;
}
.sdbz.active{
	display:block;
}
.sdbz,.sdbz h4,.sdbz p{
	width:100%;
	overflow:hidden;
}
.sdbz h4{
	font-size:30px;
	color:#fff;
	line-height:40px;
}
.sdbz p{
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:4px;
}
.sdbzlist{
	width:62%;
	height:300px;
	overflow:hidden;
	background:#fff;
	padding-left:11.5%;
	border-radius:0 40px 0 0;
	position:absolute;
	left:0;
	bottom:0;
}
.sdbzlist ul,.sdbzlist ul li .sdbz_icon,.sdbzlist ul li h4{
	width:100%;
	overflow:hidden;
}
.sdbzlist ul li{
	width:25%;
	height:300px;
	overflow:hidden;
	float:left;
	cursor:pointer;
}
.sdbzlist ul li .sdbzbg{
	width:100%;
	height:100%;
	padding-top:106px;
	border-radius:0 40px 0 0;
}
.sdbzlist ul li:nth-child(1){
	background:#14b29d;
}
.sdbzlist ul li:nth-child(2){
	background:#2a5bb1;
}
.sdbzlist ul li:nth-child(3){
	background:#0b2c65;
}
.sdbzlist ul li:nth-child(1) .sdbzbg{
	background:#fff;
}
.sdbzlist ul li:nth-child(2) .sdbzbg{
	background:#14b29d;
}
.sdbzlist ul li:nth-child(3) .sdbzbg{
	background:#2a5bb1;
}
.sdbzlist ul li:nth-child(4) .sdbzbg{
	background:#0b2c65;
}
.sdbzlist ul li .sdbz_icon{
	text-align:center;
}
.sdbzlist ul li h4{
	text-align:center;
	font-size:22px;
	color:#2c3441;
	line-height:32px;
	font-weight:normal;
	margin-top:24px;
}
.sdbzlist ul li:nth-child(2) .sdbzbg h4,.sdbzlist ul li:nth-child(3) .sdbzbg h4,.sdbzlist ul li:nth-child(4) .sdbzbg h4{
	color:#fff;
}
/* newsnr
-------------------------------------------------------------- */
.news{
	padding-top:100px;
}
.newstit{
	width:100%;
	overflow:hidden;
}
.newstit .itit{
	overflow:hidden;
	padding:0;
}
.newstit .newsmenu{
	overflow:hidden;
	padding:76px 0 0 0;
	text-align:right;
}
.newstit .newsmenu ul{
	overflow:hidden;
	display:inline-block;
}
.newstit .newsmenu ul li{
	overflow:hidden;
	float:left;
	width:160px;
	height:50px;
	border-radius:25px;
	line-height:50px;
	text-align:left;
	font-size:16px;
	color:#fff;
	padding-left:60px;
	margin-left:20px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.newstit .newsmenu ul li:first-child{
	background:#f25d0a url(../images/icon26.png) no-repeat 26px center;
}
.newstit .newsmenu ul li:nth-child(2){
	background:#f25d0a url(../images/icon27.png) no-repeat 26px center;
}
.newstit .newsmenu ul li:nth-child(3){
	background:#f25d0a url(../images/icon28.png) no-repeat 26px center;
}
.newstit .newsmenu ul li a{
	font-size:16px;
	color:#fff;
	display:block;
}
.newstit .newsmenu ul li:hover{
	background-color:#019141;
}
.newsnr,.newsnr ul{
	width:100%;
	overflow:hidden;
}
.newsnr{
	margin-top:40px;
}
.newsnr ul li{
	width:31.33333333333%;
	overflow:hidden;
	float:left;
	margin:0 3% 0 0;
}
.newsnr ul li:last-child{
	margin-right:0;
}
.newsdate,.newsimg{
	width:100%;
	overflow:hidden;
}
.newsnr ul li .newsimg{
	height:280px;
	border-radius:20px;
	position:relative;
}
.newsnr ul li .newsimg 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;
}
.newsnr ul li:hover .newsimg img{
	transform:translate(-50%, -50%) scale(1.1);
	}
.newsdate{
	margin-top:10px;
}
.newsdate .date,.newsdate .newsxq{
	overflow:hidden;
	padding:0;
	font-size:16px;
	color:#b2b2b2;
	line-height:30px;
}
.newsdate .newsxq{
	text-align:right;
}
.newsnr ul li h4{
	font-size:23px;
	color:#222222;
    overflow: hidden;
	line-height:33px;
	margin-top:10px;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.newsmore{
	width:100%;
	overflow:hidden;
	margin-top:40px;
}
.newsmore a{
	display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    padding-top: 50px;
    text-align: center;
    font-weight: bold;
    background: #f25d0a url(../images/icon24.png) no-repeat center 78%;
	margin:auto;
}

/* gylc
-------------------------------------------------------------- */
.gylc{
	width:100%;
	overflow:hidden;
	position:relative;
}
.gylctop{
	width:100%;
	overflow:hidden;
}
.gylctop .tit,.gylctop .gylcrt{
	overflow:hidden;
	padding:0;
}
.gylctop .tit h4{
	margin-bottom:28px;
}
.gylctop .tit .titen,.gylctop .tit p{
	color:#fff;
}
.gylctop .gylcrt p{
	width:100%;
	overflow:hidden;
	text-align:right;
	font-size:30px;
	color:#404040;
	line-height:40px;
}
.gylcnr{
	width:100%;
	overflow:hidden;
	position:relative;
}
.gylc .swiper-slide {
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
	  transition: 300ms;
	  padding:228px 30px 0 30px;
	position:relative;
	  
    }
.gylc .swiper-slide .gylcimg{
	width:100%;
	overflow:hidden;
}
.gylc .swiper-slide:before{
	content:"";
	width:40px;
	height:40px;
	background:#dc5c1c;
	border-radius:100%;
	position:absolute;
	left:0;
	top:0;
	opacity:0;
}
.gylc .swiper-slide:after{
	content:"";
	width:76px;
	height:76px;
	background:#dc5c1c;
	border-radius:100%;
	position:absolute;
	left:-86px;
	top:105px;
	opacity:0;
}
.gylc .swiper-slide-active,.swiper-slide-duplicate-active{
	  padding-top:0;
	}
.gylc .swiper-slide-active .gylcimg{
	border:solid 4px #dc5c1c;
	border-radius:100%;
}
.gylc .swiper-slide-active:before,.gylc .swiper-slide-active:after{
	opacity:1;
}
.gylcimg img{
	width:100%;
	height:auto;
}
.gylcnr .swiper-button{
	overflow:hidden;
}
.gylcnr .swiper-button div{
	width:60px;
	height:60px;
	border:solid 1px #aba9a7;
	border-radius:50%;
	position:absolute;
	top:50%;
	margin-top:-30px;
	z-index:99;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.gylcnr .swiper-button div:hover{
	border:solid 1px #dc5c1c;
}
.gylcnr .swiper-button .swiper-button-prev{
	background:url(../images/prev4.png) no-repeat center;
	left:0;
}
.gylcnr .swiper-button .swiper-button-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
}
.gylcnr .swiper-button .swiper-button-next{
	background:url(../images/next4.png) no-repeat center;
	right:0;
}
.gylcnr .swiper-button .swiper-button-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
}
/* searchnr
-------------------------------------------------------------- */
.search_n{
	margin-top:100px;
	margin-bottom:60px;
}
.searchnr{
	overflow:hidden;
	margin-bottom:15px;
}
.search_top{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	margin-bottom:40px;
}
.search_top .search-input{
	width:180px;
	float:left;
}
.searchnr .card,.card-img-150,.card-body,.card-title,.card-text{
	width:100%;
	overflow:hidden;
}
.card-img-150{
	height:253px;
	border: 1px solid #ebebeb;
	position:relative;
}
.card-img-150 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;
}
.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:#f25d0a;
	border:solid 1px #f25d0a;
	float:left;
}
.card-body h5{
	width:100%;
	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;
}
/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	background:url(../images/link.png) no-repeat left center;
	font-size:16px;
	color:#fff;
	line-height:30px;
	padding:4px 0 4px 58px;
	margin-top:40px;
}
.link a{
	font-size:16px;
	color:#fff;
	margin-right:10px;
}
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:url(../images/footerbg.jpg) no-repeat top center;
	background-size:cover;
	padding:66px 0 0 0;
	}
.footertop{
	width:100%;
	overflow:hidden;
}
.footertop .botlogo{
	overflow:hidden;
}
.footertop .botlogo img{
	max-width:100%;
	height:auto;
}
.footertop .botjs{
	overflow:hidden;
	line-height:66px;
	color:#fff;
	font-size:25px;
	letter-spacing:12px;
	padding-left:60px;
	margin-left:26px;
	position:relative;
}
.footertop .botjs:before{
	content:"";
	width:38px;
	height:1px;
	background:#fff;
	position:absolute;
	left:0;
	top:32.5px;
}
.footerin{
	width:100%;
	overflow:hidden;
	margin-top:68px;
}
.footerin .footerinlf{
	width:70%;
	overflow:hidden;
}
.footerinrt{
	width:100%;
	overflow:hidden;
}
.footerinrt_nr{
	width: 53%;
	overflow:hidden;
	float:right;
}
.footerinrt p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-bottom:26px;
}
.footerinrt .footericon{
	width:100%;
	overflow:hidden;
}
.footerinrt .footericon a{
	float:left;
	margin-right:36px;
}
.footerbot{
	width:100%;
	overflow:hidden;
	margin-top:40px;
}
.footerbot .footerbotlf{
	width:70%;
	overflow:hidden;
}
.footerbot .footerbotlf ul{
	margin-top:40px;
}
.footerbot .footerbotlf ul,.footerbot .footerbotlf ul li h4,.footerbot .footerbotlf ul li p{
	width:100%;
	overflow:hidden;
}
.footerbot .footerbotlf ul li{
	overflow:hidden;
	padding:0;
}
.footerbot .footerbotlf ul li h4,.footerbot .footerbotlf ul li p{
	line-height:30px;
}
.footerbot .footerbotlf ul li h4 a,.footerbot .footerbotlf ul li p a{
	font-size:16px;
	color:#fff;
}
.footerbot .footerbotlf ul li h4{
	margin-bottom:10px;
}
.footerbot .footerbotlf ul li p{
	margin-top:10px;
}
.footerbot .footerbotlf ul li h4 a{
	font-weight:bold;
}
.footerbot .footerbotrt{
	width:30%;
	overflow:hidden;
}
.footerbotrtdl{
	width:100%;
	overflow:hidden;
	text-align:right;
	margin-top:88px;
}
.footerbot .footerbotrt dl{
	overflow:hidden;
	display:inline-block;
	margin-right:24px;
}
.footerbot .footerbotrt dl dt,.footerbot .footerbotrt dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.footerbot .footerbotrt dl dt img{
	max-width:100%;
	height:auto;
}
.footerbot .footerbotrt dl dd{
	color:#fff;
	font-size:16px;
	line-height:30px;
	margin-top:12px;
}
.searchtit,.searchbox{
	width:100%;
	overflow:hidden;
}
.searchbox{
	margin-top:10px;
}
.searchtit{
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.searchbox input{
	width:418px;
	height:55px;
	overflow:hidden;
	background:#fff;
	line-height:55px;
	float:left;
	padding-left:24px;
	border-radius:15px 0 0 15px;
}
.searchbox button{
	width:126px;
	height:55px;
	background:#019141 url(../images/icon29.png) no-repeat center;
	float:left;
	border-radius:0 15px 15px 0;
}
.footerin .footerinrt{
	width:30%;
	overflow:hidden;
}

.bot{
	width:100%;
	overflow:hidden;
	margin-top:8px;
	border-top:solid 1px rgba(255,255,255,0.3);
	padding:25px 0;
	margin-top:40px;
	}
.bot .botlf,.bot .botrt{
	overflow:hidden;
	padding:0;
	font-size:16px;
	color:#fff;
	line-height:30px;
}
.botrt{
	text-align:right;
}
.bot a{
	font-size:16px;
	color:#fff;
}
/* return
-------------------------------------------------------------- */
.return{
	
}
/* banner_n
-------------------------------------------------------------- */
.banner_n{ 
	width:100%; 
	height:700px;
	position:relative;
	background:url(../images/banner1.jpg) no-repeat top center;
	background-size:cover;
	margin-top:100px;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:933px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:613px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:525px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:496px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:467px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:420px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:373px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:361px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:280px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:233px;
	}
}
@media(max-width:540px) {
	.banner_n{
		height:197px;
	}
}
@media(max-width:425px) {
	.banner_n{
		height:155px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e6e6e6;
}
.positionnr .positionrt{
	font-size:16px;
	color:#343434;
	line-height:30px;
	padding:20px 0 20px 30px;
	background:url(../images/icon11.png) no-repeat left center;
	}
.positionnr .positionrt a{
	font-size:16px;
	color:#343434;
	}
.position a:hover {
	color: #5ea611;
}
.menu_n {
	width:65%;
	overflow: hidden;
	padding-top:20px;
}
.menu_n ul {
	width:100%;
	overflow: hidden;
}
.menu_n ul li {
	overflow: hidden;
	float: left;
	line-height:30px;
	margin-right:20px;
}
.menu_n ul li a {
	font-size: 16px;
	color: #333;
	position:relative;
}
.menu_n ul li:before{
	content:"▪";
	color:#333;
	margin-right:5px;
}
.menu_n ul li a:after{
	content:"";
	width: 0;
    height: 2px;
    background: #f25d0a;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.menu_n ul li:hover a,.menu_n ul li.active a{
	color:#f25d0a;
}
.menu_n ul li:hover a:after,.menu_n ul li.active a:after{
	width: 100%;
}
/* ntit
-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h4{
	width:100%;
	overflow:hidden;
	font-size:26px;
	color:#6aa271;
	line-height:35px;
	margin:0 0 5px 0;
	}
.ntit hr{
	width:52px;
	height:2px;
	background:#6aa271;
	border:none;
	}
/* nabout
-------------------------------------------------------------- */
.about_n{
	margin-top:106px;
	margin-bottom:106px;
	}
.about_n .aboutlf_n{
	overflow:hidden;
	padding:0;
	}
.about_n .aboutrt_n{
	overflow:hidden;
	padding:0 0 0 80px;
	}
.about_n .aboutrt_n img,.about_n .aboutrt_n video{
	max-width:100%;
	height:auto;
}
.abouttit_n{
	width:100%;
	height:117px;
	overflow:hidden;
	background:url(../images/dot.png) no-repeat left center;
	font-size:30px;
	color:#000;
}
.abouttit_n h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#000;
	font-weight:bold;
	line-height:40px;
	margin-top:70px;
	padding-left: 8%;
}
.aboutnr_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
	margin-top:56px;
	}
.aboutnr_n img{
	max-width:100%;
	height:auto;
	}
.aboutnr_n p{
	font-size:16px;
	line-height:30px;
	color:#333;
	}
/* gysblf_n
-------------------------------------------------------------- */
.gysblf_n{
	width:42%;
	overflow:hidden;
}
.gysbnr_n{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
	margin-top:66px;
}
.gysbnr_n p{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
}
.gysbimg_n{
	width:51.3%;
	overflow:hidden;
	border-radius:60px 0 60px 0;
}
.gysbimg_n img{
	width:100%;
	height:auto;
}
/* ncontact
-------------------------------------------------------------- */
.contact_n{
	margin-top:60px;
	position:relative;
	z-index:2;
	}
.contactnr_n{
	width:100%;
	overflow:hidden;
	background:#d64904;
	padding:40px;
	border-radius:20px;
	}
.contactnr_n ul{
	width:100%;
	overflow:hidden;
	}
.contactnr_n ul li{
	width:25%;
	overflow:hidden;
	float:left;
	margin:10px 0;
	}
.contactnr_n ul li .icon{
	width:100%;
	overflow:hidden;
}
.contactnr_n ul li .icon img{
	max-width:100%;
	height:auto;
}
.contactnr_n ul li h4{
	width:100%;
	overflow:hidden;
	font-size:24px;
	line-height:34px;
	color:#fff;
	font-weight:normal;
	margin-top:20px;
}
.contactnr_n ul li p{
	width:100%;
	overflow:hidden;
	font-size:20px;
	line-height:30px;
	color:#fff;
}
.contactnr_n ul li p a{
	font-size:20px;
	color:#fff;
}
.contactnr_n ul li dl{
	overflow:hidden;
	}
.contactnr_n ul li dl dt,.contactnr_n ul li dl dd{
	overflow:hidden;
	text-align:center;
	}
.contactnr_n ul li dl dt img{
	max-width:100%;
	height:auto;
}
.contactnr_n ul li dl dd{
	font-size:16px;
	color:#fff;
	line-height:30px;
}

.newm dl{
	overflow:hidden;
	float:right;
	}
.newm dl dt,.newm dl dd{
	overflow:hidden;
	text-align:center;
	}
.newm dl dt img{
	max-width:100%;
	height:auto;
	border: solid 1px #ccc;
}
.newm dl dd{
	font-size:16px;
	color:#333;
	line-height:32px;
	}
.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-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:360px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.nmessagenr dl:last-child{
	width:100%;
	}
.nmessagenr dl:nth-child(2n+1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2n){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon25.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon26.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3) dd input{
	background:#fff url(../images/icon27.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(4) dd input{
	background:#fff url(../images/icon28.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(5){
	width:100%;
	}
.nmessagenr dl:nth-child(5) dd textarea{
	background:#fff url(../images/icon29.png) no-repeat 24px 21.5px;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #2d9bd0;
    color: #fff;
	text-align:center;
	font-size:16px;
}
.nmap{
	width:100%;
	overflow:hidden;
	margin-top:60px;
}
.nmap img{
	width:100%;
	height:auto;
}
/* news_n
-------------------------------------------------------------- */
.news_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.newsnr_n{
	width:100%;
	overflow:hidden;
}
.newsnr_n ul{
	width:100%;
	overflow:hidden;
}
.newsnr_n ul li{
	width:31.33333333333%;
	overflow:hidden;
	float:left;
	margin:20px 1%;
}
.newsnr_n ul li .zi{
	width:100%;
	overflow:hidden;
}
.newsnr_n ul li .zi .timex {
    font-size: 16px;
    color: #333333;
    display: flex;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 30px;
}
.newsnr_n ul li .zi .timex span {
    width: 100px;
    height: 38px;
    border: solid 3px #ff6b03;
    line-height: 32px;
    text-align: center;
    color: #ff6b03;
    margin-right: 16px;
    font-weight: 500;
    border-radius: 20px;
}
.newsnr_n ul li .zi h4 {
    font-size:30px;
    color: #333333;
    line-height:40px;
	font-weight:normal;
	overflow:hidden;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.newsnr_n ul li .newsimg_n{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	position:relative;
	height:254px;
	border-radius:20px;
}
.newsnr_n ul li .newsimg_n 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;
}
.newsnr_n ul li:hover .newsimg_n img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.newsnr_n ul li .ck {
	width:100%;
	overflow:hidden;
    margin-top: 3.125vw;
    font-size: 16px;
    color: #000;
	line-height:30px;
	margin-top:30px;
}
.news_n dl{
	width:31.3333333%;
	overflow:hidden;
	margin:20px 1%;
	padding:20px;
	float:left;
	box-shadow: 0px 0px 10px #e0e1e1;
	border-radius: 6% 10px 6% 10px;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}

.news_n dl dt{
	width:100%;
	overflow:hidden;
	position:relative;
	height:246px;
	border-radius:20px;
	border-radius: 6% 10px 6% 10px;
	}
.news_n dl dt img{
	display:block;
	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;
	}
.news_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.news_n dl dd{
	width:100%;
	overflow:hidden;
	}
.news_n dl dd h5{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:24px;
	margin-top:20px;
	border-bottom:solid 1px #efefef;
	padding-bottom:14px;
	font-weight:normal;
	}
.news_n dl dd .nnewsjs{
	width:100%;
	overflow:hidden;
	color:#777777;
	margin-top:22px;
	}
.news_n dl dd .nnews_date{
	width:100%;
	overflow:hidden;
	color:#8a8a8a;
	line-height:30px;
	margin-top:18px;
	}
.news_n dl:hover dd h5{
	color:#163c7e;
	}
.news_n h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
	}
.nnewsnr{
	}
.news_n .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    color: #666;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.news_n .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.news_n .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.news_n .fbnr img{
	max-width:100%;
	height:auto;
	}
/* yyly_n
-------------------------------------------------------------- */
.yyly_n{
	margin-top:60px;
	margin-bottom:60px;
	}
.yylynr_n{
	width:100%;
	overflow:hidden;
}
.yylynr_n dl{
	overflow:hidden;
	padding:0 10px;
	margin:10px 0;
}
.yylynr_n dl dt,.yylynr_n dl dd{
	width:100%;
	overflow:hidden;
}
.yylynr_n dl dt{
	position:relative;
	height:353px;
	}
.yylynr_n 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;
}
.yylynr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.08);
	}
.yylynr_n dl dd {
    line-height: 30px;
    font-size: 18px;
    color: #333;
    margin-top: 10px;
    text-align: center;
}
/* honor_n
-------------------------------------------------------------- */
.honor_n{
	margin-top:60px;
	margin-bottom:60px;
}
.honornr_n{
	width:100%;
	overflow:hidden;
}
.honornr_n dl{
	overflow:hidden;
	padding:0 10px;
	margin:20px 0;
}
.honornr_n dl dt,.honornr_n dl dd{
	width:100%;
	overflow:hidden;
}
.honornr_n dl dt{
	position:relative;
	height:232px;
}
.honornr_n 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;
}
.honornr_n dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.08);
	}
.honornr_n dl dd{
	text-align:center;
	line-height:30px;
	margin-top:5px;
	color:#333;
	font-size:16px;
}
/* partners_n
-------------------------------------------------------------- */
.bg{
	width:100%;
	overflow:hidden;
	background:#f9f0ec;
}
.partners_n{
	margin-top:60px;
	margin-bottom:60px;
}
.partnersnr_n,.partnersnr_n ul{
	width: 100%;
    overflow: hidden;
}
.partnersnr_n ul li{
	width:15.6666666666667%;
	font-size:16px;
	color:#2c3441;
	line-height:30px;
	padding:18px 0;
	float:left;
	text-align:center;
	background:#fff;
	margin:15px 0.5%;
	border-radius:10px;
	transition: all .5s ease;
}
.partnersnr_n ul li:hover{
	background:#14b29d;
	color:#fff;
}
/* nhonor
-------------------------------------------------------------- */
.about_n{
	overflow:hidden;
	margin-top:60px;
	margin-bottom:60px;
	position:relative;
	}
.about_n .aboutnr_n{
	width:100%;
	overflow:hidden;
	margin-top:100px;
	line-height:34px;
	}
.about_n .aboutimg_n{
	width:100%;
	overflow:hidden;
	border-radius:6px;
	margin-top:100px;
	}
.about_n .aboutimg_n img{
	width:100%;
	height:auto;
	}
.aboutnr_n h4{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#404040;
	line-height:40px;
	margin-top:70px;
	margin-bottom:26px;
}
.aboutnr_n p{
	overflow:hidden;
	font-size:16px;
	color:#404040;
	line-height:34px;
}

/* nhonor
-------------------------------------------------------------- */
.nhonor{
	margin-top:60px;
	margin-bottom:60px;
	}
.nhonor .swiper-slide{
	padding:0 10px;
}
.nhonor .nhonorimg{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.nhonor .nhonorimg img{
	max-width:100%;
	height:auto;
}
.nhonor .swiper-button{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:50px;
}
.nhonor .swiper-button div{
	width:60px;
	height:60px;
	border:solid 1px #dc5513;
	display:inline-block;
	border-radius:50%;
	margin:0 14px;
}
.nhonor .swiper-button .swiper-button-prev{
	background:url(../images/prevh2.png) no-repeat center;
}
.nhonor .swiper-button .swiper-button-prev:hover{
	background:#dc5513 url(../images/prev2.png) no-repeat center;
}
.nhonor .swiper-button .swiper-button-next{
	background:url(../images/nexth2.png) no-repeat center;
}
.nhonor .swiper-button .swiper-button-next:hover{
	background:#dc5513 url(../images/next2.png) no-repeat center;
}
/* yfyjy
-------------------------------------------------------------- */
.yfyjy{
	width:100%;
	overflow:hidden;
	background:url(../images/naboutbg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:90px;
	}
.yfyjy .tit{
	margin-bottom:188px;
}
.yfyjy .tit h4{
	width:180px;
	margin:auto;
	background: url(../images/titbg3.png) no-repeat left center;
	color:#404040;
}
.yfyjy .tit h4 a{
	color:#404040;
}
.yfyjy .tit .titen{
	text-align:center;
	margin-top:22px;
}
.yfyjy_img{
	width:32%;
	overflow:hidden;
	padding-left:11.6%;
}
.yfyjy_img img,.yfyjy_icon img{
	max-width:100%;
	height:auto;
}
.yfyjy_icon{
	width:100%;
	overflow:hidden;
}
.yfyjy_nr{
	width:56%;
	overflow:hidden;
	background:#f9f0ec;
	border-radius:50px 0 0 0;
	padding:102px 8% 120px 112px;
}
.yfyjy_nr h5{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#dc5513;
	line-height:40px;
	margin-top:12px;
}
.yfyjyjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#292929;
	line-height:30px;
	margin-top:56px;
}
.yfyjyjs p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#292929;
	line-height:30px;
}
/* gyysb
-------------------------------------------------------------- */
.gyysb{
	margin-top:150px;
	margin-bottom:160px;
}
.gyysb .gyysblf{
	overflow:hidden;
	padding:0 76px 0 0;
}
.gyysblf .tit h4{
	background: url(../images/titbg3.png) no-repeat left center;
    color: #404040;
	margin-bottom:26px;
}
.gyysblf .tit h4 a{
	color: #404040;
}
.gyysbjs{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#292929;
	line-height:30px;
	margin-top:36px;
}
.gyysb .gyysbrt{
	overflow:hidden;
	padding:0;
	border-radius:30px;
}
.gyysb .gyysbrt img{
	width:100%;
	height:auto;
}
/* npro
-------------------------------------------------------------- */
.npro{
	margin-top:60px;
	margin-bottom:60px;
	}
.npronr{
	width:100%;
	overflow:hidden;
	}
.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;
	}
.nprolf{
	width:50%;
}
.nprolf img{
	max-width:100%;
	width:100%;
	border:1px solid #ddd;
	padding:3px;
}
.nprort{
	width:45%;
}
.npro .nprort h1{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	border-bottom:solid 1px #ddd;
	padding-bottom:28px;
}
.npro .nprort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#333;
	line-height:30px;
	margin-top:26px;
	margin-bottom:40px;
}
.npro .nprort .npro_infolei span{
	font-size:20px;
	color:#333;
}
.npro .nprort .npro_jj{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
	margin-top:20px;
}
.npro .nprort .npro_jj p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#333;
}
.nproinfo{
	font-size:16px;
	color:#666;
	line-height:30px;
}
.nprofbtit{
	width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 40px;
    background: #f0f0f0;
    margin-top: 40px;
    padding: 0 20px;
    color: #000;
}
.nprofbnr {
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
    margin-top: 30px;
}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#343434;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	white-space: nowrap;
	}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px;
	padding:0 10px;
	font-size:16px;
}
/* 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-exp2{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	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;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color:#d64904;
}

/* 图片和滚屏样式
-------------------------------------------------------------- */

/*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;
}
/*shubiao*/
.shubiao{
	width:56px;
	position:absolute;
	left:50%;
	margin-left:-28px;
	bottom:40px;
	z-index:99;
}
.shubiao span{
	width:1px;
	height:116px;
	background:#fff;
	position:absolute;
	left:27.5px;
	bottom:100px;
}
.mouse {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:#fff;
  margin:auto;
  -webkit-animation: scroll 1s infinite alternate;
  animation: scroll 1s infinite alternate;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 1px;
  height: 22px;
  background-color: #fff;
}
.shubiao p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	line-height:30px;
	margin-top:42px;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(0, 8px);
            transform: translate(0, 8px);
  }
}
.index_main .section1 .index_banner{
	z-index:99;
	left:0;
	top:0;
}
.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 .item .inner .block_txt{
	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 .banner1{
	width:100%;
	overflow:hidden;
	top:50%;
	margin-top:-121px;
	left:0;
}
.index_main .section1 .index_banner .item .inner .bannerimg{
	width:100%;
	overflow:hidden;
	padding:0 28.5%;
	text-align:center;
}
.index_main .section1 .index_banner .item .inner .bannerimg img{
	display:inline-block;
}
.index_main .section1 .index_banner .item .inner .banner2{
	width:100%;
	overflow:hidden;
	top:50%;
	margin-top:-121px;
	left:0;
}
.index_main .section1 .index_banner .item .inner .banner3{
	width:100%;
	overflow:hidden;
	top:50%;
	margin-top:-121px;
	left:0;
}
.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 h4{
	font-size: 79px;
	font-weight:bold;
	color: #fff;
	text-align: center;
}
.index_main .section1 .index_banner .item .inner .block_txt h4 img{
	margin:auto;
}
.index_main .section1 .index_banner .item .inner .block_txt .bannerimg{
	overflow:hidden;
}
.index_main .section1 .index_banner .item .inner .block_txt img{
	max-width:100%;
	height:auto;
}
.index_main .section1 .index_banner .item .inner .block_txt p{
	font-size:31px;
	color:#fff;
	font-family:Arial;
	line-height:40px;
	text-align:center;
	letter-spacing:8px;
	margin-top:10px;
}
.index_main .section1 .index_banner .item .inner .block_txt .more{
	margin-top:70px;
}
.index_main .section1 .index_banner .item .inner .block_txt .more a{
	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: 10px;
	height:12px;
	background-color: transparent;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease; 
	background-repeat: no-repeat;
	outline: none;
	display:inline-block;
	margin-bottom: 16.5px;
}
.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:10px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
}
.bannum{
	width:290px;
	height:248px;
	background:#f25d0a;
	border-radius:280px 0 0 0;
	position:absolute;
	right:0;
	bottom:0;
	text-align:center;
	padding-top:114px;
	z-index:990;
}
.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{
	overflow:hidden;
	display: table;
	width: auto;
	text-align: center;
	display:inline-block;
	margin:0 12px;
}
.index_main .section1 .number span{
	overflow:hidden;
	font-size: 16px;
	color: rgba(255,255,255,0.3);
	font-family:Arial;
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin:0 5px;
	transition: all 500ms ease;
	-webkit-transition:all 500ms ease;
	line-height:40px;
}
.index_main .section1 .number span.active{
	font-size:30px;
	color:#fff;
}
.tsgd{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	background:url(../images/icon19.png) no-repeat top center;
	padding-top:30px;
	position:absolute;
	left:0;
	bottom:34px;
}

.index_main .section2{
	background:#f9f8f4;
}
.index_main .section2 h3{
	text-align: center;
}
.index_main .section3{
	width: 100%;
	height: 100%;
}
.index_main .section3 h3{
	text-align: center;
}
.index_main .section4{
	width: 100%;
	height: 100%;
}
.index_main .section4 h3{
	text-align: center;
}
.index_main .section5{
	
}
.index_main .section6{
	background:url(../images/gylcbg.jpg) no-repeat top center;
	background-size:cover;
}

@media only screen and (min-width: 1681px) and (max-width: 1768px) {
	.newsnr ul li .newsimg {
		height: 252px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1679px) {
	.newsnr ul li .newsimg{
		height:228px;
	}
	.card-img-150{
		height:239px;
	}
	.honornr_n dl dt{
		height:221px;
	}
	.yylynr_n dl dt{
		height:336px;
	}
}
@media only screen and (min-width: 1600px) and (max-width: 1600px) {
	.pro_n dl dt {
		height: 414px;
	}
	.newsnr_n ul li .newsimg_n{
		height:242px;
	}
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.newsnr ul li .newsimg{
		height:203px;
	}
	.pro_n dl dt {
		height: 373px;
	}
	.newsnr_n ul li .newsimg_n{
		height:218px;
	}
	.card-img-150{
		height:213px;
	}
	.honornr_n dl dt{
		height:198px;
	}
	.yylynr_n dl dt{
		height:301px;
	}
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.newsnr ul li .newsimg{
		height:190px;
	}
	.pro_n dl dt {
		height: 352px;
	}
	.newsnr_n ul li .newsimg_n{
		height:206px;
	}
	.card-img-150{
		height:199px;
	}
	.honornr_n dl dt{
		height:186px;
	}
	.yylynr_n dl dt{
		height:283px;
	}
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.newsnr ul li .newsimg{
		height:178px;
	}
	.pro_n dl dt {
		height: 331px;
	}
	.newsnr_n ul li .newsimg_n{
		height:194px;
	}
	.card-img-150{
		height:186px;
	}
	.honornr_n dl dt{
		height:174px;
	}
	.yylynr_n dl dt{
		height:266px;
	}
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.newsnr ul li .newsimg{
		height:158px;
	}
	.pro_n dl dt {
		height: 298px;
	}
	.newsnr_n ul li .newsimg_n{
		height:174px;
	}
	.card-img-150{
		height:165px;
	}
	.honornr_n dl dt{
		height:155px;
	}
	.yylynr_n dl dt{
		height:238px;
	}
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.newsnr ul li .newsimg{
		height:138px;
	}
	.pro_n dl dt {
		height: 265px;
	}
	.newsnr_n ul li .newsimg_n{
		height:155px;
	}
	.card-img-150{
		height:144px;
	}
	.honornr_n dl dt{
		height:137px;
	}
	.yylynr_n dl dt{
		height:210px;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.newsnr ul li .newsimg{
		height:143px;
	}
	.pro_n dl dt {
		height: 256px;
	}
	.newsnr_n ul li .newsimg_n{
		height:150px;
	}
	.card-img-150{
		height:139px;
	}
	.honornr_n dl dt{
		height:132px;
	}
	.yylynr_n dl dt{
		height:203px;
	}
}
@media only screen and (min-width: 912px) and (max-width: 991px) {
	.pro_n dl dt {
		height: 369px;
	}
	.newsnr_n ul li .newsimg_n{
		height:199px;
	}
	.newsnr ul li .newsimg{
		height:141px;
	}
	.card-img-150{
		height:176px;
	}
	.honornr_n dl dt{
		height:165px;
	}
	.yylynr_n dl dt{
		height:285px;
	}
}
@media only screen and (min-width: 820px) and (max-width: 911px) {
	.pro_n dl dt {
		height: 331px;
	}
	.newsnr_n ul li .newsimg_n{
		height:199px;
	}
	.newsnr ul li .newsimg{
		height:127px;
	}
	.card-img-150{
		height:156px;
	}
	.honornr_n dl dt{
		height:147px;
	}
	.yylynr_n dl dt{
		height:255px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 819px) {
	.pro_n dl dt {
		height: 310px;
	}
	.newsnr_n ul li .newsimg_n{
		height:178px;
	}
	.newsnr ul li .newsimg{
		height:119px;
	}
	.card-img-150{
		height:152px;
	}
	.honornr_n dl dt{
		height:137px;
	}
	.yylynr_n dl dt{
		height:238px;
	}
}
@media only screen and (min-width: 641px) and (max-width: 767px) {
	.newsnr ul li .newsimg{
		height:99px;
	}
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	.pro_n dl dt {
		height: 259px;
	}
	.newsnr_n ul li .newsimg_n{
		height:309px;
	}
	.card-img-150{
		height:194px;
	}
	.honornr_n dl dt{
		height:174px;
	}
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	.newsnr ul li .newsimg{
		height:267px;
	}
	.pro_n dl dt {
		height: 218px;
	}
	.newsnr_n ul li .newsimg_n{
		height:260px;
	}
	.card-img-150{
		height:161px;
	}
	.honornr_n dl dt{
		height:145px;
	}
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	.newsnr ul li .newsimg{
		height:210px;
	}
	.pro_n dl dt {
		height: 172px;
	}
	.newsnr_n ul li .newsimg_n{
		height:205px;
	}
	.card-img-150{
		height:123px;
	}
	.honornr_n dl dt{
		height:111px;
	}
	.yylynr_n dl dt{
		height:265px;
	}
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
	.newsnr ul li .newsimg{
		height:185px;
	}
	.pro_n dl dt {
		height: 151px;
	}
	.newsnr_n ul li .newsimg_n{
		height:181px;
	}
	.card-img-150{
		height:106px;
	}
	.honornr_n dl dt{
		height:96px;
	}
	.yylynr_n dl dt{
		height:232px;
	}
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
	.newsnr ul li .newsimg{
		height:158px;
	}
	.pro_n dl dt {
		height: 129px;
	}
	.newsnr_n ul li .newsimg_n{
		height:154px;
	}
	.card-img-150{
		height:88px;
	}
	.honornr_n dl dt{
		height:80px;
	}
	.yylynr_n dl dt{
		height:196px;
	}
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	.newsnr ul li .newsimg{
		height:138px;
	}
	.pro_n dl dt {
		height: 113px;
	}
	.newsnr_n ul li .newsimg_n{
		height:135px;
	}
	.card-img-150{
		height:75px;
	}
	.honornr_n dl dt{
		height:68px;
	}
	.yylynr_n dl dt{
		height:169px;
	}
}
@media only screen and (max-width: 1768px){
	.itit h4 {
		margin-bottom: 0;
	}
	.itit p {
		font-size: 40px;
		line-height: 50px;
		margin-top:0;
	}
	.hyyynr,.hyyymore {
		margin-top: 40px;
	}
	.newsnr,.newsmore{
		margin-top: 30px;
	}
	.aboutlist dl dt .timer {
		font-size: 60px;
		line-height: 60px;
	}
	.aboutlist dl, .aboutmore {
		margin-top: 40px;
	}
	.aboutjs{
		margin-top:20px;
	}
	.hyyynr ul li {
		height: 72px;
		line-height: 72px;
	}
	.hyyynr ul li a i{
		margin-top:27.5px;
	}
	.footer {
		padding: 50px 0 0 0;
	}
	.link,.bot,.footerin,.footerbot{
		margin-top:50px;
	}
}
@media only screen and (max-width: 1680px){
	.cont{
		width:88%;
	}
	.header .navbar_nav li a {
		padding: 0 35px;
	}
	.newsnr,.newsmore{
		margin-top:40px;
	}
	.newsdate {
		margin-top: 20px;
	}
	.about .aboutrt {
		width: 39%;
	}
	.footerinrt_nr {
		width: 56%;
	}
}
@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;
	}
	.pu_select ul li h4 a {
        font-size: 30px;
    }
	.header .navbar_nav li a {
		padding: 0 30px;
	}
	.hyyynr ul li {
		height: 60px;
		line-height: 60px;
	}
	.hyyynr ul li a i{
		margin-top:21.5px;
	}
	.hyyynr, .hyyymore {
		margin-top: 30px;
	}
	.newsnr, .newsmore {
		margin-top: 30px;
	}
	.newsdate {
		margin-top: 10px;
	}
	.tit h4{
		margin-bottom:40px;
	}
	.tit .titen{
		font-size: 70px;
		line-height: 70px;
	}
	.tit p{
		font-size: 80px;
		line-height: 80px;
	}
	.aboutmore a,.hyyymore a,.newsmore a,.more a{
		width: 114px;
		height: 114px;
		padding-top: 42px;
	}
	.newsnr ul li h4 {
		font-size: 20px;
		line-height: 30px;
		margin-top:5px;
	}
	.newsdate {
		margin-top: 5px;
	}
	.aboutlist dl, .aboutmore {
		margin-top: 30px;
	}
	.aboutlist dl dt .timer {
		font-size: 50px;
		line-height: 50px;
	}
	.about .aboutlf{
		padding-right: 116px;
	}
	.about .aboutlf h5{
		font-size:28px;
		line-height:38px;
	}
	.about .more {
		margin-top: 50px;
	}
	.gylc .swiper-slide{
		padding: 118px 30px 0 30px;
	}
	.gylc .swiper-slide-active,.swiper-slide-duplicate-active{
	  padding-top:0;
	}
	.newsnr .newsmore{
		margin-top:30px;
	}
	.newsnr h5{
		font-size:40px;
		line-height:50px;
	}
	.pro ul li .protit h4 {
		font-size: 30px;
		line-height: 40px;
	}
	.pro ul li .protit p {
		font-size: 19px;
	}
	.prort .prolist dl dd{
		font-size:20px;
		line-height:30px;
	}
	.aboutnr_n h4,.yfyjy_nr h5{
		font-size:26px;
		line-height:36px;
	}
	.yfyjy_nr {
		padding: 102px 6% 120px 100px;
	}
	.yfyjy_img{
		padding-left:6%;
	}
	.itit p {
		font-size: 36px;
		line-height: 46px;
	}
	.pro_n dl dd {
		padding-top: 80px;
	}
	.pro_n dl dd h4{
		font-size:24px;
		line-height:34px;
	}
	.newsnr_n ul li .zi h4 {
		font-size: 26px;
		line-height: 36px;
	}
	.link, .bot, .footerin, .footerbot,.footerbot .footerbotlf ul{
		margin-top: 30px;
	}
	.footer {
		padding: 40px 0 0 0;
	}
	.footerbot .footerbotlf ul li p {
		margin-top: 5px;
	}
	.footerinrt_nr {
		width: 59%;
	}
	.footernr .botlxfs .bottel{
		font-size:34px;
		line-height:34px;
	}
	.footernr .botlxfs .bottel a {
		font-size: 34px;
	}
	.footernr .botlxfs{
		padding-left:40px;
	}
	.footernav {
		width: 30%;
	}
}
@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 25px;
	}
	.header .nav{
		margin-right:0;
	}
	.tit .titen{
		font-size: 60px;
		line-height: 60px;
	}
	.tit p{
		font-size: 70px;
		line-height: 70px;
	}
	.about .aboutlf {
		padding-right: 90px;
	}
	.about .aboutlf h5 {
		font-size: 26px;
		line-height: 36px;
	}
	.newsnr, .newsmore {
		margin-top: 30px;
	}
	.hyyynr,.hyyymore {
		margin-top: 40px;
	}
	.pro ul li .protit h4 {
		font-size: 26px;
		line-height: 36px;
	}
	.pro ul li .protit p {
		font-size: 18px;
	}
	.newsnr h5{
		font-size:36px;
		line-height:46px;
	}
	.about_n .aboutnr_n,.about_n .aboutimg_n{
		margin-top: 60px;
	}
	.pro_n dl dd {
		padding-top: 60px;
	}
	.pro_n dl dd h4{
		font-size:22px;
		line-height:32px;
	}
	.footernr .botlxfs {
		padding-left: 0;
	}
	.footerinrt_nr {
		width: 65%;
	}
}
@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;
	}
}
@media only screen and (max-width: 1360px){
	.cnen {
		margin-right: 16px;
	}
	.header .navbar_nav li a {
		padding: 0 20px;
	}
	.prort .prolist dl dd{
		font-size:18px;
	}
	.gylc .swiper-slide {
		padding: 80px 30px 0 30px;
	}
	.gylc .swiper-slide-active,.swiper-slide-duplicate-active{
	  padding-top:0;
	}
	.itit p {
		font-size: 32px;
		line-height: 42px;
	}
	.about .aboutlf {
		padding-right: 70px;
	}
	.aboutlist dl, .aboutmore {
		margin-top: 20px;
	}
	.aboutlist dl dt .timer {
		font-size: 40px;
		line-height: 40px;
	}
	.aboutlist dl, .aboutmore {
		margin-top: 20px;
	}
	.aboutjs {
		margin-top: 10px;
		font-size: 15px;
		line-height: 26px;
	}
	.newsmore{
		display:none;
	}
	.hyyynr,.hyyymore {
		margin-top: 30px;
	}
	.hyyynr {
		width: 42%;
	}
	.aboutmore a, .hyyymore a, .newsmore a, .more a {
		width: 104px;
		height: 104px;
		padding-top: 37px;
	}
	.link, .bot, .footerin, .footerbot, .footerbot .footerbotlf ul {
		margin-top: 20px;
	}
	.footernr .botlxfs {
		padding-left: 0;
	}
	.footernav {
		width: 35%;
	}
	.footerinrt_nr {
		width: 69%;
	}
	.footerbot .footerbotlf ul li h4 {
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 1280px){
	.cnen a {
		margin: 0 10px;
	}
	.header .navbar_nav li a {
		padding: 0 15px;
		font-size:16px;
	}
	.pu_select ul li h4 a {
        font-size: 28px;
    }
    .pu_select ul li p a {
        font-size: 22px;
    }
	.cnen {
		margin-right: 10px;
	}
	.tit .titen{
		font-size: 50px;
		line-height: 50px;
	}
	.tit p{
		font-size: 60px;
		line-height: 60px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt p {
		font-size: 28px;
		letter-spacing: 4px;
	}
	.hyyynr ul li {
		height: 50px;
		line-height: 50px;
	}
	.hyyynr ul li a i {
		margin-top: 16.5px;
	}
	.aboutmore a, .hyyymore a, .newsmore a, .more a {
		width: 94px;
		height: 94px;
		padding-top: 32px;
	}
	.gylcnr_n .swiper-container{
		width:104%;
		margin-left:-2%;
	}
	.gysbnr_n {
		margin-top: 40px;
	}
	.about .aboutlf h5 {
		font-size: 24px;
		line-height: 34px;
	}
	.newstit .newsmenu ul li{
		width:150px;
	}
	.newsnr ul li h4{
		font-size: 20px;
		line-height:30px;
	}
	.pro ul li .protit{
		padding-left: 30px;
		padding-right: 30px;
	}
	.pro ul li .protit h4 {
		font-size: 24px;
		line-height: 34px;
	}
	.pro ul li .protit p {
		font-size: 16px;
	}
	.newstit .newsmenu ul li{
		margin-left:10px;
	}
	.newsnr h5 {
		font-size: 32px;
		line-height: 42px;
	}
	.about .aboutlf {
		padding-right: 50px;
	}
	.about .aboutlf h5,.about .more,.newsnr .newsmore,.newsnr{
		margin-top:30px;
	}
	.hyyynr {
		width: 46%;
	}
	.prolf .more {
		margin-top: 60px;
	}
	.itit p {
		font-size: 30px;
		line-height: 40px;
	}
	.pro_n dl dd {
		padding-top: 40px;
	}
	.pro_n dl dd .promore_n span {
		width: 80px;
		height: 80px;
		line-height: 80px;
	}
	.newsnr_n ul li .zi h4 {
		font-size: 22px;
		line-height: 32px;
	}
	.footernav{
		padding-left:50px;
	}
	.footernr .botlxfs {
		width: 28%;
	}
	.footer .footerrt {
		width: 72%;
	}
	.footerinrt_nr {
		width: 74%;
	}
}
@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: 1152px){
	.cnen {
		margin-right: 5px;
	}
	.icon1 {
		margin-right: 116px;
	}
	.header .navbar_nav li a {
		padding: 0 10px;
	}
	.header .nav{
		margin-right:0;
	}
	.toggle,.header .tog{
		width: 102px;
	}
	.top_menu {
		margin-left: 10px;
	}
	.newstit .newsmenu ul li {
		width: 140px;
	}
	.hyyynr {
		width: 50%;
	}
	.newsnr h5 {
		font-size: 30px;
		line-height: 40px;
	}
	.newsnr h5 span {
		margin-left: 20px;
	}
	.gysbnr_n {
		margin-top: 20px;
	}
	.footernr .botlxfs .bottel{
		font-size:32px;
		line-height:32px;
	}
	.footernr .botlxfs .bottel a {
		font-size: 32px;
	}
	.footerinrt_nr {
		width: 82%;
	}
}
@media only screen and (max-width: 1100px){
	.header .navbar_nav li a {
		padding: 0 6px;
	}
}
@media only screen and (max-width: 1024px){
	.footerinrt_nr {
		width: 92%;
	}
}
@media only screen and (max-width: 1023px){
	.header{
		height:60px;
	}
	.top_menu,.header .tog .f18{
		display:none;
	}
	.cnen {
		margin-right: 30px;
		margin-top:14.5px;
	}
	.cnen a {
		font-size: 14px;
	}
	.toggle,.header .tog{
		top:9px;
		width: auto;
	}
	.header .tog{
	    padding-left: 7px;
	    padding-right: 7px;
	}
	.logo{
		padding:11px 0;
	}
	.logo img{
		height:38px;
	}
	.top_menu{
		font-size:14px;
	}
	.banner_n,.gylclist_n{ 
		margin-top:60px;
	}
	.about,.pro,.hyyy,.news{
		padding-top:60px;
	}
	.about .aboutlf{
		width:100%;
		padding-right:0;
	}
	.about .aboutrt{
		width:100%;
		margin-top:30px;
	}
	.aboutlist,.about .itit p{
		display:none;
	}
	.aboutmore a,.hyyymore a,.newsmore a,.more a{
		width: 80px;
		height: 80px;
		padding-top: 20px;
		font-size: 14px;
		background-size: 15px;
	}
	.aboutjs,.aboutmore{
		margin-top:20px;
	}
	.about .map{
		display:none;
	}
	.gysblf_n,.gysbimg_n{
		width:100%;
	}
	.gysbimg_n{
		margin-top:30px;
	}
	.newstit .newsmenu ul li{
		background-position:20px !important;
		width: 130px;
		padding-left: 55px;
	}
	.hyyynr {
		width: 100%;
	}
	.prolf,.prort{
		width:100%;
	}
	.prolf ul{
		display:none;
	}
	.prolf .more {
		margin-top: 30px;
	}
	.prort{
		padding-top: 30px;
	}
	.newsnr {
		width: 100%;
	}
	.index_main .section1 .index_banner .item .inner .block_txt .more {
		margin-top: 50px;
	}
	.index_main .section1 .number{
		bottom:20px;
	}
	.footerinrt,.footerbot .footerbotlf ul li p,.footerbotrtdl{
		display:none;
	}
	.footerbot .footerbotlf,.footerbot .footerbotrt{
		width: 100%;
	}
	.footerbotrtdl {
		margin-top: 20px;
		text-align: left;
	}
	.footerbot .footerbotlf ul {
		margin-top: 30px;
	}
	.link, .bot, .footerin, .footerbot {
		margin-top: 30px;
	}
}
@media only screen and (max-width: 991px){
	.pro ul li .protit h4 {
		font-size: 20px;
		line-height: 30px;
	}
    .pu_select ul li h4{
        line-height: 32px;
    }
	.pu_select ul li h4 a {
        font-size: 22px;
    }
    .pu_select ul li p{
        line-height: 30px;
    }
    .pu_select ul li p a {
        font-size: 18px;
    }
	.itit p {
		font-size: 30px;
		line-height: 40px;
		margin-top:0;
	}
	.abouttit_n{
		height:85px;
		background-size:133px;
	}
	.abouttit_n h4{
		margin-top:35px;
	}
	.gylcimg_n{
		margin-top:30px;
		margin-bottom: 30px;
	}
	.newstit .newsmenu{
		display:none;
	}
	.abouticon_n {
		width: 80px;
		height: 80px;
		margin-top:40px;
	}
	.about_n .aboutlf_n{
		width:100%;
		padding-top:0;
		position:inherit;
	}
	.about_n .aboutnr_n {
		width: 100%;
	}
	.aboutnr_n h4{
		margin-top:30px;
	}
	.gylcnr_n .swiper-container {
		width: 100%;
		margin-left: 0;
	}
	.pro_n dl dt,.pro_n dl dd{
		width:100%;
	}
	.pro_n dl dd {
		padding-top: 20px;
		padding-bottom:20px;
	}
	.pro_n dl dd h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.pro_n dl dd .proen_n{
		margin-bottom:10px;
	}
	.pro_n dl dd .promore_n {
		margin-top:10px;
	}
	.prort .prolist dl dd {
        font-size: 16px;
    }
    .gylcnr .swiper-button div {
        width: 40px;
        height: 40px;
    }
	.newsnr_n ul li .zi h4 {
		font-size: 20px;
		line-height: 30px;
	}
	.newsnr_n ul li {
		width: 48%;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child{
		text-align: left;
	}
	.news_n h1 {
		font-size: 24px;
		line-height: 34px;
	}
	.footer{
		padding:40px 0 0 0;
	}
	.footernr .botlxfs .bottel{
		margin-top:20px;
	}
	.footernr .botlxfs,.footer .footerrt,.footernav{
		width: 100%;
	}
	.footernr .botlxfs .bottel {
		font-size: 30px;
		line-height: 30px;
	}
	.footernav ul li{
		width:25%;
	}
	.footerrt dl{
		float:left;
	}
	.footernav{
		padding-left:0;
		border-left:none;
		margin-top:20px;
	}
	.bot .botlf, .bot .botrt{
		text-align:center;
	}
	.footertop .botjs{
		letter-spacing: 5px;
	}
}
@media only screen and (max-width: 1152px){
	.pro_n dl dd .promore_n {
		margin-top: 20px;
	}
}
@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: #fff;
    }
	.index_main .section1 .number span:after{
		bottom: -14px;
	}
	.bannum{
		height:auto;
		padding-top:0;
		width:auto;
		right:10px;
		background:none;
	}
	#fp-nav.right {
		right: 10px !important;
	}
}
@media only screen and (max-width: 991px){
	.tit .titen{
		font-size: 40px;
		line-height: 40px;
	}
	.tit p{
		font-size: 50px;
		line-height: 50px;
	}
	.aboutnr_n h4, .yfyjy_nr h5 {
		font-size: 22px;
		line-height: 32px;
	}
	.yfyjy_img{
		width:100%;
		padding-right:6%;
		text-align:center;
		margin-bottom:30px;
	}
	.yfyjy_nr{
		width:88%;
		margin:auto;
		float:none;
		padding:50px;
	}
	.yfyjy .tit {
		margin-bottom: 50px;
	}
	.yfyjy{
		padding-top:60px;
	}
	.gyysb {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.gyysb .gyysblf{
		padding:0;
		margin-bottom:30px;
	}
	.gylcnr_n .swiper-slide:after,.gylcnr_n .swiper-slide:nth-child(3n):after{
		display:none;
	}
	.gylcnr_n {
		margin-top: 60px;
	}
	.gylc_n .swiper-button {
		margin-top: 40px;
	}
	.about .more {
		margin-top: 40px;
	}
	.nprolf,.nprort{
		width:100%;
	}
	.nprort{
		margin-top:30px;
	}
	.npro .nprort h1{
		font-size: 22px;
		line-height: 32px;
	}
	.nprort .npro_infolei{
		font-size:18px;
		margin-bottom:0;
	}
	.nprort .npro_infolei span{
		font-size:18px;
	}
	.contactnr_n ul li {
		width: 50%;
	}
	.contactnr_n ul li:nth-child(3){
		clear:both;
	}
	.map{
		margin-top:0;
	}
	.bot {
        padding: 15px 0;
    }
    .footernav ul li{
        margin-top: 0;
    }
    .footerrt dl dd{
        margin-top: 0;
    }
    .footernr .botlxfs .boticon {
        margin-top: 20px;
    }
}
@media only screen and (max-width: 768px){
	.itit p {
		font-size: 28px;
		line-height: 38px;
	}
	.pro ul li .protit {
		padding-left: 10px;
		padding-right: 10px;
	}
	.pro ul li .protit{
		bottom:20px;
	}
	.pro ul li .protit p {
		font-size: 14px;
		line-height:25px;
	}
}
@media only screen and (max-width: 767px){
    .tit .titen{
		font-size: 30px;
		line-height: 30px;
	}
	.tit p{
		font-size: 40px;
		line-height: 40px;
	}
	.index_main .section1 .index_banner .item .inner .block_txt p {
		font-size: 24px;
		letter-spacing: 0;
	}
	.index_main .section1 .index_banner .item .inner .block_txt .more {
		margin-top: 30px;
	}
	.index_main .section1 .index_banner .item .inner .banner3{
		bottom:22%;
	}
	.about .more {
        margin-top: 30px;
    }
    .tit h4 {
        margin-bottom: 30px;
    }
	.newsnr_n ul li {
		width: 100%;
		margin: 20px 0;
	}
	.news_n h1 {
		font-size: 22px;
		line-height: 32px;
	}
}
@media only screen and (max-width: 640px){
    .pu_select ul li {
        width: 33.333333%;
    }
    .pu_select ul li:nth-child(4){
        clear: both;
    }
    .pu_select ul li h4 a {
        font-size: 18px;
    }
    .pu_select ul li p a {
        font-size: 14px;
    }
    .pu_select ul li p{
        margin-top: 0;
    }
	.index_main .section1 .index_banner .item .inner .bannerimg{
		padding: 0 18%;
	}
	.newsnr ul li h4,.newsdate{
		margin-top:10px;
	}
	.newsnr, .newsmore {
		margin-top: 20px;
	}
	.index_main .section5{
	    background-position: 82%;
	}
	.index_main .section1 .number{
		display:none;
	}
	.index_main .section1 .slick_txt:first-child{
		margin-right:10px;
	}
	.pro ul li .protit .promore{
		font-size:15px;
	}
	.pro ul li:hover .protit .promore{
		margin-top:15px;
	}
	.pro ul li .protit h4 {
		font-size: 18px;
	}
	.pro ul li .protit p {
		line-height: 20px;
	}
	.pro ul{
		height: auto;
	}
	.pro ul li{
		width:49%;
		margin-bottom:10px;
		height: 41vw;
	}
	.pro ul li:hover {
		height: 41vw;
	}
	.pro ul li:nth-child(3n){
		margin-right:2%;
	}
	.pro ul li:nth-child(2n){
		margin-right:0;
	}
	.newsnr ul li{
		width:100%;
	}
	.newsnr ul li:nth-child(2),.newsnr ul li:nth-child(3){
		display:none;
	}
	.hyyynr ul li{
		background-position:20px center !important;
		padding-left:55px;
		height:60px;
		line-height:60px;
		background-size:30px !important;
	}
	.hyyynr ul li a i{
		margin-top:21.5px;
	}
	.footernr .botlxfs .boticon{
	    display: none;
	}
	.pro_n dl dd h4 {
		font-size: 18px;
	}
	.pro_n dl dd .proen_n{
		font-size:18px;
	}
	.pro_n dl dd .promore_n span {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 12px;
	}
	.pro_n dl dd .promore_n {
		margin-top: 10px;
	}
	.gylc_n .swiper-button div {
		width: 40px;
		height: 40px;
		margin: 0 5px;
	}
	.nhonor .swiper-button div {
		width: 40px;
		height: 40px;
		margin: 0 5px;
	}
	.contactnr_n ul li {
		width: 100%;
	}
	.prort .swiper-button div{
		width:40px;
		height:40px;
	}
	.prort .swiper-button .swiper-button-next{
		margin-left:15px;
	}
	.footertop .botjs{
		display:none;
	}
	.link, .bot, .footerin, .footerbot {
		margin-top: 20px;
	}
	.searchbox input {
		width: 80%;
	}
	.searchbox button {
		width: 20%;
	}
}
@media only screen and (max-width: 500px){
	.hyyynr ul li a i{
		margin-right: 10px;
	}
	.hyyynr ul li a{
		font-size:16px;
	}
	.hyyynr ul li {
		background-position:10px center !important;
		padding-left: 45px;
	}
}
@media only screen and (max-width: 500px){
	.pro ul li .protit .promore{
		padding-left:16px;
	}
}
@media only screen and (max-width: 425px){
	.pro ul li,.pro ul li:hover{
		height: 50vw;
	}
	.pro ul li:hover .protit .promore{
		height:30px;
		line-height:30px;
	}
}
@media only screen and (max-width:424px){
	.hyyynr ul li a i{
		display:none;
	}
}
@media only screen and (max-width: 375px){
	.pro ul li, .pro ul li:hover {
		height: 55vw;
	}
	.hyyynr ul li {
		background-size: 25px !important;
		background-position: 6px center !important;
		padding-left: 36px;
	}
	.footernav ul li a {
		font-size: 15px;
	}
}
@media only screen and (max-width: 320px){
	.pro ul li, .pro ul li:hover {
		height: 58vw;
	}
}
@media only screen and (max-width: 319px){
	.hyyynr ul li a {
		font-size: 14px;
	}
	.aboutnr_n h4, .yfyjy_nr h5 {
		font-size: 20px;
		line-height: 30px;
	}
	.aboutnr_n .aboutjs_n p{
		font-size:15px;
	}
	.pro_n dl dd h4 {
		font-size: 16px;
	}
	.footernav ul li a {
		font-size: 14px;
	}
}



