applyRefund.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. /* pages/applyRefund/applyRefund.wxss */
  2. .applyRefund{
  3. padding: 76rpx 24rpx 220rpx;
  4. background: #F6F6F6;
  5. position: relative;
  6. }
  7. .notice{
  8. width: 750rpx;
  9. height: 56rpx;
  10. line-height: 56rpx;
  11. background-color: rgba(255, 148, 26, .2);
  12. font-size: 28rpx;
  13. color: #222222;
  14. display: flex;
  15. align-items: center;
  16. padding: 0 24rpx;
  17. box-sizing: border-box;
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. }
  22. .notice .icon{
  23. width: 32rpx;
  24. height: 32rpx;
  25. margin-right: 16rpx;
  26. }
  27. .box{
  28. background: #FFFFFF;
  29. border-radius: 16rpx 16rpx 16rpx 16rpx;
  30. margin-bottom: 20rpx;
  31. }
  32. .applyRefund .apply-type{
  33. padding: 24rpx;
  34. }
  35. .applyRefund .apply-type .title{
  36. font-weight: bold;
  37. font-size: 32rpx;
  38. color: #222222;
  39. }
  40. .applyRefund .apply-type .item{
  41. display: flex;
  42. padding-top: 24rpx;
  43. }
  44. .applyRefund .apply-type .item .info{
  45. padding-left: 20rpx;
  46. }
  47. .applyRefund .apply-type .item .info .title{
  48. font-weight: bold;
  49. font-size: 28rpx;
  50. color: #222222;
  51. }
  52. .applyRefund .apply-type .item .info .desc{
  53. font-size: 24rpx;
  54. color: #AAAAAA;
  55. margin-top: 16rpx;
  56. }
  57. .applyRefund .refund-goods{
  58. padding: 24rpx;
  59. }
  60. .applyRefund .refund-goods .title-box{
  61. display: flex;
  62. justify-content: space-between;
  63. padding-bottom: 24rpx;
  64. font-weight: bold;
  65. font-size: 28rpx;
  66. }
  67. .applyRefund .refund-goods .title-box .title{
  68. color: #222222;
  69. }
  70. .applyRefund .refund-goods .title-box .price{
  71. color: #FF4D3A;
  72. }
  73. .applyRefund .refund-goods .good-list .all{
  74. padding-bottom: 24rpx;
  75. font-weight: bold;
  76. font-size: 24rpx;
  77. color: #222222;
  78. }
  79. .applyRefund .refund-goods .good-list .good-item{
  80. border-top:1rpx solid #F0F0F0;
  81. padding: 20rpx 0;
  82. display: flex;
  83. align-items: center;
  84. }
  85. .applyRefund .refund-goods .good-list .good-item .img{
  86. width: 120rpx;
  87. height: 120rpx;
  88. border-radius: 16rpx;
  89. background: #F6F6F6;
  90. }
  91. .applyRefund .refund-goods .good-list .good-item .info{
  92. margin-left: 20rpx;
  93. flex: 1;
  94. }
  95. .applyRefund .refund-goods .good-list .good-item .info .good-name{
  96. font-weight: bold;
  97. font-size: 28rpx;
  98. color: #222222;
  99. }
  100. .applyRefund .refund-goods .good-list .good-item .info .desc{
  101. font-size: 24rpx;
  102. color: #AAAAAA;
  103. margin-top: 10rpx;
  104. }
  105. .applyRefund .refund-goods .good-list .good-item .info .price{
  106. color: #AAAAAA;
  107. font-size: 24rpx;
  108. }
  109. .applyRefund .refund-goods .good-list .good-item .price-box{
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: space-between;
  113. align-items: flex-end;
  114. height: 120rpx;
  115. }
  116. .applyRefund .refund-goods .good-list .good-item .price-box .price{
  117. font-weight: bold;
  118. font-size: 32rpx;
  119. color: #FF4D3A;
  120. }
  121. .applyRefund .refund-goods .good-list .good-item .price-box .num-box{
  122. display: flex;
  123. }
  124. .applyRefund .refund-goods .good-list .good-item .price-box .num-box .btn{
  125. width: 40rpx;
  126. height: 40rpx;
  127. line-height: 40rpx;
  128. text-align: center;
  129. background: #F0F0F0;
  130. color: #AAAAAA;
  131. font-weight: bold;
  132. }
  133. .applyRefund .refund-goods .good-list .good-item .price-box .num{
  134. font-size: 24rpx;
  135. color: #222222;
  136. width: 80rpx;
  137. height: 40rpx;
  138. line-height: 40rpx;
  139. text-align: center;
  140. background: #F0F0F0;
  141. margin: 0 4rpx;
  142. }
  143. .applyRefund .refund-goods .open-btn{
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. font-size: 24rpx;
  148. color: #222222;
  149. margin-top: 20rpx;
  150. }
  151. .applyRefund .refund-goods .open-btn .arrow{
  152. width: 20rpx;
  153. height: 20rpx;
  154. }
  155. .applyRefund .reason-box{
  156. padding: 24rpx;
  157. }
  158. .applyRefund .reason-box .title-box{
  159. display: flex;
  160. justify-content: space-between;
  161. padding-bottom: 20rpx;
  162. }
  163. .applyRefund .reason-box .title-box .title{
  164. font-weight: bold;
  165. font-size: 28rpx;
  166. color: #222222;
  167. }
  168. .applyRefund .reason-box .title-box .choose{
  169. display: flex;
  170. align-items: center;
  171. font-size: 28rpx;
  172. color: #AAAAAA;
  173. }
  174. .applyRefund .reason-box .title-box .choose .icon{
  175. width: 20rpx;
  176. height: 20rpx;
  177. }
  178. .applyRefund .reason-box .content{
  179. position: relative;
  180. background: #F6F6F6;
  181. }
  182. .applyRefund .reason-box textarea{
  183. width: 100%;
  184. height: 300rpx;
  185. border-radius: 16rpx 16rpx 16rpx 16rpx;
  186. box-sizing: border-box;
  187. padding: 24rpx;
  188. }
  189. .applyRefund .reason-box .content .img-box{
  190. display: flex;
  191. flex-wrap: wrap;
  192. padding: 0 24rpx;
  193. }
  194. .applyRefund .reason-box .content .img-box .img-item{
  195. position: relative;
  196. }
  197. .applyRefund .reason-box .content .img-box .img-item .del{
  198. position: absolute;
  199. top: -15rpx;
  200. right: 15rpx;
  201. width: 30rpx;
  202. height: 30rpx;
  203. }
  204. .applyRefund .reason-box .content .img-box .img{
  205. width: 120rpx;
  206. height: 120rpx;
  207. background: #FFFFFF;
  208. margin-right: 34rpx;
  209. border-radius: 32rpx 32rpx 32rpx 32rpx;
  210. margin-bottom: 24rpx;
  211. }
  212. .applyRefund .reason-box .content .upload{
  213. width: 120rpx;
  214. height: 120rpx;
  215. background: #FFFFFF;
  216. border-radius: 32rpx 32rpx 32rpx 32rpx;
  217. display: flex;
  218. justify-content: center;
  219. align-items: center;
  220. margin-bottom: 24rpx;
  221. }
  222. .applyRefund .reason-box .content .photo{
  223. width: 40rpx;
  224. height: 40rpx;
  225. }
  226. .applyRefund .submit-box{
  227. position: fixed;
  228. left: 0;
  229. bottom: 0;
  230. z-index: 9;
  231. width: 750rpx;
  232. height: 166rpx;
  233. background: #FFFFFF;
  234. border-radius: 32rpx 32rpx 0rpx 0rpx;
  235. }
  236. .applyRefund .submit-box .btn{
  237. margin-top: 20rpx;
  238. margin-left: 24rpx;
  239. width: 702rpx;
  240. height: 80rpx;
  241. line-height: 80rpx;
  242. text-align: center;
  243. background: #FF941A;
  244. border-radius: 40rpx 40rpx 40rpx 40rpx;
  245. font-weight: bold;
  246. font-size: 28rpx;
  247. color: #FFFFFF;
  248. }
  249. .reason-content{
  250. padding: 0 24rpx 140rpx;
  251. background: #F6F6F6;
  252. }
  253. .reason-content .title{
  254. font-weight: bold;
  255. font-size: 32rpx;
  256. color: #222222;
  257. text-align: center;
  258. padding: 28rpx 0;
  259. }
  260. .reason-list{
  261. background: #FFFFFF;
  262. border-radius: 32rpx 32rpx 32rpx 32rpx;
  263. padding: 24rpx;
  264. max-height: 450rpx;
  265. overflow: auto;
  266. margin-top: 20rpx;
  267. }
  268. .reason-list .title-box{
  269. display: flex;
  270. }
  271. .reason-list .title-box .sub-title{
  272. font-weight: bold;
  273. font-size: 28rpx;
  274. color: #222222;
  275. }
  276. .reason-list .title-box .desc{
  277. font-size: 28rpx;
  278. color: #AAAAAA;
  279. }
  280. .reason-content .item{
  281. display: flex;
  282. padding-top: 20rpx;
  283. }
  284. /*checkbox 选项框大小 */
  285. checkbox .wx-checkbox-input {
  286. border-radius: 50%;
  287. width: 32rpx;
  288. height: 32rpx;
  289. }
  290. /*checkbox选中后样式 */
  291. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  292. /* background: #e43130;
  293. border-color: #e43130; */
  294. background: #FF941A;
  295. border-color: #FF941A;
  296. }
  297. /*checkbox选中后图标样式 */
  298. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  299. text-align: center;
  300. font-size: 20rpx;
  301. color: #fff;
  302. background: transparent;
  303. transform: translate(-50%, -50%) scale(1);
  304. -webkit-transform: translate(-50%, -50%) scale(1);
  305. }
  306. .radio {
  307. transform: scale(.7);
  308. }