.pisell-member-selector {
  &-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 16px 0;
  }

  &-item {
    cursor: pointer;

    .pisell-lowcode-card {
      height: 100%;
      transition: all 0.3s;
      border: 1px solid #eaecf0;

      &:hover {
        border-color: #d0d5dd;
      }
    }

    &-selected {
      .pisell-lowcode-card {
        border-color: #7f56d9 !important;
        background-color: #f9f5ff;
      }
    }

    &-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 12px;
    }

    &-avatar {
      // 保持 avatar 样式
    }

    &-name {
      color: #101828;
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      width: 100%;
    }

    &-check {
      position: absolute;
      bottom: 6px;
      right: 6px;
      color: #7f56d9;
      font-size: 16px;
      display: none;
    }

    &-selected &-check {
      display: block;
    }
  }

  &-footer {
    width: 100%;
  }
}
