.float-right {
  position: fixed;
  right: 1%;
  bottom: 1%;
  width: 54px;
  z-index: 1000;
  /* height: 300px; */
}
.float-five {
  width: 54px;
  height: 54px;
  margin-bottom: 1px;
  color: white;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}
.float-active,
.float-active:hover,
.float-five:hover {
  color: white;
  text-decoration: none;
}
.float-five > a {
  color: white;
  display: block;
  text-decoration: none;
  font-size: 14px;
}
.float-ts-hide {
  display: none;
}
#floatDivSlideBtn > img {
}
#floatDivSlideBtn {
  border-radius: 50%;
  background-color: #60bde9;
  line-height: 50px;
  margin-top: 6px;
}
.float-more {
  height: 100%;
  position: absolute;
  right: 101%;
  bottom: 0px;
  line-height: 54px;
  width: 200px;
  font-size: 14px;
  background-color: #1B79B6;
  display: none;
}
.float-five:hover > .float-more {
  display: block;
  animation: sk-circleFadeDelay 300ms;
}
.float-erweima {
  width: 120px;
  bottom: -22.5px;
  height: auto;
  border: 3px solid #fff;
  right: 102%;
}

@-webkit-keyframes sk-circleFadeDelay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .float-hidden-xs {
    display: none;
  }
}


/*飞入*/
@keyframes tx1 {
from {
  position: relative;
  right: -500px;
}
to {
  right: 0px;
}
}
.tx1{
  animation:tx1 600ms linear;
  -moz-animation:tx1 600ms linear; /* Firefox */
  -webkit-animation:tx1 600ms linear; /* Safari and Chrome */
  -o-animation:tx1 600ms linear; /* Opera */
}
