.ed-drag--cursor_move {
  cursor: move;
}

.es-form--action {
  width: 100%;
  padding-bottom: 20px;
}

.el-dropdown-link {
  color: #409EFF;
  cursor: pointer;
  font-size: 12px;
}

.es-dialog--operate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  div:last-child{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
  }
}

.es-box-card {
  .es-box-card--header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    div:last-child, .es-card-header-operate{
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  }

  .view-list-card.active {
    background-color: rgb(225, 243, 216);
  }
}

.es-box-card--top {
  margin-top: 10px;
}


.es-row, .es-row--col{
  height: 100%;
  .es-box-card {
    height: 100% ;
  }
}


// ed-upload-list__item
.ed-upload-list__item {
  transition: all .5s cubic-bezier(.55, 0, .1, 1);
  font-size: 14px;
  color: #606266;
  line-height: 1.8;
  margin-top: 5px;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 5px;

  &:hover {
    background-color: #f5f7fa;

    .el-icon-circle-close {
      opacity: 1
    }
  }

  .ed-upload-list__item-name {
    color: #606266;
    display: block;
    margin-right: 40px;
    overflow: hidden;
    padding-left: 4px;
    text-overflow: ellipsis;
    transition: color .3s;
    white-space: nowrap;
    width: 100%;

    &:hover {
      color: #409eff;
      cursor: pointer;
    }
  }

  .ed-upload-list__item-extra {
    margin-right: 5px;
  }

  .el-icon-circle-close {
    color: #606266;
    opacity: 0;
  }
}
