.#{$namespace} {
  &-upload {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;

    .el-upload {
      height: 100%;
      width: 100%;
      border: 1px dashed #dcdfe6;
      border-radius: 4px;
      position: relative;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;

      .up-add-icon {
        width: 32px;
        height: 32px;
        color: #dcdfe6;
        fill: #dcdfe6;
        transition: all 0.3s;
      }

      &:hover {
        border-color: $primary;
        background: $white;

        .svg-icon {
          color: $primary;
          fill: $primary;
        }
      }

      .img-box {
        width: 100%;
        height: 100%;

        .up-del-icon {
          position: absolute;
          right: -8px;
          top: -8px;
        }
      }
    }

    &-img {
      height: 100%;
      width: 100%;
      border-radius: 4px;
      position: relative;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      .icon-shut.svg-icon {
        position: absolute;
        right: 5px;
        top: 5px;
        z-index: 99;
        transform: rotate(45deg);
        color: $red;
        fill: $red;
        width: 15px;
        height: 15px;
      }
    }
  }
  // 上传提示
  &-upload-tip {
    display: inline-block;
    font-size: 12px;
    margin-top: 10px;
    color: #606266;
  }
}
