.user-info {
  position: relative;
  width: 100%;
  height: 240px;
  padding-top: 10%;

  &-bg {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 240px;
    max-height: 240px;
  }

  .content {
    position: relative;
    padding: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .arrow {
      width: 8px;
      height: 10px;
    }

    .info-box {
      display: flex;
      justify-content: flex-start;
      align-items: center;

      .head-img {
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
        width: 70px;
        height: 70px;
      }

      .info {
        font-weight: bold;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;

        .user-name {
          color: #333;
          font-size: 21px;
        }

        .level {
          margin-bottom: 3.5px;
          max-width: 65px;
          height: 18px;
          object-fit: contain;
        }
      }

      .no-login {
        color: #333;
        font-size: 21px;
      }
    }
  }
}
