index.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .ant-image-upload {
  2. display: flex;
  3. flex-wrap: wrap;
  4. background: #ffffff;
  5. }
  6. .ant-image-upload-show {
  7. position: relative;
  8. }
  9. .ant-image-upload-image {
  10. width: 80px;
  11. height: 80px;
  12. margin: 2px 4px;
  13. border-radius: 4px;
  14. }
  15. .ant-image-upload-close {
  16. width: 20px;
  17. height: 20px;
  18. position: absolute;
  19. z-index: 99;
  20. top: -2px;
  21. right: 0;
  22. background: url('https://gw.alipayobjects.com/mdn/rms_226d75/afts/img/A*_Az1QavR4OsAAAAAAAAAAAAAARQnAQ') no-repeat;
  23. background-size: cover;
  24. }
  25. .ant-image-upload-add-image-wrapper {
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. width: 80px;
  30. height: 80px;
  31. margin: 2px 4px 6px;
  32. background-color: #f5f5f5;
  33. border-radius: 4px;
  34. }
  35. .ant-image-upload-add-image-icon {
  36. color: #999999;
  37. }
  38. .ant-image-upload-cover {
  39. position: absolute;
  40. width: 80px;
  41. height: 80px;
  42. margin: 2px 4px;
  43. border-radius: 4px;
  44. background-color: rgba(0, 0, 0, 0.4);
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49. .ant-image-upload-cover-loading {
  50. text-align: center;
  51. }
  52. .ant-image-upload-cover-loading-icon {
  53. width: 24px;
  54. height: 24px;
  55. }
  56. .ant-image-upload-cover-loading-text {
  57. color: #ffffff;
  58. font-size: 12px;
  59. margin-top: 4px;
  60. }
  61. .ant-image-upload-cover-error {
  62. text-align: center;
  63. }
  64. .ant-image-upload-cover-error-icon {
  65. font-size: 48rpx;
  66. color: #ffffff;
  67. }
  68. .ant-image-upload-cover-error-text {
  69. color: #ffffff;
  70. font-size: 24rpx;
  71. margin-top: 8rpx;
  72. }