confirmCreateOrder.wxss 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  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. .inner-box {
  28. padding: 20rpx 20rpx 140rpx;
  29. }
  30. .inner-box .address-box {
  31. margin-bottom: 20rpx;
  32. box-sizing: border-box;
  33. min-height: 171rpx;
  34. background: #FFFFFF;
  35. border-radius: 16rpx;
  36. background-repeat: no-repeat;
  37. background-size: 100% 30rpx;
  38. background-position: left bottom;
  39. padding: 38rpx 30rpx 36rpx;
  40. display: flex;
  41. align-items: center;
  42. justify-content: space-between;
  43. }
  44. .inner-box .address-box .left {
  45. width: 92%;
  46. }
  47. .inner-box .address-box .left .name-box {
  48. display: flex;
  49. align-items: center;
  50. }
  51. .inner-box .address-box .left .name-box .text {
  52. font-size: 32rpx;
  53. font-family: PingFang SC;
  54. font-weight: bold;
  55. color: #111111;
  56. line-height: 1;
  57. }
  58. .inner-box .address-box .left .name-box .text.name {
  59. margin-right: 30rpx;
  60. }
  61. .inner-box .address-box .left .address {
  62. font-size: 28rpx;
  63. font-family: PingFang SC;
  64. font-weight: 500;
  65. color: #666666;
  66. line-height: 42rpx;
  67. text-align: left;
  68. margin-top: 23rpx;
  69. }
  70. .inner-box .address-box .arrow-box {
  71. width: 12rpx;
  72. height: 23rpx;
  73. display: flex;
  74. align-items: cenetr;
  75. justify-content: cenetr;
  76. }
  77. .inner-box .address-box .arrow-box image {
  78. width: 100%;
  79. height: 100%;
  80. }
  81. .inner-box .shopbox {
  82. background: #FFFFFF;
  83. border-radius: 16rpx;
  84. margin-bottom: 20rpx;
  85. }
  86. .inner-box .shopbox .points {
  87. padding: 0 !important;
  88. }
  89. .inner-box .shopbox .remarks {
  90. padding: 0 !important;
  91. }
  92. .inner-box .shopbox-name {
  93. padding: 30rpx 30rpx 0 30rpx;
  94. font-family: PingFang SC, PingFang SC;
  95. font-weight: 400;
  96. font-size: 30rpx;
  97. color: #111;
  98. overflow: hidden;
  99. white-space: nowrap;
  100. text-overflow: ellipsis;
  101. }
  102. .inner-box .goods-list {
  103. padding: 0 30rpx;
  104. background-color: #FFFFFF;
  105. border-radius: 16rpx;
  106. }
  107. .inner-box .goods-list .item {
  108. padding: 30rpx 0;
  109. border-bottom: 1px solid #EDEEEF;
  110. display: flex;
  111. align-items: center;
  112. }
  113. .inner-box .goods-list .item .img-box {
  114. width: 160rpx;
  115. height: 160rpx;
  116. margin-right: 30rpx;
  117. }
  118. .inner-box .goods-list .item .img-box image {
  119. width: 100%;
  120. height: 100%;
  121. }
  122. .inner-box .goods-list .item .info-box {
  123. width: calc(100% - 190rpx);
  124. height: 160rpx;
  125. display: flex;
  126. flex-direction: column;
  127. justify-content: space-between;
  128. }
  129. .inner-box .goods-list .item .info-box .name-box {
  130. font-size: 28rpx;
  131. font-family: PingFang SC;
  132. font-weight: 500;
  133. color: #111111;
  134. line-height: 40rpx;
  135. }
  136. .inner-box .goods-list .item .info-box .name-box .tag {
  137. display: inline-block;
  138. padding: 0 6rpx;
  139. height: 30rpx;
  140. background: linear-gradient(90deg, #66b2ef 0%, #0bb3f2 100%);
  141. border-radius: 4rpx;
  142. margin-right: 10rpx;
  143. font-size: 22rpx;
  144. font-family: PingFang SC;
  145. font-weight: bold;
  146. color: #FFFFFF;
  147. line-height: 30rpx;
  148. float: left;
  149. margin-top: 7rpx;
  150. }
  151. .inner-box .goods-list .item .info-box .spec {
  152. margin-top: 10rpx;
  153. font-size: 24rpx;
  154. font-family: PingFang SC;
  155. font-weight: 500;
  156. color: #999999;
  157. line-height: 1;
  158. }
  159. .inner-box .goods-list .item .info-box .price-num {
  160. display: flex;
  161. align-items: center;
  162. justify-content: space-between;
  163. }
  164. .inner-box .goods-list .item .info-box .price-num .price {
  165. display: flex;
  166. align-items: flex-end;
  167. }
  168. .inner-box .goods-list .item .info-box .price-num .price .unit {
  169. font-size: 24rpx;
  170. font-family: PingFang SC;
  171. font-weight: 500;
  172. color: #111111;
  173. line-height: 1.2;
  174. margin-right: 4rpx;
  175. }
  176. .inner-box .goods-list .item .info-box .price-num .price .num {
  177. font-size: 32rpx;
  178. font-family: PingFang SC;
  179. font-weight: 500;
  180. color: #111111;
  181. line-height: 1;
  182. }
  183. .inner-box .goods-list .item .info-box .price-num .num {
  184. font-size: 24rpx;
  185. font-family: PingFang SC;
  186. font-weight: 500;
  187. color: #999999;
  188. line-height: 1;
  189. }
  190. .inner-box .goods-list .sub-total {
  191. height: 88rpx;
  192. display: flex;
  193. align-items: center;
  194. justify-content: flex-end;
  195. }
  196. .inner-box .goods-list .sub-total .label {
  197. font-size: 24rpx;
  198. font-family: PingFang SC;
  199. font-weight: 500;
  200. color: #999999;
  201. }
  202. .inner-box .goods-list .sub-total .price {
  203. display: flex;
  204. align-items: flex-end;
  205. }
  206. .inner-box .goods-list .sub-total .price .unit {
  207. font-size: 24rpx;
  208. font-family: PingFang SC;
  209. font-weight: 500;
  210. color: #FF6633;
  211. line-height: 1.2;
  212. margin-right: 4rpx;
  213. }
  214. .inner-box .goods-list .sub-total .price .num {
  215. font-size: 32rpx;
  216. font-family: PingFang SC;
  217. font-weight: bold;
  218. color: #FF6633;
  219. line-height: 1;
  220. }
  221. .inner-box .price-info {
  222. background: #FFFFFF;
  223. border-radius: 16rpx;
  224. }
  225. .inner-box .price-info-title {
  226. padding: 30rpx 30rpx 20rpx 30rpx;
  227. font-family: PingFang SC, PingFang SC;
  228. font-weight: 500;
  229. font-size: 30rpx;
  230. color: #111;
  231. }
  232. .inner-box .price-info-unit {
  233. font-size: 24rpx;
  234. }
  235. .inner-box .price-info-num {
  236. font-size: 28rpx;
  237. }
  238. .inner-box .points {
  239. height: 88rpx;
  240. padding: 0 30rpx;
  241. background: #FFFFFF;
  242. border-radius: 16rpx;
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. }
  247. .inner-box .points .left {
  248. display: flex;
  249. align-items: center;
  250. }
  251. .inner-box .points .left image {
  252. width: 28rpx;
  253. height: 28rpx;
  254. margin-right: 20rpx;
  255. }
  256. .inner-box .points .left .text {
  257. font-size: 28rpx;
  258. font-family: PingFang SC;
  259. font-weight: 500;
  260. color: #666666;
  261. }
  262. .inner-box .points .right {
  263. display: flex;
  264. align-items: center;
  265. }
  266. .inner-box .points .right .text {
  267. font-size: 28rpx;
  268. font-family: PingFang SC;
  269. font-weight: 500;
  270. color: #111111;
  271. }
  272. .inner-box .points .right image {
  273. margin-left: 15rpx;
  274. width: 14rpx;
  275. height: 24rpx;
  276. }
  277. .inner-box .remarks {
  278. padding: 0 30rpx;
  279. background: #FFFFFF;
  280. border-radius: 16rpx;
  281. margin-top: 20rpx;
  282. display: flex;
  283. align-items: center;
  284. }
  285. .inner-box .remarks input {
  286. width: 100%;
  287. font-size: 28rpx;
  288. font-family: PingFang SC;
  289. font-weight: 500;
  290. color: #000000;
  291. }
  292. .inner-box .remarks .input {
  293. font-size: 28rpx;
  294. font-family: PingFang SC;
  295. font-weight: 500;
  296. color: #999999;
  297. }
  298. .btn-foot {
  299. box-sizing: border-box;
  300. width: 100%;
  301. height: 121rpx;
  302. background: #FFFFFF;
  303. padding: 16rpx 30rpx 16rpx 60rpx;
  304. display: flex;
  305. align-items: center;
  306. justify-content: flex-end;
  307. position: fixed;
  308. left: 0;
  309. bottom: 0;
  310. z-index: 99;
  311. }
  312. .btn-foot .right {
  313. display: flex;
  314. align-items: center;
  315. }
  316. .btn-foot .right .total {
  317. display: flex;
  318. align-items: flex-end;
  319. margin-right: 36rpx;
  320. }
  321. .btn-foot .right .total .label {
  322. font-size: 26rpx;
  323. font-family: PingFang SC;
  324. font-weight: 500;
  325. color: #999999;
  326. line-height: 1.5;
  327. }
  328. .btn-foot .right .total .price {
  329. display: flex;
  330. align-items: flex-end;
  331. }
  332. .btn-foot .right .total .price .unit {
  333. font-size: 32rpx;
  334. font-family: PingFang SC;
  335. font-weight: bold;
  336. color: #FF6633;
  337. line-height: 1.2;
  338. margin-right: 10rpx;
  339. }
  340. .btn-foot .right .total .price .num {
  341. font-size: 50rpx;
  342. font-family: PingFang SC;
  343. font-weight: bold;
  344. color: #FF6633;
  345. line-height: 1;
  346. }
  347. .btn-foot .right .btn {
  348. width: 200rpx;
  349. height: 88rpx;
  350. line-height: 88rpx;
  351. text-align: center;
  352. font-size: 30rpx;
  353. font-family: PingFang SC;
  354. font-weight: bold;
  355. color: #FFFFFF;
  356. background: #0bb3f2;
  357. border-radius: 44rpx;
  358. }
  359. .coupon.data-v-bb501b1c {
  360. height: 100%;
  361. }
  362. /*优惠券列表公共*/
  363. .coupon-list .item.data-v-bb501b1c {
  364. display: flex;
  365. flex-direction: column;
  366. justify-content: center;
  367. align-items: center;
  368. width: 100%;
  369. height: 170rpx;
  370. margin-bottom: 16rpx;
  371. }
  372. .coupon-list .item .money.data-v-bb501b1c {
  373. background-size: 100% 100%;
  374. width: 240rpx;
  375. height: 100%;
  376. color: #fff;
  377. font-size: 36rpx;
  378. font-weight: bold;
  379. text-align: center;
  380. display: flex;
  381. flex-direction: column;
  382. align-items: center;
  383. justify-content: center;
  384. position: relative;
  385. }
  386. .coupon-list .item .money .img.data-v-bb501b1c {
  387. position: absolute;
  388. width: 240rpx;
  389. height: 100%;
  390. color: #fff;
  391. }
  392. .coupon-list .item .money .num.data-v-bb501b1c {
  393. font-size: 60rpx;
  394. }
  395. .coupon-list .item .money .pic-num.data-v-bb501b1c {
  396. font-size: 20rpx;
  397. z-index: 99;
  398. }
  399. .coupon-list .item .text.data-v-bb501b1c {
  400. width: 450rpx;
  401. padding: 0 17rpx 0 24rpx;
  402. background-color: #fff;
  403. box-sizing: border-box;
  404. }
  405. .coupon-list .item .text .condition.data-v-bb501b1c {
  406. font-size: 30rpx;
  407. color: #282828;
  408. height: 93rpx;
  409. line-height: 93rpx;
  410. border-bottom: 1px solid #f0f0f0;
  411. }
  412. .coupon-list .item .text .data.data-v-bb501b1c {
  413. font-size: 20rpx;
  414. color: #999;
  415. height: 76rpx;
  416. }
  417. .coupon-list .item .text .data .bnt.data-v-bb501b1c {
  418. width: 136rpx;
  419. height: 44rpx;
  420. border-radius: 22rpx;
  421. font-size: 22rpx;
  422. color: #fff;
  423. text-align: center;
  424. line-height: 44rpx;
  425. background-color: red;
  426. }
  427. .coupon-list .item .text .data .bnt.gray.data-v-bb501b1c {
  428. background-color: #ccc;
  429. }