.uiless-member-item {
  height: auto;
  display: flex;
  padding: 8px 0;
  align-items: center;
  cursor: pointer;
  &:hover {
    background: $gray-01;
  }
  &-arrow {
    cursor: pointer;
    &:hover {
      background: $highlight-brand;
      color: $primary-brand;
    }
  }
  &-checked {
    background: $highlight-brand;
  }
  &-user {
    .#{$css-prefix}checkbox-label, .uiless-member-immediateSubmit {
      padding: 4px 0 !important;
    }
  }
  &-checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  // 复选框样式
  .#{$css-prefix}checkbox-wrapper {
    display: flex;
    align-items: center;
    height: auto;
    overflow: hidden;
    width: 100%;
    .#{$css-prefix}checkbox-label {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: auto;
      padding: 8px 0;
      overflow: hidden;
    }
  }
  // mini时 对号样式
  .uiless-member-single-mini {
    padding: 4px 0 4px 28px;
    position: relative;
    i, .#{$css-prefix}icon {
      position: absolute;
      top: 14px;
      left: 0;
      color: $primary-brand;
    }
  }
  // normal  即可提交
  .uiless-member-immediateSubmit {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    .uiless-member-added {
      color: $gray-05;
    }
  }
}

