confirmOrder.wxss 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .inner-box {
  28. padding: 20rpx 20rpx 140rpx;
  29. }
  30. .inner-box .goods-list {
  31. margin-top: 20rpx;
  32. padding: 0 30rpx;
  33. background-color: #FFFFFF;
  34. border-radius: 16rpx;
  35. }
  36. .inner-box .goods-list .item {
  37. padding: 30rpx 0;
  38. border-bottom: 1px solid #EDEEEF;
  39. display: flex;
  40. align-items: center;
  41. }
  42. .inner-box .goods-list .item .img-box {
  43. width: 160rpx;
  44. height: 160rpx;
  45. margin-right: 30rpx;
  46. }
  47. .inner-box .goods-list .item .img-box image {
  48. width: 100%;
  49. height: 100%;
  50. }
  51. .inner-box .goods-list .item .info-box {
  52. width: calc(100% - 190rpx);
  53. height: 160rpx;
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-between;
  57. }
  58. .inner-box .goods-list .item .info-box .name-box {
  59. font-size: 28rpx;
  60. font-family: PingFang SC;
  61. font-weight: 500;
  62. color: #111111;
  63. line-height: 40rpx;
  64. }
  65. .inner-box .goods-list .item .info-box .name-box .tag {
  66. display: inline-block;
  67. padding: 0 6rpx;
  68. height: 30rpx;
  69. background: linear-gradient(90deg, #2BC7B9 0%, #2BC7A4 100%);
  70. border-radius: 4rpx;
  71. margin-right: 10rpx;
  72. font-size: 22rpx;
  73. font-family: PingFang SC;
  74. font-weight: bold;
  75. color: #FFFFFF;
  76. line-height: 30rpx;
  77. float: left;
  78. margin-top: 7rpx;
  79. }
  80. .inner-box .goods-list .item .info-box .spec {
  81. margin-top: 10rpx;
  82. font-size: 24rpx;
  83. font-family: PingFang SC;
  84. font-weight: 500;
  85. color: #999999;
  86. line-height: 1;
  87. }
  88. .inner-box .goods-list .item .info-box .price-num {
  89. display: flex;
  90. align-items: center;
  91. justify-content: space-between;
  92. }
  93. .inner-box .goods-list .item .info-box .price-num .price {
  94. display: flex;
  95. align-items: flex-end;
  96. }
  97. .inner-box .goods-list .item .info-box .price-num .price .unit {
  98. font-size: 24rpx;
  99. font-family: PingFang SC;
  100. font-weight: 500;
  101. color: #111111;
  102. line-height: 1.2;
  103. margin-right: 4rpx;
  104. }
  105. .inner-box .goods-list .item .info-box .price-num .price .num {
  106. font-size: 32rpx;
  107. font-family: PingFang SC;
  108. font-weight: 500;
  109. color: #111111;
  110. line-height: 1;
  111. }
  112. .inner-box .goods-list .item .info-box .price-num .num {
  113. font-size: 24rpx;
  114. font-family: PingFang SC;
  115. font-weight: 500;
  116. color: #999999;
  117. line-height: 1;
  118. }
  119. .inner-box .goods-list .sub-total {
  120. height: 88rpx;
  121. display: flex;
  122. align-items: center;
  123. justify-content: flex-end;
  124. }
  125. .inner-box .goods-list .sub-total .label {
  126. font-size: 24rpx;
  127. font-family: PingFang SC;
  128. font-weight: 500;
  129. color: #999999;
  130. }
  131. .inner-box .goods-list .sub-total .price {
  132. display: flex;
  133. align-items: flex-end;
  134. }
  135. .inner-box .goods-list .sub-total .price .unit {
  136. font-size: 24rpx;
  137. font-family: PingFang SC;
  138. font-weight: 500;
  139. color: #FF6633;
  140. line-height: 1.2;
  141. margin-right: 4rpx;
  142. }
  143. .inner-box .goods-list .sub-total .price .num {
  144. font-size: 32rpx;
  145. font-family: PingFang SC;
  146. font-weight: bold;
  147. color: #FF6633;
  148. line-height: 1;
  149. }
  150. .inner-box .points {
  151. height: 88rpx;
  152. padding: 0 30rpx;
  153. background: #FFFFFF;
  154. border-radius: 16rpx;
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-between;
  158. }
  159. .inner-box .points .left {
  160. display: flex;
  161. align-items: center;
  162. }
  163. .inner-box .points .left image {
  164. width: 28rpx;
  165. height: 28rpx;
  166. margin-right: 20rpx;
  167. }
  168. .inner-box .points .left .text {
  169. font-size: 28rpx;
  170. font-family: PingFang SC;
  171. font-weight: 500;
  172. color: #666666;
  173. }
  174. .inner-box .points .right {
  175. display: flex;
  176. align-items: center;
  177. }
  178. .inner-box .points .right .text {
  179. font-size: 28rpx;
  180. font-family: PingFang SC;
  181. font-weight: 500;
  182. color: #111111;
  183. }
  184. .inner-box .points .right image {
  185. margin-left: 15rpx;
  186. width: 14rpx;
  187. height: 24rpx;
  188. }
  189. .inner-box .remarks {
  190. height: 88rpx;
  191. padding: 0 30rpx;
  192. background: #FFFFFF;
  193. border-radius: 16rpx;
  194. margin-top: 20rpx;
  195. display: flex;
  196. align-items: center;
  197. }
  198. .inner-box .remarks input {
  199. width: 100%;
  200. font-size: 28rpx;
  201. font-family: PingFang SC;
  202. font-weight: 500;
  203. color: #000000;
  204. }
  205. .inner-box .remarks .input {
  206. font-size: 28rpx;
  207. font-family: PingFang SC;
  208. font-weight: 500;
  209. color: #999999;
  210. }
  211. .btn-foot {
  212. box-sizing: border-box;
  213. width: 100%;
  214. height: 121rpx;
  215. background: #FFFFFF;
  216. display: flex;
  217. align-items: center;
  218. justify-content: flex-end;
  219. position: fixed;
  220. left: 0;
  221. bottom: 0;
  222. z-index: 99;
  223. }
  224. .btn-foot .right {
  225. display: flex;
  226. align-items: center;
  227. }
  228. .btn-foot .right .total {
  229. display: flex;
  230. align-items: flex-end;
  231. margin-right: 15rpx;
  232. }
  233. .btn-foot .right .total .label {
  234. font-size: 26rpx;
  235. font-family: PingFang SC;
  236. font-weight: 500;
  237. color: #999999;
  238. line-height: 1.5;
  239. }
  240. .btn-foot .right .total .price {
  241. display: flex;
  242. align-items: flex-end;
  243. }
  244. .btn-foot .right .total .price .unit {
  245. font-size: 26rpx;
  246. font-family: PingFang SC;
  247. font-weight: bold;
  248. color: #FF6633;
  249. line-height: 1.2;
  250. margin-right: 10rpx;
  251. }
  252. .btn-foot .right .total .price .num {
  253. font-size: 32rpx;
  254. font-family: PingFang SC;
  255. font-weight: bold;
  256. color: #FF6633;
  257. line-height: 1;
  258. }
  259. .btn-foot .right .btn {
  260. margin-right: 15rpx;
  261. padding: 20rpx 30rpx;
  262. text-align: center;
  263. font-size: 30rpx;
  264. font-family: PingFang SC;
  265. font-weight: bold;
  266. color: #FFFFFF;
  267. background: #2BC7B9;
  268. border-radius: 44rpx;
  269. }
  270. .coupon.data-v-72138f4a {
  271. height: 100%;
  272. }
  273. /*优惠券列表公共*/
  274. .coupon-list .item.data-v-72138f4a {
  275. display: flex;
  276. flex-direction: column;
  277. justify-content: center;
  278. align-items: center;
  279. width: 100%;
  280. height: 170rpx;
  281. margin-bottom: 16rpx;
  282. }
  283. .coupon-list .item .money.data-v-72138f4a {
  284. background-size: 100% 100%;
  285. width: 240rpx;
  286. height: 100%;
  287. color: #fff;
  288. font-size: 36rpx;
  289. font-weight: bold;
  290. text-align: center;
  291. display: flex;
  292. flex-direction: column;
  293. align-items: center;
  294. justify-content: center;
  295. position: relative;
  296. }
  297. .coupon-list .item .money .img.data-v-72138f4a {
  298. position: absolute;
  299. width: 240rpx;
  300. height: 100%;
  301. color: #fff;
  302. }
  303. .coupon-list .item .money .num.data-v-72138f4a {
  304. font-size: 60rpx;
  305. }
  306. .coupon-list .item .money .pic-num.data-v-72138f4a {
  307. font-size: 20rpx;
  308. z-index: 99;
  309. }
  310. .coupon-list .item .text.data-v-72138f4a {
  311. width: 450rpx;
  312. padding: 0 17rpx 0 24rpx;
  313. background-color: #fff;
  314. box-sizing: border-box;
  315. }
  316. .coupon-list .item .text .condition.data-v-72138f4a {
  317. font-size: 30rpx;
  318. color: #282828;
  319. height: 93rpx;
  320. line-height: 93rpx;
  321. border-bottom: 1px solid #f0f0f0;
  322. }
  323. .coupon-list .item .text .data.data-v-72138f4a {
  324. font-size: 20rpx;
  325. color: #999;
  326. height: 76rpx;
  327. }
  328. .coupon-list .item .text .data .bnt.data-v-72138f4a {
  329. width: 136rpx;
  330. height: 44rpx;
  331. border-radius: 22rpx;
  332. font-size: 22rpx;
  333. color: #fff;
  334. text-align: center;
  335. line-height: 44rpx;
  336. background-color: red;
  337. }
  338. .coupon-list .item .text .data .bnt.gray.data-v-72138f4a {
  339. background-color: #ccc;
  340. }
  341. .message-box.data-v-72138f4a {
  342. box-sizing: border-box;
  343. width: 693rpx;
  344. height: 84rpx;
  345. background: #F3FFFD;
  346. border: 1px solid #C7E9E5;
  347. box-shadow: 0px 4rpx 12rpx 0px rgba(90, 203, 138, 0.16);
  348. border-radius: 16rpx;
  349. position: fixed;
  350. left: 50%;
  351. -webkit-transform: translateX(-50%);
  352. transform: translateX(-50%);
  353. bottom: 128rpx;
  354. z-index: 99;
  355. display: flex;
  356. align-items: center;
  357. justify-content: space-between;
  358. padding: 0 20rpx 0 30rpx;
  359. }
  360. .message-box .left.data-v-72138f4a {
  361. width: 80%;
  362. display: flex;
  363. align-items: center;
  364. }
  365. .message-box .left image.data-v-72138f4a {
  366. width: 24rpx;
  367. height: 24rpx;
  368. margin-right: 18rpx;
  369. }
  370. .message-box .left .text.data-v-72138f4a {
  371. width: 90%;
  372. font-size: 28rpx;
  373. font-family: PingFang SC;
  374. font-weight: 500;
  375. color: #2BC7B9;
  376. }
  377. .message-box .btn.data-v-72138f4a {
  378. width: 100rpx;
  379. height: 48rpx;
  380. line-height: 48rpx;
  381. text-align: center;
  382. font-size: 24rpx;
  383. font-family: PingFang SC;
  384. font-weight: 500;
  385. color: #FFFFFF;
  386. border: 1px solid #D2E6FF;
  387. background: linear-gradient(135deg, #2BC7B9 0%, #60CDC3 100%);
  388. border-radius: 24rpx;
  389. margin-left: 30rpx;
  390. }