@charset "utf-8";

/* CSS Document */
html {
  background: #fff;
  font-size: 62.5%;
  /* 10÷16=62.5% */
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  /* 14÷10=1.4 */
  color: #4a4a4a;
  font-family: '微软雅黑', SimSun, SimHei, "STHeiti Light", STHeiti, "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
}

html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul, dd, dl, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object, a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span, strong, sub, sup, tt, var, legend, fieldset {
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: subpixel-antialiased;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset, img {
  border: 0;
}

img, object {
  width: 100%;
  max-width: 100%;
  /*height:auto;*/
  width: auto\9;
  /* for ie8 */
  -ms-interpolation-mode: bicubic;
}

a {
  outline: none;
  blr: expression(this.onFocus=this.blur());
  text-decoration: none;
  color: #4a4a4a;
}

a:hover {
  color: #af2a3c;
  text-decoration: none;
}

input[type='button'] {
  outline: none;
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: 400;
}

ul, ol, li {
  list-style: none outside none;
}

.tc {
  text-align: center !important;
}

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.pa {
  position: absolute;
}

.pr {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

q:before, q:after {
  content: '';
  content: none;
}

input, textarea, select {
  font-weight: inherit;
}

input, select, textarea, button {
  vertical-align: middle
}

.lf {
  float: left;
}

.md {
  float: left;
}

.rt {
  float: right;
}

.clearFix {
  *zoom: 1;
  clear: both;
}

.clearFix:after {
  content: '';
  display: block;
  clear: both;
}

.clear {
  width: 100%;
  overflow: hidden;
}

.imgResponsive {
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
  display: block;
  background-color: #d2d2d2;
  position: relative;
  z-index: 0;
}

.imgResponsive img {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.imgResponsive img:hover {
  transform: scale(1.03);
  opacity: 0.85;
}

.fpx24 {
  font-size: 24px;
  font-size: 2.4rem;
}

.fpx20 {
  font-size: 20px;
  font-size: 2.0rem;
}

.fpx18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fpx16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fpx15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.fpx12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.ul-inline {
  font-size: 0;
}

.ul-inline>li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 14px;
  vertical-align: top;
}


/*头部样式*/
.header {
  width: 100%;
  background: #af2a3c;
  transition: 0.4s ease-in-out;
  /* height: 80px; */
}

.container {
  width: 1400px;
  margin: 0 auto;
}

.nav-wrapper {
  width: 100%;
  padding: 8px 0;
  transition: all 0.3s ease-in-out;
}

.logo {
  position: relative;
  z-index: 99992;
  transition: all 0.3s ease;
  /* text-align: center; */
  float: left;
  overflow: hidden;
  margin: 5px 0 0 0;
}

.logo_01 {
  width: 240px;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  height: 49px;
  overflow: hidden;
}

.logo_02 {
  width: 79px;
  padding-left: 20px;
  /* box-sizing: border-box; */
  height: 27px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.logo_02::before{
  content:'';
  display:block;
  width:1px;
  height: 16px;
  background: rgba(255,255,255,.5);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav {
  width: 45%;
  float: right;
  /*! margin: 6px 0 0 0; */
  /* margin-top: 5px; */
}

.nav ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}

.nav ul li {
  float: left;
  height: 60px;
  transition: all 0.3s ease;
  position: relative;
}

.nav ul>li {
  position: relative;
  padding: 0 2.5%;
}

.nav ul li>a {
  padding: 0;
  text-align: center;
  line-height: 60px;
  height: 60px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  transition: all 0.3s ease;
}

.nav ul li.on>a, .nav ul li:hover>a {}

.nav ul li.on .subNav {
  display: block;
  background: #fff;
}

.subNav {
  width: 100%;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 60px;
  display: none;
  text-align: center;
  z-index: 9;
  border-top: #e54d49 3px solid;
}

.subNav dd {}

.subNav a {
  padding: 8px 7px;
  line-height: 22px;
  display: block;
}

.subNav a:hover {
  background: #af2a3c;
  color: #fff;
}


.nav-wrapper>div {
  position: relative;
}

.headerFix-menu {
  position: absolute;
  right: -30px;
  top: 3px;
  cursor: pointer;
  display: none;
}

.headerFix-menu i {
  color: #fff;
  font-size: 30px;
}

.headerFix-close {
  float: right;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  cursor: pointer;
  display: none;
}

.headerFix-close i {
  color: #ccd2de;
  font-size: 24px;
}

.header.current {
  height: 60px;
  box-shadow: 0 0 6px 0 #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header.current .nav-wrapper {
  padding-top: 0;
}

.header.current .logo {
  /* width: 180px; */
  margin: 8px 0 0 0;
}

.header.current .subNav {
  top: 55px;
}

.header.current .headerFix-menu {
  display: block;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;

  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;

  visibility: visible !important;
  display: block;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;

  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;

  visibility: visible !important;
  display: block;
}

.serBtn {
  cursor: pointer;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 25px;
  color: #fff;
  margin-left: 25px;
  text-align: center;
  position: relative;
  z-index: 99992
}

.serBtn i {
  font-size: 19px;
  *display: inline;
  *zoom: 1;
  *width: 30px;
  *background: url(../fonts/c911544f4aad4ee2a5f93a9912a09ea3.svg) no-repeat center;
}




.goTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999999;
  color: #fff;
  text-align: center;
  transition: none;
  background-color: #000;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: none;
}

.goTop:hover {
  color: #fff;
  background-color: #4b9ef7;
}

.goTop i {
  font-size: 32px;
}

/*手机端导航*/
.mobile {
  width: 100%;
  position: absolute;
  height: 63px;
  display: none;
  top: 5px;
  left: 0;
  z-index: 99991;
}

.mobile-search-btn {
  float: right;
  margin-right: 15px;
  cursor: pointer;
}

.mobile-search-btn i {
  color: #fff;
  font-size: 20px;
}

.mobile-inner-header {
  width: 100%;
  height: 63px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 50
}

.mobile-inner-header-icon {
  color: #ffffff;
  height: 40px;
  font-size: 25px;
  text-align: center;
  float: right;
  width: 40px;
  position: relative;
  -webkit-transition: background 0.5s;
  -moz-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
  opacity: 0.8;
  cursor: pointer;
}

.mobile-inner-header-icon span {
  position: absolute;
  left: calc((100% - 25px) / 2);
  top: calc((100% - 1px) / 2);
  width: 25px;
  height: 2px;
  background-color: rgba(255, 255, 255, 1);
}

.mobile-inner-header-icon {
  color: #fff;
  height: 31px;
  float: right;
  width: 35px;
  position: relative;
  cursor: pointer;
  text-align: right;
  margin-right: 15px;
  text-align: center;
  line-height: 31px;
  font-size: 30px;
  margin-top: 5px;
}

.mobile-inner-header-icon-out i {
  font-size: 22px;
  position: absolute;
  right: 0;
  top: 0
}

.mobile-inner-header-icon-click i {
  display: none;
}

.mobile-inner-header-icon-out span {
  width: 22px;
  height: 2px;
  display: block;
}

.mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outthird;
}

.mobile-inner-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}

.mobile-inner-header-icon-click span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickthird;
}

@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);

  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@keyframes clickthird {
  0% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}

.mobile-inner-header-icon-out span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outthird;
}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

@keyframes outthird {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  100% {
    transform: translateY(12px) rotate(0deg);
  }
}

.mobile-inner-nav {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  width: 0;
  transition: left 0.3s ease-in-out;
  height: 0;
  background-color: #af2a3c;
}

.mobile-inner-nav a {
  display: inline-block;
  line-height: 45px;
  text-decoration: none;
  width: 100%;
  font-size: 1.6rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  color: #fff;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-align: left;
  padding: 0 20px;
}

.mobile-inner-nav li:first-child a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-inner-nav li {
  position: relative;
  padding: 0 20px;
}

.mobile-inner-nav li.on {
  background-color: #bf3e4f;
}

.mobile-inner-nav li.on a {
  color: #fff;
}

.mobile-inner-nav li .icon-fanhui {
  color: #fff;
}

.mobile-inner-nav li .icon-fanhui-copy {
  color: #fff;
}

.mobile-inner-nav li strong {
  color: #fff;
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 2.4rem;
  cursor: pointer;
  width: 40px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 50px;
}

.mobile-inner-nav a {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.mobile_subNav {
  display: none;
  /*! margin-left: 26px; */
}

.mobile-inner-nav dd a {
  height: 35px;
  line-height: 35px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
}

.mobile-inner-nav dd a:hover {
  /*! background-color: #af2a3c; */
}

.mobile_search {
  clear: both;
  position: absolute;
  height: 40px;
  overflow: hidden;
  left: 0;
  top: 61px;
  width: 100%;
  z-index: 99993;
  display: block;
}

.mobile_search .search {
  margin: 0 20px;
  overflow: hidden;
  height: 37px;
  position: relative;
}

.mobile_search input.notxt {
  width: 100%;
  color: #566c99;
  border: none;
  padding-right: 38px;
  height: 38px;
  box-sizing: border-box;
  font-size: 2.2rem;
}

.mobile_search input.notxt1 {
  width: 40px;
  right: 0;
  background: url(../fonts/search.svg) no-repeat center;
  border: none;
  height: 37px;
  left: auto;
}

.mobile-links {
  width: auto;
  margin: 0 20px 10px;
  overflow: hidden;
  padding: 10px 0 0;
  opacity: 0.6;
  font-size: 14px;
}

.mobile-links span {
  float: left;
  padding: 0 15px;
}

.mobile-links span a {
  border: none;
  line-height: 25px;
  padding: 4px 0;
  font-size: 14px;
}

.nav-open .mobile-inner-nav {
  width: 100%;
  display: block;
  position: fixed;
  left: 0px;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: scale(1);
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  padding: 65px 0 20px;
  transition: all 0.3s ease;
}

/*footer*/

.wrap_footer {
  background: #af2a3c;
  overflow: hidden;
}

.footer {
  overflow: hidden;
  padding: 80px 0 60px 0;
  position: relative;
}

.footerLf {
  width: 33%;
  float: left;
  overflow: hidden;
}

.footerLf a {
  display: inline-block;
  /* max-width: 283px; */
  vertical-align: middle;
}
.footerLf a:nth-child(2){
  margin-left: 5px;
}
.footerMd {
  width: 15%;
  float: left;
  margin-left: 6%;
}

.footeRt {
  width: 26.8%;
  float: right;
}

.address {
  overflow: hidden;
}

.address h3, .footerList h3,.footercode h3 {
  font-size: 17px;
  font-size: 1.7rem;
  color: #fff8f2;
  margin-bottom: 15px;
}

.address p {
  font-size: 1.3rem;
  color: rgba(255,255,255,.8);
  line-height: 26px;
}

.footerRt {
  width: 7%;
  float: left;
  margin-left: 4%;
}

.footerList {
  overflow: hidden;
}

.footerList a {
  display: inline-block;
  font-size: 1.3rem;
  color: rgba(255,255,255,.8);
  height: 24px;
  line-height: 24px;
  /* padding: 0 22px 0 0; */
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.footerList a.blue {
  width: 55px;
  height: 68px;
}

.footerList a:hover {
  padding-left: 5px;
}

.copyRight {
  border-top: #c76873 1px solid;
  padding: 23px 0;
  overflow: hidden;
}

.copyRight span {
  font-size: 13px;
  color: rgba(255,255,255,.66);
}

.footercode{
  float: right;
  /* white-space: break-spaces; */
}
.code{
  margin: 0 -5px;
  overflow: hidden;
  font-size: 0;
}
.code li{
  display: inline-block;
}
.code a{
  display: block;
  margin: 0 5px;
  padding: 5px;
  box-sizing: border-box;
}
.code a p{font-size: 1.3rem;color: #fff;text-align: center;line-height: 26px;}
.codeimg{
  width: 88px;
  height: 88px;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width:1020px) {}

@media screen and (max-width:1400px) {
  .container {
    width: 1100px;
  }

  .nav {
    width: 50%;
  }

  .nav ul>li {
    padding: 0 2%;
  }


}

@media screen and (max-width:1300px) {
  .header .container {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }

  .nav {
    width: auto;
    margin: 0;
  }

  .nav ul>li {
    padding: 0 10px;
  }

  .nav ul li>a, .fpx18 {
    font-size: 1.6rem;
  }

  .fpx15 {
    font-size: 1.5rem;
  }

  .fpx16 {
    font-size: 1.4rem;
  }

  .footerLf {
    width: 40%;
  }
.footerLf a:nth-child(1){
  /* width: 45%; */
}
  .footerLf a:nth-child(2){
  /* width: 45%; */
}
  .footerMd {
    width: 15%;
  }
  .footercode{width: 22%;}
.code li{
  width: 50%;
  display: block;
  float: left;
}
  .codeimg{margin: 0 auto;}
}

@media screen and (max-width:1100px){
  .logo_01 {
    width: 200px;
    height: 40px;
  }
  
  .logo_02 {
    width: 59px;
    height: 20px;
    padding-left: 15px;
    margin-left: 9px;
  }
}.logo_02::before{}
}

@media screen and (max-width:1024px) {
  .nav {
    display: none;
  }

  .mobile {
    display: block;
  }

  .footer {
    padding: 50px 0;
  }

  .footerLf a {
    max-width: 210px;
  }

}

@media screen and (max-width: 992px) {
  .footer {
    padding: 30px 0;
  }
.nav{
  display:none;
}
  .mobile{
    display:block;
  }
  .footerLf {
    width: auto;
    float: none;
    margin: 0 0 20px 0;
  }

  .footerMd {
    width: 50%;
    margin: 0;
  }

  .footerRt {
    width: 50%;
    margin: 0;
  }
.footercode{width: 100%;float: left;margin-top: 30px;}
  .code li{width: auto;float: none;display: inline-block;/* font-size: x-small; */}
  .address {
    margin: 0 50px 0 0;
  }

}

@media screen and (max-width:768px) {
  .mobile-inner-header-icon {
    margin-left: 0;
  }

  .footerLf a {
    margin: 0 auto;
  }

}

@media screen and (max-width:768px) {
  .header {
    /* height: 60px; */
  }
.nav-wrapper{
}
  .logo {
    margin: 0;
    margin-top: 0;
  }
  .logo_01{
    /* width: 150px; */
}
  .logo_02{
    /* width: 160px; */
}
.mobile-inner-header-icon{/* margin-top: 7px; */}
}



@media screen and (max-width:480px) {
  .footerMd, .footerRt {
    width: auto;
    float: none;
  }

  .footerRt {
    margin: 20px 0 0 0;
  }

  .copyRight .lf, .copyRight .rt {
    float: none;
    display: block;
    text-align: center;
    line-height: 24px;
  }
  .logo_01{
    /* width: 44%; */
}
  .logo_02{
    /* width: 38%; */
    /* margin-left: 5px; */
}
}
@media screen and (max-width:440px){
.code li{
    width: 50%;
}}
@media screen and (max-width:440px){
    .logo_01 {
    width: 156px;
    height: 32px;
  }
  
  .logo_02 {
    width: 44px;
    height: 17px;
    padding-left: 15px;
    margin-left: 9px;
  }
  .mobile-inner-header-icon {
    margin-top: 0px;
}
}