.floatMenu {
  position: fixed;
  width: 60px;
  bottom: 80px;
  right: 20px;
  z-index: 99;
}
.floatMenu * {
  box-sizing: border-box;
}
.floatMenu li {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  position: relative;
}
.floatMenu li > a {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  transition: all .5s;
}
.floatMenu li .wx {
  background: #9a0f1f url(../images/index/icon_float1.png) center center no-repeat;
}
.floatMenu li .wx:hover {
  background: #9a0f1f url(../images/index/on_icon_float1.png) center center no-repeat;
}
.floatMenu li .wx:hover ~ .codeBox {
  transform: scale(1);
}
.floatMenu li .list {
  background: #9a0f1f url(../images/index/icon_float2.png) center center no-repeat;
}
.floatMenu li .list:hover {
  background: #9a0f1f url(../images/index/on_icon_float2.png) center center no-repeat;
}
.floatMenu li .zsk {
  background: #9a0f1f url(../images/index/icon_float3.png) center center no-repeat;
}
.floatMenu li .zsk:hover {
  background: #9a0f1f url(../images/index/on_icon_float3.png) center center no-repeat;
}
.floatMenu li .backTop {
  background: #9a0f1f url(../images/index/icon_float4.png) center center no-repeat;
}
.floatMenu li .backTop:hover {
  background: #9a0f1f url(../images/index/on_icon_float4.png) center center no-repeat;
}
.floatMenu li .codeBox {
  position: absolute;
  width: 148px;
  height: 180px;
  background: #edf5fd;
  left: -176px;
  top: 4px;
  padding: 12px 24px 0;
  transition: all 0.5s;
  transform-origin: 100% 20px;
  transform: scale(0);
}
.floatMenu li .codeBox::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #edf5fd;
  left: 100%;
  top: 20px;
}
.floatMenu li .codeBox .code {
  font-size: 0;
}
.floatMenu li .codeBox p {
  margin-top: 8px;
  text-align: center;
  font-size: 16px;
  color: #535353;
}
.floatMenu li .listBox {
  position: absolute;
  padding: 25px 20px 20px;
  background: #edf5fd;
  left: -510px;
  top: 4px;
  width: 485px;
  transition: all 0.5s;
  transform-origin: 100% 20px;
  transform: scale(0);
}
.floatMenu li .listBox::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #edf5fd;
  left: 100%;
  top: 20px;
}
.floatMenu li .listBox::after {
  clear: both;
  content: '';
  display: block;
}
.floatMenu li .listBox .item {
  width: 110px;
  float: left;
}
.floatMenu li .listBox .item .tit img {
  vertical-align: middle;
}
.floatMenu li .listBox .item .tit span {
  font-size: 14px;
  font-weight: bold;
  color: #222222;
  vertical-align: middle;
  margin-left: 8px;
}
.floatMenu li .listBox .item a {
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .floatMenu {
    display: none;
  }
}
