.f-upload-image .images-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }
  .f-upload-image .images-list .image-item {
    width: 100px;
    height: 100px;
    border: 1px solid #d8d8d8;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 0 10px 10px 0; }
    .f-upload-image .images-list .image-item .del-icon {
      position: absolute;
      display: none;
      right: 0;
      bottom: 0;
      width: 30px;
      height: 30px;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      cursor: pointer; }
    .f-upload-image .images-list .image-item .view-icon {
      position: absolute;
      display: none;
      right: 30px;
      bottom: 0;
      width: 30px;
      height: 30px;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      cursor: pointer; }
    .f-upload-image .images-list .image-item:hover .del-icon {
      display: flex; }
    .f-upload-image .images-list .image-item:hover .view-icon {
      display: flex; }
    .f-upload-image .images-list .image-item .circle-progress {
      position: absolute;
      z-index: 9;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      display: none; }
      .f-upload-image .images-list .image-item .circle-progress:before {
        color: #fff; }
    .f-upload-image .images-list .image-item.uploading:before, .f-upload-image .images-list .image-item.waiting:before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      left: 0;
      top: 0;
      border: none;
      transform: translate(0, 0); }
    .f-upload-image .images-list .image-item.uploading .view-icon, .f-upload-image .images-list .image-item.uploading .del-icon, .f-upload-image .images-list .image-item.waiting .view-icon, .f-upload-image .images-list .image-item.waiting .del-icon {
      display: none; }
    .f-upload-image .images-list .image-item.uploading .circle-progress, .f-upload-image .images-list .image-item.waiting .circle-progress {
      display: block; }
    .f-upload-image .images-list .image-item.uploaded:before {
      display: none; }
    .f-upload-image .images-list .image-item.uploaded .circle-progress {
      display: none; }
  .f-upload-image .images-list .upload-handle {
    width: 100px;
    height: 100px;
    border: 1px solid #d8d8d8;
    background-color: #f7f7f7;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px 10px 0;
    cursor: pointer; }
    .f-upload-image .images-list .upload-handle .icon {
      font-size: 40px;
      color: #999; }
    .f-upload-image .images-list .upload-handle .limit {
      font-size: 12px;
      color: #333;
      text-align: center; }
    .f-upload-image .images-list .upload-handle .action-box {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      left: 0;
      top: 0;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .f-upload-image .images-list .upload-handle .action-box .action-item {
        width: 80%;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background-color: #f7f7f7;
        margin-bottom: 10px;
        font-family: "upload-iconfont" !important;
        font-size: 12px;
        color: #333;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
        .f-upload-image .images-list .upload-handle .action-box .action-item:last-child {
          margin-bottom: 0; }
    .f-upload-image .images-list .upload-handle:hover .action-box {
      display: flex; }

.f-upload-video {
  position: relative;
  margin-bottom: 15px; }
  .f-upload-video .progress {
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: -10px;
    left: 0;
    display: none; }
  .f-upload-video.is-loading .progress {
    display: block; }

.f-upload-file .upload-handle {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #2546A1; }
  .f-upload-file .upload-handle .handle-icon {
    flex: none;
    margin-right: 5px; }
  .f-upload-file .upload-handle .handle-label {
    color: #2546A1; }
.f-upload-file .upload-tips {
  position: relative; }
  .f-upload-file .upload-tips .info-icon {
    font-size: 16px;
    color: #2546A1;
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center; }
  .f-upload-file .upload-tips .content {
    width: 260px;
    position: absolute;
    padding: 10px 20px;
    left: 30px;
    top: -10px;
    background-color: #dae8fe;
    z-index: 9;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    display: none; }
    .f-upload-file .upload-tips .content li {
      list-style: disc;
      word-wrap: break-word; }
    .f-upload-file .upload-tips .content:before {
      content: '';
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-right: 8px solid #dae8fe;
      position: absolute;
      left: -6px;
      top: 16px; }
  .f-upload-file .upload-tips:hover .content {
    display: block; }
.f-upload-file .file-list {
  max-width: 300px; }
  .f-upload-file .file-list .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px; }
    .f-upload-file .file-list .file-item:last-child {
      margin-bottom: 0; }
    .f-upload-file .file-list .file-item .file-ext {
      width: 24px;
      height: 24px; }
    .f-upload-file .file-list .file-item .name {
      flex: auto;
      min-width: 0;
      font-size: 12px;
      line-height: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .f-upload-file .file-list .file-item .status-icon {
      width: 24px;
      height: 24px;
      flex: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      font-family: upload-iconfont !important; }
    .f-upload-file .file-list .file-item .del-icon {
      cursor: pointer;
      margin-left: 10px; }
    .f-upload-file .file-list .file-item.uploading .status-icon:before {
      content: '\e651';
      font-size: 18px;
      color: #0BB20C;
      -webkit-animation: spinner-border .75s linear infinite;
      animation: spinner-border .75s linear infinite; }
    .f-upload-file .file-list .file-item.uploaded .status-icon:before {
      content: '\e62a';
      font-size: 18px;
      color: #0BB20C;
      -webkit-animation: none;
      animation: none; }

.f-upload-image-text .upload-handle {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
  height: 32px;
  padding: 0 20px;
  margin: 4px 0;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  font-size: 12px; }
  .f-upload-image-text .upload-handle .handle-icon {
    flex: none;
    margin-right: 5px; }
  .f-upload-image-text .upload-handle .handle-label {
    color: #333; }
  .f-upload-image-text .upload-handle .file-num {
    font-size: 12px;
    color: #999;
    margin-left: 5px; }
.f-upload-image-text .upload-tips {
  position: relative; }
  .f-upload-image-text .upload-tips .info-icon {
    font-size: 16px;
    color: #2546A1;
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center; }
  .f-upload-image-text .upload-tips .content {
    width: 260px;
    position: absolute;
    padding: 10px 20px;
    left: 30px;
    top: -10px;
    background-color: #dae8fe;
    z-index: 9;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    display: none; }
    .f-upload-image-text .upload-tips .content li {
      list-style: disc;
      word-wrap: break-word; }
    .f-upload-image-text .upload-tips .content:before {
      content: '';
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-right: 8px solid #dae8fe;
      position: absolute;
      left: -6px;
      top: 16px; }
  .f-upload-image-text .upload-tips:hover .content {
    display: block; }
.f-upload-image-text .image-text-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; }
  .f-upload-image-text .image-text-list .image-text-item {
    display: flex;
    justify-content: space-between;
    flex: none;
    padding: 10px;
    border: 1px solid #e8e8e8;
    margin-top: 20px; }
    .f-upload-image-text .image-text-list .image-text-item .image-thumb {
      width: 100px;
      height: 100px;
      border: 1px solid #d8d8d8;
      position: relative;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      margin: 0 10px 10px 0; }
      .f-upload-image-text .image-text-list .image-text-item .image-thumb .action-bar {
        position: absolute;
        display: none;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.5); }
        .f-upload-image-text .image-text-list .image-text-item .image-thumb .action-bar .action-icon {
          flex: 1;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          cursor: pointer; }
      .f-upload-image-text .image-text-list .image-text-item .image-thumb:hover .action-bar {
        display: flex; }
      .f-upload-image-text .image-text-list .image-text-item .image-thumb .circle-progress {
        position: absolute;
        z-index: 9;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: none; }
        .f-upload-image-text .image-text-list .image-text-item .image-thumb .circle-progress:before {
          color: #fff; }
    .f-upload-image-text .image-text-list .image-text-item .info {
      flex: auto; }
      .f-upload-image-text .image-text-list .image-text-item .info .upload-input-item {
        margin-bottom: 8px; }
      .f-upload-image-text .image-text-list .image-text-item .info input.form-control {
        height: 32px;
        font-size: 12px; }
      .f-upload-image-text .image-text-list .image-text-item .info textarea.form-control {
        height: 50px;
        font-size: 12px;
        resize: none; }
  .f-upload-image-text .image-text-list.uploading .image-thumb:before, .f-upload-image-text .image-text-list.waiting .image-thumb:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    border: none;
    transform: translate(0, 0); }
  .f-upload-image-text .image-text-list.uploading .image-thumb .view-icon, .f-upload-image-text .image-text-list.uploading .image-thumb .del-icon, .f-upload-image-text .image-text-list.waiting .image-thumb .view-icon, .f-upload-image-text .image-text-list.waiting .image-thumb .del-icon {
    display: none; }
  .f-upload-image-text .image-text-list.uploading .image-thumb .circle-progress, .f-upload-image-text .image-text-list.waiting .image-thumb .circle-progress {
    display: block; }
  .f-upload-image-text .image-text-list.uploaded .image-thumb:before {
    display: none; }
  .f-upload-image-text .image-text-list.uploaded .image-thumb .circle-progress {
    display: none; }
  .f-upload-image-text .image-text-list.items-1 {
    width: 100%; }
    .f-upload-image-text .image-text-list.items-1 .image-text-item {
      width: 100%;
      flex: none; }
  .f-upload-image-text .image-text-list.items-2 .image-text-item {
    width: calc(50% - 20px);
    margin-right: 20px; }
    .f-upload-image-text .image-text-list.items-2 .image-text-item:nth-child(2n) {
      margin-right: 0; }
  .f-upload-image-text .image-text-list.items-3 .image-text-item {
    width: calc(33.33% - 20px);
    margin-right: 20px; }
    .f-upload-image-text .image-text-list.items-3 .image-text-item:nth-child(3n) {
      margin-right: 0; }
  .f-upload-image-text .image-text-list.items-4 .image-text-item {
    width: calc(25% - 20px);
    margin-right: 20px; }
    .f-upload-image-text .image-text-list.items-4 .image-text-item:nth-child(4n) {
      margin-right: 0; }
  .f-upload-image-text .image-text-list.items-5 .image-text-item {
    width: calc(20% - 20px);
    margin-right: 20px; }
    .f-upload-image-text .image-text-list.items-5 .image-text-item:nth-child(5n) {
      margin-right: 0; }

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

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