.custom-ui-warp {
  display: flex;
  width: 100%;
  gap: 20px;
}
.custom-ui-warp .project-warp {
  width: 300px;
}
.custom-ui-warp .custom-ui-module-warp {
  flex: 1;
}
.custom-ui-warp .sub-title {
  position: relative;
  margin-bottom: 10px;
}
.custom-ui-warp .sub-title:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 4px;
  height: 20px;
  background: #578EE3;
  left: -8px;
}
.custom-ui-warp .custom-ui-module {
  min-height: 100px;
  border: 2px dashed #f0f0f0;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.custom-ui-warp .custom-ui-module > div {
  font-size: 14px;
}
.custom-ui-warp .custom-ui-module .object-item img {
  display: none;
}
.custom-ui-warp .object-item .item-move {
  font-size: 18px;
  cursor: move;
}
.custom-ui-warp .object-item .item-title {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.custom-ui-warp .object-item .item-title .item-left {
  display: flex;
  gap: 10px;
  align-items: center;
}
.custom-ui-warp .project-warp .project-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.custom-ui-warp .project-warp .object-item {
  cursor: move;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
}
.custom-ui-warp .project-warp .object-item img {
  max-width: 80px;
  flex-shrink: 0;
}
.custom-ui-warp .project-warp .object-item .item-name {
  text-align: center;
}
.custom-ui-warp .project-warp .object-item .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.cate-ids-select {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cate-ids-select .cate-item {
  border: 1px solid #f0f0f0;
  padding: 2px 5px;
}
.cate-ids-select .cate-item .el-icon-error {
  cursor: pointer;
  color: red;
}
