@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  font-family: "兰亭黑-简", 'Microsoft YaHei', '微软雅黑','黑体';
  list-style: none;
  font-style: normal;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  position: relative;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
input,
button,textarea,select {
  outline: none;
  border: none;
}
img {
  max-height: 100%;
  max-width: 100%;
  display: block;
  border: none;
  transition: all 0.3s ease-in;
}
.clearfix::after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.clearfix {
  zoom: 1;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.nowrap {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.lth{
  font-family: "兰亭黑-简";
  font-weight: 450;
}
.mob_show {
  display: none!important;
}


a {
  color: #333;
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

figure {
  border-radius: 10px;
  overflow: hidden;
}
figure img {
  width: 100%;
  height: 100%;
}
figure img:hover {
  transform: scale(1.06);
}
.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.shadow{display: none;}

/* header */
header {
  z-index: 999;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 5%;
  background: #fff;
  border-bottom: 1px solid #494949;
  transition: all .3 ease;
}
header::after{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0px;
  width: 100%;
  border-bottom: 1px solid #000;
}
header .logo {
  height: 52px;
}
nav{
  margin-left: 8%;
}
nav ul{
  display: inline-block;
  vertical-align: middle;
}
nav li {
  position: relative;
  float: left;
}

nav li>a {
  position: relative;
  display: block;
  padding: 0 20px;
  font-size: 18px;
  color: #000;
  line-height: 90px;
}
nav li>a::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 0;
  border-top: 4px solid #39d1af;
  transition: all .3s ease;
}
nav li.active>a,nav li:hover >a{
  background: rgb(57, 209, 175);
  color: #fff;
}
nav li.active >a::before,
nav li:hover >a::before{
  
  width: 100%;
  transition: all .3s ease;
}
nav .login,.account{
  display: inline-block;
  margin-left: 30px;
}
nav .login a{
  display: inline-block;
  vertical-align: middle;
  padding: 8px 18px;
  background: rgba(55, 182, 165, .92);
  font-size: 17px;
  color: #fff;
  border-radius: 2px;
}
nav .login a:hover{
  color: #39d1af;
  background: #fff;
}
.h-right{
  padding-left: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #39d1af;
  font-size: 32px;
  line-height: 36px;
  background: url(../images/icon_tel.png) left no-repeat
}

.sub-li{
  display: none;
  z-index: 222;
  position: absolute;
  top: 80px;
  left: 50%;
  width: 140px;
  padding: 10px 0;
  margin-left: -70px;
  text-align: center;
  background: #fff;
}

.sub-li a{
  display: block;
  line-height: 40px;
}
.sub-li a:hover{
  color: #37ac9c;
  background: rgba(55, 182, 165, .1);
}
.sub-li::before{
  position: absolute;
  content: '';
  left: 50%;
  top: -16px;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}

.account{
  display: none;
  z-index: 999;
  position: relative;
  margin-left: 60px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    letter-spacing: 1px
}
.account .abox{
  font-size: 16px;
}
.logout em{
  color: #fff;
}
.logout span{
    color: #4ab3a6;
}
.logout a{
  padding: 6px 15px;
  margin-left: 16px;
  background: #37ac9c;
  color: #fff;
}
.acc-con{
  display: none;
  position: absolute;
  top: 50px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}
.account:hover .acc-con{
  display: block;
}
.acc-con::before{
  position: absolute;
    content: '';
    top: -10px;
    left: -2px;
    right: -2px;
    height: 20px;
    background: #333;
}
.acc-con::after{
  position: absolute;
  content: '';
  left: 50%;
  top: -6px;
  margin-left: -8px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
.acc-con-top{
display: flex;
margin-bottom: 10px;
padding: 10px 20px; 
margin-top: 12px;
justify-content: space-between;
align-items: center;
line-height: 28px;
font-size: 15px;
border-bottom: 1px solid #eee;
}
.acc-con-top span{
  color: #555;
}
.acc-con-top em{
  font-size: 18px;
  color: #f47c2e;
}
.acc-con-top a{
  width: 50px;
  text-align: center;
  color: #4ab3a6;
  line-height: 28px;
  border: 1px solid #4ab3a6;
}
.acc-con-top a:hover{
  background: #4ab3a6;
  color: #fff;
}
.acc-con p a{
  display: block;
  padding: 0 30px;
  font-size: 15px;
}
.acc-con p a:hover{
  color: #4ab3a6;
}

.acc-con .quit{
  display: block;
  margin-top: 10px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 16px;
  line-height: 45px;
}
.acc-con .quit:hover{
  color: #fff;
  background: #4ab3a6;
}

/* footer */
.footer{
  position: relative;
  padding-top: 60px;
  background: #333
}
.footer::before{
  position: absolute;
  content: '';
  top: 1px;
  left: 0;
  width: 100%;
  border-top: 2px solid rgba(213, 213, 213, .3);
  opacity: .3;
}
.footer .fl{
  width: 320px;
  padding-left: 20px;
  opacity: .7;
}
.footer .side{
  display: inline-block;
  width: 142px;
}
.footer .imgbox{
  padding: 10px; 
  border: 1px solid rgba(255, 255, 255, .2);
}
.footer .side span{
  display: block;
  margin-top: 5px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
}

.footer .fr{
  width: 820px;
  height: 178px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  padding-bottom: 32px;
  border-bottom: 1px dashed rgba(255, 255, 255, .27);
}
.footer .fr div{
   font-size: 18px;
   color: #fff;
   opacity: .55;
}
.footer .fr div:nth-of-type(2),
.footer .fr div:nth-of-type(3){
  color: #37b6a5;
  opacity: 1;
}
.footer .fr div a,.footer .fr div span{
  display: block;
  text-indent: 36px;
  line-height: 1.8;
}
.footer .fr .ft-tel em{
  display: block;
  margin-top: 20px;
}
.footer .fr .ft-tel i{
  display: block;
  margin-top: 15px;
  padding-left: 38px;
  background: url(../images/icon_qq.png) left no-repeat;
  background-size: 24px
}
.footer .fr div a{
  color: #fff;
}
.footer .fr div:nth-of-type(3) a{
  color: #37b6a5;
}
.footer .fr div a:hover{
  color: #37b6a5;
}
.foot-top{
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed rgba(255, 255, 255, .27);
}
.foot-top>div{
  font-size: 18px;
  color: #fff;
}
.foot-top>div a{
  margin-right: 10px;
  color: #fff;
}
.foot-top>div a:hover{
  color: #39d1af;
}
.foot-bottom{
  margin-top: 40px;
  padding: 24px;
  background: #1f1f1f;
  text-align: center;
  line-height: 2.2;
  color: rgba(255, 255, 255, .37);
}
.foot-bottom a{
  color: rgba(255, 255, 255, .37);
}
.foot-bottom a:hover{
  color: #fff;
}


/* 侧边栏 */
.r-siderbar {
  z-index: 999;
  position: fixed;
  top: 50%;
  right: 20px;
  width: 40px;
  margin-top: -100px;
  text-align: center;
}
.r-siderbar > div {
  position: relative;
  margin-bottom: 5px;
  cursor: pointer;
}
.r-siderbar i,
.r-siderbar .qq a {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: rgba(55, 182, 165, .92);
  background-size: 25px;
  font-size: 22px;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3 ease;
}
.r-siderbar > div div {
  z-index: 99;
  position: absolute;
  top: 0;
  right: 50px;
  display: none;
  width: 200px;
  height: 44px;
  background: rgba(255, 255, 255, .92);
  font-size: 18px;
  color: #39d1af;
  line-height: 44px;
  text-align: center;
  letter-spacing: 2px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  background-position: 10px center;
  background-size: auto 34px;
  background-repeat: no-repeat;
}
.r-siderbar > div div::before{
  position: absolute;
  right: -8px;
  top: 4px;
  content: url(../images/side_bg_arrow.png);
  background-repeat: no-repeat;
}
.r-siderbar > div:hover i,
.r-siderbar > div:hover a{
  background: #fff;
  color: #39d1af;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: all .3s ease;
  
}

.r-siderbar > div .ewm-box {
  top: 50%;
  width: 160px;
  height: 175px;
  margin-top: -90px;
  padding: 15px;
}
.r-siderbar > div .ewm-box::before{
  top: 40%;
}
.ewm-box em {
  display: block;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
.r-siderbar .qq-box{
  padding-left: 36px;
  background-image: url(../images/icon_qq.png) ;
}
.r-siderbar .phone-box{
  padding-left: 40px;
  background-image: url(../images/icon_phone.png) ;
}
.back-top{
  display: none;
  width: 44px;
  height: 44px;
  font-size: 30px;
  color: #fff;
  background: #777;
  line-height: 44px;
  transition: all .3s ease;
}
.back-top:hover{
  background: #39d1af;
}



/*  */
@media screen and (max-width: 1720px) {
  nav{
    margin-left: 0;
  }
  .h-right{
    /*display: none;*/
    font-size:20px;
  }
}
@media screen and (max-width: 1500px) {
  nav .login{
    -display: none;
  }
  .account{
    margin-left: 30px;
  }
  nav li a{
    font-size: 15px;
    padding:0px 6px
  }
  .logout span{
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .h-right{
    display: none;
  }
  nav li>a{
    /*margin: 0 10px;*/
  }
}
@media screen and (max-width: 1000px) {
  .b-btn a.b-btn-api{
    width: 100px !important;
  }
  .mob_show {
    display: block!important;
  }
  .mob_none {
    display: none!important;
  }
  header {
    
    position: fixed;
    top: 0;
    height: 70px;
    padding: 5px 20px;
  }
  header .icon-24gf-phoneLoudspeaker,
  header .icon-caidanguanli{
    vertical-align: middle;
    font-size: 28px;
    color: #37ac9c;
  }
  header .icon-24gf-phoneLoudspeaker{
    font-size: 32px;
    margin-right: 10px;
  }
  header .icon-caidanguanli{
    display: inline-block;
    animation: flicker ease-in-out 1.5s infinite;    
  }
  @keyframes flicker {
    0%{
      opacity: .3;
      transform: scale(.9);
    }
    50%{
      opacity: 1;
      transform: scale(1.05);
    }
    100%{
      opacity: .3;
      transform: scale(.9);
    }
    
  }
  nav {
    z-index: 1211;
    position: fixed;
    right: -60%;
    top: 0;
    height: 100%;
    width: 60%;
    margin-top: 0;
    padding: 0 20px;
    padding-top: 100px;
    text-align: center;
    border-left: 10px solid rgba(255, 255, 255, .15);
    background: #fff;
    transition: all 0.3s ease;
    
  }
  nav .icon-guanbi1{
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #000;
  }
  nav ul{
    display: block;
    width: 100%;
  }
  nav li{
    float: none;
    width: 100%;
    text-align: center;
    border-bottom: 1px dashed rgba(255, 255, 255, .16);
  }
  nav li a{
    line-height: 50px;
  }
  nav li a::before{
    display: none;
  }
  nav div{
    display: block;
    margin-left: 0;
    
  }
  nav .login, .account{
    margin-left: 0;
    text-align: center;
  }
  nav div a{
    margin-top: 30px;
    padding: 8px 18px;
    font-size: 15px;
    background: #37b6a5;
  }
  nav .mob-box{
    display: inline-block!important;
  }
  nav .mob-box a{
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 2px;
    background: #ee6004;
  }
  .sub-li{
    display: none!important;
  }
  header .logo {
    height: 40px;
  }
  nav .login a:hover{
    color: #Fff;
    background: #37ac9c;
  }
  .shadow{
    z-index: 1111;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
  }
  .logout a{
    display: block;
    padding: 0 15px;
    margin-left: 0;
  }
  .account:hover .acc-con{
    display: none;
  }
  /* footer */
  .lxfs {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .ulist {
    display: none;
  }

  /*  */
  .r-siderbar {
    display: none;
  }
  .fw-container .head{
    margin-top: 50px;
  }
  .fw-container h1{
    font-size: 22px;
  }
  .fw-container h2{
    height: 18px;
  }
}

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



.xiadantips{ float: left;}
.xiadantips span {float: initial!important;color: red!important; line-height: 30px;}

@media screen and (max-width: 1960px){
  .h-right{
    font-size: 22px;
  }
  nav li>a{
    padding: 0 13px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1530px){
  header{
    padding:0 20px;
  }
  header .logo{
    height: 40px;
  }
  .h-right{
    display: none;
  }
}
@media screen and (max-width: 1100px){
  
  nav li>a{
    padding: 0 10px;
  }
}