.img-upload-wrap {
  &>div {
    float: left;
  }
  // &>div:not(:first-child) {
  //   margin-left: 10px;
  // }
  .img-upload-item {
    width: 60px;
    height: 60px;
    background-size: cover;
    position: relative;
    border:1px solid transparent;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    border-radius:3px;
    margin:0 8px 8px 0;
    .img-upload-item-close {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #fff;
      font-size: 18px;
      position: absolute;
      right: -4px;
      top: -8px;
      visibility: hidden;
      z-index: 2;
    }
    &:hover .img-upload-item-close {
      visibility: visible;
      cursor: pointer;
    }
  }
  .img-upload-browse-wrap {
    &>div {
      width: 60px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      border: 1px dashed #c5c5c5;
      border-radius: 2px;
      font-size: 22px;
      color: #969696;
      i {
        cursor: pointer;
      }
    }
  }
}