u-upload.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. @charset "UTF-8";
  2. /**
  3. * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
  4. * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
  5. * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
  6. */
  7. .u-upload.data-v-0d33af60 {
  8. display: -webkit-box;
  9. display: -webkit-flex;
  10. display: flex;
  11. -webkit-box-orient: horizontal;
  12. -webkit-box-direction: normal;
  13. -webkit-flex-direction: row;
  14. flex-direction: row;
  15. -webkit-flex-wrap: wrap;
  16. flex-wrap: wrap;
  17. -webkit-box-align: center;
  18. -webkit-align-items: center;
  19. align-items: center;
  20. }
  21. .u-list-item.data-v-0d33af60 {
  22. width: 200rpx;
  23. height: 200rpx;
  24. overflow: hidden;
  25. margin: 10rpx;
  26. background: #f4f5f6;
  27. position: relative;
  28. border-radius: 10rpx;
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: flex;
  32. -webkit-box-align: center;
  33. -webkit-align-items: center;
  34. align-items: center;
  35. -webkit-box-pack: center;
  36. -webkit-justify-content: center;
  37. justify-content: center;
  38. }
  39. .u-preview-wrap.data-v-0d33af60 {
  40. border: 1px solid #ebecee;
  41. }
  42. .u-add-wrap.data-v-0d33af60 {
  43. -webkit-box-orient: vertical;
  44. -webkit-box-direction: normal;
  45. -webkit-flex-direction: column;
  46. flex-direction: column;
  47. color: #606266;
  48. font-size: 26rpx;
  49. }
  50. .u-add-tips.data-v-0d33af60 {
  51. margin-top: 20rpx;
  52. line-height: 40rpx;
  53. }
  54. .u-add-wrap__hover.data-v-0d33af60 {
  55. background-color: #ebecee;
  56. }
  57. .u-preview-image.data-v-0d33af60 {
  58. display: block;
  59. width: 100%;
  60. height: 100%;
  61. border-radius: 10rpx;
  62. }
  63. .u-delete-icon.data-v-0d33af60 {
  64. position: absolute;
  65. top: 10rpx;
  66. right: 10rpx;
  67. z-index: 10;
  68. background-color: #fa3534;
  69. border-radius: 100rpx;
  70. width: 44rpx;
  71. height: 44rpx;
  72. display: -webkit-box;
  73. display: -webkit-flex;
  74. display: flex;
  75. -webkit-box-orient: horizontal;
  76. -webkit-box-direction: normal;
  77. -webkit-flex-direction: row;
  78. flex-direction: row;
  79. -webkit-box-align: center;
  80. -webkit-align-items: center;
  81. align-items: center;
  82. -webkit-box-pack: center;
  83. -webkit-justify-content: center;
  84. justify-content: center;
  85. }
  86. .u-icon.data-v-0d33af60 {
  87. display: -webkit-box;
  88. display: -webkit-flex;
  89. display: flex;
  90. -webkit-box-orient: horizontal;
  91. -webkit-box-direction: normal;
  92. -webkit-flex-direction: row;
  93. flex-direction: row;
  94. -webkit-box-align: center;
  95. -webkit-align-items: center;
  96. align-items: center;
  97. -webkit-box-pack: center;
  98. -webkit-justify-content: center;
  99. justify-content: center;
  100. }
  101. .u-progress.data-v-0d33af60 {
  102. position: absolute;
  103. bottom: 10rpx;
  104. left: 8rpx;
  105. right: 8rpx;
  106. z-index: 9;
  107. width: auto;
  108. }
  109. .u-error-btn.data-v-0d33af60 {
  110. color: #ffffff;
  111. background-color: #fa3534;
  112. font-size: 20rpx;
  113. padding: 4px 0;
  114. text-align: center;
  115. position: absolute;
  116. bottom: 0;
  117. left: 0;
  118. right: 0;
  119. z-index: 9;
  120. line-height: 1;
  121. }