/** 通用 **/
* {
  -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;
}
img {
  width: 100%;
  vertical-align: middle;
}
a {
  color: #333;
  text-decoration: none;
  transition: color .3s linear;
}
.lf {
  float: left;
}
.rf {
  float: right;
}
.clearFix:after,
.container:after,
ul:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/*** 页首 ***/
header {
  width: 100%;
  height: 90px;
  position: relative;
}
header .logo {
  float: left;
  width: 265px;
  height: 90px;
}
header .logo img {
  width: auto;
}
header .nav-list {
  width: 100%;
  padding-left: 280px;
  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 8px;
  position: relative;
  cursor: pointer;
}
header .nav-list ul li a {
  display: block;
}
header .nav-list ul li div {
  width: 100%;
  height: 3px;
  background: #EA5824;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
header .nav-list ul .active a,
header .nav-list ul li:hover a {
  color: #EA5824;
}
header .nav-list > div {
  float: right;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  margin-top: 25px;
  margin-left: 10px;
  cursor: pointer;
  -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 .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;
  overflow: hidden;
  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: #2C79F7;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: height .3s;
  -moz-transition: height .3s;
  -o-transition: height .3s;
  transition: height .3s;
}
header .nav-list-child ul {
  display: table;
  margin-left: 218px;
}
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 li a:hover {
  color: #fff;
}
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: #2C79F7;
  color: #eee;
  padding: 20px 0;
  font-weight:600;
  background: -webkit-linear-gradient(left, #4D8EF2, #0362F7);
  background: -moz-linear-gradient(left, #4D8EF2, #0362F7);
  background: -o-linear-gradient(left, #4D8EF2, #0362F7);
  background: -ms-linear-gradient(left, #4D8EF2, #0362F7);
  background: linear-gradient(left, #4D8EF2, #0362F7);
  
}
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){
  padding-left:35px;
  float:left;
  background:url(../images/b_tell.png) no-repeat;
}
footer .right p:nth-child(2){
  padding-left:35px;
  float:left;
  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;
  cursor: pointer;
}
footer .right a:hover {
  color: #FF880A;
}
footer .left a {
  color: #eee;
  cursor: pointer;
}
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: #2489E7;
  -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: #EA5824;
}
.nav_map .content .box .parent a:hover {
  color: #EA5824;
  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) {
  .container{
    padding:0 3%;
  }
  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 {
    color: #333;
  }
  header .nav-list-child ul .active a,
  header .nav-list-child ul li:hover a {
    color: #9F3E1B;
  }
  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 > .title > h1,
  .container > .title > h2 {
    font-size: 24px;
  }
  header .logo {
    width: 40%;
    line-height: 90px;
  }
  header .nav-list {
    padding-left: 40%;
  }
  header .logo img {
    width: 100%;
    vertical-align: middle;
  }
}
