/* 左侧上传 & 预览 */
.img-dropzone {
  border: 1px dashed #eee;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 16px;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  margin-bottom: 12px;
}

.img-dropzone.dragover {
  border-color: var(--color-primary, #4a9eff);
  color: var(--color-primary, #4a9eff);
}

.left-preview-area {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  width: 100%;
  /* min-height: 280px;
            max-height: 400px; */
  /* overflow: auto; */
  text-align: center;
  padding: 8px;
  color: #555;
}

.left-preview-area img,
.left-preview-area canvas {
  max-width: 100%;
  height: auto;
}

.left-status {
  font-size: 13px;
  line-height: 1.4;
  color: green;
  min-height: 18px;
  margin-top: 8px;
}

.left-status.error {
  color: red;
}

.result-block {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
  padding: 8px;
  margin-top: 8px;
}

.tab-status {
  font-size: 13px;
  line-height: 1.4;
  min-height: 18px;
  color: green;
  margin-top: 6px;
}

.tab-status.error {
  color: red;
}

/* 裁剪操作区里要放一张可编辑的图 */
#freecrop-workspace {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  min-height: 260px;
  max-height: 360px;
  overflow: hidden;
  text-align: center;
}

#freecrop-image {
  max-width: 100%;
  display: none;
}

#batch-list {
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: #fff;
  padding: 8px;
}