/* mixin */
@-moz-keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* base */
*,
::before,
::after {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
}
body {
  font: 12px/1.4 'Microsoft Yahei', sans-serif;
  background-color: #f2f2f2;
}
a {
  color: #595757;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  -moz-user-focus: none;
  -moz-user-select: none;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.pull-none {
  float: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: '';
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}
.ls-n {
  padding: 0;
  margin: 0;
  list-style: none;
}
.o-h {
  overflow: hidden;
}
.animated {
  visibility: visible !important;
}
.tb {
  display: table;
  width: 100%;
  height: 100%;
}
.tb .tbc {
  display: table-cell;
  vertical-align: middle;
}
.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}
.container {
  width: 1415px;
  margin: 0 auto;
}
@media (max-width: 1441px) {
  .container {
    width: initial;
    margin: initial;
  }
}
@media (max-width: 1241px) {
  .pcshow {
    display: none ;
  }
}
.wapshow {
  display: none ;
}
@media (max-width: 1241px) {
  .wapshow {
    display: block ;
  }
}
.swiper-container .wap-pagination {
  position: static;
}
.swiper-container .wap-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.swiper-container .wap-pagination .swiper-pagination-bullet-active {
  background: #b6b6b6;
}
/* 头部 */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  overflow: hidden;
  padding: 0 136px 0 96px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .white {
  display: none;
}
.header .logo {
  margin-top: 19px;
}
.header .btn {
  margin: 27px 0 0 19px;
  cursor: pointer;
}
.header .btn-menu {
  display: none;
  width: 30px;
  height: 27px;
  margin-top: 16px;
  background: url('../images/btn_menu@x2.png') no-repeat center;
  background-size: 80%;
}
.header .nav > ul > li {
  float: left;
  width: 128px;
  text-align: center;
}
.header .nav > ul > li.active > a::after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .nav > ul > li > a {
  position: relative;
  display: block;
  height: 80px;
  line-height: 80px;
  overflow: hidden;
  font-size: 17px;
}
.header .nav > ul > li > a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 76px;
  height: 4px;
  background-color: #f08300;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translate(-50%, 100%);
  -moz-transform: translate(-50%, 100%);
  -ms-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  content: '';
}
.header .nav > ul > li > a:hover {
  color: #044fa0;
}
.header .nav > ul > li > a:hover::after {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .nav > ul > li > a.active::after {
  -webkit-transform: translate(-50%, 0) !important;
  -moz-transform: translate(-50%, 0) !important;
  -ms-transform: translate(-50%, 0) !important;
  transform: translate(-50%, 0) !important;
}
.header .nav > ul > li > ul {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .nav > ul > li > ul.active {
  max-height: 350px;
}
.header .nav > ul > li > ul li a {
  display: block;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  font-size: 14px;
}
.header.black {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.header.black .black {
  display: none;
}
.header.black .white {
  display: block;
}
.header.black .btn-menu {
  background-image: url('../images/btn_menu_white@x2.png');
}
.header.black .nav > ul > li > a {
  color: #fff;
}
@media (max-width: 1441px) {
  .header {
    padding: 0 30px;
  }
}
@media (max-width: 1240px) {
  .header {
    padding: 0 10px 16px;
  }
  .header .logo img {
    width: 100px;
  }
  .header .btn {
    margin: 16px 10px 0 0;
  }
  .header .btn-menu {
    display: block;
  }
  .header .nav {
    position: fixed;
    top: 59px;
    bottom: 0;
    left: 0;
    float: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .header .nav.active {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .header .nav > ul {
    background-color: #fff;
  }
  .header .nav > ul > li {
    float: none;
    width: 100%;
    border-bottom: 1px solid #b1b1b1;
    text-align: left;
  }
  .header .nav > ul > li > a {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    color: #595757 !important;
  }
  .header .nav > ul > li > a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    content: '';
    background: url(../images/arrow-r@x2.png) center center no-repeat;
    background-size: cover;
    width: 15px;
    height: 22px;
    margin-top: -10px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .header .nav > ul > li > a.active::before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .header .nav > ul > li > a::after {
    display: none;
  }
  .header .nav > ul > li ul {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .header .nav > ul > li ul li a {
    padding: 0 20px;
  }
  .header .nav > ul .nowap-node > a::before {
    display: none !important;
  }
}
/* 二级菜单 */
.subnav {
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  z-index: 998;
  max-height: 0;
  overflow: hidden;
  padding-right: 221px;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.subnav.active {
  max-height: 400px;
}
.subnav dl {
  float: left;
  width: 128px;
  padding: 30px 0 80px;
  margin: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.subnav dl:hover,
.subnav dl.active {
  background-color: #fff;
}
.subnav dl dd {
  margin: 0;
  font-size: 15px;
}
.subnav dl dd a {
  display: block;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  text-align: center;
}
.subnav dl dd a:hover {
  color: #044fa0;
}
@media (max-width: 1441px) {
  .subnav {
    padding-right: 115px;
  }
}
/* 底部 */
.footer .bd {
  padding: 42px 0 34px;
  background: url('../images/bg_footer_bd.png') no-repeat right #595757;
}
.footer .bd .logo {
  margin-right: 111px;
}
.footer .bd dl {
  float: left;
  margin: 0 80px 0 0;
}
.footer .bd dl:nth-last-child(2) {
  margin-right: 0;
}
.footer .bd dl dt {
  position: relative;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: bold;
}
.footer .bd dl dt::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  content: '';
}
.footer .bd dl dt a {
  color: #fff;
}
.footer .bd dl dd {
  line-height: 34px;
  font-size: 14px;
  margin: 0;
}
.footer .bd dl dd a {
  color: #dcdddd;
}
.footer .bd .qrcode {
  text-align: right;
}
.footer .bd .qrcode p {
  margin: 9px 0 0;
  font-size: 14px;
  color: #dcdddd;
}
.footer .bd .qrcode ul {
  overflow: hidden;
  margin-top: 138px;
}
.footer .bd .qrcode ul li {
  float: left;
  margin-left: 32px;
}
.footer .ft {
  padding: 24px 0;
  font-size: 14px;
  color: #b4b4b5;
  background-color: #222222;
}
.footer .ft p {
  margin: 0;
}
.footer .ft p img {
  vertical-align: middle;
}
@media (max-width: 1441px) {
  .footer .bd {
    padding: 30px;
  }
  .footer .bd .logo {
    margin-right: 50px;
  }
  .footer .bd dl {
    margin-right: 60px;
  }
  .footer .ft {
    padding: 20px 30px;
    font-size: 12px;
  }
}
@media (max-width: 1240px) {
  .footer {
    text-align: center;
    background: url('../images/bg_footer_bd_phone.png') no-repeat right bottom #383838;
    background-size: 100%;
  }
  .footer .bd {
    padding: 30px 10px 10px;
    font-size: 0;
    background: transparent;
  }
  .footer .bd .logo {
    display: block;
    float: none;
    margin: 0 0 30px;
    -webkit-tap-highlight-color: unset;
  }
  .footer .bd dl {
    float: none;
    display: inline-block;
    padding: 0 5px;
    margin: 0 0 5px;
  }
  .footer .bd dl.pcshow {
    display: none;
  }
  .footer .bd dl.wapshow {
    display: inline-block;
  }
  .footer .bd dl:not(:nth-last-child(2)) {
    border-right: 1px solid #b4b4b5;
  }
  .footer .bd dl dt {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
  }
  .footer .bd dl dt::before {
    display: none;
  }
  .footer .bd dl dt a {
    color: #b4b4b5;
  }
  .footer .bd dl dd {
    display: none;
  }
  .footer .bd .qrcode {
    float: none;
    display: none;
    text-align: center;
  }
  .footer .bd .qrcode ul {
    margin-top: 20px;
  }
  .footer .bd .qrcode ul li {
    display: inline-block;
    float: none;
    margin: 0 10px;
  }
  .footer .ft {
    padding: 10px 10px 20px;
    background: transparent;
  }
  .footer .ft p {
    line-height: 18px;
    float: none;
    text-align: center;
  }
  .footer .ft p:nth-child(1) a {
    display: block;
  }
}
