/*导航栏css*/
.top{
  width: 100%;
  height: 80px;
  background: rgba(43,43,52,0.6);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
  align-items: center;
  min-width: 1100px;
}
.pageNav{
  /*width: 1080px;*/
  height: 80px;
  display: flex;
  flex-flow: row;
  align-items: center;
}
.fLinksUl{
  color: #fff;
  margin-left: 30px;
  display: flex;
  flex: 1 1;
  align-items: center;
  position: relative;
}
.JS_li{
  height: 80px;
  line-height: 80px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 100px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  &.current {
    img {
      transform: rotateZ(180deg);
    }
  }
  a{
    display: block;
    font-size: 16px;
    color: #fff;
    img{
      width: 12px;
      height: 12px;
      transition: all 0.2s;
      margin-left: 5px;
      vertical-align: middle;
    }
  }
}
.guidenceLi{
  height: 80px;
  line-height: 80px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  min-width: 100px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  a{
    display: block;
    font-size: 16px;
    color: #fff;
  }
}
.line{
  border-bottom: 0px solid #ff3f3f
}
.submenu{
  position: absolute;
  left:0;
  top:80px;
  background: rgba(43,43,52,0.6);
  width: 260px;
  height: 150px;
  overflow: auto;
  display: none;
  &.show{
    display: block;
  }
}
.submenuUl{
  display: flex;
  flex-wrap: wrap;
  a{
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    &:hover{
      color: #ff3f3f;
    }
  }
}
.client{
  display: flex;
  align-items: center;
}
.client{
  .client_btn1{
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 8px 0 8px 0;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0;
    background: #ff3f3f;
    color: #fff;
  }
  .client_btn2{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: 8px;
    width: 104px;
    padding: 0 8px;
    height: 40px;
    background: #538df4;
    border-radius: 8px 0;
    line-height: 14px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    &:hover{
      box-shadow: inset 0 0 8px #09f0ff;
    }
  }
}