/* 
* =============================================
* Upload  
* https://youzan.github.io/vant/#/zh-CN/Upload
* =============================================
*/
.uploader {
  position: relative;
  display: inline-block;
}
.uploader .uploader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.uploader-upload {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  box-pack: center;
  box-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 80px;
  height: 80px;
  margin: 0 8px 8px 0;
  background-color: #f7f8fa;
}
.uploader-upload:active {
  background-color: #f2f3f5;
}
.uploader-upload .icon {
  height: 24px;
  width: 24px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='currentColor' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='3' width='18' height='18' rx='2' ry='2'></rect><circle cx='8.5' cy='8.5' r='1.5'></circle><polyline points='21 15 16 10 5 21'></polyline></svg>");
}
.uploader-upload .uploader-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}
.uploader-upload .uploader-input:disabled {
  cursor: not-allowed;
}

/*# sourceMappingURL=upload.css.map */