fa-upload-file.ttss 772 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  5. */
  6. .fa-file {
  7. background-color: #f4f5f6;
  8. width: 150rpx;
  9. height: 150rpx;
  10. border-radius: 10rpx;
  11. }
  12. .fa-file .select-color {
  13. color: #606266;
  14. }
  15. .fa-file text {
  16. font-size: 40rpx;
  17. }
  18. .fa-flex {
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. position: relative;
  23. }
  24. .fa-flex .u-delete-icon {
  25. background-color: #fa3534;
  26. width: 45rpx;
  27. height: 45rpx;
  28. border-radius: 100px;
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. position: absolute;
  33. top: 15rpx;
  34. right: 15rpx;
  35. }