@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;}
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;}
.nnews table,.nnews  table tr,.nnews 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;}
/* 页面基本元素
-------------------------------------------------------------- */

/* 链接样式 */
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; }

/* 层浮动 */
.left { float: left; }
.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);
	}
/* top
-------------------------------------------------------------- */
.header{
	width:100%;
	position: fixed;
	z-index: 9999;
	top:0;
	background:#fff url(../images/line.jpg) no-repeat bottom center;
	box-shadow: 0px 2px 3px rgba(153,153,153,0.75);
-moz-box-shadow: 0px 2px 3px rgba(153,153,153,0.75);
-webkit-box-shadow: 0px 2px 3px rgba(153,153,153,0.75); 
	}
.headernr{
	width:1200px;
	height:108px;
	margin:auto;
}
.ysjs{
	border-left:solid 1px #999;
	margin-left:9px;
	margin-top:23px;
	padding-left:15px;
	}
.tel{
	width:9.2%;
	overflow:hidden;
	margin-top:22.5px;
	background:url(../images/tel.jpg) no-repeat left center; 
	padding-left:3.5%;
	}
.tel p{
	width:100%;
	overflow:hidden;
	line-height: 21px;
	letter-spacing: 0.8px;
	}
.tel i{
	font-size:28px;
	color:#077ef6;
	font-weight:bold;
	}
.logo{
	width:21.8%;
	overflow:hidden;
	padding-top:17px;
	}
.encn{
	line-height:30px;
	margin-top:36px;
}
.nav{
	width:75%;
	}
.menu, .menu ul {
  list-style: none;
  padding: 0;
}

.menu > li {
  position: relative;
  display: inline-block;
  outline: 0;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 0;
  overflow: hidden;
  /* IE8 needs this */
  overflow: hidden\0/ !important;
  max-height: 0;
  /* A .submenu should be only revealed when hovering the .menu */
  pointer-events: none;
}

.menu > li:hover .submenu, .menu > li:focus .submenu {
  pointer-events: auto;
  z-index: 10;
  max-height: 2000px;
  -webkit-transition: none;
     -moz-transition: none;
}

/* Default
 ================================================================= */
.submenu li {
  opacity: 0;

  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;
     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;
      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;
       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;
          transition: opacity .4s,         transform .6s, max-height .6s;
}

.menu > li:hover .submenu li, .menu > li:focus .submenu li {
  opacity: 1;

  -webkit-transform: none;
     -moz-transform: none;
      -ms-transform: none;
       -o-transform: none;
          transform: none;
}
/* Shield
 ================================================================= */
.shield {
  overflow: visible;

  -webkit-perspective: 400px;
     -moz-perspective: 400px;
      -ms-perspective: 400px;
       -o-perspective: 400px;
          perspective: 400px;
}

.shield li {
  -webkit-transform: rotateX(90deg);
     -moz-transform: rotateX(90deg);
      -ms-transform: rotateX(90deg);
       -o-transform: rotateX(90deg);
          transform: rotateX(90deg);

  -webkit-transform-origin: 0 0;
     -moz-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;

  -webkit-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);
     -moz-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);
      -ms-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);
       -o-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);
          transition-timing-function: cubic-bezier(0, .35, .5, 1.7);
}
.nav > ul{
	width:100%;
	}
.nav .menu > li{
	width:16.5%;
	float:left;
	text-align:center;
	margin-top:21px;
	padding-top:8px;
	padding-bottom:10px;
	}
.nav .menu > li a{
	color:#111;
	font-size:16px;
	display:block;
	line-height:25px;
	}
.nav .menu > li font{
	color:#999;
	font-size:13px;
	display:block;
	}
.nav .menu span{
	display:block;
	width:1px;
	height:30px;
	background:#efefef;
	float:left;
	margin-top: 36px;
	margin-left:1.9%;
	margin-right:1.9%;
	}
.nav .menu > li:hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
	}
.nav .menu > li:hover a{
	color:#fff;
	}
.nav .menu > li:hover font{
	color:#fff;
	}
.nav .menu > li.current{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
}
.nav .menu > li.current a{
	color:#fff;
}
.nav .menu > li.current font{
	color:#fff;
}
.nav .menu > li .submenu{
	width:100%;
	}
.nav .menu > li .submenu li{
	width:100%;
	height:30px;
	line-height:30px;
	text-align:center;
	margin-top:1px;
	background:#fff;
}
.nav .menu > li .submenu li a{
	display:block;
	color:#666;
	font-size:14px;
}
.nav .menu > li .submenu li:hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
}
.nav .menu > li .submenu li:hover a{
	color:#fff;
}
.cont{
	width:1200px;
	overflow:hidden;
	margin:auto;
	}
/* banner
-------------------------------------------------------------- */
.banner{
	width:100%;
	overflow:hidden;
	margin-top:108px;
}
.banner img{
	width:100%;
	height:auto;
}
.fullwidthbanner-container{
	width:100% !important;
	position:relative;
	padding:0;
	max-height:580px !important;
	overflow:hidden;
	margin-top:108px;
	box-shadow: 0px 2px 3px rgba(189,189,189,0.75);
-moz-box-shadow: 0px 2px 3px rgba(189,189,189,0.75);
-webkit-box-shadow: 0px 2px 3px rgba(189,189,189,0.75);
}

.fullwidthbanner-container .fullwidthabnner	{
	width:100% !important;
	max-height:580px !important;
	position:relative;
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	  .banner, .bannercontainer			{	width:768px; height:309px;}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	   .banner, .bannercontainer		{	width:480px; height:193px;	}
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
		.banner, .bannercontainer		{	width:320px;height:129px;	}
}

@media only screen and (max-width: 319px) {
		.banner, .bannercontainer		{	width:240px;height:97px;	}
}

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected {	
	background:#0351a3 !important; 
}
.tp-leftarrow:hover,
.tp-rightarrow:hover {	
	background-color:#0351a3 !important;
 }
/** BULLETS **/
.tp-bullets {
    z-index: 1001;
    position: absolute;
    bottom: 0px;
	width: 174px !important;
}

.tp-bullets.simplebullets.round .bullet {
    cursor: pointer;
    position: relative;
    background: #fff;
    width: 42px;
    height: 6px;
	margin:0 8px 30px 8px;
    float: left;
    -webkit-transition: background 0.1s linear;
    -moz-transition: color, background 0.1s linear;
    -o-transition: color, background 0.1s linear;
    transition: color, background 0.1s linear;
}



.tp-bullets.tp-thumbs {
    z-index: 100;
    position: absolute;
    padding: 3px;
    background-color: #fff;
    width: 500px;
    height: 50px;
    margin-top: -50px;
}

.fullwidthbanner-container .tp-thumbs {
    padding: 3px;
}

.tp-bullets.tp-thumbs .tp-mask {
    width: 500px;
    height: 50px;
    overflow: hidden;
    position: relative;
}

.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer {
    width: 5000px;
    position: absolute;
}

.tp-bullets.tp-thumbs .bullet {
    width: 100px;
    height: 50px;
    cursor: pointer;
    overflow: hidden;
    background: none;
    margin: 0;
    float: left;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	/*filter: alpha(opacity=50);	*/
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
}

.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.tp-thumbs img {
    width: 100%;
}

.tp-bannertimer {
    width: 100%;
    height: 10px;
    position: absolute;
    z-index: 200;
    z-index: 5000;
}

.tp-bannertimer.tp-bottom {
    bottom: 0px !important;
    height: 5px;
}


@media only screen and (min-width: 768px) and (max-width: 959px) {;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive .tp-bullets.tp-thumbs {
        width: 300px !important;
        height: 30px !important;
    }

    .responsive .tp-bullets.tp-thumbs .tp-mask {
        width: 300px !important;
        height: 30px !important;
    }

    .responsive .tp-bullets.tp-thumbs .bullet {
        width: 60px !important;
        height: 30px !important;
    }
}

@media only screen and (min-width: 0px) and (max-width: 479px) {
    .responsive .tp-bullets {
        display: none;
    }

    .responsive .tparrows {
        display: none;
    }
}


.tp-simpleresponsive img {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.tp-simpleresponsive a {
    text-decoration: none;
}

.tp-simpleresponsive ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-simpleresponsive >ul >li {
    list-stye: none;
    position: absolute;
    visibility: hidden;
}

.caption.slidelink a div,
.tp-caption.slidelink a div {
    width: 10000px;
    height: 10000px;
}

.tp-loader {
    background: url(../images/loader.gif) no-repeat 10px 10px;
    background-color: #fff;
    margin: -22px -22px;
    top: 50%;
    left: 50%;
    z-index: 10000;
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
/* tit
-------------------------------------------------------------- */
.tit{
	width:100%;
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	background:url(../images/line.png) no-repeat center;
	text-align:center;
	}
.tit h3 a{
	color:#111;
	font-size:30px;
	font-weight:normal;
	}
.tit p{
	width:100%;
	overflow:hidden;
	color:#999;
	text-align:center;
	margin-top:14px;
	}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	padding-top:58px;
}
.device{ width:100%;overflow:hidden;  }
.device .scroll{ width:100%; height:610px; overflow:hidden; position:relative;margin-top:18px;}
.device .scroll ul{ position:absolute; left:0; top:0; height:610px; overflow:hidden;}
.device .promore{
	width:280px;
	overflow:hidden;
	margin: auto;
	margin-top:16px;
	margin-bottom:60px;
	}
.device .promore a{  
	color:#686363;
	display:block;
	}
.pre, .next {
    width: 48px;
    height: 34px;
    text-align: center;
    border: solid 1px #d2d2d2;
    cursor: pointer;
}
.pre img, .next img{
	margin-top:12px;
}
.promorenr{
	width:138px;
	height:34px;
	overflow:hidden;
	text-align:center;
	line-height:34px;
    border: solid 1px #d2d2d2;
	margin:0 20px;
}
.promorenr:hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
  border:solid 1px #fff;;
}
.promorenr:hover a{
	color:#fff;
}
.device ul{ overflow:hidden;}
.device ul li{ width:380px; margin:14px 10px; overflow:hidden; float:left;}
.device ul li img{ width:380px; height:220px;  }
.device ul li:hover img{
	-webkit-transform: scale(1.15);
    transform: scale(1.15);
	}
.device ul li .scrollimg{display:block;border: solid 2px #f1f1f1;width:380px;overflow:hidden;}
.device ul li .link1{ 
	display:block; 
	width:100%; 
	height:30px; 
	line-height:30px;
	padding-bottom:6px;
	padding-top:16px;
	font-size:16px;
	color:#333;
	border-bottom:solid 1px #e1e1e1; 
	position:relative;
	}
.device ul li .link1::before{ 
	content:"";
	width:12px;
	height:1px;
	background:#333;
	position:absolute;
	bottom:-1px;
	z-index:999;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.device ul li:hover .link1:before{
    width: 100%;
    background-color: #0351a3;
	}
.device ul li:hover .link1{ 
	color:#0351a3;
	}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat top center;
	padding-top:58px;
	padding-bottom:30px;
}
.aboutnr{
	margin-top:33px;
}
.aboutimg{
	width:47%;
	overflow:hidden;
	border:solid 3px #fff;
}
.aboutimg:hover  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.aboutrt{
	width:50%;
	overflow:hidden;
}
.aboutrt h4{
	width:100%;
	overflow:hidden;
	font-size:24px;
	margin-top:16px;
}
.aboutrt span{
	width:36px;
	height:4px;
	overflow:hidden;
	display:block;
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
  margin-top:16px;
}
.aboutrt p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#111;
	line-height:35px;
	margin-top:8px;
}
.aboutmore{
	width:140px;
	height:34px;
	text-align:center;
	line-height:34px;
	border:solid 1px #fff;
	margin-top:12px;
}
.aboutmore a{
	color:#fff;
	display:block;
}
.aboutmore a:hover{
	background:#fff;
	color:#009f90;
}
/* news
-------------------------------------------------------------- */
.news{
	margin-top:55px;
}
.tab{
	width:100%;
	overflow:hidden;
	margin-top:33px;
	}
.newsmenu{
	width:408px;
	overflow:hidden;
	margin:auto;
	}
.newsmenu li{
	width:118px;
	height:36px;
	line-height:36px;
	float:left;
	text-align:center;
	border:solid 1px #e2e2e2;
	margin:0 8px;
	}
.newsmenu li a{
	display:block;
	font-size:16px;
	}
.newsmenu li:hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
	border:solid 1px #fff;
	}
.newsmenu li.hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
	border:solid 1px #fff;
	}
.newsmenu li.hover a{
	color:#fff;
	}
.tab_box{
	width:100%;
	overflow:hidden;
	margin-top: 13px;
}
.newslist{
	width:100%;
	overflow:hidden;
	margin-top:26px;
	}
.newslf{
	width:50%;
	overflow:hidden;
}
.newslf ul{
	width:100%;
	overflow:hidden;
}
.newslf ul li{
	width:100%;
	overflow:hidden;
	line-height:30px;
	border-bottom:solid 1px #bbbbbb;
	padding:12px 0;
}
.newslf ul li a{
	width:80%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	display:block;
}
.newslf ul li span{
	width:20%;
	overflow:hidden;
	font-size:16px;
	color:#999;
	display:block;
	text-align:right;
}
.newslf ul li:hover a{
	color:#00a88e;
	width:78%;
	padding-left:2%;
}
.newslf ul li:hover span{
	background:url(../images/list.jpg) no-repeat right center;
	width:17%;
	padding-right:3%;
}
.newsmore{
	width:138px;
	height:34px;
	text-align:center;
	line-height:34px;
	 margin-top:34px;
	 border: 1px solid;
border-image: -webkit-linear-gradient(90deg,#0453a4, #009f90) 5 10;
border-image: -moz-linear-gradient(90deg,#0453a4, #009f90) 5 10;
border-image: linear-gradient(90deg,#0453a4, #009f90) 5 10;
}
.newsmore a{
	background-image: -webkit-linear-gradient(left, #0453a4, #009f90);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
	display:block;
}
.newsmore:hover{
	background: -webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
}
.newsmore:hover a{
	background-image: -webkit-linear-gradient(left, #fff, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
}
.newsrt{
	width:47.5%;
	overflow:hidden;
}
.newsrt dl{
	width:100%;
	overflow:hidden;
	}
.newsrt dl dt{
	width:100%;
	overflow:hidden;
	}
.newsrt dl dd{
	width:93%;
	overflow:hidden;
	padding:26px 4%;
	background:#00a88e;
	border-top:solid 2px #fff;
	}
.newsrt dl dd .newsbt{
	width:80%;
	overflow:hidden;
	color:#fff;
	font-size:16px;
	border-bottom:solid 1px #80d4c7;
	padding-bottom:14px;
	line-height:28px;
	}
.newsrt dl dd .newsms{
	width:80%;
	overflow:hidden;
	color:#fff;
	padding-top:13px;
	line-height:22px;
	}
.newsrt dl dd .newstime{
	width:20%;
	overflow:hidden;
	font-size:36px;
	color:#fff;
	font-weight:bold;
	text-align:center;
	margin-top:17px;
	}
.newsrt dl dd .newstime span{
	font-size:16px;
	color:#fff;
	}
.newsrt dl:hover dd .newsbt{
	color:#fff;
	}
.newsrt dl:hover dt img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}

/* link
-------------------------------------------------------------- */
.link{
	width:100%;
	overflow:hidden;
	margin-top:12px;
	margin-bottom:13px;
	}
.linknr{
	width:95%;
	overflow:hidden;
	background:url(../images/link.jpg) no-repeat left center;
	font-size:18px;
	color:#00a88e;
	line-height:30px;
	padding:20px 0 20px 2.5%;
	font-weight:bold;
	}
.link a{
	color:#333;
	font-weight:normal;
	margin:0 7px;
	}
.link a:hover{
	color:#00a88e;
	}
.link span{
	color:#00a88e;
	font-weight:normal;
	margin-left:13px;
	margin-right:10px;
	}
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:url(../images/footerbg.jpg) no-repeat top center;
	}
.footernr{
	border-bottom:solid 1px #fff;
	}
.footerlf{
	width:48%;
	overflow:hidden;
	margin-bottom:20px;
}
.botnav{
	width:100%;
	overflow:hidden;
	color:#fff;
	margin-bottom:20px;
	margin-top:36px;
}
.botnav a{
	color:#fff;
}
.footerlf p{
	width:100%;
	overflow:hidden;
	color:#fff;
	line-height:33px;
}
.footerrt{
	width:50%;
	overflow:hidden;
	border-left:solid 1px #fff;
	border-right:solid 1px #fff;
	margin-top:8px;
}
.footerrt p{
	width:100%;
	overflow:hidden;
	color:#fff;
	font-size:18px;
}
.bottel{
	width:85%;
	overflow:hidden;
	background:url(../images/bottel.jpg) no-repeat 4% center;
	padding-left:15%;
}
.bottel span{
	font-size:16px;
	color:#fff;
}
.work{
	color:#fff;
	margin-top:10px;
	width: 70%;
    padding-left: 30%;
}
.bot{
	padding:17px 0;
}
.bot .botlf{
	width:70%;
	overflow:hidden;
	color:#fff;
	line-height:30px;
}
.bot .botlf a{
	color:#fff;
}
.bot .botrt{
	width:30%;
	overflow:hidden;
	color:#fff;
	text-align:right;
	line-height:30px;
}
.bot .botrt a{
	color:#fff;
	text-align:right;
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:400px;
	margin-top:106px;
	background:url(../images/aboutban.jpg) no-repeat top center;
}
/* position
-------------------------------------------------------------- */
.position{
	width:100%;
	height:55px;
	overflow:hidden;
	line-height:55px;
	}
.positionnr{
	font-size:16px;
	position: absolute;
    left: 0;
    top: 0;
	}
.positionnr1{
	font-size:16px;
	}
.positionnr span,.positionnr1 span{
	display:block;
	float:left;
	width:5px;
	height:20px;
	background:#0452a4;
	margin:17.5px 12px 17.5px 0;
	}
.positionnr font,.positionnr1 font{
	color:#0453a4;
	}
.position  .feilei{
	text-align: center;
    margin: auto;
	position: relative;
}
.feilei1{
	width:100%;
	overflow:hidden;
}
.position ul{
	overflow:hidden;
	display: inline-block;
	}
.position ul li{
	float:left;
	padding:0 8px;
	}
.position ul li a{
	float:left;
	}
.position ul li a:hover{
	color:#0452a4;
	}
.position ul li.cur a{
	color:#0452a4;
	}
/* nbg
-------------------------------------------------------------- */
.nbg{
	background:#f2f2f2;
	}
.nbg2{
	background:#fff;
	}
/* nabout
-------------------------------------------------------------- */
.nabout,.npro{
	width:100%;
	overflow:hidden;
	}
.naboutnr{
	width:95%;
	overflow:hidden;
	margin-top:30px;
	padding:30px 2.5%;
	margin-bottom:50px;
	}
.naboutnr h3{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#000;
	line-height:30px;
	margin:10px 0;
	}
.naboutnr .gscf{
	width:360px;
	overflow:hidden;
	margin:auto;
}
.naboutnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:34px;
	}
.naboutnr dl{
	width:360px;
	overflow:hidden;
	float:left;
	margin:4px 10px;
	}
.naboutnr dl dt{
	width:100%;
	overflow:hidden;
	}
.naboutnr dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	line-height:30px;
	margin-top:7px;
	}
.naboutnr dl:hover dt img{
	-webkit-transform: scale(1.15);
    transform: scale(1.15);
	}
.naboutnr dl:hover dd{
	color:#0453a4;
	}
/* npronr
-------------------------------------------------------------- */
.npronr{
	margin-top:30px;
	margin-bottom:50px;
	}
.npronr dl{
	width:380px;
	overflow:hidden;
	float:left;
	margin:10px;
	}
.npronr dl dt{
	width:100%;
	overflow:hidden;
	}
.npronr dl dd{
	width:100%;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-top:15px;
	border-bottom:solid 1px #e1e1e1;
	position: relative;
	padding-bottom:6px;
	}
.npronr dl dd:before{
	position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background-color: #333;
    background-color: ;
    bottom: -1px;
    -webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.npronr dl:hover dd:before{
	width: 100%;
    background-color: #0351a3;
	}
.npronr dl:hover dd{
	color: #0351a3;
	}
.npronr dl:hover dt img{
	-webkit-transform: scale(1.15);
    transform: scale(1.15);
	}
.npro1{
	width:100%;
	overflow:hidden;
	background:#fff;
}
.npronr .nprotp{
	width:47%;
	overflow:hidden;
	position: relative;
}
.npronr .nprojies{
	width:50%;
	overflow:hidden;
}
.npronr h1{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#333;
	margin-top:20px;
	font-weight:normal;
	line-height: 30px;
    margin-bottom: 20px;
	text-align:center;
}
.npronr .nprojies .nprojs{
	width:100%;
	overflow:hidden;
	margin-top:15px;
}
.npronr .nprojies .nprojs p{
	width:100%;
	overflow:hidden;
	font-size: 16px;
	line-height:30px;
	text-indent:2em;
	letter-spacing:0.5px;
}
.npronr .nprojies .zxzx{
	width:160px;
	height:50px;
	line-height:50px;
	background:#945b00 url(../images/tb1.png) no-repeat 30px center;
	margin-top:106px;
}
.npronr .nprojies .zxzx a{
	width:94px;
	display:block;
	font-size:16px;
	color:#fff;
	padding-left:66px;
}
.npronr .nprojies .fx{
	margin-top:106px;
	margin-left:26px;
	line-height:50px;
}
.npronr .nprojies .fx .bdsharebuttonbox{
	margin-top:11px;
}
.npronr .nprojies .zxrx{
	width:100%;
	overflow:hidden;
	color:#333;
	margin-top:26px;
}
.npronr .nprojies .zxrx span{
	font-size:20px;
	color:#333;
}
.nproinfo{
	margin-top:30px;
	margin-bottom:30px;
}
.nproinfo .tjpro{
	width:19%;
	overflow:hidden;
	background:#fff;
	padding:26px 2%;
}
.nproinfo .tjpro h4{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-bottom:15px;
	font-weight:normal;
}
.nproinfo .tjpro dl{
	width:100%;
	overflow:hidden;
	margin-bottom:28px;
}
.nproinfo .tjpro dl dt{
	width:100%;
	overflow:hidden;
	text-align:center;
}
.nproinfo .tjpro dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#333;
	line-height:30px;
}
.nproinfo .nproxq{
	width:71%;
	overflow:hidden;
	background:#fff;
	padding:26px 2%;
}
.nproinfo .nproxq h4{
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e4eaec;
	line-height:30px;
	padding-bottom:8px;
	font-weight:normal;
	position:relative;
}
.nproinfo .nproxq h4 span{
	font-size:16px;
	color:#0351a3;
	margin-left:20px;
}
.nproinfo .nproxq h4:before {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    background-color: #0351a3;
    background-color: ;
    bottom: 0;
    -webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.nproinfo .nproxq .probody{
	width:100%;
	overflow:hidden;
	margin-top:22px;
	margin-bottom: 50px;
}
.nproinfo .nproxq .probody p{
	width:100%;
	overflow:hidden;
	color:#333;
	line-height:30px;
	font-size:16px;
}
.scroll-outer{height:299px;}
#scroll{width:100%;overflow:hidden;}
#scroll .owl-wrapper-outer{margin:0 auto;}
#scroll .item{position:relative;margin:0 auto;overflow:hidden;width: 509px;}
.con4_item{ width:509px; height:299px; }
.con4_item .photo{overflow:hidden;}
.con4_item .rsp{overflow:hidden;position: absolute;top:0;left:0;}
.con4_item .text{position:absolute;left:-306px;top:0px;overflow:hidden;background: rgba(0,0,0,0.5); text-align:center;}
.con4_item .text img{ margin-top:81px;}
.con4_item_bot{ width:306px; height:59px;font-size:16px; color:#333; line-height:30px; padding-top:22px; border-bottom:solid 1px #d2d2d2;}
.con4_item_bot a{ display:block; width:99px; height:24px; border:1px solid #e5e5e7; text-align:center; line-height:24px; margin:0 auto; margin-top:20px;}
#scroll .item:hover .con4_item{ background:url(../images/n1_07.jpg) no-repeat;}
#scroll .item:hover .con4_item_bot .more a{ background:#0363bd; color:#fff;}
.owl-carousel .owl-item {
    float: left;
}
.owl-prev,.owl-next{
	width:16px;
	height:50px;
	text-align:center;
	position: absolute;
	cursor:pointer;
	top:124.5px;
	}
.owl-prev{
	background:url(../images/btnlf.jpg) no-repeat center;
	left:0;
	}
.owl-next{
	background:url(../images/btnrt.jpg) no-repeat center;
	right:0;
	}
/* nnewscont
-------------------------------------------------------------- */
.nnews{
	width:100%;
	overflow:hidden;
}
.nnewsnr{
	width:95%;
	overflow:hidden;
	padding:0 2.5%;
}
.nnewscont{
	background:#fff;
	margin-top:30px;
	margin-bottom:50px;
}
.nnewsnr ul{
	width:100%;
	overflow:hidden;
	}
.nnewsnr ul{
	width:100%;
	overflow:hidden;
	}
.nnewsnr ul li{
	width:100%;
	overflow:hidden;
	margin:26px 0;
	}
.nnewsnr ul li .nnewsbt{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#555;
	line-height:35px;
}
.nnewsnr ul li .nnewsms{
	width:100%;
	overflow:hidden;
	color:#999;
	margin-top:17px;
}
.nnewsnr ul li .nnewstime{
	width:100%;
	overflow:hidden;
	color:#0abbb9;
	position:relative;
	margin-top:13px;
	padding-bottom:32px;
}
.nnewsnr ul li .nnewstime span{
	background:url(../images/list1.jpg) no-repeat left center;
	padding-left:23px;
	color:#0abbb9;
	margin-left:25px;
}
.nnewsnr ul li:hover .nnewsbt{
	color:#0351a3;
}
.nnewsnr ul li:hover .nnewstime{
	color:#0351a3;
}
.nnewsnr ul li .nnewstime:before{
	position: absolute;
    content: "";
    width: 200px;
    height: 1px;
    background-color: #555555;
    bottom: 0;
    -webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.nnewsnr ul li:hover .nnewstime:before{
	width: 100%;
    background-color: #555555;
	}
.nnewsnr ul li:hover .nnewstime span{
	background:url(../images/list2.jpg) no-repeat left center;
	color:#0351a3;
}
.nnews h1{
	width:100%;
	overflow:hidden;
	font-size: 22px;
    color: #333;
	font-weight:normal;
	margin-top:30px;
}
.nnews .fbtime{
	width:100%;
	overflow:hidden;
    color: #999;
	line-height:30px;
	border-bottom:solid 1px #dfdfdf;
	margin-top:10px;
	padding-bottom:17px;
}
.nnews .fbbody{
	width:100%;
	overflow:hidden;
	margin-top:30px;
	margin-bottom:40px;
}
.nnews .fbbody p{
	width:100%;
	overflow:hidden;
	line-height:30px;
    color: #999;
}
/* ncontactlf
-------------------------------------------------------------- */
.ncontact{
	width:100%;
	overflow:hidden;
}
.ncontactlf{
	width:32%;
	overflow:hidden;
}
.ncontactnr{
	background:#fff;
	width: 95%;
    overflow: hidden;
    padding: 30px 2.5%;
	margin-top:30px;
	margin-bottom:50px;
}
.ncontactlf h3,.nmessage h3{
	width:100%;
	overflow:hidden;
	font-size:24px;
	color:#0351a3;
	font-weight:normal;
	margin-bottom:15px;
}
.ncontactlf h3 span,.nmessage h3 span{
	font-size:16px;
	color:#999;
	margin-left:18px;
}
.ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:40px;
}
.ncontactrt{
	width:68%;
	overflow:hidden;
}
.nmessage{
	width:100%;
	overflow:hidden;
}
.nmessage ul{
	width:100%;
	overflow:hidden;
	padding-top:13px;
}
.nmessage ul li{
	width:32%;
	overflow:hidden;
	float:left;
	margin-right:2%;
	margin-bottom:30px;
}
.nmessage ul li input{
	width:91%;
	height:40px;
	line-height:40px;
	overflow:hidden;
	border:solid 1px #d3d3d3;
	padding:0 4%;
}
.nmessage ul li:nth-child(3){
	margin-right:0;
}
.nmessage ul li:last-child{
	width:100%;
	overflow:hidden;
}
.nmessage ul li textarea{
	width:97.8%;
	height:136px;
	line-height:30px;
	overflow:hidden;
	border:solid 1px #d3d3d3;
	padding:0 1%;
}
.nmessage .btn{
	width:100%;
	overflow:hidden;
}
.nmessage .btn input{
	width:132px;
	height:38px;
	text-align:center;
	line-height:38px;
	overflow:hidden;
	background:#0351a3;
	color:#fff;
	cursor:pointer;
	font-size:16px;
}
/* dede_pages
-------------------------------------------------------------- */
.dede_pages{
		width:1200px; 
		overflow:hidden; 
		margin:auto;
		margin-top: 10px;
		text-align: center;
}
.dede_pages ul {
    float: left;
    padding: 12px 0px 12px 0;
	display: inline-block;
	*display: inline;
    *zoom: 1;
}
.dede_pages ul li {
    float: left;
    font-family: Tahoma;
    line-height: 17px;
    margin-right: 6px;
	padding: 5px 10px;
	border:solid 1px #0452a4;
}
.dede_pages ul li.thisclass{
    background-color: #0452a4;
    padding: 5px 10px;
    font-weight: bold;
	color:#fff;
}
.dede_pages ul li.thisclass a{
	color:#fff;
}
.dede_pages ul li a {
    float: left;
    display: block;
	color:#454545;
}
.page1{
	width:100%;
	overflow:hidden;
	margin-top:10px;
}
.page1 p{
	width:100%;
	height:30px;
	line-height:30px;
	overflow:hidden;
	font-size: 16px;
}
.page1 p a{
	color:#454545;
	font-size: 16px;
}
.page1 p a:hover{
	color:#1a9ccb;
}
@media(max-width:1200px) {
	.cont{
		width: 98%;
		padding:0 1%;
		}
	.headernr{
		width: 98% !important;
		padding:0 1%;
		}
	.logo {
		width: 20.8%;
	}
	.nav {
		    width: 64%;
	}
	.tel {
		    width: 10%;
	}
	.device .scroll ul{
		width:100% !important;
	}
	.device ul li {
		width: 32.3%;
		margin: 14px 0.5%;
	}
	.device ul li .scrollimg{
		width:100%;
	}
	.device ul li img{
		width:100% !important;
		height:auto !important;
	}
	.npronr dl{
		width:30.3%;
		margin:10px 1%;
	}
	.npronr dl dt img{
		width:100%;
		height: auto;
	}
}
@media(max-width:1152px) {
	.nav {
		    width: 62%;
	}
	.tel {
		    width: 12%;
	}
	.footerrt p {
		font-size: 16px;
	}
}
@media(max-width:1024px) {
	.device .scroll,.device .scroll ul{
		height: 560px;
	}
	.naboutnr img{
		max-width:100%;
		height:auto;
	}
	.nav .menu > li a{
		font-size:14px;
	}
	.nav .menu > li font{
		font-size:12px;
	}
}
/* yb_conct
-------------------------------------------------------------- */

.yb_conct {
	position: fixed;
	z-index: 9999999;
	top: 200px;
	right: -127px;
	cursor: pointer;
	transition: all .3s ease;
}
.yb_bar ul li {
	width: 180px;
	height: 53px;
	font: 16px/53px 'Microsoft YaHei';
	color: #fff;
	text-indent: 54px;
	margin-bottom: 3px;
	border-radius: 3px;
	transition: all .5s ease;
	overflow: hidden;
	background:-webkit-linear-gradient(left, #0453a4 , #009f90); /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(right, #0453a4 , #009f90); /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(right, #0453a4 , #009f90); /* Firefox 3.6 - 15 */
  background: linear-gradient(to right, #0453a4 , #009f90); /* 标准的语法 */
}
.yb_bar ul li span{
	font: 16px/53px 'Microsoft YaHei';
	color: #fff;
	display:block;
	height: 100%;
}
.yb_bar .yb_top span {
	background:  url(../images/fixCont.png) no-repeat 0 0;
}
.yb_bar .yb_phone span{
	background:  url(/skin/images/fixCont.png) no-repeat 0 -57px;
}
.yb_bar .yb_phone p{
	color: #fff;
	line-height: 53px;
}
.yb_bar .yb_ercode span{
	background:  url(/skin/images/fixCont.png) no-repeat 0 -169px;
}
.hd_qr {
	padding: 0 29px 25px 29px;
}
.yb_QQ a {
	display: block;
	text-indent: 54px;
	width: 100%;
	height: 100%;
	color: #fff;
	background:  url(/skin/images/fixCont.png) no-repeat 0 -113px;
}