.posBox{
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 999;
}
.posBox .boxActive:hover .text{
  width: 180px;
  transition:all 1s ease;
  margin: 0;
  border-left: 1px solid #fff;
}
.posBox .boxActive:hover .qrCode{
  display: block;
}
.boxActive{
  margin-top: 2px;
  float: right;
  clear: both;
  position: relative;
}
  .boxActive  .qrCode{
    width: 120px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: -134px;
    display: none;
    border-radius: 8px;
    box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.2);
    padding: 10px 0;
  }
    .boxActive  .qrCode .box_position{
      width: 100px;
      height: 100px;
      margin: 0 auto;
      background: #333333;
    }
      .boxActive  .qrCode .box_position  img{
        width: 100%;
        height: 100%;
        vertical-align: middle;
      }
    .boxActive  .qrCode .box_text{
      text-align: center;
      font-size: 14px;
      margin-top: 5px;
    }
  .boxActive  .box{
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: rgba(32, 40, 67, 0.5);
    cursor: pointer;
    float: right;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }
    .boxActive  .box  .icon_img{
      width: 20px;
      height: 20px;
      margin-top: 12px;
    }
    .boxActive  .box .phone_text{
      font-size: 12px;
      color: #ffffff;
    }
    .boxActive  .box i{
      font-size: 20px;
      color: #fff;
    }
  .boxActive .text{
    width: 0;
    line-height: 60px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: rgba(32, 40, 67, 0.5);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    float: right;
    white-space: nowrap;
    margin-right: -40px;
  }