a:hover, a:focus {
  text-decoration: none;
  /* color: #2793f8; */
}
.kele-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 155px;
    background-color: #005a9e;
    box-sizing: border-box;
    box-shadow: 0 0 10px #878787;
}
.header-logo img{/*width: 200px;*/max-height:100px;}
.kele-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .kele-pagination li.active .active,
  .kele-pagination li.active .active a{
    color: var(--secondary-color) !important;
    font-weight: initial !important;
  }
  .kele-nav .kele-nav-list{
    display: inline-block;
    padding-left: 0;
    font-size: 0;
  }
  .kele-nav .kele-nav-list li{
    display: inline-block;
      position: relative;
    padding: 30px 0;
  }
  .kele-nav .kele-nav-list li a{
    display: inline-block;
    width: 100%;
    padding: 0 20px;
    line-height: 28px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    box-sizing: border-box;
    font-weight: lighter;
    height: 28px;
    border: #1d1e2200 1px solid;
    border-radius: 20px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
  }
  .kele-nav .kele-nav-list li > a{
    /*border-left: 1px solid #ccc;*/
    text-align: center;
    font-size: 16px;
  }
  .kele-nav .kele-nav-list li:nth-child(1) > a{
    border-left: none;
  }
  
  .kele-nav .kele-nav-list li.dropdown .dropdown_menu{
    display: none;
    position: absolute;
    top: 80%;
      left: 50%;
    transform: translateX(-50%);
    /* padding: 0px; */
    min-width: 120px;
    border-radius: 0px;
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgb(0 0 0 / 5%);
    border-top: 2px solid #3283c1;
  }
  .kele-nav .kele-nav-list li.dropdown:hover .dropdown_menu{
    display: block;
  }
  .kele-nav .kele-nav-list li.dropdown:hover a{
    color: #060659;
    border: 1px solid #060659;
    
  }
  .kele-nav .kele-nav-list li.dropdown .dropdown_menu a{
    color: #666;
    display: block;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    transition: all 0.2s ease-in-out 0s;
    max-width: 100%;
    border: 0 none;
    border-bottom: 1px solid #eee;
    border-radius: initial;
    padding: 0;
    text-align: center;
    /* background-color: #fff; */
  }
  .kele-nav .kele-nav-list li.dropdown .dropdown_menu a:hover{
    color: #3283c1;
    background: #f9f9f9;
    text-indent: 3px;
  }
  .kele-nav .kele-nav-list li a:hover{
    color: #3283c1;
  }
  .kele-nav > a{
    display: inline-block;
    margin-left: 20px;
    margin-right: 18px;
    width: 24px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    /* background-color: #008eff; */
    background-color: var(--secondary-color);
    vertical-align: middle;
  }
  .kele-header-placeholder {
    height: 155px;
}
.kele-header-m{
  display: none;
  /* display: flex; */
  justify-content: space-between;
  padding: 10px 15px 10px;
  height: 70px;
  background-color: #005a9e;
  box-sizing: border-box;
}
#navToggle{
  position: relative;
  height: 19px;
  width: 25px;
  margin-top: 15px;
  display: inline-block;
}
#navToggle span,
#navToggle:before,
#navToggle:after{
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  /* background-color: #4f4f4f; */
  background-color: #FFF;
}
#navToggle:before,
#navToggle:after{
  content: '';
}
#navToggle span{
  top: 9px;
}
#navToggle:before{
  top: 0;
}
#navToggle:after{
  bottom: 0;
}
/* app-nav start */

.kele-nav-m{
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
  transform: translateX(100%);
  overflow: hidden;
  z-index: 999999999;
}
.kele-nav-m .top{
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}
.closed{
  width: 30px;
  height: 30px;
  vertical-align: middle;
  float: right;
}
.kele-nav-m .logo{
  width: 100%;
  padding: 10px 0 30px;
  text-align: center;
}
.kele-nav-m .logo img{
   /*height: 60px; */
  width: 140px;
  vertical-align: middle;
  margin-left: -100px;
}
.kele-nav-container{
  height: calc(100% - 160px);
  overflow-x: hidden;
}
.kele-nav-m .kele-nav-list{
  padding: 0;
}
.kele-nav-m .dropdown_menu a{
  border-top: 1px solid #f5f5f5;
  padding-left: 30px;
}
.kele-nav-m li{
  border-bottom: 1px solid #f5f5f5;
}
.kele-nav-m a{
  display: block;
  padding: 0 20px;
  line-height: 50px;
  color: #333;
  font-size: var(--font-size-nav);
}
.dropdown_menu{
  display: none;
}
/* .kele-nav-m a:focus + .dropdown_menu{
  display: block;
} */

/* app-nav end */

/* 底部 */
.footer{background-color: #1d1e22;}
.footer .links{height: 80px;line-height: 80px;font-size: 16px;color: #fff;border-bottom: 1px solid #353535;margin-bottom: 40px;}
.footer .links a{color: #fff;}
.footer .footer_nav{padding-bottom: 20px;}
.footer .footer_nav dd a{color: #999;}
.footer a:hover,.footer .footer_nav dd a:hover{color: #3283c1;}
.footer dl{color: #fff;}
.footer dt{font-size: 18px;padding: 15px 0;font-weight: 100;}
.footer dd{line-height: 26px;font-size: 12px;color: #999;}
.footer .footer_nav .col-md-3{border-right: 1px solid #353535;}
.p1{padding-left: 90px;color: #FFF;}
.p2{font-size: 34px; color: #1295f8;font-family: "GrayDesign Regular", "arial, helvetica, sans-serif";line-height: 34px;}
.p3{font-size: 14px; color: #999;font-size: 12px;}
.p4{font-size:18px;padding-top: 15px;}
.footer-ewm{float: right;}
.footer-ewm img{border: 4px solid #666;max-width: 130px;width: 100%;}
.footer-ewm p{text-align: center;}
.ewm-p{color: #FFF;margin-top: 20px;}
.line-c{border-top: 1px solid #353535;}
.line-c p{padding: 10px;color: #999;}
@media (min-width: 992px) and (max-width: 1199px){
  .kele-header-placeholder{
    height: 110px;
  }
  .kele-header{
    padding: 60px 10px 0;
    height: 110px;
  }
  .header-logo{
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .kele-nav{
    display: flex;
    width: 100%;
  }
  .kele-nav .kele-nav-list{
    padding-left: 0px;
    margin: auto;
    margin-right: 0;
  }
  .kele-nav .kele-nav-list li{
    padding: 10px 0;
  }
  .kele-nav .kele-nav-list li a{
    padding: 0 10px;
  }
  .kele-nav .kele-nav-list li.dropdown .dropdown_menu{
    top: 38px;
    min-width: 100px;
  }
  .kele-nav > a{
    position: absolute;
    top: 26px;
    right: 160px;
  }
  .header-right{
    position: absolute;
    right: 10px;
    top: 20px;
  }
  .kele-header-m{
    display: none;
  }
  .kele-nav-m{
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .kele-header-placeholder{
    height: 110px;
  }
  .kele-header{
    padding: 60px 10px 0;
    height: 110px;
  }
  .header-logo{
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .kele-nav{
    display: flex;
    width: 100%;
  }
  .kele-nav .kele-nav-list{
    padding-left: 0px;
    margin: auto;
    margin-right: 0;
  }
  .kele-nav .kele-nav-list li{
    padding: 10px 0;
  }
  .kele-nav .kele-nav-list li a{
    padding: 0 10px;
  }
  .kele-nav .kele-nav-list li.dropdown .dropdown_menu{
    top: 38px;
    min-width: 100px;
  }
  .kele-nav > a{
    position: absolute;
    top: 26px;
    right: 160px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .kele-header,
  .kele-header-placeholder{
    display: none;
  }
  .kele-header-m{
    display: flex;
  }
  .kele-nav{
    display: none;
  }
  .kele-nav-m{
    display: block;
  }
  .logo img{width: 140px;}
  .footer .links{padding:0 10px;font-size: 12px;height: 40px;line-height: 40px;margin-bottom: 10px;}
  .p1{padding-left: 0px;}
  .ewm-p{margin-top: 10px;}
  .line-c p{padding: 10px 0;}
}