refundOrder.wxss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. .content {
  28. margin-bottom: 170rpx;
  29. }
  30. .content .inner {
  31. padding: 20rpx;
  32. }
  33. .content .inner .drug-list .item {
  34. background: #FFFFFF;
  35. border-radius: 16rpx;
  36. margin-bottom: 20rpx;
  37. padding: 0 30rpx;
  38. }
  39. .content .inner .drug-list .item .drug-info {
  40. display: flex;
  41. align-items: center;
  42. padding: 30rpx 0;
  43. }
  44. .content .inner .drug-list .item .drug-info .img-box {
  45. width: 160rpx;
  46. height: 160rpx;
  47. margin-right: 30rpx;
  48. }
  49. .content .inner .drug-list .item .drug-info .img-box image {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .content .inner .drug-list .item .drug-info .info {
  54. width: calc(100% - 160rpx);
  55. height: 160rpx;
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: space-between;
  59. }
  60. .content .inner .drug-list .item .drug-info .info .top .title {
  61. font-size: 28rpx;
  62. font-family: PingFang SC;
  63. font-weight: 500;
  64. color: #111111;
  65. line-height: 1.4;
  66. }
  67. .content .inner .drug-list .item .drug-info .info .top .title .tag {
  68. display: inline-block;
  69. padding: 0 6rpx;
  70. height: 30rpx;
  71. background: linear-gradient(90deg, #66b2ef 0%, #0bb3f2 100%);
  72. border-radius: 4rpx;
  73. margin-right: 10rpx;
  74. font-size: 22rpx;
  75. font-family: PingFang SC;
  76. font-weight: bold;
  77. color: #FFFFFF;
  78. line-height: 30rpx;
  79. float: left;
  80. margin-top: 7rpx;
  81. }
  82. .content .inner .drug-list .item .drug-info .info .top .spec {
  83. font-size: 24rpx;
  84. font-family: PingFang SC;
  85. font-weight: 500;
  86. color: #999999;
  87. line-height: 1;
  88. margin-top: 14rpx;
  89. }
  90. .content .inner .drug-list .item .drug-info .info .price-num {
  91. display: flex;
  92. align-items: center;
  93. justify-content: space-between;
  94. }
  95. .content .inner .drug-list .item .drug-info .info .price-num .price-box {
  96. display: flex;
  97. align-items: flex-end;
  98. }
  99. .content .inner .drug-list .item .drug-info .info .price-num .price-box .unit {
  100. font-size: 24rpx;
  101. font-family: PingFang SC;
  102. font-weight: 500;
  103. color: #111111;
  104. line-height: 1.2;
  105. margin-right: 5rpx;
  106. }
  107. .content .inner .drug-list .item .drug-info .info .price-num .price-box .price {
  108. font-size: 32rpx;
  109. font-family: PingFang SC;
  110. font-weight: 500;
  111. color: #111111;
  112. line-height: 1;
  113. }
  114. .content .inner .drug-list .item .drug-info .info .price-num .num {
  115. font-size: 24rpx;
  116. font-family: PingFang SC;
  117. font-weight: bold;
  118. color: #666666;
  119. }
  120. .content .inner .reason-apply {
  121. margin-top: 20rpx;
  122. background: #FFFFFF;
  123. border-radius: 16rpx;
  124. padding: 0 30rpx;
  125. }
  126. .content .inner .reason-apply .title-box {
  127. height: 86rpx;
  128. display: flex;
  129. align-items: center;
  130. justify-content: space-between;
  131. border-bottom: 1px solid #F0F0F0;
  132. }
  133. .content .inner .reason-apply .title-box .label {
  134. font-size: 30rpx;
  135. font-family: PingFang SC;
  136. font-weight: bold;
  137. color: #333333;
  138. }
  139. .content .inner .reason-apply .title-box .money {
  140. font-size: 24rpx;
  141. font-family: PingFang SC;
  142. font-weight: 500;
  143. color: #999999;
  144. }
  145. .content .inner .reason-apply .title-box .chose-box {
  146. display: flex;
  147. align-items: center;
  148. }
  149. .content .inner .reason-apply .title-box .chose-box .text {
  150. font-size: 24rpx;
  151. font-family: PingFang SC;
  152. font-weight: 500;
  153. color: #999999;
  154. }
  155. .content .inner .reason-apply .title-box .chose-box image {
  156. width: 14rpx;
  157. height: 24rpx;
  158. margin-left: 10rpx;
  159. }
  160. .content .inner .reason-apply .textarea-box {
  161. padding: 30rpx 0;
  162. }
  163. .content .inner .reason-apply .textarea-box textarea {
  164. width: 100%;
  165. box-sizing: border-box;
  166. background: #F5F5F5;
  167. border-radius: 16rpx;
  168. padding: 30rpx 20rpx;
  169. font-size: 24rpx;
  170. font-family: PingFang SC;
  171. font-weight: 500;
  172. color: #111111;
  173. }
  174. .content .inner .reason-apply .textarea-box .textarea-place {
  175. font-size: 24rpx;
  176. font-family: PingFang SC;
  177. font-weight: 500;
  178. color: #999999;
  179. }
  180. .content .inner .return-method {
  181. background: #FFFFFF;
  182. border-radius: 16rpx;
  183. margin-top: 20rpx;
  184. padding: 0 30rpx 40rpx;
  185. }
  186. .content .inner .return-method .title-box {
  187. height: 86rpx;
  188. display: flex;
  189. align-items: center;
  190. justify-content: space-between;
  191. border-bottom: 1px solid #F0F0F0;
  192. }
  193. .content .inner .return-method .title-box .text {
  194. font-size: 30rpx;
  195. font-family: PingFang SC;
  196. font-weight: bold;
  197. color: #333333;
  198. }
  199. .content .inner .return-method .return-tips {
  200. margin-top: 30rpx;
  201. margin-bottom: 30rpx;
  202. height: 80rpx;
  203. background: #FFF4E6;
  204. border-radius: 16rpx;
  205. padding: 0 20rpx;
  206. display: flex;
  207. align-items: center;
  208. }
  209. .content .inner .return-method .return-tips .text {
  210. font-size: 24rpx;
  211. font-family: PingFang SC;
  212. font-weight: 500;
  213. color: #EF8A07;
  214. }
  215. .content .inner .return-method .info-item {
  216. display: flex;
  217. align-items: center;
  218. justify-content: space-between;
  219. margin-bottom: 40rpx;
  220. }
  221. .content .inner .return-method .info-item:last-child {
  222. margin-bottom: 0;
  223. }
  224. .content .inner .return-method .info-item .label {
  225. font-size: 26rpx;
  226. font-family: PingFang SC;
  227. font-weight: 500;
  228. color: #666666;
  229. line-height: 1;
  230. }
  231. .content .inner .return-method .info-item .text {
  232. font-size: 26rpx;
  233. font-family: PingFang SC;
  234. font-weight: 500;
  235. color: #111111;
  236. line-height: 1;
  237. }
  238. .content .inner .return-method .info-item .detail-box {
  239. display: flex;
  240. align-items: center;
  241. }
  242. .content .inner .return-method .info-item .detail-box .price-box {
  243. display: flex;
  244. align-items: flex-end;
  245. margin-right: 18rpx;
  246. }
  247. .content .inner .return-method .info-item .detail-box .price-box .unit {
  248. font-size: 24rpx;
  249. font-family: PingFang SC;
  250. font-weight: 500;
  251. color: #111111;
  252. line-height: 1.2;
  253. }
  254. .content .inner .return-method .info-item .detail-box .price-box .num {
  255. font-size: 32rpx;
  256. font-family: PingFang SC;
  257. font-weight: bold;
  258. color: #111111;
  259. line-height: 1;
  260. }
  261. .content .inner .return-method .info-item .detail-box .det-text {
  262. font-size: 26rpx;
  263. font-family: PingFang SC;
  264. font-weight: 500;
  265. color: #111111;
  266. }
  267. .content .inner .return-method .info-item .detail-box image {
  268. width: 14rpx;
  269. height: 24rpx;
  270. margin-left: 10rpx;
  271. }
  272. .content .reson-box {
  273. padding: 0 10rpx 60rpx;
  274. }
  275. .content .reson-box .reson-item {
  276. width: 100%;
  277. height: 110rpx;
  278. display: flex;
  279. align-items: center;
  280. justify-content: space-between;
  281. }
  282. .content .reson-box .reson-item .title {
  283. font-size: 30rpx;
  284. font-family: PingFang SC;
  285. font-weight: 500;
  286. color: #111111;
  287. }
  288. .btn-box {
  289. height: 120rpx;
  290. padding: 0 30rpx;
  291. display: flex;
  292. align-items: center;
  293. justify-content: center;
  294. }
  295. .btn-box .sub-btn {
  296. width: 100%;
  297. height: 88rpx;
  298. line-height: 88rpx;
  299. text-align: center;
  300. font-size: 30rpx;
  301. font-family: PingFang SC;
  302. font-weight: bold;
  303. color: #FFFFFF;
  304. background: #0bb3f2;
  305. border-radius: 44rpx;
  306. }
  307. input {
  308. text-align: right;
  309. }
  310. .form-input {
  311. font-size: 30rpx;
  312. font-family: PingFang SC;
  313. font-weight: 500;
  314. color: #999999;
  315. text-align: right;
  316. }