storeOrderRefundSubmit.wxss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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, #2BC7B9 0%, #2BC7A4 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 .return-method {
  164. background: #FFFFFF;
  165. border-radius: 16rpx;
  166. margin-top: 20rpx;
  167. padding: 0 30rpx 40rpx;
  168. }
  169. .content .inner .return-method .title-box {
  170. height: 86rpx;
  171. display: flex;
  172. align-items: center;
  173. justify-content: space-between;
  174. border-bottom: 1px solid #F0F0F0;
  175. }
  176. .content .inner .return-method .title-box .text {
  177. font-size: 30rpx;
  178. font-family: PingFang SC;
  179. font-weight: bold;
  180. color: #333333;
  181. }
  182. .content .inner .return-method .return-tips {
  183. margin-top: 30rpx;
  184. margin-bottom: 30rpx;
  185. height: 80rpx;
  186. background: #FFF4E6;
  187. border-radius: 16rpx;
  188. padding: 0 20rpx;
  189. display: flex;
  190. align-items: center;
  191. }
  192. .content .inner .return-method .return-tips .text {
  193. font-size: 24rpx;
  194. font-family: PingFang SC;
  195. font-weight: 500;
  196. color: #FF5C03;
  197. }
  198. .content .inner .return-method .info-item {
  199. display: flex;
  200. align-items: center;
  201. justify-content: space-between;
  202. margin-bottom: 40rpx;
  203. }
  204. .content .inner .return-method .info-item:last-child {
  205. margin-bottom: 0;
  206. }
  207. .content .inner .return-method .info-item .label {
  208. font-size: 26rpx;
  209. font-family: PingFang SC;
  210. font-weight: 500;
  211. color: #666666;
  212. line-height: 1;
  213. }
  214. .content .inner .return-method .info-item .text {
  215. font-size: 26rpx;
  216. font-family: PingFang SC;
  217. font-weight: 500;
  218. color: #111111;
  219. line-height: 1;
  220. }
  221. .content .inner .return-method .info-item .detail-box {
  222. display: flex;
  223. align-items: center;
  224. }
  225. .content .inner .return-method .info-item .detail-box .price-box {
  226. display: flex;
  227. align-items: flex-end;
  228. margin-right: 18rpx;
  229. }
  230. .content .inner .return-method .info-item .detail-box .price-box .unit {
  231. font-size: 24rpx;
  232. font-family: PingFang SC;
  233. font-weight: 500;
  234. color: #111111;
  235. line-height: 1.2;
  236. }
  237. .content .inner .return-method .info-item .detail-box .price-box .num {
  238. font-size: 32rpx;
  239. font-family: PingFang SC;
  240. font-weight: bold;
  241. color: #111111;
  242. line-height: 1;
  243. }
  244. .content .inner .return-method .info-item .detail-box .det-text {
  245. font-size: 26rpx;
  246. font-family: PingFang SC;
  247. font-weight: 500;
  248. color: #111111;
  249. }
  250. .content .inner .return-method .info-item .detail-box image {
  251. width: 14rpx;
  252. height: 24rpx;
  253. margin-left: 10rpx;
  254. }
  255. .content .reson-box {
  256. padding: 0 10rpx 60rpx;
  257. }
  258. .content .reson-box .reson-item {
  259. width: 100%;
  260. height: 110rpx;
  261. display: flex;
  262. align-items: center;
  263. justify-content: space-between;
  264. }
  265. .content .reson-box .reson-item .title {
  266. font-size: 30rpx;
  267. font-family: PingFang SC;
  268. font-weight: 500;
  269. color: #111111;
  270. }
  271. .btn-box {
  272. height: 120rpx;
  273. padding: 0 30rpx;
  274. display: flex;
  275. align-items: center;
  276. justify-content: center;
  277. }
  278. .btn-box .sub-btn {
  279. width: 100%;
  280. height: 88rpx;
  281. line-height: 88rpx;
  282. text-align: center;
  283. font-size: 30rpx;
  284. font-family: PingFang SC;
  285. font-weight: bold;
  286. color: #FFFFFF;
  287. background: #FF5C03;
  288. border-radius: 44rpx;
  289. }
  290. input {
  291. text-align: right;
  292. }
  293. .form-input {
  294. font-size: 30rpx;
  295. font-family: PingFang SC;
  296. font-weight: 500;
  297. color: #999999;
  298. text-align: right;
  299. }