/** 通用 **/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 14px;
  color: #333;
}
body,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: #333;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.lf {
  float: left;
}
.rf {
  float: right;
}
.clearFix:after,
.container:after,
ul:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
/*** 页首 ***/
header {
  width: 100%;
  height: 90px;
  position: relative;
}
header .logo {
  float: left;
  width: 40%;
  max-width: 235px;
  height: 90px;
  line-height: 90px;
}
header .nav-list {
  width: 100%;
  padding-left: 300px;
  position: relative;
}
header .nav-list ul {
  padding-right: 100px;
}
header .nav-list ul li {
  float: left;
  height: 90px;
  line-height: 90px;
  font-size: 16px;
  font-weight:600;
  padding: 0 11px;
  cursor: pointer;
  position: relative;
}
header .nav-list ul li a {
  display: block;
}
header .nav-list ul li div {
  width: 100%;
  height: 3px;
  background: #FD8D15;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .4s linear;
}
header .nav-list ul .active a,
header .nav-list ul li:hover a {
  color: #FD8D15;
}
header .nav-list > div {
  float: right;
  width: 40px;
  height: 40px;
  border: 1px solid #aaa;
  margin-top: 25px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
header .nav-list .seek {
  width: auto;
  min-width: 40px;
  position: absolute;
  right: 50px;
  z-index: 9;
  background: #fff;
}
header .nav-list .seek div {
  display: inline-block;
  width: 40px;
  height: 100%;
  background: url(../images/icon.png) 7px 7px no-repeat;
  vertical-align: middle;
}
header .nav-list .seek form {
  float: right;
  width: 0;
  transition: all .3s linear;
}
header .nav-list .seek input {
  width: 100%;
  height: 38px;
  overflow: hidden;
  border: none;
  outline: none;
  padding-right: 10px;
}
header .nav-list .seek:hover form {
  width: 150px;
}
header .nav-list .guide,
header .nav-list .menu {
  padding: 12px 9px;
  cursor: pointer;
}
header .nav-list .guide:hover,
header .nav-list .menu:hover {
  box-shadow: 1px 1px 1px 1px #ddd;
}
header .nav-list .guide span,
header .nav-list .menu span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  background: #B0B0B0;
}
header .nav-list .menu {
  display: none;
}
header .nav-list-child {
  width: 100%;
  height: 0;
  background: #1B74E1;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 10;
  overflow: hidden;
  transition: height .3s linear;
}
header .nav-list-child ul {
  display: table;
  margin-left: 250px;
}
header .nav-list-child ul li {
  float: left;
  line-height: 50px;
  font-size: 16px;
  font-weight:600;
  padding: 0 12px;
}
header .nav-list-child ul li a {
  color: rgba(255, 255, 255, 0.5);
}
header .nav-list-child ul .active a,
header .nav-list-child ul li:hover a {
  color: #eee;
}
header .nav-list-child .box {
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
header .phone_model {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(3, 3, 3, 0.5);
  z-index: 90;
  -webkit-transition: all .5s,background 1s;
  -moz-transition: all .5s,background 1s;
  -o-transition: all .5s,background 1s;
  transition: all .5s,background 1s;
}
header .phone_model div {
  width: 70%;
  position: fixed;
  top: 0;
  bottom: 0;
  background: #F3F3F3;
}
header .hide {
  left: -100%;
  background: rgba(3, 3, 3, 0.1);
}
/*** 页尾 ***/
footer {
  background: #10498E;
  color: #eee;
  padding: 20px 0;
  font-weight:600;
}
footer .left {
  float: left;
  width: 50%;
  line-height: 35px;
}
footer .right {
  float: right;
  width: 50%;
  line-height: 35px;
  position: relative;
 }
footer .right p{
  line-height:35px;
}
footer .right p:nth-child(1){
  float:left;
  padding-left:35px;
  background:url(../images/b_tell.png) no-repeat;
}
footer .right p:nth-child(2){
  float:left;
  padding-left:35px;
  margin-left:50px;
  background:url(../images/b_map.png) no-repeat;
}
footer .right p:nth-child(3){
    clear:both;
}
footer .right .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .right a {
  color: #eee;
}
footer .right a:hover {
  color: #FF880A;
}
footer .left a {
  color: #eee;
}
footer .left a:hover {
  color: #FF880A;
}
/*** 导航地图 ***/
.nav_map {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 996;
  overflow: hidden;
  transition: all 0.8s ease-out;
}
.nav_map .content {
  width: 100%;
  max-width: 1200px;
  height: 70%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  background: #1B74E1;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.nav_map .content .box {
  width: 750px;
  height: 520px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -260px;
  margin-left: -375px;
}
.nav_map .content .box .parent > li {
  float: left;
  width: 150px;
  height: 260px;
  border: 2px solid #ddd;
  border-left: 0;
}
.nav_map .content .box .parent > li:nth-child(n+6) {
  border-top: 0;
}
.nav_map .content .box .parent > li:nth-child(5n-4) {
  border-left: 2px solid #ddd;
}
.nav_map .content .box .parent > li p,
.nav_map .content .box .parent > li a {
  color: #eee;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
}
.nav_map .content .box .parent > li p {
  padding: 10px 0;
  border-bottom: 2px solid #eee;
}
.nav_map .content .box .parent > li .child {
  padding: 10px 0;
  line-height: 35px;
}
.nav_map .content .box .parent > .active p a,
.nav_map .content .box .parent .child > .active a {
  color: #FD8D15;
}
.nav_map .content .box .parent a:hover {
  color: #FD8D15;
  opacity: .85;
}
/*** 搜索 ***/
.search {
  margin-bottom: 40px;
}
.search a {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}
.search .select-list {
  margin-bottom: 40px;
}
.search .select-list ul li {
  float: left;
  margin-bottom: 10px;
}
.search .select-list ul li a {
  display: inline-block;
  padding: 5px 10px;
  background: #1B9F85;
  border: 1px solid #1B9F85;
  color: #eee;
  margin-right: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.search .select-list ul li .color-alt,
.search .select-list ul li a:hover {
  color: #1B9F85;
  background: transparent;
}
.search .blog-post {
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.search .blog-post:last-child {
  border: 0;
}
.search .blog-post .permalink h4 a {
  color: #555;
  font-size: 20px;
  line-height: 40px;
}
.search .blog-post .permalink a:hover {
  color: #1B9F85;
}
.search #pages a,
.search #pages span {
  padding: 3px 10px;
  border: 1px solid #ddd;
  background: #ddd;
  color: #fff;
  margin: 0 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.search #pages span,
.search #pages a:first-child {
  background: transparent;
  color: #777;
  border-color: transparent;
}
.search #pages a:hover {
  color: #777;
  background: transparent;
}
.search .error {
  font-size: 18px;
}
@media screen and (max-width: 1199px) {
  header .nav-list ul {
    width: 70%;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    z-index: 92;
    padding: 0 10px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .8s;
  }
  header .nav-list ul:before {
    content: 'Menu';
    display: block;
    width: 200%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #aaa;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
    left: -50%;
  }
  header .nav-list ul li {
    clear: both;
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #ddd;
  }
  header .nav-list ul li > div {
    display: none;
  }
  header .nav-list .guide {
    display: none;
  }
  header .nav-list .menu {
    display: block;
  }
  header .nav-list-child {
    width: 70%;
    height: auto;
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    background: transparent;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 91;
  }
  header .nav-list-child .box {
    position: static;
  }
  header .nav-list-child ul {
    position: absolute;
    right: -200%;
    width: 90%;
    margin: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  header .nav-list-child ul:before {
    content: 'Menu';
    display: block;
    width: 200%;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #aaa;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    position: relative;
    left: -50%;
  }
  header .nav-list-child ul li {
    clear: both;
    width: 100%;
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #ddd;
  }
  header .nav-list-child ul li a {
    display: block;
    color: #333;
  }
  header .nav-list-child ul .active a {
    color: #FD8D15;
  }
  footer .left li:nth-child(n+2),
  footer .right {
    display: none;
  }
  footer .left {
    width: 100%;
    color: #ddd;
    text-align: center;
  }
}
@media screen and (max-width: 667px) {
  .container > h1,
  .container > h2 {
    font-size: 24px;
  }
  header .logo img {
    width: 100%;
    vertical-align: middle;
  }
}
.zoomify { cursor: pointer; cursor: -webkit-zoom-in; cursor: zoom-in; }
.zoomify.zoomed { cursor: -webkit-zoom-out; cursor: zoom-out; padding: 0; margin: 0; border: none; border-radius: 0; box-shadow: none; position: relative; z-index: 1501; }
.zoomify-shadow { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; display: block; z-index: 1500; background: rgba(0, 0, 0 , .3); opacity: 0; }
.zoomify-shadow.zoomed { opacity: 1; cursor: pointer; cursor: -webkit-zoom-out; cursor: zoom-out; }

footer .right p a#gzh_code{ position:relative; vertical-align:middle; margin-right:165px;}
footer .right p a#gzh_code:hover{ color:#eee;}
footer .right p .code img{ display:block; width:90px; height:90px; position:absolute; right:0; top:35px; margin-right:-33px; z-index:9; background-color:#fff; padding:5px; -webkit-transition:all .5s; -moz-transition:all .5s; -o-transition:all .5s; transition:all .5s;  -webkit-transform:scale(0); -moz-transform:scale(0); -o-transform:scale(0); transform:scale(0); opacity:0;}
footer .right p .code{ display:inline-block; width:30px; height:30px; background:#fff url(../images/wx.png) 6px 6px no-repeat / 70%; vertical-align:middle; margin-left:5px; border-radius:50%; -webkit-transition:all .5s; -moz-transition:all .5s; -o-transition:all .5s; transition:all .5s; background-color:#1EC354; background-position:6px -16px;}
footer .right p a#gzh_code .code:hover{ background-color:#1EC354; background-position:6px -16px;}
footer .right p a#gzh_code .code:hover img{ opacity:1; -webkit-transform:scale(1); -moz-transform:scale(1); -o-transform:scale(1); transform:scale(1);}