.multi-row-editor .dao-empty {
  padding: 20px 0 16px;
  margin-bottom: 3px;
  background-color: var(--dao-bg);
  border-radius: 8px;
}
.multi-row-editor .dao-empty img {
  width: 60px;
}
.multi-row-editor .dao-empty-title {
  margin-top: 4px;
  font-size: 12px;
}
.multi-row-editor__row {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 30px;
  font-size: 1.3rem;
  line-height: 30px;
}
.multi-row-editor__column {
  flex: 1;
  width: 100%;
  height: 100%;
}
.multi-row-editor__column__sort {
  display: flex;
}
.multi-row-editor__column__sort--icon {
  width: 30px;
  height: 30px;
  margin: 0 !important;
  color: var(--dao-text-page-title);
}
.multi-row-editor__column__sort--icon:last-child {
  transform: rotate(180deg);
}
.multi-row-editor__column__number {
  color: var(--dao-text-primary);
  text-align: center;
}
.multi-row-editor__column__required {
  display: flex;
}
.multi-row-editor__column:not(:last-of-type) {
  margin-right: 10px;
}
.multi-row-editor__column__required .multi-row-editor__column-wrapper {
  display: flex;
  padding-right: 10px;
  overflow: hidden;
}
.multi-row-editor__column__required .multi-row-editor__column-wrapper::after {
  color: var(--dao-red-040);
  content: "*";
  transform: translate(7px, 3px);
}
.multi-row-editor__column-wrapper-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-row-editor__column-wrapper-label__inner {
  display: flex;
  align-items: center;
}
.multi-row-editor__column-wrapper-label__text {
  flex: auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.multi-row-editor__column-wrapper-label__text__tip {
  flex: 0 1 auto;
}
.multi-row-editor__column-wrapper-label__tip {
  flex: none;
  height: 12px;
  margin-left: 4px;
  font-size: 12px;
  line-height: 12px;
  color: var(--dao-icon);
  cursor: pointer;
}
.multi-row-editor__column-wrapper-label__sort, .multi-row-editor__column-wrapper-label__number {
  text-align: center;
}
.multi-row-editor__data {
  display: flex;
  flex-direction: column;
}
.multi-row-editor__data .multi-row-editor__row:not(:last-of-type) {
  margin-bottom: 10px;
}
.multi-row-editor__helper-message, .multi-row-editor__error-message {
  margin-top: 5px;
}
.multi-row-editor__icon--delete {
  margin-left: 10px;
  font-size: 16px;
}
.multi-row-editor__add {
  font-size: 1.3rem;
}
.multi-row-editor__add i {
  font-size: 16px;
}
.multi-row-editor__labels {
  padding-right: 26px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dao-gray-060);
}
.multi-row-editor__labels .multi-row-editor__column {
  overflow: hidden;
}
.multi-row-editor__helper-message {
  min-height: 18px;
  font-size: 1.2rem;
  line-height: 18px;
  color: var(--dao-text-tertiary);
  overflow-wrap: break-word;
}
.multi-row-editor__error-message {
  min-height: 18px;
  font-size: 1.2rem;
  line-height: 18px;
  color: var(--dao-status-error);
}
.multi-row-editor__footer {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 16px;
  padding-right: 26px;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 16px;
}
.multi-row-editor__footer__no-data {
  height: 30px;
  margin-top: 0;
  line-height: 30px;
}
.multi-row-editor__number .multi-row-editor__helper-message,
.multi-row-editor__number .multi-row-editor__error-message,
.multi-row-editor__number .multi-row-editor__footer:not(.multi-row-editor__footer__no-data) {
  margin-left: 40px;
}
.multi-row-editor__sort .multi-row-editor__helper-message,
.multi-row-editor__sort .multi-row-editor__error-message,
.multi-row-editor__sort .multi-row-editor__footer:not(.multi-row-editor__footer__no-data) {
  margin-left: 70px;
}