.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.body {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow: auto;
  ul {
    padding: 0;
    margin: 0;
    list-style: none;
    .item {
      display: flex;
      align-items: center;
      margin: 2px 0;

      .checkbox-item {
        margin-left: 10px;
      }
    }
  }
}

.error {
  width: 204px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .title {
    color: red;
    font-size: 14px;
    font-weight: 600；;
  }

  .content {
    font-family: PingFangSC-Medium;
    font-size: 12px;
    color: #c0c4cc;
    font-weight: 500;
  }
}

.drag-sort--cursor {
  cursor: all-scroll;
}
