.TUI-conversation {
  &-content {
    position: relative;
  }

  &-item {
    padding: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;

    .left {
      position: relative;
      width: 36px;
      height: 36px;

      .num {
        position: absolute;
        display: inline-block;
        right: 0px;
        top: -5px;
        min-width: 10px;
        width: fit-content;
        padding: 0 2.5px;
        height: 15px;
        font-size: 10px;
        text-align: center;
        line-height: 15px;
        border-radius: 7.5px;
      }

      .num-notify {
        position: absolute;
        display: inline-block;
        right: -1px;
        top: -5px;
        width: 0.5rem;
        height: 0.5rem;
        font-size: 10px;
        text-align: center;
        line-height: 15px;
        border-radius: 65%;
      }

      .avatar {
        width: 30px;
        height: 30px;
        border-radius: 5px;
      }

      .online-status {
        box-sizing: border-box;
        position: absolute;
        width: 10px;
        height: 10px;
        left: 24px;
        top: 22px;
        border: 2px solid #ffffff;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.102606);
        border-radius: 50%;

        &-online {
          background: #29CC85;
        }

        &-offline {
          background: #A4A4A4;
        }
      }
    }

    .content {
      display: flex;
      flex: 1;
      padding-left: 8px;
      justify-content: space-between;
    }

    .content-header {
      flex: 1;
      display: flex;
      flex-direction: column;

      label {
        flex: 1;
        font-size: 14px;
      }

      .name {
        width: 110px;
        letter-spacing: 0;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }

    .middle-box {
      flex: 1;
      display: flex;
      align-items: center;

      span {
        font-size: 12px;
      }

      p {
        flex: 1;
        width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
        line-height: 16px;
      }
    }

    .content-footer {
      line-height: 16px;
      display: flex;
      flex-direction: column;

      .time {
        font-size: 12px;
        line-height: 16px;
        display: inline-block;
        max-width: 75px;
        white-space: nowrap;
      }

      img {
        width: 16px;
        height: 16px;
        margin-top: 5px;
        align-self: flex-end;
      }
    }
  }

  .dialog {
    position: absolute;
    z-index: 5;
    padding: 2px 20px;

    &-item {
      top: 30px;
      left: 164px;
      border-radius: 8px;
    }

    .conversation-options {
      padding: 5px 0;
      height: 17px;
      font-size: 12px;
      line-height: 17px;
    }
  }
}