refund-proof-popup.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. .proof-popup {
  2. height: 72vh;
  3. min-height: 760rpx;
  4. background: #fff;
  5. border-top-left-radius: 24rpx;
  6. border-top-right-radius: 24rpx;
  7. overflow: hidden;
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. .proof-popup__header {
  12. height: 100rpx;
  13. background: #f2f2f2;
  14. position: relative;
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. font-size: 34rpx;
  19. font-weight: 600;
  20. }
  21. .proof-popup__close {
  22. position: absolute;
  23. right: 24rpx;
  24. width: 72rpx;
  25. height: 108rpx;
  26. line-height: 108rpx;
  27. text-align: center;
  28. font-size: 46rpx;
  29. }
  30. .proof-popup__header-spacer {
  31. width: 72rpx;
  32. }
  33. .proof-popup__content {
  34. flex: 1;
  35. padding: 20rpx;
  36. background: #f5f5f5;
  37. }
  38. .desc-input {
  39. width: 100%;
  40. min-height: 200rpx;
  41. background: #fff;
  42. border: 1rpx solid #ececec;
  43. padding: 16rpx;
  44. box-sizing: border-box;
  45. font-size: 32rpx;
  46. border-radius: 10rpx;
  47. }
  48. .desc-count {
  49. text-align: right;
  50. color: #888;
  51. font-size: 28rpx;
  52. margin: 8rpx 4rpx 12rpx;
  53. }
  54. .image-list {
  55. margin-top: 16rpx;
  56. display: flex;
  57. flex-wrap: wrap;
  58. // gap: 16rpx;
  59. }
  60. .img-item {
  61. width: 160rpx;
  62. height: 160rpx;
  63. position: relative;
  64. border-radius: 12rpx;
  65. overflow: hidden;
  66. margin-right: 16rpx;
  67. margin-bottom: 20rpx;
  68. }
  69. .img {
  70. width: 100%;
  71. height: 100%;
  72. border-radius: 12rpx;
  73. }
  74. .remove {
  75. position: absolute;
  76. top: 0;
  77. right: 0;
  78. width: 40rpx;
  79. height: 40rpx;
  80. border-bottom-left-radius: 16rpx;
  81. background: rgba(0, 0, 0, 0.5);
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. color: #fff;
  86. font-size: 24rpx;
  87. z-index: 2;
  88. }
  89. .image-uploader {
  90. width: 160rpx;
  91. height: 160rpx;
  92. background: #f0f2f5;
  93. border-radius: 12rpx;
  94. display: flex;
  95. flex-direction: column;
  96. justify-content: center;
  97. align-items: center;
  98. box-sizing: border-box;
  99. }
  100. .upload-icon {
  101. margin-bottom: 8rpx;
  102. }
  103. .upload-text {
  104. font-size: 24rpx;
  105. color: #666;
  106. }
  107. .upload-empty-container {
  108. margin-top: 16rpx;
  109. }
  110. .image-uploader-empty {
  111. border: 1rpx dashed #ccc;
  112. background: #fff;
  113. min-height: 200rpx;
  114. display: flex;
  115. flex-direction: column;
  116. justify-content: center;
  117. align-items: center;
  118. border-radius: 8rpx;
  119. }
  120. .upload-icon-empty {
  121. margin-bottom: 12rpx;
  122. }
  123. .upload-title {
  124. font-size: 30rpx;
  125. color: #333;
  126. }
  127. .upload-sub {
  128. font-size: 26rpx;
  129. color: #999;
  130. margin-top: 6rpx;
  131. }
  132. .upload-tips {
  133. font-size: 26rpx;
  134. color: #666;
  135. margin-top: 16rpx;
  136. }
  137. .proof-popup__footer {
  138. padding: 6rpx 16rpx calc(-40rpx + env(safe-area-inset-bottom));
  139. background: #fff;
  140. }
  141. .done-btn {
  142. width: 100%;
  143. height: 88rpx;
  144. line-height: 88rpx;
  145. border-radius: 12rpx;
  146. text-align: center;
  147. color: #fff;
  148. background: #2f6df6;
  149. font-size: 34rpx;
  150. }