
.nb-image-upload .image-list[data-v-34000d07] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nb-image-upload .image-box[data-v-34000d07] {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.nb-image-upload .image-box:hover .overlay[data-v-34000d07] {
  display: flex;
}
.nb-image-upload .image[data-v-34000d07] {
  display: block;
  border-radius: 4px;
}
.nb-image-upload .image.large[data-v-34000d07] {
  width: 120px;
  height: 120px;
}
.nb-image-upload .image.default[data-v-34000d07] {
  width: 90px;
  height: 90px;
}
.nb-image-upload .image.small[data-v-34000d07] {
  width: 60px;
  height: 60px;
}
.nb-image-upload .image.less[data-v-34000d07] {
  width: 30px;
  height: 30px;
}
.nb-image-upload .overlay[data-v-34000d07] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.nb-image-upload .overlay i[data-v-34000d07] {
  font-size: 20px;
  margin: 0 10px;
  cursor: pointer;
}
.nb-image-upload .overlay i[data-v-34000d07]:hover {
  color: #409EFF;
}
.nb-image-upload .uploader[data-v-34000d07] {
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.nb-image-upload .uploader[data-v-34000d07]:hover {
  border-color: #409EFF;
}
.nb-image-upload .uploader.large[data-v-34000d07] {
  width: 120px;
  height: 120px;
}
.nb-image-upload .uploader.default[data-v-34000d07] {
  width: 90px;
  height: 90px;
}
.nb-image-upload .uploader.small[data-v-34000d07] {
  width: 60px;
  height: 60px;
}
.nb-image-upload .uploader.less[data-v-34000d07] {
  width: 30px;
  height: 30px;
}
.nb-image-upload .uploader-icon[data-v-34000d07] {
  width: 100%;
  height: 100%;
  font-size: 28px;
  color: #8c939d;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nb-image-upload .progress[data-v-34000d07] {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nb-image-upload[data-v-34000d07] {
  width: 100%;
}
.nb-image-upload .loading-container[data-v-34000d07] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.nb-image-upload .loading-container i[data-v-34000d07] {
  font-size: 24px;
  color: #909399;
  animation: rotating-34000d07 2s linear infinite;
}
@keyframes rotating-34000d07 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

/* 添加图片预览的 z-index 样式 */
.image-viewer[data-v-34000d07] .el-image-viewer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;  /* 设置更高的 z-index */
}
.image-viewer[data-v-34000d07] .el-image-viewer__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  background: #000;
  z-index: 2999;  /* 遮罩层 z-index 稍低 */
}
.image-viewer[data-v-34000d07] .el-image-viewer__btn {
  z-index: 3001;  /* 按钮的 z-index 最高 */
}
.image-viewer[data-v-34000d07] .el-image-viewer__close {
  z-index: 3001;
}

