.user{
    width: 9.4667rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.pic-tx{
    width: 2rem;
    height: 2rem;
    position: relative;
}
.tx {
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    border: 0.08rem solid #fff;
    animation: tx linear 8s alternate infinite;
    box-shadow: 0 0 0.2rem 0.04rem rgba(0, 0, 0, 0.2);
}
  .vip-icon {
    position: absolute;
    width: .64rem;
    height: .64rem;
    background-color: #fff;
    left: 1.2rem;

    border-radius: 50%;
    top: 1.6667rem;
    box-shadow: 0 0 .1333rem 0.04rem rgba(0, 0, 0, 0.1);
  }
  .vip-icon img{
    width: .6667rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  @keyframes tx {
    25% {
      border-color: #9FDB1D;
    }
    50% {
      border-color: #fff;
    }
    75% {
      border-color: #9FDB1D;
    }
    100% {
      border-color: #F5319D;
    }
  }