/* 头部 */
.header {
  height: 95px;
  line-height: 95px;
  padding: 30px 0;
  background: url(../images/header_bg.png) no-repeat center top;
}
.header .logo {
  width: 435px;
  font-size: 0;
}
.header .logo img {
  width: 100%;
}

.header .right .wechat {
  height: auto;
  line-height: normal;
  margin-right: 20px;
  border-right: 1px solid #245b9c;
  padding-right:20px;
}

.header .right .wechat>img {
  width: 80px;
}

.header .right .wechat>p {
  color:#fff;
  font-size:14px;
  text-align:center;
  margin-top:5px;
}
.header .right .search {
  height: 38px;
  line-height: 38px;
  margin-top: 28px;
  border: 1px solid #fff;
  border-radius: 19px;
}
.header .right .search form {
  margin-top: -2px;
}
.header .right .search input,
.header .right .search button {
  height: 38px;
  line-height: 38px;
  border: none;
  background: none;
}
.header .right .search input {
  width: 175px;
  padding-left: 20px;
  color: #fff;
  border-radius: 19px;
}
.header .right .search button {
  width: 60px;
  padding: 0;
  margin-left: -6px;
  cursor: pointer;
}
.header .right .menu {
  display: none;
  cursor: pointer;
  margin-left: 10px;
}
@media screen and (max-width: 1192px) {
  .header .layout {
    padding: 0 30px;
  }
  .header .layout .logo {
    width: 350px;
  }
  .header .layout .right .wechat {
    margin-right: 10px;
  }
  .header .layout .right .wechat>img {
    width:90px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 25px 0;
  }
  .header .layout .right .wechat {
    margin-right: 0;
  }
  .header .layout .right .wechat>img{
    width:80px;
  }
  .header .layout .right .search {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header .layout {
    padding: 0 20px;
  }
  .header .layout .logo {
    width: 300px;
  }
  .header .layout .right .wechat>img{
    width:80px;
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding: 0;
  }
  .header .layout {
    padding: 0 10px;
  }
  .header .layout .logo {
    width: 200px;
  }
  .header .layout .right .wechat {
    margin-top:15px;
    padding-right:10px;
  }
  .header .layout .right .wechat>img {
    width:50px;
  }
  .header .layout .right .wechat>p{
    font-size:12px;
    margin-top:0;
  }
  .header .layout .right .menu {
    width: 25px;
    margin-left: 5px;
  }
}


/* 导航 */
.nav {
  width: 100%;
  background-color: #02326b;
  border-bottom: 4px solid #f8b62c;
}
.nav .layout ul li {
  float: left;
  position: relative;
  z-index: 20;
}
.nav .layout ul li > a {
  display: block;
  padding: 0 16px;
  color: #fff;
  font-size: 20px;
  line-height: 59px;
  text-align: center;
}
.nav .layout ul li:hover {
  background-color: #f8b62c;
}
.nav .layout ul li .dropdown {
  display: none;
  overflow-y: hidden;
  position: absolute;
  left: 0;
  /*top: 63px;*/
  top:59px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #ddd;
  border-top:4px solid #f8b62c;
  border-bottom: none;
}
.nav .layout ul li .dropdown a {
  display: block;
  min-width: 156px;
  font-size: 16px;
  line-height: 52px;
  padding: 0 5px;
  white-space: nowrap;
  border-bottom: 1px solid #ddd;
}
.nav .layout ul li .dropdown a:hover {
  color: #fff;
  background-color: #f8b62c;
}
/* 移动端导航 */
.mnav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.mnav .contentct {
  float: left;
  width: 40%;
  height: 100%;
  background: #196bb8;
  padding: 10px;
  box-sizing: border-box;
}
.mnav .contentct .nav_item {
  display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.mnav .contentct .nav_item:hover {
  background: #003f88;
  box-shadow: 8px 8px 10px #000;
}
.mnav .contentct .nav_item:hover .item_down {
  display: block;
}
.mnav .contentct .nav_item a {
  color: #fff;
  text-decoration: none;
}
.mnav .contentct .nav_item .item_down {
  display: none;
  padding-bottom: 10px;
  font-size: 14px;
}
.mnav .contentct .nav_item .item_down a {
  display: block;
  padding-left: 40px;
}
.mnav .contentct .nav_item .item_down a:hover {
  background: #003f88;
  box-shadow: 8px 8px 10px #000;
}
.mnav .contentct .nav_item .item_down:after {
  content: "";
  height: 0;
  clear: both;
  overflow: hidden;
  display: block;
  visibility: hidden;
}
.mnav .contentbl {
  float: left;
  width: 60%;
  height: 100%;
  background: #333;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
@media screen and (max-width: 1192px) {
  .nav .layout {
    max-width: 1024px;
  }
  .nav .layout ul li > a {
    /*padding: 0 10px;*/
    padding: 0 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .header .layout .right .menu {
    display: inline-block;
  }
  .nav .layout ul {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .mnav .contentct,
  .mnav .contentbl {
    width: 50%;
  }
}
.fixed {
    position: fixed;
    top: 50%;
    right: 0;
    margin-top: -140px;
    z-index: 999;
}
.fixed .fixed_item {
  display: block;
  width: 68px;
  height: 70px;
  text-align: center;
}
.fixed .fixed_item a{
  font-size: 14px;
  color: #fff;
}
.fixed .fixed_item img {
  margin-top: 11px;
}
.fixed .fixed_item p {
  line-height: 34px;
}
.fixed .fixed_item:hover {
  background-color: #4c4c4c !important;
}
@media screen and (max-width: 500px) {
  .fixed {
    top: 50%;
  }
  .fixed .fixed_item {
    width: 55px;
    height: 55px;
  }
  .fixed .fixed_item img {
    width: 20px;
    margin-top: 8px;
  }
  .fixed .fixed_item p {
    line-height: 27px;
    font-size: 12px;
  }
}
/* 页脚 */
.footer {
  width: 100%;
  background: #003f88;
  color: #fff;
  font-size: 14px;
}
.footer .footer_container {
  width: 100%;
  border-bottom: 1px solid #3c73b2;
}
.footer .footer_container .footer_top {
  max-width: 1192px;
  height: 148px;
  margin: 0 auto;
}
.footer .footer_container .footer_top .line {
  float: left;
}
.footer .footer_container .footer_top .logo {
  float: left;
  width: 410px;
  height: 148px;
  position: relative;
}
.footer .footer_container .footer_top .logo img {
  width: 390px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.footer .footer_container .footer_top .contact {
  float: left;
  width: 397px;
  height: 148px;
  line-height: 28px;
  background: url(../images/logo_bg.png) no-repeat;
  background-position: center;
}
.footer .footer_container .footer_top .contact .info {
  margin-left: 70px;
}
.footer .footer_container .footer_top .contact .info:first-child {
  /*margin-top: 36px;*/
  margin-top: 5px;
}

.footer .footer_container .footer_top .links {
  float: left;
  width: 383px;
  height: 148px;
  position: relative;
  padding-left: 40px;
  box-sizing: border-box;
}

.footer .footer_container .footer_top .links h3 {
  font-size: 16px;
  line-height: 35px;
  border-bottom: 1px solid #fff;
  margin-top:10px;
}

.footer .footer_container .footer_top .links .links_list {
  padding-top: 10px;
}

.footer .footer_container .footer_top .links .links_list .links_item {
  float: left;
  width: 49.5%;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.footer .footer_container .footer_top .links .links_list .links_item:nth-child(2n+1) {
  margin-right: 1%;
}

.footer .footer_container .footer_top .links .links_list .links_item a {
  font-size: 14px;
  color: #fff;
}

.footer .copyright {
  line-height: 25px;
  padding: 10px 0;
  text-align: center;
}
.footer .copyright a {
  color: #88abda;
}
.footer .copyright a:hover {
  text-decoration: none;
}
.footer .copyright .space {
  padding: 0 10px;
}

.siteCounter8 {
    display: inline;
}
.siteCounter8 span {
    margin: 0;
    border-radius: none;
    color: #FFFFFF;
    background-image: none;
    padding: 0;
}

@media screen and (max-width: 1192px) {
  /*.footer .footer_container .footer_top .logo,
  .footer .footer_container .footer_top .contact,
  .footer .footer_container .footer_top .links {
    height: 130px;
  }*/
  .footer .footer_container .footer_top .logo {
    width: 33%;
  }
  .footer .footer_container .footer_top .logo img {
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .footer .footer_container .footer_top .contact {
    width: 33%;
  }
  .footer .footer_container .footer_top .contact .info {
    margin-left: 50px;
  }
  /*.footer .footer_container .footer_top .contact .info:first-child {
    margin-top: 25px;
  }*/
  .footer .footer_container .footer_top .links {
    width: 31%;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer_container .footer_top {
    height: auto;
  }
  .footer .footer_container .footer_top .logo,
  .footer .footer_container .footer_top .contact,
  .footer .footer_container .footer_top .links {
    float: none;
    width: 375px;
    margin: 0 auto;
    overflow: hidden;
  }
  .footer .footer_container .footer_top .logo,
  .footer .footer_container .footer_top .links {
    height:130px;
  }
  .footer .footer_container .footer_top .links{
    padding-left:35px;
  }
  .footer .footer_container .footer_top .line {
    display: none;
  }

  .footer .copyright {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer_container .footer_top .logo,
  .footer .footer_container .footer_top .links {
    height: 130px;
  }
  .footer .footer_container .footer_top .contact {
    background-size: contain;
  }
  /*.footer .footer_container .footer_top .contact .info:first-child {
    margin-top: 25px;
  }*/
  .footer .copyright i {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .footer .footer_container .footer_top .logo,
  .footer .footer_container .footer_top .links {
    height: 120px;
  }
  .footer .footer_container .footer_top .links {
    padding: 0 20px;
  }
  /*.footer .footer_container .footer_top .contact .info:first-child {
    margin-top: 20px;
  }*/
}
