.x-upload .x-upload-board {
  margin-top: 10px;
}
.x-upload .x-image-list,
.x-upload .x-file-list {
  list-style: none;
}
.x-upload .x-image-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, 98px);
  margin-bottom: 10px;
}
.x-upload .x-image-item {
  width: 98px;
  height: 98px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.x-upload .x-file-item {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.x-upload .x-file-item a:hover {
  color: #c40c12;
  cursor: pointer;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
}
.x-upload .x-file-item .remove {
  color: #c40c12;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
}
.x-upload .x-file-item .remove:hover {
  filter: brightness(1.1);
}
.x-upload .x-file-item .remove:active {
  filter: brightness(0.95);
}
.x-upload .popover {
  height: 100%;
  display: none;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
}
.x-upload .x-image-item:hover .popover {
  display: flex;
}
