/*浮动客服*/
.floatBar {
  display: none;
  width: 34px;
  height: 113px;
  position: fixed;
  right: 0;
  top: 50%;
  overflow: hidden;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
  background-color: #ff5c01;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/contact-icon.png);
}
.floatBar:hover {
  background-color: #ff7d34;
}
.float {
  top: 50%;
  position: fixed;
  right: 0px;
  z-index: 999;
  font-size: 14px;
  line-height: 28px;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .float {
    display: none;
  }
}
.float .float-closed {
  right: 0;
  top: -25px;
  width: 18px;
  height: 18px;
  line-height: 15px;
  cursor: pointer;
  font-weight: 100;
  border-radius: 50%;
  color: #fff;
  display: none;
  font-size: 12px;
  text-align: center;
  position: absolute;
  background-color: #3560F2;
}
.float .float-box {
  background-color: #1547ad;
}
.float .float-box li:first-child {
  border-top: 0;
}
.float .float-box li {
  cursor: pointer;
  position: relative;
  color: #666;
  width: 70px;
  height: 70px;
  text-align: center;
  border-top: solid 1px #fff;
  transition: all 0ms ease;
}
.float .float-box li > a {
  display: block!important;
  color: #fff;
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
}
.float .float-box li > a img {
  display: block;
  margin: 0 auto;
}
.float .float-box li .item {
  top: 0px;
  right: 120%;
  width: 145px;
  height: 80px;
  display: block;
  color: #666;
  background: #fff;
  position: absolute;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(209, 222, 231, 0.9);
}
.float .float-box li .item:after {
  content: "";
  top: 50%;
  right: -5px;
  margin-top: -3px;
  position: absolute;
  border-left: solid 6px #fff;
  border-top: solid 6px transparent;
  border-bottom: solid 6px transparent;
}
.float .float-box li .item p {
  font-family: arial;
  color: #1547ad;
  font-weight: 700;
  font-size: 18px;
}
