@charset "utf-8";
.flex{ display: flex; display: -ms-flexbox; justify-content: space-between; -ms-justify-content: space-between; -ms-flex-pack: justify;}
@keyframes navFixed { /* 导航冻结进入效果 */
  0%{ transform: translateY(-100px); opacity: 0;}
  100%{ transform: translateY(0); opacity: 1;}
}

body{ -webkit-tap-highlight-color: transparent;}  /* 移动端点击，取消选中背景 */
header{ z-index: 1;position: absolute; top: 0;left: 0;width: 100%;z-index: 10;}
/* header.currents{ position: fixed;opacity: 0; animation: head 0.6s ease forwards;}
@keyframes head {
  0%{ transform: translateY(-100%);opacity: 0;}
  100%{ transform: translateY(0%);opacity: 1;}
} */
header::before{ content: '';display: none;width: 100%;height: 0;padding-bottom: 12.24%;
  background-image: -moz-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
  opacity: 0.5;position: absolute;left: 0;top: 0;z-index: 0;pointer-events: none;
}
header.currents .header{
  /* background: url(../images/head_bg.png) no-repeat center/cover; */
  background-image: -moz-radial-gradient( 50% 50%, circle closest-side, rgb(1,158,88) 0%, rgb(0,118,78) 100%);
  background-image: -webkit-radial-gradient( 50% 50%, circle closest-side, rgb(1,158,88) 0%, rgb(0,118,78) 100%);
  background-image: -ms-radial-gradient( 50% 50%, circle closest-side, rgb(1,158,88) 0%, rgb(0,118,78) 100%);
}
header.currents::before{ opacity: 0;}

.header{ padding-top: 50px;}
.header > .flex{ width: 100%; margin: 0 auto; padding: 0 70px 0 78px; align-items: flex-end;}
.logo{ position: relative; align-items: center;flex-shrink: 0;}
.logo a{ display: block; font-size: 0;}

.nav{ position: relative;display: flex;justify-content: flex-end;flex: 1;}
.nav ul{ position: relative; justify-content: space-between; width: 100%; max-width: 1250px; margin-left: 20px;}
.nav li{ position: relative;}
.nav li:first-child{ margin-left: 0;}
/* .nav li.on a{ background: #004085;} */
.nav li > a{ display: block; line-height: 44px; padding: 0 0px; font-weight: normal;}
.nav li > a::before{ content: ''; display: none; width: 100%; height: 0px;background: #ccad8f;
  position: absolute;left: 0;bottom: 0;transform: all 0.35s ease;}
.nav li > a:hover::before,
.nav li > a.on::before,
.nav li > a.active::before{ height: 4px;}
.nav li > a:hover{ opacity: 0.9;}
.nav .subnav{ display: none; position: absolute; top: 100%; left: 50%;transform: translateX(-50%); width: 100%; min-width: 160px;
    background: rgba(1, 124, 79, 0.77); box-sizing: border-box; padding: 0px 0; border-top: 2px solid transparent;}
.nav dd a{ display: block; padding: 10px 0; /* padding-left: 30px; */ text-align: center; line-height: 1.5; color: #fff;}
.nav dd a:hover{ color: #fff;background: #017c4f;}
@supports (-webkit-background-clip: text) {
  .nav li > a:hover {
    text-shadow: 0 0 1px rgba(255,255,255,1);
    background-image: -webkit-linear-gradient(90deg, #ba1001, #f59978);
    background-image: linear-gradient(90deg, #ba1001, #f59978);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}


/*手机端导航默认*/
.mobile_bg{width: 100%;height: 100%;z-index: 90;position: fixed;top: 0;left: 0;background: rgba(0,0,0,0.6);display: none;}
.gp-menu{ display: none; width: 100%;z-index: 98;height: 100%;position: relative;}
.gp-menu-header{position: absolute;top: 0;right: 0;z-index: 996;width: 100%;height: 40px;background: rgba(0,0,0,0);}
.gp-menu-link{float: left;line-height: 40px;height: 40px;padding-left: 15px;}
.gp-menu-link a{color:#fff;}
.gp-menu-header-icon{color: #fff; 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;margin-right: 10px;cursor: pointer;}
.gp-menu-header-icon span{  position: absolute; left: calc((100% - 25px) / 2);  top: calc((100% - 2px) / 3);  width: 27px;  height: 3px;  background-color: #003670;}
.gp-menu-header-icon-out span{width: 27px;height: 4px;background-color:#fff;display: block;border-radius: 4px;}
.gp-menu-header-icon-out span:nth-child(1){animation-duration: 0.5s;animation-fill-mode: both;animation-name: outfirst;}       
.gp-menu-header-icon-out span:nth-child(2){animation-duration: 0.5s;animation-fill-mode: both;animation-name: outsecond;}
.gp-menu-header-icon-out span:nth-child(3){animation-duration: 0.5s;animation-fill-mode: both;animation-name: outthird;}
.gp-menu-header-icon span:nth-child(1){transform: translateY(4px) rotate(0deg);}
.gp-menu-header-icon span:nth-child(2){transform: translateY(-4px) rotate(0deg);}
.gp-menu-header-icon span:nth-child(3){transform: translateY(-4px) rotate(0deg);}
@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); }
}
.gp-menu-header-icon-click span{background-color:#fff ;top: calc((100% - 2px) / 2.1);}
.gp-menu-header-icon-click span:nth-child(1){animation-duration: 0.5s; animation-fill-mode: both;animation-name: clickfirst;}     
.gp-menu-header-icon-click span:nth-child(2){animation-duration: 0.5s; animation-fill-mode: both;animation-name: clicksecond;}
.gp-menu-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}
}   
.gp-menu-nav{ width: 100%; max-height: 100vh; overflow-y: scroll;
  position: fixed;top: 0;right: 0px;padding: 40px 40px 80px;display: none;
  background:#ba1001;
  background-image: -moz-linear-gradient( -10deg, #c01303 0%, #6739b6 100%);
  background-image: -webkit-linear-gradient( -10deg, #c01303 0%, #6739b6 100%);
  background-image: -ms-linear-gradient( -10deg, #c01303 0%, #6739b6 100%);}

.gp-m-logo{ padding-left: 10px; height: 50px; border-bottom: none !important;margin-bottom: 10px;}
.gp-m-logo img{ height: 100%; max-width: unset; width: auto;}
/*导航*/
.gp-menu-nav a{}
.gp-menu-nav > ul { padding-bottom: 20px;}
.gp-menu-nav > ul li{-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;}
.gp-menu-nav > ul > li{position: relative;border-bottom: 1px solid rgba(255,255,255,0.3);}
.gp-menu-nav > ul > li > a{display: inline-block;padding:14px 0 14px 25px;font-size: 16px;}
.gp-menu-nav > ul > li > ul {background: rgba(0,0,0,0.1);padding:0 25px}
.gp-menu-nav > ul > li > ul a{display: inline-block;padding:10px 0; font-size: 14px;}
.gp-menu-arrow {cursor: pointer;width: 30px;height: 50px;line-height: 50px;color:#fff;text-align: center;position: absolute;right: 0;top: 0;font-size: 20px;margin-right: 10px;transition: all 0.3s ease-in-out;}
.gp-menu-nav > ul > li.on .gp-menu-arrow{transform: rotate(90deg);}
.gp-menu-nav li ul {display: none;}
/*导航内标签效果*/
.gp-menu-nav a{color:#fff;}
.open .gp-menu-link{display: none;}
.open .gp-menu-header{background: none;}
@-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;
  }
}
/* 移动端链接 */
.gp-menu-nav > ul > li.gp-m-links{ border: none; padding: 10px 0; text-align: center;}
.gp-menu-nav > ul > li.gp-m-links a{ display: inline-block; padding: 5px 10px;}
.gp-menu-nav > ul > li.gp-m-search{ display: block; width: 85%; margin: 0 auto; float: none;height: 35px; line-height: 35px;}
.gp-m-search.gp-search input.notxt, .gp-m-search.gp-search .notxt1{ width: calc(100% - 45px); height: 35px; line-height: 35px; right: 10px;
  border-radius: 0;padding-left: 20px;}
.gp-m-search.gp-search .notxt1{ width: 45px; background-position: center; right: 0;
  background: rgba(255, 255, 255, 0.1) url(../images/search.png) no-repeat center;
  position: absolute; right: 0;top: 0;z-index: 1;}
.open header{ z-index: 9;}
.gp-m-links{ justify-content: center;}
.gp-menu-nav > ul > li.gp-m-links a{ padding-left: 25px;}
.gp-menu-nav > ul > li.gp-m-links a.login{ padding-left: 23px;}

.header2{ 
  display: none;
  background: #fff;
  padding: 5px 70px;
  box-shadow: 10px 10px 20px 1px rgba(0, 0, 0, .1);
  overflow: hidden;
}
.currents .header2{ 
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 9999;
}
.header2 .logo{ width: 80px; flex-shrink: 0;}
.header2 .logo { display: block;}
.header2 .logo img{ width: 100%;}
.header2 .nav a{ color: #f26b02;}
.header2 .nav li > a:hover{ background-clip: unset;-webkit-text-fill-color: unset; background: none;color: #ba1101;}



/* footer */
footer{ position: relative; z-index: 1;background: url(../images/footer-bg.jpg) no-repeat center/cover; padding: 96px 0 90px;}
.footer{ align-items: center;}
.footer .ft-logo a{ display: block; font-size: 0;}
.copyTil{ font-weight: bold;padding-bottom: 17px;}
.copyCon .rt{ margin-left: 70px; padding-right: 8.85vw;}
.copyCon span{ display: block; color: rgba(255,255,255,0.6);line-height: 32px;}



/* 响应式样式 */
@media screen and (max-width:1600px){
  .nav li > a{ font-size: 22px;}
}

@media screen and (max-width:1480px) {
  .header > .flex{ padding: 0 40px;}
  .nav li > a{ font-size: 20px;}
}

@media screen and (max-width:1340px) {
  
}

@media screen and (max-width:1280px) {
  .logo{ max-width: 300px;}
  .header > .flex{ padding: 0 20px;}
  .nav li > a{ font-size: 18px;}
}
  
@media screen and (max-width:1180px) {
  .gp-menu{ display: block; position: absolute; top: 30px; right: 0; width: auto;}
  .open .gp-menu{ position: fixed; top: 30px;}
  .search, .nav, .header-rt{ display: none;}

  .header{ padding-top: 20px;}
  .header2{ display: none;}
  .copyCon .rt{ margin-left: 40px;}
}

@media screen and (max-width:1100px) {
  .nav li > a{ font-size: 16px;}
}

@media screen and (max-width:1024px) {
  footer{ padding: 30px 0; background-size: 100% 100%;}
  .footer{ flex-direction: column;}
  .copy{ margin-top: 10px;}
  .copyTil{ padding-bottom: 10px;}
  .copyCon span{ line-height: 1.5;}
  .copyCon .rt{ padding-right: 0;}
}

@media screen and (max-width:998px) {
  .gp-menu-nav{ max-height: 100vh; overflow-y: scroll;}
  .gp-menu-header-icon{ margin-right: 30px;}
  
}

@media screen and (max-width:768px) {
  .gp-menu{ top: 20px;}
  
}

@media screen and (max-width:640px) {
  .gp-menu{ top: 10px;}
}

@media screen and (max-width:540px) {
  .gp-menu-nav > ul > li.gp-m-search{ width: calc(100% - 30px);}
}

@media screen and (max-width:479px) {
  .open .gp-menu-header{ right: 20px;}
  .gp-menu-header-icon{ margin-right: 5px;}
  
  .header{ padding-top: 10px;}
  .logo img{ max-height: 50px;}
  .copyCon{ flex-direction: column;}
  .copyCon .rt{ margin-left: 0;}
}

@media screen and (max-width:414px) {
  
}

@media screen and (max-width:370px) {
  .gp-menu-nav{ padding: 30px 20px 40px;}
}