.#{$ns}LionList {

  .batch-manage {
    &.is-active {
      color: var(--Button--link-color);
    }

  }

  .batch-manage-icon {
    font-size: 16px;
  }

  // LIST item
  .#{$ns}ListItem {
    display: flex;
    justify-content: space-between;
    align-items: center;

    &::before,
    &::after {
      display: none;
    }

    &-content {
      flex: 1;
    }

    // .#{$ns}ListItem-avatar {
    //   width: 50px;
    //   height: 50px;
    //   margin-right: 10px;
    //   img {
    //     width: 100%;
    //     height: 100%;
    //     border-radius: 5px;
    //     object-fit: cover;
    //   }
    // }
  }
}

// 更多操作 -- 废除
.#{$ns}List-header-more {
  margin-left: 8px;
  cursor: pointer;

  &-pop {
    .#{$ns}Crud-toolbar {
      min-width: 80px;

      &-item {
        display: block;
        float: none;
        margin: 0;
        height: auto;

        button,
        button:hover {
          border: none !important;
          background: none !important;
          color: #fff !important;
          font-size: 14px;

          &:not(:last-child) {
            border-bottom: 1px solid #999;
          }
        }

        .#{$ns}Button.is-disabled,
        .#{$ns}Button:disabled {
          background: none;
          border: none;
          font-size: 14px;
        }
      }
    }
  }
}



.#{$ns}List.is-mobile {

  .#{$ns}List-toolbar {
    // position: relative;
    // margin: 0;
    // height: 48px;
    @include mobile-footer-toolbar();
    padding: 0 16px
  }

  .#{$ns}List-content {
    @include mobile-crud-content();
  }
}