.rightfixed{
    position: fixed;
    bottom: 10%;
    right: 20px;
    /* transform: translateY(-50%); */
    z-index: 999;
    height: 215px;
    font-size: 14px;
}
.rightfixed>div{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #50565ce6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    margin-top: 7px;
}
.rightfixed img{
    width: 30px;
    height: 30px;
}
.rightfixed>div:hover{
    background-color: #59a0fd;
}
.tip {
    position: absolute;
    /* top: 0; */
    right: 55px;
    width: 200px;
    height: 45px;
    line-height: 45px;
    color: white;
    text-align: center;
    border-radius: 4px;
    font-family: sans-serif;
    background-color: rgb(65, 65, 65);
    display: none;
  }
  .tip:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid;
  }
  .right:after {
    border-left-color: rgb(65, 65, 65);
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    left: 100%;
    top: 50%;
    margin-top: -7px;
  }
  .tip input{
    width: 110px;
    height:20px;
    background: transparent;
    border:1px solid #fff;
    color:#fff
  }
  .tip input:focus{
    border: 1px solid #fff;
  }
  .tip textarea{
    width: 110px;
    background: transparent;
    border:1px solid #fff;
    color:#fff;
    resize:none;
  }
  .tip textarea:focus{
    border: 1px solid #fff;

  }
  @media (max-width:768px) {
    /* .rightfixed{
      top: 55%;
    } */
  }