confirmPackageOrder.wxss 8.7 KB

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