@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:"SimHei","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;}
table{
    border-spacing: 0;
    line-height: 30px;
}
table,table tr,table td{
    border:solid 1px #777777; 
}
table tr,table td{
    line-height: 20px;
    padding: 5px 0;
}
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%;
	height:100px;
	position: fixed;
	z-index: 9999;
	top:0; 
	}
.logo{
	width:32%;
	height:70px;
	padding:15px 0;
	text-align:center;
	background:#e5e5e5;
	}
.logo img{
	max-width:100%;
	}
.nav{
	width:58%;
	height:100px;
	background:#179c67;
	}
.ggy{
	width:10%;
	height:64px;
	background:#10d586;
	font-size:22px;
	color:#fff;
	font-weight:bold;
	text-align:center;
	line-height: 32px;
	padding:18px 0;
	}
.ggy a{
	font-size:22px;
	color:#fff;
	font-weight:bold;
	display:block;
}
.ggy span{
	font-size:18px;
	color:#000;
	font-weight:normal;
	}
.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:11%;
	float:left;
	text-align:center;
	}
.nav .menu > li a{
	color:#fff;
	font-size:18px;
	display:block;
	line-height:100px;
	}
.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: #10d586;
	}
.nav .menu > li:hover a{
	color:#fff;
	}
.nav .menu > li:hover font{
	color:#fff;
	}
.nav .menu > li.current{
	background: #10d586;
}
.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:850px !important;
	overflow:hidden;
	top: 100px;
}

.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:#fff !important; 
}
.tp-leftarrow:hover,
.tp-rightarrow:hover {	
	background-color:#fff !important;
 }
/** BULLETS **/
.tp-bullets {
    z-index: 1001;
    position: absolute;
    bottom: 0px;
	width: 174px !important;
}

.tp-bullets.simplebullets.round .bullet {
    cursor: pointer;
    position: relative;
    background: rgba(255,255,255,0);
    width: 22px;
    height: 22px;
	margin:0 11px 114px 11px;
	border-radius:50%;
	border:solid 2px #fff;
    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;
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	height:824px;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	padding-top:126px;
}
.pronr{
	width:1200px;
	margin:auto;
	}
.pro .protit{
	width:100%;
	height:120px;
	overflow:hidden;
	background:url(../images/titbg4.png) no-repeat center;
	}
.pro .protit h3{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-weight:normal;
	}
.pro .protit h3 a{
	color:#01010a;
	font-size:30px;
	}
.pro .protit .protiten{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:23px;
	color:#747b89;
	margin-top:5px;
	}
.pro .protit p{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:25px;
	font-size:16px;
	color:#747b89;
	}
.pro .line{
	width:80px;
	height:2px;
	background:#747b89;
	display:block;
	margin:auto;
	margin-top:12px;
	}
.scroll-outer{padding-top:84px;position: relative;width: 1200px; margin: auto;}
#scroll{width:100%;overflow: hidden;margin:0 auto;}
#scroll .owl-wrapper-outer{margin:0 auto;}
#scroll .item{width:260px;overflow:hidden; margin:0 10px 10px 10px; padding:0 10px 10px 10px;}
.con4_item{ width:100%; }
.con4_item .proimg{ width:100%; overflow:hidden; }
.con4_item .protit{ 
	width:100%;
	height:66px; 
	overflow:hidden; 
	line-height:30px; 
	text-align:center; 
	font-size:22px; 
	color:#fff; 
	background:#179c67;
	padding-top:6px;
	 }
#scroll .item:hover  .protit{
	background:#fff;
	color:#1c1c1c;
	    box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
}
#scroll .item:hover .con4_item img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.con4_item_bot{ width:100%; padding-left:10%; height:54px;font-size:16px; color:#fff; line-height:54px; position:absolute;bottom:0; background:rgba(0,0,0,0.5); }
.con4_item_bot a{ display:block; width:99px; height:54px; border:1px solid #e5e5e7; text-align:center; line-height:54px; margin:0 auto; margin-top:20px;}
.con4_item_bot1{ width:100%;text-align:center;font-weight:bold; height:54px;font-size:20px; line-height:54px; }
.con4_item_bot1 a{ display:block; width:99px; height:54px; border:1px solid #e5e5e7; text-align:center; line-height:54px; 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;}
#scroll .item:hover .promore p{
	background:#ff9600;
	color:#fff;
	border:solid 1px #ff9600;
}
.owl-carousel .owl-item {
    float: left;
}
.owl-prev,.owl-next{
	width:45px;
	height:80px;
	text-align:center;
	position: absolute;
	cursor:pointer;
	margin-top:80px;
	}
.owl-prev{
	background:url(../images/prev.png) no-repeat center;
	left:-65px;
	}
.owl-next{
	background:url(../images/next.png) no-repeat center;
	right:-65px;
	}
.owl-prev:hover{
	background:url(../images/prevh.png) no-repeat center;
	left:-65px;
	}
.owl-next:hover{
	background:url(../images/nexth.png) no-repeat center;
	right:-65px;
	}
.owl-item.loading{
	min-height: 150px;
	background: url(../images/AjaxLoader.gif) no-repeat center center
}
.pro .promore{
	width:100%;
	overflow:hidden;
	padding:10px;
	margin-top:75px;
}
.pro .promore a{
	width:188px;
	height:44px;
	line-height:44px;
	background:#179c67;
	border-radius:15px;
	color:#fff;
	display:block;
	font-size:16px;
	text-align:center;
	box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
	-moz-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
	-webkit-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
	margin:auto;
}
.pro  .promore:hover a{
	background:#10d586;
}
.pro .item:hover .con4_item .protit{
	color:#1c1c1c;
	background:#fff;
	box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
	}
/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	height:776px;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat top center;
	padding-top:174px;
}
.aboutnr{
	margin-top:33px;
}
.aboutimg{
	width:47%;
	overflow:hidden;
	text-align:right;
}
.aboutimg:hover  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.aboutrt{
	width:50%;
	overflow:hidden;
}
.aboutrt ul{
	width:21.5%;
	overflow:hidden;
}
.aboutrt ul li{
	width:100%;
	height:147px;
	overflow:hidden;
	background:url(../images/tbbg.png) no-repeat top left;
}
.aboutrt ul li .about_tb{
	width:100%;
	overflow:hidden;
	text-align:center;
	padding-top:34px;
	padding-bottom:5px;
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
	}
	
.aboutrt ul li:hover .about_tb img{
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
}
.aboutrt ul li p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#fff;
	font-size:18px;
	font-weight:bold;
	line-height:30px;
	}
.aboutrt .aboutinfo{
	width:72%;
	overflow:hidden;
	padding-top:43px;
}
.aboutrt .aboutinfo h3{
	width:100%;
	height:116px;
	overflow:hidden;
	background:url(../images/titbg1.png) no-repeat top right;
	}
.aboutrt .aboutinfo h3 a{
	display:block;
	font-size:18px;
	color:#179c67;
	margin-top:9px;
	width:79%;
	padding-left:21%;
}
.aboutrt .aboutinfo h3 i{
	display:block;
	font-size:40px;
	color:#363955;
	margin-top:30px;
	}
.aboutrt .aboutinfo p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#363955;
	text-indent:2em;
	line-height:34px;
	margin-top:32px;
	}
.aboutrt .aboutinfo .aboutmore{
	width:162px;
	height:44px;
	text-align:center;
	line-height:44px;
	border-radius:15px;
	margin:34px 5px 5px 5px;
	background:#179c67;
	box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
	-moz-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
	-webkit-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
}
.aboutrt .aboutinfo .aboutmore a{
	color:#fff;
	display:block;
	font-size:16px;
}
.aboutrt .aboutinfo .aboutmore:hover{
	background:#10d586;
}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	height:752px;
	overflow:hidden;
	background:url(../images/newsbg.jpg) no-repeat top center;
	padding-top:198px;
}
.news .newslf{
	width:48%;
	overflow:hidden;
	padding:0 1%;
	}
.news .newslf dl{
	width:96%;
	overflow:hidden;
	padding:12px 2%;
	background:#fff;
	box-shadow: 0px 2px 5px rgba(156,156,156,0.75);
	-moz-box-shadow: 0px 2px 5px rgba(156,156,156,0.75);
	-webkit-box-shadow: 0px 2px 5px rgba(156,156,156,0.75);
	margin-bottom:48px;
	}
.news .newslf dl dt{
	width:15%;
	overflow:hidden;
	text-align:center;
	background:#179c67;
	color:#fff;
	font-size:15px;
	padding:8px 0 12px 0;
	float:left;
	}
.news .newslf dl dt span{
	font-size:30px;
	color:#fff;
	display:block;
	margin-bottom:5px;
	}
.news .newslf dl dd{
	width:82%;
	overflow:hidden;
	float:right;
	}
.news .newslf dl dd .newstit{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#101010;
	line-height:37px;
	}
.news .newslf dl dd .newsms{
	width:100%;
	overflow:hidden;
	font-size:15px;
	line-height:22px;
	color:#8d8d8d;
	}
.news .newslf dl:hover dd .newstit{
	color:#179c67;
}
.news .newslf dl:hover dd .newsms{
	color:#179c67;
}
.news .newsrt{
	width:46%;
	height:223px;
	background:url(../images/titbg2.png) no-repeat top right;
	}
.news .newsrt h3{
	width:100%;
	overflow:hidden;
	}
.news .newsrt h3 i{
	width:90%;
	overflow:hidden;
	display:block;
	font-size:30px;
	color:#363955;
	margin-top:40px;
	padding-left:10%;
	}
.news .newsrt h3 a {
    display: block;
    font-size: 18px;
    color: #179c67;
    margin-top: 6px;
    width: 75%;
    padding-left: 25%;
	font-weight:normal;
}
.news .newsrt img{
	margin-top:10px;
	}
.news .newsrt:hover  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.news .newsmore{
	width: 100%;
    overflow: hidden;
    padding: 10px;
    margin-top: 41px;
}
.news .newsmore a{
	width: 188px;
    height: 44px;
    line-height: 44px;
    background: #179c67;
    border-radius: 15px;
    color: #fff;
    display: block;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
    -moz-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
    -webkit-box-shadow: 0px 4px 4px rgba(91,91,91,0.75);
    margin: auto;
}
.news .newsmore a:hover{
	background:#10d586;
}
/* contact
-------------------------------------------------------------- */
.contact{
	width:100%;
	height:759px;
	overflow:hidden;
	padding-top:114px;
	background:url(../images/contactbg.jpg) no-repeat top center;
	}
.contact .contacttit{
	width:100%;
	height:120px;
	overflow:hidden;
	background:url(../images/titbg4.png) no-repeat center;
	}
.contact .contacttit h3{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-weight:normal;
	}
.contact .contacttit h3 a{
	color:#01010a;
	font-size:30px;
	}
.contact .contacttit .contacttiten{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:23px;
	color:#747b89;
	margin-top:5px;
	}
.contact .contacttit p{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:25px;
	font-size:20px;
	color:#747b89;
	}
.contact .line{
	width:80px;
	height:2px;
	background:#747b89;
	display:block;
	margin:auto;
	margin-top:12px;
	}
.contactnr{
	background:#fff;
	margin-top:60px;
	padding-top: 30px;
	}
.contactnr dl{
	width:25%;
	overflow:hidden;
	float:left;
	margin-bottom:29px;
	}
.contactnr dl dt{
	width:100%;
	overflow:hidden;
	text-align:center;
	padding-bottom:11px;
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
	}
.contactnr dl:hover dt img{
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
}
.contactnr dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	color:#101010;
	line-height:30px;
	}
.map1{
	width:100%;
	height:336px;
	margin-bottom:22px;
	}
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#345a9b;
	border-bottom:solid 1px #a9b7dc;
	}
.footernr{
	margin-top:67px;
	margin-bottom:41px;
	}
.footernr ul{
	width:100%;
	overflow:hidden;
	}
.footernr ul li{
	width:11.2%;
	overflow:hidden;
	float:left;
	margin-right: 3%;
	}
.footernr ul li h3{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#fff;
	font-weight:normal;
	line-height:30px;
	margin-bottom:6px;
	}
.footernr ul li p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	}
.footernr ul li p a{
	width:100%;
	overflow:hidden;
	color:#a9b7dc;
	}
.bot{
	width:100%;
	overflow:hidden;
	background:#345a9b;
	color:#a9b7dc;
	text-align:center;
	line-height:30px;
	padding:36px 0 46px 0;
}
.bot a{
	color:#a9b7dc;
}
/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:360px;
	margin-top:100px;
	background:url(../images/aboutban.jpg) no-repeat top center;
}
/* position
-------------------------------------------------------------- */
.position{
	width:100%;
	height:48px;
	overflow:hidden;
	line-height:48px;
	border-bottom:solid 1px #7e7e7e;
	}
.positionnr{
	font-size:16px;
	color:#01010a;
	}
.positionnr a{
	font-size:16px;
	color:#179c67;
	}
/* nabout
-------------------------------------------------------------- */
.nabout h3,.nfzlc h3{
	width:100%;
	overflow:hidden;
	color:#01010a;
	font-size:30px;
	text-align:center;
	line-height:35px;
	margin-bottom:30px;
	margin-top:38px;
	}
.naboutnr{
	width:100%;
	overflow:hidden;
	}
.naboutnr p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	color:#01010a;
	font-size:16px;
	}
.nqywh{
	width:100%;
	overflow:hidden;
	margin-bottom:70px;
	}
.nqywh dl{
	width:298px;
	height:318px;
	overflow:hidden;
	margin:0 1px;
	float:left;
	cursor:pointer;
	}
.nqywh dl:first-child{
	background:url(../images/qywhbg1.jpg) no-repeat top left;
}
.nqywh dl:nth-child(2){
	background:url(../images/qywhbg2.jpg) no-repeat top left;
}
.nqywh dl:nth-child(3){
	background:url(../images/qywhbg3.jpg) no-repeat top left;
}
.nqywh dl:last-child{
	background:url(../images/qywhbg4.jpg) no-repeat top left;
}
.nqywh dl dt{
	width:100%;
	overflow:hidden;
	text-align:center;
	padding-top:69px;
	padding-bottom:23px;
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
	}
.nqywh dl:hover dt img{
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
	}
.nqywh dl dd{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:16px;
	line-height:30px;
	color:#fff;
	font-weight:bold;
	}
.nryzz{
	width:100%;
	height:654px;
	overflow:hidden;
	background:url(../images/ryzzbg.jpg) no-repeat top center;
	}
.nryzz h3{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:40px;
	color:#fff;
	line-height: 50px;
	margin-top:66px;
	}
.nryzz ul{
	width:100%;
	overflow:hidden;
	margin-top:55px;
	}
.nryzz ul li{
	width:300px;
	overflow:hidden;
	float:left;
	margin: 0 50px;
	text-align: center;
	}

.nryzz ul li:hover  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.t{
	position:relative;
}
.t #nryzz{
	position:absolute;
	top:-100px;
}
.nfzlc{
	width:1200px;
	margin:auto;
	padding-top: 26px;
	}
.scrollpic {
	width: 1200px;
	margin:52px auto 70px auto;
	position: relative;
  	z-index:99;
}
#myscroll {
	display: block;
	width:1200px;
	position: relative;
	height: 398px;
	overflow: hidden;
	margin:0 auto;
}
#myscroll #myscrollbox {
	display: block;
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	width: 1000000px;
}
#myscroll ul {
	display: block;
	float: left;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#myscroll ul li {
	display: block;
	float: left;
	padding: 0;
	width:300px;
	height:371px;
	position: relative;
}
#myscroll ul li dl{
	width:270px;
	height:96px;
	padding:15px;
	position: absolute;
	text-align: left;
	color:#fff;
}
#myscroll ul li dl dt{
	font-size:20px;
	color:#fff;
	line-height:30px;
}
#myscroll ul li dl dd{
	font-size:13px;	
	color:#fff;
	line-height:26px;
}
#myscroll ul li dl dd p{
	font-size:13px;
	color:#fff;
	line-height:26px;
}
#myscroll ul li dl:hover{
	cursor: pointer;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled="true", startColorstr="#CCFFFFFF", endColorstr="#CCFFFFFF");
	background-color:#45b085;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;	
}
#myscroll ul li:nth-of-type(odd){
	background:url(../images/his_bg1.png) no-repeat top center;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
} 
#myscroll ul li:nth-of-type(odd) dl{
	top:0px;	
}
#myscroll ul li:nth-of-type(even){
	background:url(../images/his_bg2.png) no-repeat bottom center;
}
#myscroll ul li:nth-of-type(even) dl{
	bottom:0px;	
}
#mybtns {
	margin: 10px 0;
	width: 1100px;
	display: block;
	height: 42px;
}
#mybtns a {
	width: 42px;
	height: 42px;
	display: block;
	float: right;
	margin-right: 1px;
	background-color: #c1c1c1;
	margin-left:10px;
}
#mybtns a:hover {
	background-color: #347fdc;
}
#mybtns a:hover, #myscroll, #mybtns a, #myscroll a:hover .intro, #myscroll a .intro, #myscroll #myscrollbox {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#left,#right{
	display:block;	
	position: absolute;
	top:50%;
    margin-top: -35px;
    font-size:60px;
    color:#25a070;
    font-family: serif;
}
#left {	
    left:-66px;    
}
#left:hover{
	opacity: 0.8;
}
#right {	
    right:-66px;
}
#right:hover{
	opacity: 0.8;
}
#kinMaxShow {
	visibility: hidden;
	width: 100%;
	height: 500px;
	overflow: hidden;
}
/* nrczp
-------------------------------------------------------------- */
.nrczp{
	margin-top:37px;
	margin-bottom: 40px;
	}
.nrczp .nrczplf{
	width:50%;
	overflow:hidden;
	}
.nrczp .nrczplf h4{
	width:96%;
	overflow:hidden;
	background:url(../images/titbg5.jpg) no-repeat left;
	font-size:18px;
	color:#fff;
	height:33px;
	line-height:33px;
	padding-left:4%;
	margin-bottom:16px;
	}
.nrczp .nrczplf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#01010a;
	line-height:30px;
	}
.nrczp .nrczprt{
	width:48%;
	overflow:hidden;
	padding-top: 64px;
	}
.nrczp .nrczprt:hover  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.nrczpnr2{
	width:100%;
	overflow:hidden;
	margin-top:56px;
	}
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	width:33%;
	margin-top:30px;
	margin-bottom:50px;
	}
.ncontact dl{
	width:94%;
	overflow:hidden;
	float:left;
	background:#efefef;
	padding:25px 0;
	margin-bottom:15px;
	}
.ncontact dl dt{
	width:26%;
	overflow:hidden;
	float:left;
	text-align:right;
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
	}
.ncontact dl:hover dt img{
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	transform: rotateZ(360deg);
}
.ncontact dl dt img{
	height:59px;
	}
.ncontact dl dt .img2{
	display:none;
	}
.ncontact dl dd{
	width:69%;
	overflow:hidden;
	float:right;
	color:#179c67;
	font-size:16px;
	line-height: 27px;
	}
.ncontact dl dd span{
	font-size:20px;
	color:#179c67;
	}
.ncontact dl:hover{
	background:#179c67;
	}
.ncontact dl:hover dd{
	color:#fff;
	}
.ncontact dl:hover dd span{
	color:#fff;
	}
.ncontact dl:first-child{
	margin-left:0;
	}
.ncontact dl:hover dt .img1{
	display:none;
	}
.ncontact dl:hover dt .img2{
	display:block;
	float:right;
	}
.mapnr{
	width:67%;
	overflow:hidden;
	margin-top:30px;
	margin-bottom:50px;
	}
.map{
	width:100%;
	height:480px;
	}
/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:42px;
	margin-bottom:30px;
	}
.nnews h3{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:24px;
	color:#203857;
	font-weight:normal;
	}
.nnewsnr{
	width:100%;
	overflow:hidden;
	}
.nnewsnr dl{
	width:100%;
	overflow:hidden;
	margin:32px 0;
	}
.nnewsnr dl dt{
	width:22%;
	overflow:hidden;
	float:left;
	}
.nnewsnr dl:hover dt  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.nnewsnr dl dd{
	width:75%;
	overflow:hidden;
	float:right;
	}
.nnewsnr dl dd .date,.nnewsnr dl dd .nnewstit{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#282828;
	line-height:34px;
	}
.nnewsnr dl dd .date{
	margin-top:11px;
	}
.nnewsnr dl dd .nnewsms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#606060;
	line-height:34px;
	}
.nnewsnr dl:hover{
	background:#179c67;
	}
.nnewsnr dl:hover dd .date,.nnewsnr dl:hover dd .nnewstit,.nnewsnr dl:hover dd .nnewsms{
	color:#fff;
	}
.nnewsnr h1{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size: 20px;
    color: #262635;
	line-height: 35px;
	}
.nnewsnr .fbtime{
	width:100%;
	overflow:hidden;
	text-align:center;
	border-bottom: dashed 1px #a9a9a9;
    padding-bottom: 25px;
	line-height:30px;
	}
.nnewsnr .nnewsinfo{
	width:100%;
	overflow:hidden;
	margin-top: 20px;
	margin-bottom:30px;
	}
.nnewsnr .nnewsinfo p {
    width: 100%;
    overflow: hidden;
    line-height: 30px;
    font-size: 16px;
}
/* npro
-------------------------------------------------------------- */
.npro{
	margin-top:25px;
	margin-bottom:50px;
	}
.menulf{
	width:222px;
	overflow:hidden;
	}
.menulist{
	width:100%;
	overflow:hidden;
	}
.menulist h3{
	width:92%;
	height:55px;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	background:#179c67 url(../images/list1.png) no-repeat 92% center;
	border-radius:5px;
	padding-left:8%;
	line-height: 23px;
	padding-top:15px;
	}
.menulist h3 span,.contactlf h3 span{
	color:#d3d3d3;
	font-size:12px;
	font-weight:normal;
	}
.menulist ul{
	width:99%;
	overflow:hidden;
	border:solid 1px #e8e8e8;
	border-top:none;
	}
.menulist ul li{
	width:84%;
	overflow:hidden;
	padding:20px  8%;
	border-bottom:solid 1px #e8e8e8;
	}
.menulist ul li a{
	color:#01010a;
	}
.menulist ul li a:hover{
	color: #179c67;
}
.menulist ul li.cur a{
	color: #179c67;
}
.contactlf{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	}
.contactlf h3{
	width:92%;
	height:55px;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	background:#179c67 url(../images/list1.png) no-repeat 92% center;
	border-radius:5px;
	padding-left:8%;
	line-height: 23px;
	padding-top:15px;
	}
.contactlfnr{
	width:99%;
	overflow:hidden;
	border:solid 1px #e8e8e8;
	border-top:none;
	}
.contactlfnr p{
	width:100%;
	overflow:hidden;
	text-align:center;
	color:#01010a;
	font-size:20px;
	font-weight:bold;
	line-height:32px;
	}
.contactlfnr p:first-child{
	margin-top:14px;
	}
.contactlfnr dl{
	width:100%;
	overflow:hidden;
	border-top:solid 1px #e8e8e8;
	}
.contactlfnr dl dt{
	width:100%;
	overflow:hidden;
	font-size:16px;
	text-align:center;
	color:#01010a;
	padding-top:15px;
	margin-bottom:8px;
	}
.contactlfnr dl dd{
	width:100%;
	overflow:hidden;
	padding-bottom:22px;
	}
.contactlfnr dl dd a{
	display:block;
	width:125px;
	height:28px;
	line-height:28px;
	text-align:center;
	margin:auto;
	background:#179c67;
	color:#fff;
	}
.contrt{
	width:900px;
	overflow:hidden;
	}
.contrt .nprofl{
	width:100%;
	overflow:hidden;
	}
.contrt .nprofl ul{
	width:100%;
	overflow:hidden;
	}
.contrt .nprofl ul li{
	line-height:40px;
	padding:0 15px;
	float:left;
	border:solid 1px #179c67;
	margin-right:16px;
	margin-bottom:14px;
	}
.contrt .nprofl ul li a{
	color:#179c67;
	display:block;
	}
.contrt .nprofl ul li:hover{
	background:#179c67;
	}
.contrt .nprofl ul li:hover a{
	color:#fff;
	}
.contrt .nprofl ul li.cur{
	background:#179c67;
	}
.contrt .nprofl ul li.cur a{
	color:#fff;
	}
.npronr{
	width:100%;
	overflow:hidden;
	}
.npronr img{
	max-width:100%;
	height:auto;
	}
.npronr dl{
	width:260px;
	overflow:hidden;
	float:left;
	margin:20px;
	    box-shadow: 0px 0px 9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 9px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 9px rgba(0,0,0,0.75);
	background:#dddddd;
	}
.npronr dl dt{
	width:100%;
	overflow:hidden;
	}
.npronr dl dt img{
	width:260px;
	height:260px;
	}
.npronr dl:hover dt  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.npronr dl dd{
	width:100%;
	overflow:hidden;
	font-size:17px;
	color:#1c1c1c;
	text-align:center;
	padding-top: 15px;
    height: 59px;
	}
.npronr dl:hover dd{
	background:#179c67;
	color:#fff;
	}
.npronr h1{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size: 18px;
    color: #424242;
	line-height:30px;
	border-bottom:dashed 1px #ccc;
	padding-bottom:10px;
	}
.npronr .nporinfo{
	width:60%;
	overflow:hidden;
	margin-top:20px;
	}
.npronr .nporinfo p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:16px;
	}
.nporimg{
	margin-top:30px;
	width:100%;
	overflow:hidden;
	text-align:center;
}
.npronr .sbjs{
	width:100%;
	overflow:hidden;
	text-indent:2em;
	font-size:18px;
	color:#01010a;
	line-height:30px;
}
.nporimglist{
	width:40%;
	overflow:hidden;
}
.nsbzsnr{
	width:100%;
	overflow:hidden;
	}
.nsbzsnr dl{
	width:600px;
	overflow:hidden;
	margin:auto;
	margin-bottom:30px;
	}
.nsbzsnr dl dt{
	width:100%;
	overflow:hidden;
	}
.nsbzsnr dl dt img{
	max-width:100%;
	height:auto;
	}
.nsbzsnr dl:hover dt  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.nsbzsnr dl dd{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#1c1c1c;
	text-align:center;
	line-height:74px;
	    box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
	}
.nsbzsnr dl:hover dd{
	background:#179c67;
	color:#fff;
	}
.nsbzsnr h1{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size: 18px;
    color: #424242;
	line-height:30px;
	border-bottom:dashed 1px #ccc;
	padding-bottom:10px;
	}
.nsbzsnr .nporinfo{
	width:100%;
	overflow:hidden;
	margin-top:20px;
	}
.nsbzsnr .nporinfo p{
	width:100%;
	overflow:hidden;
	line-height:30px;
	font-size:16px;
	}
.nporimg{
	margin-top:30px;
	width:100%;
	overflow:hidden;
	text-align:center;
}
.nsbzsnr .sbjs{
	width:100%;
	overflow:hidden;
	text-indent:2em;
	font-size:18px;
	color:#01010a;
	line-height:30px;
	margin-bottom:37px;
}
.nsbzsnr .sbjs p{
	width:100%;
	overflow:hidden;
	
	font-size:18px;
	color:#01010a;
	line-height:30px;
	margin-bottom:37px;
}
.nporimg img{
	max-width:100%;
	height:auto;
}
/* ncase
-------------------------------------------------------------- */
.ncase{
	margin-top:25px;
	margin-bottom:50px;
}
.ncase dl{
	width:301px;
	overflow:hidden;
	float:left;
	padding:10px;
	margin:10px 39.5px;
	}
.ncase dl dt{
	width:100%;
	overflow:hidden;
	}
.ncase dl:hover dt  img{
	-webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.ncase dl dd{
	width:100%;
	overflow:hidden;
	font-size:18px;
	color:#1c1c1c;
	text-align:center;
	line-height:74px;
	    box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 4px 5px rgba(0,0,0,0.75);
	}
.ncase dl:hover dd{
	background:#179c67;
	color:#fff;
	}
/* dede_pages

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

.dede_pages{
		width:100%; 
		overflow:hidden; 
		margin-top: 10px;
		text-align: center;
}

.dede_pages ul {
    padding: 12px 0px 12px 0;
	display: inline-block;
}

.dede_pages ul li {
    float: left;
    line-height: 17px;
    margin-right: 6px;
	padding: 5px 10px;
	border:solid 1px #179c67;
}

.dede_pages ul li.thisclass{
    background-color: #179c67;
    padding: 5px 10px;
    font-weight: bold;
	color:#fff;
}

.dede_pages ul li.thisclass a{
	color:#fff;
}

.dede_pages ul li:hover{
    background-color: #179c67;
}
.dede_pages ul li:hover 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:#179c67;
}

/* kefu */
.custom_service p img {display: inline; margin-top:-5px; vertical-align:middle;}
.scrollsidebar{position:absolute; z-index:999; top:240px;}
.side_content{width:154px; height:auto; overflow:hidden; float:left; }
.side_content .side_list {width:154px;overflow:hidden;}
.show_btn{ width:0; height:112px; overflow:hidden; margin-top:50px; float:left; cursor:pointer;}
.show_btn span { display:none;}
.close_btn{width:24px;height:24px;cursor:pointer;}
.side_title,.side_bottom,.close_btn,.show_btn {
    background:url(../images/sidebar_bg.png) no-repeat;
    
}
.side_title {height:46px;}
.side_bottom { height:8px;}
.side_center {font-family:Verdana, Geneva, sans-serif; padding:5px 12px; font-size:12px;}
.close_btn { float:right; display:block; width:21px; height:16px; margin:16px 10px 0 0; _margin:16px 5px 0 0;}
.close_btn span { display:none;}
.side_center .custom_service p { text-align:center; padding:6px 0; margin:0; vertical-align:middle;}
.other  { text-align:center;border-bottom:1px solid #ddd;border-top:1px solid #ddd}
.other p { padding:5px 0; _height:16px; margin:0;color: #666666;}
.msgserver { text-align:center; margin-bottom:5px;}
.msgserver a { background:url(../images/sidebar_bg.png) no-repeat -119px -115px; padding-left:22px;}
.kfewm { 
	width:100%;
	overflow:hidden;
	}
.kfewm p{
	text-align:center;
}

/* green skin  */
.side_green .side_title {background-position:-349px 0;}
.side_green .side_center {background:url(../images/green_line.png) repeat-y center;}
.side_green .side_bottom {background-position:-349px -50px;}
.side_green .close_btn {    background-position: -20px 0;}
.side_green .close_btn:hover {    background-position: -20px 0;}
.side_green .show_btn {background-position:-147px 0;}
.side_green .msgserver a {color:#76a20c;}

@media(max-width:1440px) {
	.ggy{
		font-size:20px;
	}
	.ggy span{
		font-size:16px;
	}
}
@media(max-width:1280px) {
	.ggy{
		font-size:18px;
	}
	.ggy span{
		font-size:14px;
	}
	.nav .menu > li a{
		font-s-resize:16px;
	}
}
@media(max-width:1200px) {
	.cont{
		width: 98%;
		padding:0 1%;
		}
	.nfzlc,#myscroll{
		width:100%;
	}
	.headernr{
		width: 98% !important;
		padding:0 1%;
		}
	.logo {
		width: 26%;
	}
	.logo img{
		margin-top:15px;
	}
	.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;
	}
}
@media(max-width:1152px) {
	.nav {
		    width: 63%;
	}
	.ggy{
		width:11%;
	}
	.tel {
		    width: 12%;
	}
}
@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;
	}
	.footerrt {
		width: 35%;
	}
}
