refund.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /* new 20190711 */
  2. .goods {
  3. background-color: #fff;
  4. }
  5. .goods-item {
  6. position: relative;
  7. display: flex;
  8. padding: 30rpx;
  9. }
  10. .goods-item::after {
  11. content: "";
  12. position: absolute;
  13. left: 0;
  14. bottom: 0;
  15. right: 0;
  16. border-bottom: 1px solid #e5e5e5;
  17. transform-origin: 0 0;
  18. transform: scaleY(0.5);
  19. }
  20. .goods-item-r {
  21. flex: 1;
  22. margin-left: 20rpx;
  23. width: 0;
  24. }
  25. .show-img {
  26. width: 120rpx;
  27. height: 120rpx;
  28. }
  29. .name {
  30. font-size: 26rpx;
  31. color: #444;
  32. text-overflow: ellipsis;
  33. white-space: nowrap;
  34. overflow: hidden;
  35. }
  36. .mount {
  37. font-size: 22rpx;
  38. color: #aaa;
  39. margin-top: 8rpx;
  40. }
  41. .goods-item .price {
  42. display: block;
  43. font-size: 28rpx;
  44. color: #444;
  45. margin-top: 14rpx;
  46. }
  47. .cell {
  48. position: relative;
  49. display: flex;
  50. justify-content: space-between;
  51. background-color: #fff;
  52. padding: 30rpx;
  53. align-items: center;
  54. }
  55. .cell::after {
  56. content: "";
  57. position: absolute;
  58. left: 0;
  59. bottom: 0;
  60. right: 0;
  61. border-bottom: 1px solid #e5e5e5;
  62. transform-origin: 0 0;
  63. transform: scaleY(0.5);
  64. }
  65. .cell-hd,
  66. .tit {
  67. color: #000;
  68. }
  69. .cell-col {
  70. position: relative;
  71. background-color: #fff;
  72. padding: 20rpx 30rpx;
  73. }
  74. .cell-col .tit {
  75. margin-bottom: 20rpx;
  76. }
  77. .cell-col::after {
  78. content: "";
  79. position: absolute;
  80. left: 0;
  81. bottom: 0;
  82. right: 0;
  83. border-bottom: 1px solid #e5e5e5;
  84. transform-origin: 0 0;
  85. transform: scaleY(0.5);
  86. }
  87. .image_uploader_selector {
  88. width: 56px;
  89. height: 56px;
  90. border: 1px dashed #ccc;
  91. display: inline-block;
  92. }
  93. .image_uploader_indicate {
  94. position: absolute;
  95. font-size: 32px;
  96. color: #ccc;
  97. width: 56px;
  98. height: 56px;
  99. line-height: 52px;
  100. text-align: center;
  101. }
  102. .cell-ipt {
  103. text-align: right;
  104. }
  105. .cell-textarea {
  106. width: 100%;
  107. }
  108. .submit_button {
  109. height: 70rpx;
  110. line-height: 70rpx;
  111. top: 10px;
  112. position: relative;
  113. border-top: 1px solid #eee;
  114. text-align: center;
  115. margin: 15px 30rpx 30px;
  116. }
  117. .submit_button .span {
  118. padding: 5px 20px;
  119. font-size: 15px;
  120. color: #fff;
  121. background-color: #F75451;
  122. position: relative;
  123. text-align: center;
  124. border-radius: 5px;
  125. }
  126. .note {
  127. padding: 30rpx 30rpx 100rpx;
  128. }
  129. .note-tit {
  130. font-weight: bold;
  131. margin-bottom: 10rpx;
  132. font-size: 28rpx;
  133. }
  134. .article .p {
  135. font-size: 24rpx;
  136. color: #666;
  137. line-height: 1.6;
  138. }
  139. .image_uploader_image {
  140. position: relative;
  141. display: inline-block;
  142. width: 56px;
  143. height: 56px;
  144. border: 1px dashed #e6e6e6;
  145. padding: 1px;
  146. box-sizing: border-box;
  147. margin-right: 12px;
  148. }
  149. .image_uploader_image image {
  150. width: 52px;
  151. height: auto;
  152. max-width: 52px;
  153. max-height: 52px;
  154. overflow: hidden;
  155. margin: auto;
  156. position: absolute;
  157. top: 0;
  158. left: 0;
  159. bottom: 0;
  160. right: 0;
  161. }
  162. .image_uploader_image .image_uploader_image_img_portrait {
  163. width: auto !important;
  164. height: 52px !important;
  165. }
  166. .image_uploader_image .image_uploader_image_delete {
  167. border-radius: 50%;
  168. -webkit-border-radius: 50%;
  169. position: absolute;
  170. right: -8px;
  171. top: -8px;
  172. background-color: #ff2742;
  173. line-height: 20px;
  174. height: 20px;
  175. width: 20px;
  176. text-align: center;
  177. color: #fff;
  178. font-size: 14px;
  179. font-weight: bold;
  180. }
  181. .checkbox {
  182. width: 50rpx;
  183. height: 50rpx;
  184. display: flex;
  185. justify-content: center;
  186. align-items: center;
  187. }
  188. .checkbox .checkbox-img {
  189. width: 48rpx;
  190. height: 48rpx;
  191. }
  192. .isrefund {
  193. text-decoration: line-through;
  194. }