html{
  font-family: '微软雅黑','microsoft yahei';
  -webkit-text-size-adjust:100%;
  -ms-text-size-adjust:100%;
}
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select {margin:0;padding:0;}
th,td{border-spacing:0;}
img,fieldset,iframe{border:0;}
img{max-width: 100%;vertical-align: top;}
ul,ol,li{list-style: none;}
a{text-decoration:none;color: #666;}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display: block;}
audio,canvas,progress,video{display: inline-block;vertical-align: baseline;}
.clearfix{*height:1%;*zoom:1;}
.clearfix:after{content: "";display: block;height: 0;clear: both;visibility: hidden;}
* {
    box-sizing: border-box;
    font-family: "Microsoft YaHei";
}
/*手机版导航*/
.btn-nav{
  position: absolute;
  top:10px;
  right:0px;
  background: transparent;
  border:none;
  padding:0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  cursor: pointer;
  z-index: 9999;
  display: none;
}
.btn-nav:focus{
  outline: 0;
}
.icon-bar {
  display: block;
  margin: 9px 0;
  width: 45px;
  height: 2px;
  background-color:#707070;
}
.heaSub.header .icon-bar{
  background-color: #000;
}
.btn-nav:hover .icon-bar {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background:#000061;
  display: block;
  height:100%;
  max-height: 1024px;
  z-index: 110;
}
.nav-list {
  list-style: none;
  padding: 0;
  position: relative;
  top:20px;
  text-align: center;
}
.item-anchor:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: transparent;
  -webkit-transition: all 1.2s ease;
  -moz-transition: all 1.2s ease;
  -ms-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}

.item-anchor {
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.item-anchor:hover,
.item-anchor:focus {
  color: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.item-anchor:hover:after,
.item-anchor:focus:after{
  width: 100%;
  background: #FCA311;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.nav-item {
  margin: 0px auto;
  text-align: center;
  line-height: 35px;
}
.nav-item a{
  color:#fff;
}
.animate-nav {
  display: block;
  margin: 0 auto;
}

.animated-nav:hover .icon-bar,
.animated:focus .icon-bar{
  background-color: #fff;
}

.animated-nav:focus {
  cursor: pointer;
  z-index: 9999;
}
.middle {
  margin: 0 auto;
}

.icon-bar {
  -webkit-transition: all .7s ease;
  -moz-transition: all .7s ease;
  -ms-transition: all .7s ease;
  -o-transition: all .7s ease;
  transition: all .7s ease;
  z-index: 999999;
}

.animated-nav .icon-bar {
  z-index: 999999;
}

.animated-nav .top {
  -webkit-transform: translateY(11px) rotateZ(45deg);
  -moz-transform: translateY(11px) rotateZ(45deg);
  -ms-transform: translateY(11px) rotateZ(45deg);
  -o-transform: translateY(11px) rotateZ(45deg);
  transform: translateY(11px) rotateZ(45deg);
}

.animated-nav .bottom {
  -webkit-transform: translateY(-11px) rotateZ(-45deg);
  -moz-transform: translateY(-11px) rotateZ(-45deg);
  -ms-transform: translateY(-11px) rotateZ(-45deg);
  -o-transform: translateY(-11px) rotateZ(-45deg);
  transform: translateY(-11px) rotateZ(-45deg);
}
.ove{
  overflow: hidden;
}
.animated-nav .middle {
  width: 0;
}
.nav-item.active a{
  color: #f71201;
}
@keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top:0px;
  }
}
.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}
@keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top:0px;
  }
  to {
    top: -100%;
  }
}
.hideNav {
  -webkit-animation: hideNav 1s ease forwards;
  -moz-animation: hideNav 1s ease forwards;
  -o-animation: hideNav 1s ease forwards;
  animation: hideNav 1s ease forwards;
}
.hidden{
  display: none;
}
.fl{float: left;}
.fr{float: right;}
/*
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination li{
  display:inline-block;
  padding:4px 10px;
  color:#666; 
  border: 1px solid #d8d8d8;
  cursor: pointer;
  background-color: #fff;
}
.pagination li a{
  color:#666;
}
.pagination li.active{
  background-color:#05a6ea;
  color: #fff;
}
.pagination li.active a{
  color: #fff;
 }
*/
 em{
  font-style:normal;
 }
.pwrap{
    width:1200px;
    margin: 0 auto;
    position: relative;
}
.cwrap{
  width: 1180px;
  padding: 0 10px;
  margin: 0 auto;
}
.pd60{
	padding: 60px 0;
}
/* animation */
.animated {-webkit-animation-duration: 1s;animation-duration: 1s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
.animated-fast {-webkit-animation-duration: .5s;animation-duration: .5s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
@-webkit-keyframes fadeIn {
  from {opacity: 0;-ms-transform: scale(0.95);-webkit-transform: scale(0.95);transform: scale(0.95);}
  to {opacity: 1;-ms-transform: scale(1.0);-webkit-transform: scale(1.0);transform: scale(1.0);}
}
@keyframes fadeIn {
  from {opacity: 0;-ms-transform: scale(0.95);-webkit-transform: scale(0.95);transform: scale(0.95);}
  to {opacity: 1;-ms-transform: scale(1.0);-webkit-transform: scale(1.0);transform: scale(1.0);}
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {opacity: 0;/*-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);*/-webkit-transform: translate3d(0, -50px, 0);transform: translate3d(0, -50px, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes fadeInDown {
  from {opacity: 0;/*-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0);*/-webkit-transform: translate3d(0, -50px, 0);transform: translate3d(0, -50px, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
.fadeInDown {-webkit-animation-name: fadeInDown;animation-name: fadeInDown;}

@-webkit-keyframes fadeInLeft {
  from {opacity: 0;-webkit-transform: translate3d(-150px, 0, 0);transform: translate3d(-150px, 0, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}

@keyframes fadeInLeft {
  from {opacity: 0;-webkit-transform: translate3d(-150px, 0, 0);transform: translate3d(-150px, 0, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
.fadeInLeft {-webkit-animation-name: fadeInLeft;animation-name: fadeInLeft;}

@-webkit-keyframes fadeInRight {
  from {opacity: 0;-webkit-transform: translate3d(50px, 0, 0);transform: translate3d(50px, 0, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes fadeInRight {
  from {opacity: 0;-webkit-transform: translate3d(50px, 0, 0);transform: translate3d(50px, 0, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
.fadeInRight {-webkit-animation-name: fadeInRight;animation-name: fadeInRight;}

@-webkit-keyframes fadeInUp {
  from {opacity: 0;visibility: hidden;-webkit-transform: translate3d(0, 40px, 0);transform: translate3d(0, 40px, 0);}
  to {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes fadeInUp {
  from {opacity: 0;visibility: hidden;-webkit-transform: translate3d(0, 40px, 0);transform: translate3d(0, 40px, 0);}
  to {visibility: visible;opacity: 1;-webkit-transform: none;transform: none;}
}
.fadeInUp {-webkit-animation-name: fadeInUp;animation-name: fadeInUp;}

@-webkit-keyframes zoomIn {
  from {opacity: 0;-webkit-transform: scale3d(.3, .3, .3);transform: scale3d(.3, .3, .3);}
  50% {opacity: 1;}
}
@keyframes zoomIn {
  from {opacity: 0;-webkit-transform: scale3d(.3, .3, .3);transform: scale3d(.3, .3, .3);}
  50% {opacity: 1;}
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@keyframes rotateIn {
    0% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: rotate3d(0, 0, 1, -200deg);transform: rotate3d(0, 0, 1, -200deg);opacity: 0;}
    100% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: none;transform: none;opacity: 1;}
}
@-webkit-keyframes rotateIn {
    0% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: rotate3d(0, 0, 1, -200deg);transform: rotate3d(0, 0, 1, -200deg);opacity: 0;}
    100% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: none;transform: none;opacity: 1;}
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@keyframes scaleIn {
  0% {transform: scale(0); opacity: 0.0;}
  60% {transform: scale(1.1);}
  80% {transform: scale(0.9);opacity: 1;}   
  100% {transform: scale(1);opacity: 1;}
}
@-webkit-keyframes scaleIn {
 0% { -webkit-transform: scale(0);opacity: 0.0;}
 60% {-webkit-transform: scale(1.1);}
 80% {-webkit-transform: scale(0.9); opacity: 1; }   
 100% {-webkit-transform: scale(1);opacity: 1; }      
}   
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@keyframes flipInX{
  0% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);transform: perspective(400px) rotate3d(1, 0, 0, 90deg);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;opacity: 0;}
  40% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);transform: perspective(400px) rotate3d(1, 0, 0, -20deg);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}
  60% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);transform: perspective(400px) rotate3d(1, 0, 0, 10deg);opacity: 1;}
  80% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);transform: perspective(400px) rotate3d(1, 0, 0, -5deg);}
  100% {-webkit-transform: perspective(400px);transform: perspective(400px);}
}
@-webkit-keyframes flipInX{
  0% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);transform: perspective(400px) rotate3d(1, 0, 0, 90deg);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;opacity: 0;}
  40% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);transform: perspective(400px) rotate3d(1, 0, 0, -20deg);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}
  60% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);transform: perspective(400px) rotate3d(1, 0, 0, 10deg);opacity: 1;}
  80% {-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);transform: perspective(400px) rotate3d(1, 0, 0, -5deg);}
  100% {-webkit-transform: perspective(400px);transform: perspective(400px);}
}
.flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes rollInLeft {
  0% {opacity: 0;-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes rollInLeft {
  0% {opacity: 0;-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
.rollInLeft {
  -webkit-animation-name:rollInLeft;
  animation-name: rollInLeft;
}
@-webkit-keyframes rollInRight {
  0% {opacity: 0;-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes rollInRight {
  0% {opacity: 0;-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
.rollInRight {
  -webkit-animation-name:rollInRight;
  animation-name: rollInRight;
}
@-webkit-keyframes rollIn {
  0% {opacity: 0;-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
@keyframes rollIn {
  0% {opacity: 0;-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);}
  100% {opacity: 1;-webkit-transform: none;transform: none;}
}
.rollIn {
  -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@-webkit-keyframes pulse {
  0% {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}
  50% {-webkit-transform: scale3d(1.05, 1.05, 1.05);transform: scale3d(1.05, 1.05, 1.05);}
  100% {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}
}
@keyframes pulse {
  0% {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}
  50% {-webkit-transform: scale3d(1.05, 1.05, 1.05);transform: scale3d(1.05, 1.05, 1.05);}
  100% {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1);}
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes lightSpeedIn {
  0% {-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);transform: translate3d(100%, 0, 0) skewX(-30deg);opacity: 0;}
  60% {-webkit-transform: skewX(20deg);transform: skewX(20deg);opacity: 1;}
  80% {-webkit-transform: skewX(-5deg);transform: skewX(-5deg);opacity: 1;}
  100% {-webkit-transform: none;transform: none;opacity: 1;}
}
@keyframes lightSpeedIn {
  0% {-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);transform: translate3d(100%, 0, 0) skewX(-30deg);opacity: 0;}
  60% {-webkit-transform: skewX(20deg);transform: skewX(20deg);opacity: 1;}
  80% {-webkit-transform: skewX(-5deg);transform: skewX(-5deg);opacity: 1;}
  100% {-webkit-transform: none;transform: none;opacity: 1;}
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}
@-webkit-keyframes image { from { opacity: 0; -webkit-transform:translateX(100px) translateY(-50%); }}
@keyframes image { from { opacity: 0; transform:translateX(100px) translateY(-50%);}}
/*common*/
.pa_tit{
  height: 52px;
  line-height: 52px;
  position: relative;
}
.pa_tit span{
  float: left;
  display: block;
  width: 104px;
  position: relative;
  overflow:hidden;
  font-size: 21px;
  font-weight: 600;
}
.pa_tit span a{
  color: #000061;
}
.pa_tit span:after{
  content: '';
    display: block;
    height: 2px;
    background: #000061;
    width: 4em;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.pa_tit .more{
  float: right;
  font-size: 14px;
  color: #333;
}
.pa_tit .more:hover{
  color:#000061;
}
.pa_tit:after{
  content: '';
    display: block;
    height: 2px;
    background: #f1f1f1;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
/*sidebar*/
.sidebar{
  position: fixed;
    right: 10px;
    bottom: 108px;
    z-index: 99;
}
.sidebar a{
    display: block;
    width: 42px;
    height: 52px;
    margin-top: 1px;
    position: relative;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-moz-transition: all 0.6s;
    -webkit-moz-transition: all 0.6s;
    transition: all 0.6s;
    background-size: cover;
    background-position: center;
}
.sv_we{
  background-image: url(../images/sv1.png);
}
.sv_we:hover{
  background-image: url(../images/sv11.png);
}
.sv_msg{
  background-image: url(../images/sv3.png);
}
.sv_msg:hover{
  background-image: url(../images/sv31.png);
}
.sv_wbo{
  background-image: url(../images/sv2.png);
}
.sv_wbo:hover{
  background-image: url(../images/sv21.png);
}
.sv_top{
  background-image: url(../images/sv4.png);
}
.sv_top:hover{
  background-image: url(../images/sv41.png);
}
.sv_we>span{
  height: 120px;
  background-size: cover;
  background-position: center;
  background-image: url(../images/erw.jpg);
  position: absolute;
    right: 47px;
    bottom: -12px;
    opacity: 0;
    filter: alpha(opacity=0);
    transform-origin: 95% 95%;
    -moz-transform-origin: 95% 95%;
    -ms-transform-origin: 95% 95%;
    -o-transform-origin: 95% 95%;
    -webkit-transform-origin: 95% 95%;
    transform: scale(0.01);
    -moz-transform: scale(0.01);
    -ms-transform: scale(0.01);
    -o-transform: scale(0.01);
    -webkit-transform: scale(0.01);
    transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -webkit-transition: all 1s;
}
.sv_we:hover>span{
  transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
    width: 120px;
}
/*header*/
.athea{
  background-color:#f5f6f8;
  color: #333; 
  font-size: 16px;
  min-width: 320px;
}
.aheader{
  background-color: #fff;
  padding-top: 36px;
}
.logo{
  width: 36%;
}
.logo a{
  display: block;
}
.atop{
  position: relative;
  padding:0 13px;
  margin-bottom:5px;
}
.ayou{
  position: absolute;
  right: 13px;
  bottom: 0;
}
a.lang{
  color: #000061;
  padding: 0 5px;
  margin-bottom: 14px;
  display: block;
}
.search{
  width: 180px;
  position: relative;
  padding-right: 50px;
  border: 1px solid #cfcfcf;
  height: 40px;
  line-height: 40px;
}
.search input{
  display: block;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding:0 10px;
  border: none;
  border-right: 1px solid #cfcfcf;
  outline: none;
}
.s_sou{
  width: 50px;
    height: 40px;
    background: url(../images/search.png) 17px center no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top:-20px;
}
.nav_ul li{
  float: left;
  width: 10%;
  text-align: center;
  position: relative;
}
.nav_ul li>a{
  display: inline-block;
  height: 60px;
  line-height: 60px;
  position: relative;
  z-index: 20;
  text-decoration: none;
  font-size: 16px;
  box-sizing: border-box;
}
.nav_ul li.active>a,.nav_ul li:hover>a{
  border-bottom: 2px solid #000061;
  position: relative;
  color: #000061;
}

.sub_nv{
  position: absolute;
  top:60px;
  left: 0;
  width:130px;
  z-index: 33;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  display: none;
}
.nav_ul li:hover .sub_nv{
  display: block;
}
.sub_nv a{
  text-align: left;
  font-size: 15px;
  height: 42px;
  line-height: 42px;
  display: block;
  box-sizing: border-box;
  padding:0 20px; 
  text-align: center;
}
.sub_nv a:hover{
  background: #f5f6f8;
    color: #000061;
}
/*footer*/
.footer{
  margin-top: 20px;
  border-top: 6px solid;
  border-image: linear-gradient(65deg,#008fff,#00b539) 1;
  padding: 60px 0;
  background-color: #fff;
}
.fo_nrg{
  position: relative;
  padding-left: 260px;
  padding-right: 220px;
}
.fo_fl{
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
}
.fo_fr{
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
}
.fo_fr img{
  width: 100%;
  display: block;
}
.fo_fr p{
  text-align: center;
  margin-top: 5px;
  color: #555;
  margin-top: 10px;
}
.fo_mid{
  text-align: center;
  font-size: 14px;
  line-height: 2;
  color: #666;
}
.fo_mid img{
  width: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
/*media*/
@media (max-width: 1220px){
  .pwrap{
    width: 92%;
  }
  .aheader{
    padding-top: 28px;
  }
  a.lang{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .search{
    height: 36px;
    line-height: 36px;
    padding-right: 45px;
  }
  .s_sou{
    width: 45px;
    height: 36px;
    margin-top: -18px;
    background-position: 12px center;
  }
  .footer{
    padding: 40px 0;
  }
  .fo_fl{
    width: 230px;
  }
  .fo_nrg{
    padding-right: 210px
  }
  .pa_tit span{
    font-size: 19px;
  }
}
@media (max-width: 980px){
  .btn-nav{
    display:block;
  }
  .nav,.ayou{
    display: none;
  }
  .logo{
    width:249px;
  }
  .atop{
    padding:0;
    padding-bottom: 10px;
  }
  .aheader{
    padding-top: 13px;
  }
  .footer{
    padding: 30px 0;
    margin-top: 15px;
  }
  .fo_nrg{
    padding-right: 130px;
  }
  .fo_fl{
    width: 200px;
  }
  .fo_fr p{
    margin-top: 5px;
    font-size: 12px;
  }
  .pa_tit .more{
    font-size: 12px;
  }
  .pa_tit span{
    font-size: 18px;
  }
}
@media (max-width:768px){
  .footer{
    padding: 20px 0;
    margin-top: 10px;
  }
  .fo_nrg{
    padding-left: 0;
  }
  .fo_fl{
    display: none;
  }
  .fo_mid{
    text-align: left;
  }
}
@media (max-width: 640px){
  .sv_we>span{
    right: 36px;
  }
  .logo{
    width: 230px;
  }
  .btn-nav{
    top: 6px;
  }
  .sidebar a{
    width: 32px;
    height: 40px;
  }
  .sidebar{
    bottom: 80px;
  }
  .pwrap{
    width: 94%;
  }
  .fo_fr{
    display: none;
  }
  .footer{
    padding:15px 0;
  }
  .fo_mid{
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
  }
  .fo_nrg{
    padding-right: 0;
  }
  .aheader{
    padding-top: 6px;
  }
  .pa_tit span{
    font-size: 17px;
  }
}
@media (max-width: 414px){
  .icon-bar{
    width:29px;
  }
  .logo{
    width:180px;
  }
  .pwrap{
    width: 96%;
  }
  .fo_mid{
    font-size: 12px;
  }
  .fo_fr{
    display: block;
    position: initial;
    margin: 0 auto;
    width: 80px;
  }
  .fo_fr p{
    margin-top: 0;
  }
  .atop{
    padding-bottom: 7px;
  }
  .icon-bar{
    margin: 8px 0;
  }
  .animated-nav .top {
    -webkit-transform: translateY(9px) rotateZ(45deg);
    -moz-transform: translateY(9px) rotateZ(45deg);
    -ms-transform: translateY(9px) rotateZ(45deg);
    -o-transform: translateY(9px) rotateZ(45deg);
    transform: translateY(9px) rotateZ(45deg);
  }
}