@charset "utf-8";
/* CSS Document */
body{background: #f2f6f7;}
/*头部样式*/
.gp-header{ width:100%; border-top:#006dcc 10px solid; border-top: #111e64 10px solid; transition: all 0.3s ease-in-out;
background-color:rgba(0,92,172,1);
background: -webkit-linear-gradient(top, rgba(0,92,172,1), rgba(0,92,172,0)); /* safari 5.1 - 6.0 */
background: -o-linear-gradient(bottom, rgba(0,92,172,1), rgba(0,92,172,0)); /* opera 11.1 - 12.0 */
background: -moz-linear-gradient(bottom,rgba(0,92,172,1), rgba(0,92,172,0)); /* firefox 3.6 - 15 */
background: linear-gradient(to bottom, rgba(0,92,172,1) , rgba(0,92,172,0)); /* 标准的语法 */
background: linear-gradient(to bottom, #111e64, rgba(0, 92, 172, 0));
position: absolute;top: 0;z-index: 9;padding-bottom: 50px;}
.logo{width: 458px; position:relative; top: -55px; z-index: 9; margin: 0 auto;}
.gp-topNav{ width: 1580px; margin-top: 30px; position: relative;z-index: 9;}
.top-fl li{ display: inline-block; float: left; position: relative;}
.top-fl li:first-child a{ padding: 5px 40px 0 0;}
.top-fl li:first-child a:hover{background: none; border:none;}
.top-fl li > a{ display: inline-block; padding:0 15px; height: 40px; line-height: 40px;}
.top-fl li a img{}
.top-fr > a{ display: inline-block; padding: 0 15px; float: left; height: 40px; line-height: 40px;}
.gp-topNav li.on > a,.gp-topNav li > a:hover,.top-fr > a:hover
{ background: #fff; border-top: #ed6c00 1px solid; color: #ed6c00;}

.nav{ margin: -30px -50px 0 -50px; height: 55px;}
.nav > ul{ display: flex;display: -moz-box; /*firefox*/display: -ms-flexbox; /*ie10*/display: -webkit-box; /*safari*/display: -webkit-flex; /*chrome*/display: box;
display: flexbox; display: block\9; position: relative;}
.nav > ul > li{ position: relative; width: 100%;width:auto\9; float: left\9; padding: 0 2.4%\9;}
.nav ul > li:before{content: '';background-color:#ed6c00;position: absolute;left: 50%;bottom: 0;width: 0;height: 0;transition: all 0.35s ease-in-out;}
.nav ul > li.on:before{width: 60%;height: 2px;left:20%;}
.nav ul li > a{padding:0;text-align:center;line-height:55px;height:55px; font-size: 22px; font-size: 2.2rem; color:#fff; 
  display: block;transition: all 0.3s ease;}
.nav ul li.on > a,.nav ul li:hover > a{}
.nav ul li.on .subNav{display: block;}
.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;}
.subNav{width:160px;background:rgba(255, 255, 255,0.85); padding: 20px 0; position: absolute;left:33px;top:55px;display: none;z-index: 9;}
.subNav dd {}
.subNav a{ padding:14px 25px; font-size: 16px; line-height: 24px; display: block;}
.subNav a:hover{background-color:#005cac; background-color: #111e64; color: #fff;}
.topsubNav{ width: 160px;background: #FFF; position: absolute; top: 40px; padding: 16px 0; display: none;}
.topsubNav a{ display: inline-block; padding:5px 15px; font-size: 14px;font-size: 1.4rem; color: #333;}
.topsubNav a:hover{ color: #005cac;}

.gp-header{ transition: all 0.35s ease;}
.gp-header.currents{ position: fixed; background: #006dcc; background: #111e64; border: none; padding: 0; z-index: 9999; box-shadow: 0 2px 10px 0px #333;}
.gp-header.currents .nav{ margin-top: 0;}
.gp-header.currents .gp-topNav,.gp-header.currents .on .subNav,.gp-header.currents .gp-search,.gp-header.currents .logo{ display: none;}
.gp-header.currents .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, 50%, 0);
    transform: translate3d(0, 50%, 0);}

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);}
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 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;}

/*1.默认展开的搜索*/
.gp-search{}
.gp-ser{width:100%; height:38px; z-index:9999994; margin:0 auto;position: relative;}
.gp-search input,.gp-search button{ /*position:absolute;*/ height: 38px;line-height:38px; border:none; background:none; top:0px;overflow: hidden;}
.gp-search input.notxt{color:#cacaca; width:79%;left: 0;padding-left: 20%; outline: none;}
.gp-search .notxt1 {position: absolute;width: 15%;left:0;cursor:pointer; background: url(../images/ser.png) no-repeat center;}
 

/*4.搜索按钮全屏展开*/
#gp-serBtn4{position: relative;z-index: 801; width: 32px;height: 32px;background: url(../images/ser.png) no-repeat center;padding:5px 15px;}
#gp-serBtn4:hover{ border-top: none;}
.gp-search4{height: 0;border:none;width: 100%;overflow: hidden;position: fixed;top: 50%;z-index: 802;left: 0;}
.gp-search4 .gp-ser{max-width: 800px;}
.gp-search4 input,.gp-search4 button{height: 40px;line-break: 40px;}
.gp-search4 .gp-ser{height: 40px;border: 1px solid #ccc;}
.gp-search4 .notxt1{background-color: #dde1e7;color:#fff;}
.gp-search4 .gp-ser{display: none;border:none;background: #fff;}
.gp-search4.active .gp-ser{display: block;}
.gp-search4.active{height: 80px;}
.searchActive .gp-overlay{top: 0;}
@media screen and (max-width:998px) {
  .gp-search4 .gp-ser{width: 80%;}
  .gp-search4 input,.gp-search4 button{box-sizing: border-box;}
  .gp-search4 input.notxt{width: 100%;padding-right: 90px;}
  .gp-search4 .notxt1{width: 85px;}
}






/*.goTop {position: absolute;bottom: 0;left: 50%;z-index: 9999999;color: #fff;margin-left: -20px;transition: none;background-color:rgba(0,0,0,0.2);width: 40px;height: 40px;line-height: 50px;text-align: center;display: block;}*/
.goTop:hover{color:#fff;background-color:#0a9f7a;}
.goTop i{font-size: 32px;}
/*手机端导航*/
.mobile{width:100%;position:absolute;height: auto;display: none;top:16px;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: auto;position: absolute;top: 0;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: 4px;  background-color: rgba(255,255,255,1);}
.mobile-inner-header-icon{color: #fff; height: 30px;float:right;width: 30px;position: relative; cursor: pointer;text-align: right;margin-right: 8px;text-align: center;line-height: 30px;font-size: 30px;} 
.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: 25px;height:4px;display: block; border-radius: 5px;}
.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:rgba(10,82,167,0.95);}
.mobile-inner-nav a{display: inline-block;line-height: 50px;
    text-decoration: none;  width: 100%;font-size: 1.6rem; 
     border-bottom: solid 1px #2068bd;
    -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;}
.mobile-inner-nav li.on{background-color: #216bc3;}
.mobile-inner-nav li.on a{ color: #fff;}
.mobile-inner-nav li .icon-fanhui{ background: url(../images/jia.png) no-repeat center;}
.mobile-inner-nav li .icon-fanhui-copy{background: url(../images/jian.png) no-repeat center;}
.mobile-inner-nav li strong{color:#2c4780;position: absolute;right:5px;top:0;font-size: 1.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;background: #216bc3;}
.mobile-inner-nav dd a{height: 40px;line-height: 40px;border-bottom: solid 1px rgba(255,255,255,0.1);font-size: 1.5rem;}
.mobile-inner-nav dd a:hover{background-color: #19977a;}

.mobile_search input.notxt{background: none;} 
.mobile_search{clear: both;position: absolute;height: 40px;overflow: hidden;left: 0;top: 58px;width: 100%;z-index: 99993;display: block;}
.mobile_search .search{ overflow:hidden;height: 37px;position:relative;border-bottom: #2068bd 2px solid;background: #fff;} 
.mobile_search input.notxt{width: 84%;color:#566c99;border:none;padding: 0 20px;height: 38px;box-sizing: border-box;font-size:1.6rem; float: left;}
.mobile_search input.notxt1{width: 40px;right:10px;background:url(../images/ser.png) no-repeat center;border:none;height: 37px;left: auto;/*! right: 0; */float: right;}.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;right: 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: 95px 0 20px;
  transition: all 0.3s ease;}
.mobile_topNav{ width: 100%; height: auto; padding: 10px 0; overflow: hidden;}
.mobile_topNav a{ display: inline-block; width: auto; float: left; border: none; line-height: 35px;}

 
/*footer*/
 
.wrap_footer{background:url(../images/c-bg1.png) no-repeat center bottom; height: 404px; overflow: hidden;position: relative;}
.footer { position: relative; padding:60px 0 0; overflow: hidden;}
.footer .gp-fl{ width: 45%; overflow: hidden;}
.footer .gp-fr{ width: 30%; overflow: hidden;}
.f-logo{ display:inline-block; padding-bottom: 15px; border-bottom: #d9d9d9 1px solid;overflow: hidden;}
.copyRight{ margin: 18px 0; float:left;}
.copyRight p{ padding: 5px 0;}
.copyRight span{ color: #666; padding-right: 30px;}
.erweima { width: 300px;  float:right; margin: 18px 0;}
.erweima .code{ width: 300px; height: 100px;}
.erweima .codeText{ color: #999; text-align: center; margin-top: 8px;}
.list7 li{ width: 33.3%; overflow: hidden;}
.list7 li a{ display: block; background: #fff; margin:7px; padding: 16px 0; overflow: hidden;} 
.list7 .icon{ display: block;width: 61px; height: 61px; margin:0 auto;}
.list7 .listTitle { margin: 8px 8px 0 8px; height: auto;text-align: center;}
.list7 li a:hover .icon{-webkit-animation:icon-bounce 0.3s alternate;-moz-animation:icon-bounce 0.3s alternate;-ms-animation:icon-bounce 0.3s alternate;-o-animation:icon-bounce 0.3s alternate;animation:icon-bounce 0.3s alternate;}
@keyframes icon-bounce{0%,100%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}25%{-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-webkit-transform:rotate(15deg);transform:rotate(15deg);}50%{-moz-transform:rotate(-15deg);-ms-transform:rotate(-15deg);-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}75%{-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-webkit-transform:rotate(5deg);transform:rotate(5deg);}85%{-moz-transform:rotate(-5deg);-ms-transform:rotate(-5deg);-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}}@-webkit-keyframes icon-bounce{0%,100%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}25%{-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-webkit-transform:rotate(15deg);transform:rotate(15deg);}50%{-moz-transform:rotate(-15deg);-ms-transform:rotate(-15deg);-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}75%{-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-webkit-transform:rotate(5deg);transform:rotate(5deg);}85%{-moz-transform:rotate(-5deg);-ms-transform:rotate(-5deg);-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}}@-moz-keyframes icon-bounce{0%,100%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}25%{-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-webkit-transform:rotate(15deg);transform:rotate(15deg);}50%{-moz-transform:rotate(-15deg);-ms-transform:rotate(-15deg);-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}75%{-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-webkit-transform:rotate(5deg);transform:rotate(5deg);}85%{-moz-transform:rotate(-5deg);-ms-transform:rotate(-5deg);-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}}@-o-keyframes icon-bounce{0%,100%{-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}25%{-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-webkit-transform:rotate(15deg);transform:rotate(15deg);}50%{-moz-transform:rotate(-15deg);-ms-transform:rotate(-15deg);-webkit-transform:rotate(-15deg);transform:rotate(-15deg);}75%{-moz-transform:rotate(5deg);-ms-transform:rotate(5deg);-webkit-transform:rotate(5deg);transform:rotate(5deg);}85%{-moz-transform:rotate(-5deg);-ms-transform:rotate(-5deg);-webkit-transform:rotate(-5deg);transform:rotate(-5deg);}}




@media screen  and (min-width:2000px) {
      .gp-topNav.gp-container{ width:auto; margin-left: 30px; margin-right: 30px;}
      .gp-container{ width: 1200px;}
	  .copyRight{ width:100%;text-align:center;}

	  .wrap_footer{ background: url(../images/c-bg1.png) no-repeat center bottom; background-size:contain; padding-bottom: 0px; height: 400px;}
     
}



@media screen  and (max-width:1600px) {
      .gp-topNav.gp-container{ width:auto; margin-left: 30px; margin-right: 30px;}
      .gp-container{ width: 1200px;}
	  .copyRight{ width:100%;text-align:center;}
	  .erweima{width:100%;text-align:center;}
	  .erweima span{margin: 0 auto;}  
     
}

@media screen  and (max-width:1400px) {
      .gp-container{ width: 1100px;}
      .logo{ width: 325px;}
      .nav ul li > a{ font-size: 18px; font-size: 1.8rem;} 
	  .copyRight{ width:100%;text-align:center;}
	  .erweima{width:100%;text-align:center;}
	  .erweima span{margin: 0 auto;}   
}

@media screen  and (max-width:1300px) {
      .gp-container{ width: auto; margin-left:30px !important; margin-right:30px !important;}
      .footer .gp-fr{ margin-right: 5%;} 
      .logo{ width: 280px;}
      .gp-f24{ font-size: 18px; font-size: 1.8rem;}
	  .copyRight{ width:100%;text-align:center;}
	  .erweima{width:100%;text-align:center;}
	  .erweima span{margin: 0 auto;}   
} 

@media screen  and (max-width:1200px) {
       .gp-header.current{ display: none;}
       .gp-topNav,.nav{ display: none;} 
       .mobile{ display: block;}
       .gp-header{ background: #006dcc; position: static; padding-bottom: 0;border: none;}
       .logo{ width: 300px; top: auto; padding: 15px 0;}
	   .copyRight{ width:100%;text-align:center;}
	   .erweima{width:100%;text-align:center;}
	   .erweima span{margin: 0 auto;}    
}

@media screen and (max-width: 1024px) {
       .gp-container{ width: auto; margin-left:15px !important; margin-right:15px !important;}
       .footer{ padding: 40px 0 0;}
       .footer .gp-fl{ width: 37%;}
       .footer .gp-fr{ width: 37%;}
       .copyRight span{ padding-right: 10px;}
	   .copyRight{ width:100%;text-align:center;}
 
	  .wrap_footer{ background: url(../images/c-bg1.png) no-repeat center bottom; background-size:contain; padding-bottom: 0px; height: 400px;}
}

@media screen and (max-width: 766px) {
      .gp-f30{ font-size: 24px; font-size: 2.4rem;}
      .gp-title-lh22{ height: auto; max-height: 44px;}
      .gp-title-lh24{ height: auto; max-height: 48px;}
      .wrap_footer{ background: url(../images/c-bg1.png) no-repeat center bottom; background-size:contain; padding-bottom: 0px; height: 592px;}
      .footer{ padding: 40px 0;}
      .footer .gp-fl{ width: 100%; float: none; text-align: center;}
      .erweima{margin: 0 auto;} 
      .footer .gp-fr{ width: 80%; margin:0 auto 20px; float: none;}
      .f-logo{ width: 290px;}
      .list7 .icon{ width: 41px; height: 41px;}
      .list7 li a{margin: 3px;}
	  .copyRight{ width:100%;text-align:center;}
	  .erweima{width:100%;text-align:center;} 
	  .erweima span{margin: 0 auto;}  
}




@media screen and (max-width:640px) {
   .gp-f30{ font-size: 18px; font-size: 1.8rem;}
   .footer .gp-fr{width: 100%;}
   .copyRight{ width:100%;text-align:center;}  
   .erweima{width:100%;text-align:center;}
   .erweima span{margin: 0 auto;}   

.v_news_content img {
    width: 100% !important;
    height: auto !important;
}

}

@media screen and (max-width:480px) {
    .logo{ width: 235px;}
    .copyRight{ width:100%;text-align:center;} 
	.erweima{width:100%;text-align:center;} 
	.erweima span{margin: 0 auto;} 
}