@charset "utf-8";
/* CSS Document */
body{
    background: #fff;
}
* { touch-action: pan-y; }

/*头部样式*/
.gp-header { width: 100%; /* background: url(../images/headerbg.jpg) repeat-x top center; background-size: cover; */
  position:relative; z-index: 99; transition: all 0.2 ease;}
.gp-header .gp-container{ max-width: 1600px; width:90vw; padding: 0 20px; position: relative;
  -webkit-animation-name: header_in;
  animation-name: header_in;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;}  
.logo { display: block; width:23vw; float: left; padding: 18px 0 17px; transition: all 0.2s ease;}
.topRight{ margin-left:28vw; position: relative; transition: all 0.2s ease;}
.top {height: 50px; line-height: 50px; text-align: right; margin-right: -30px; transition: all 0.2s ease;}
.top span{display: inline-block; padding:0 25px;position: relative;}
.top span:before{content: ""; display: block; width: 1px; height: 13px; background: #336e9e;
position: absolute; right: 0; top:18px;}
.top span:last-child:before{display: none;}
.top span a{display: inline-block; color: #fff; opacity: 0.7; font-size:1.4rem; padding:0 10px;}
.top span a:hover{ opacity: 1; }
.nav { margin-top: 15px; margin-right:6vw;}
.nav ul{ display: flex;}
.nav ul li{ float:left;height:65px;transition: all 0.3s ease;position: relative;}
.nav ul > li{ position: relative; width: 100%;}
.nav ul > li.on{ }
.nav ul > li:before{ content:"";display: block; width:10px; height:0; background: #fff; position: absolute; left:50%;
bottom:0;  z-index: 99; transition: all 0.35s ease-in-out;}
.nav ul > li.on:before{height: 34px; bottom: -17px;}
.nav ul > li:after{content: '';background-color: #fff;position: absolute;left: 50%; bottom: -2px;width: 0;height: 0;transition: all 0.35s ease-in-out;}
.nav ul > li.on:after{width:100%;height: 2px;left: 0}
.nav ul li > a{padding:0;text-align:center; height: 65px; font-size:2.0rem; color: #fff;
   display: block;transition: all 0.2s ease; position: relative;}
.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{display: none;position: absolute;left: 0;top: 100%;margin-top: 2px;padding-left: 20px;display: none;font-size: 14px;background:url(../images/nav_bg.png) no-repeat right bottom #004a86;z-index: 10;box-sizing: border-box;}
.subImg{width: 33%;float: left;margin: 35px 25px 35px 0;}
.subNavList{margin: 35px 25px 35px 35%;font-size: 0;text-align: left;overflow: hidden;}
.subNav dd{position: relative;z-index: 3;text-align: left;width: 33.3%;display: inline-block;*display: inline;*zoom: 1;font-size: 15px;vertical-align: top;}
.subNav a{color:#fff;padding:8px 10px;display: block;line-height: 23px; font-size: 1.8rem; position: relative;transition: all 0.35s ease-out;}
.subNav a:hover{transform: translateX(10px);}
.nav li:hover .subNav{-webkit-animation-name: flipInY ;animation-name: flipInY ;animation-duration: 0.4s;-webkit-animation-duration: 0.4s;animation-timing-function: ease-in-out;-webkit-animation-timing-function: ease-in-out;visibility: visible !important;display: block;}
@keyframes flipInY  {
  from {-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);transform: perspective(400px) rotate3d(0, 1, 0, 90deg);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;opacity: 0;transform: scaleX(0);}
  to {-webkit-transform: perspective(400px);transform: perspective(400px);opacity: 1;transform: scaleX(1);}
}

.gp-header.currents{ position: fixed; top: 0; box-shadow: 0 3px 7px #333;}
.gp-header.currents .topRight{ margin-left: 18vw;}
.gp-header.currents .top{ display: none;}
.gp-header.currents .logo{ width: 13vw; padding:0;}
.gp-header.currents .nav{ margin-top: 25px;}
.nav ul > li:nth-child(2) dd{width: 50%;white-space:nowrap;}

@-webkit-keyframes header_in {
  from {opacity: 0;top: -300px;}
  to {opacity: 1;top: 0;}
  }
  @keyframes header_in {
  from {opacity: 0;top: -300px;}
  to {opacity: 1;top: 0;}
  }


.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;
}

.gp-search4.active .gp-overlay{display: block;}
.gp-search4 .close{background: url(../images/close.png) center no-repeat;background-size: 60%;width: 50px;height: 50px;position: absolute;
  right: 50px;top: 50px;cursor: pointer;z-index: 999;}
.gp-search4.active .close{ position: fixed; }

/*1.默认展开的搜索*/
.gp-search{}
.gp-ser{width:100%; height:40px; z-index:9999994; margin:0 auto;position: relative;}
.gp-search input,.gp-search button{position:absolute; height: 40px;line-height:40px; border:none; background:none; top:0px;overflow: hidden; }
.gp-search input.notxt{color:#cacaca; width:79%;left: 0;padding-left: 2%; outline: none; height:38px;}
.gp-search .notxt1 {position: absolute;width: 15%;right:0;cursor:pointer; background: url(../images/ser.png) no-repeat center; }


/*4.搜索按钮全屏展开*/
#gp-serBtn4{ width:50px;height:50px;background: url(../images/ser.png) no-repeat center rgba(0, 0, 0,0.12); cursor: pointer;
 border: rgba(255, 255, 255, 0.2) 1px solid; border-radius: 50%; position: absolute; right: 0; top: 24px;}
.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-height: 40px;}
.gp-search4 .gp-ser{height: 40px;border: 1px solid #ccc;}
.gp-search4 .notxt1{background-color: #004a86;color:#fff;outline: none;}
.gp-search4 .gp-ser{ border:none;background: #fff; opacity: 0; transition: all 0.5s ease;}
.gp-search4.active .gp-ser{opacity: 1;}
.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;/*! margin-top: 18px; */} 
.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(0,74,134,0.95); overflow: hidden;}
.mobile-inner-nav a{display: inline-block;line-height: 50px;
    text-decoration: none;  width: 100%;font-size: 1.6rem; 
     border-bottom: solid 1px #3b6d99;
    -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: #0d67b1;}
.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: #0d67b1;}
.mobile-inner-nav dd a{height: 40px;line-height: 40px;border-bottom: solid 1px rgba(255,255,255,0.1);font-size: 1.5rem; padding-left: 40px;}
.mobile-inner-nav dd a:hover{background-color: #0d67b1;}

.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 #1d79c3;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*/
.wrapfooter{ padding: 60px 0; background:url(../images/footerbg.jpg) no-repeat center top; background-size: cover; overflow: hidden;position: relative;}
.footer .gp-fl{ max-width: 500px;}
.footer .gp-fr{ max-width: 380px;}
.f-logo{ max-width: 308px; margin:15px 0 65px;}
.address{ position: relative; padding-left: 80px;}
.address .flag-box { position: absolute; left:0; top:0;}
.address p{ display: block; padding:2px 0; opacity: 0.7;}
.address p span{ padding-right: 10px;line-height: 20px;}
.codeList{ margin: -15px; text-align: center; overflow: hidden;}
.codeList li { width: 33.3%;}
.codeList li a{ display: block; margin: 15px; overflow: hidden;}
.codeList .codeImg{ display: block; width: 100px; height: 100px; margin: 0 auto; overflow: hidden;}
.codeList .codeText{ display: block; margin:10px 0 0; opacity: 0.7;}
.Tel{ color: #fff; opacity: 0.7; text-align: right; margin-top: 50px;}




/* 20230306添加头部样式 */
header{ position: relative;}
.head_top{ background: #004a86;}
.head_bottom{ background: rgba(0,74,134,0.5); width: 100%; 
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);}
.Banner a{/*  padding-top: 80px; */}
.gp-filter{ display: none; width: 100%; height: 80px; overflow: hidden; filter: blur(10px);
  position: absolute; top: 0px; z-index: 1; }
.gp-filter img{ transform: translateY(-30px);}
.nav{ margin-top: 0px; padding-top: 44px;}
.nav ul li > a{ line-height: 1;}
.nav ul li.on > a{ font-weight: bold; text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.004),0px 0px 16px rgba(0, 0, 0, 0.3);}
.gp-overlay{ width: 100vw; height: 100vh;}
.currents .head_bottom{ top: 0px; /* background: rgba(0,74,134,0.7); */}
.gp-header.currents .nav{ padding-top: 0;}
.currents .subNav{ margin-top: 0;}
.currents #gp-serBtn4{ top: auto; bottom: 24px;}







@media screen  and (max-width:1600px) {
    .gp-container{ width: 1240px;}
    .gp-f30{ font-size: 2.6rem; }
    .subNav a{font-size: 1.5rem;} 
    .gp-f16{ font-size: 1.4rem;}
    .gp-f14{ font-size: 1.2rem;}
    .gp-f12{ font-size: 1.0rem;}
    .gp-f28{ font-size: 2.0rem;}
    .gp-f40{ font-size: 3.0rem;}
    .f-logo{ margin: 0 0 40px;}
    .Tel{ margin-top: 20px;}
    
    .logo{ width: 21vw;}
    .top span a{ font-size: 1.3rem; }
    .nav ul li,.nav ul li > a{ height: 50px; }
    .nav ul li > a{ font-size: 1.8rem; }
    #gp-serBtn4{ width: 38px; height: 38px; bottom: 16px; }
    
}

@media screen  and (max-width:1500px) {

     
}

@media screen  and (max-width:1460px) {
    .top{ margin-right: -20px; height: 40px; line-height: 40px;}
    .top span{ padding: 0 15px; }
    .logo{ padding: 20px 0; }
    .nav{ margin-top: 10px; }
    .gp-search4 .gp-ser{max-width:600px;}
    .subNav dd{width: 40%;}
    .subNav a{ }
    .subImg{ width: 30%; }
    .subNavList{margin: 30px 30px 30px 0%;}

/* 20230306添加头部样式 */
    .head_bottom{ top: 40px;}
      
}

@media screen  and (max-width:1300px) {
    .gp-header .gp-container{ width: auto; margin-left: 30px; margin-right: 30px;}
    .top span a{ font-size: 1.2rem; }
    .nav ul li,.nav ul li > a{ height: 50px; }
    .nav ul li > a{ font-size: 1.6rem; }
    #gp-serBtn4{ width: 38px; height: 38px; bottom: 20px; }
    .gp-container{ width: 1000px;}  
    .gp-f30{ font-size: 2.0rem;}
    .wrapfooter{ padding: 45px 0;}
    .f-logo{ max-width: 200px;}
    .footer .gp-fr{ max-width: 310px;}
    .codeList .codeImg{ width: 100%; height: auto;}
} 

@media screen  and (max-width:1200px) {
       .gp-header.current{ display: none; }
       .top,.nav,.gp-serBtn2,#gp-serBtn4{ display: none !important; } 
       .mobile{ display: block; }
       .logo{ float: none; margin: 0 auto; }
       .gp-container{ width: auto; margin-left:30px !important; margin-right:30px !important; }
       .gp-f16{ font-size: 1.6rem;}
       .gp-f14{ font-size: 1.4rem;}
       .gp-f12{ font-size: 1.2rem;}
       .gp-f28{ font-size: 2.8rem;}

        /* 20230306添加头部样式 */
        .head_bottom{ top: 0px;}
}

@media screen and (max-width: 1024px) {
       .logo{ width: 240px; padding: 20px 0;}
       .gp-container{ width: auto; margin-left:15px !important; margin-right:15px !important; }
       

}

@media screen and (max-width: 992px) {
  .footer .gp-fr{ float: none; margin: 0 auto 20px auto; max-width: 325px;}
  .footer .gp-fl{ float: none; margin: 0 auto; max-width: 325px;}
  .Tel{ text-align: center;}
  .f-logo{ margin: 0 auto 20px;}

}


@media screen and (max-width:766px) {

     
}



@media screen and (max-width:640px) {
     .logo{ width: 220px; }
     .address p span{ display: block; padding: 0;}
     
}

@media screen and (max-width:480px) {
    
     
}
