confirm.acss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  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. page {
  28. width: 750rpx;
  29. background: #F2F2F2;
  30. }
  31. page .confirm .bg {
  32. width: 750rpx;
  33. height: 352rpx;
  34. background: #0EA374;
  35. }
  36. page .confirm .container {
  37. width: 690rpx;
  38. margin: 0 auto;
  39. margin-top: -239rpx;
  40. }
  41. page .confirm .container .station {
  42. width: 690rpx;
  43. height: 340rpx;
  44. background: #FFFFFF;
  45. border-radius: 14rpx;
  46. box-sizing: border-box;
  47. padding: 21rpx;
  48. display: -webkit-box;
  49. display: -webkit-flex;
  50. display: flex;
  51. -webkit-box-pack: justify;
  52. -webkit-justify-content: space-between;
  53. justify-content: space-between;
  54. -webkit-box-align: center;
  55. -webkit-align-items: center;
  56. align-items: center;
  57. }
  58. page .confirm .container .station image {
  59. width: 200rpx;
  60. height: 240rpx;
  61. }
  62. page .confirm .container .station .info {
  63. width: 400rpx;
  64. height: 240rpx;
  65. display: -webkit-box;
  66. display: -webkit-flex;
  67. display: flex;
  68. -webkit-box-orient: vertical;
  69. -webkit-box-direction: normal;
  70. -webkit-flex-direction: column;
  71. flex-direction: column;
  72. -webkit-box-pack: justify;
  73. -webkit-justify-content: space-between;
  74. justify-content: space-between;
  75. -webkit-box-align: start;
  76. -webkit-align-items: flex-start;
  77. align-items: flex-start;
  78. }
  79. page .confirm .container .station .info .content {
  80. height: 180rpx;
  81. display: -webkit-box;
  82. display: -webkit-flex;
  83. display: flex;
  84. -webkit-box-orient: vertical;
  85. -webkit-box-direction: normal;
  86. -webkit-flex-direction: column;
  87. flex-direction: column;
  88. -webkit-box-pack: justify;
  89. -webkit-justify-content: space-between;
  90. justify-content: space-between;
  91. font-size: 28rpx;
  92. font-weight: 400;
  93. color: #666666;
  94. line-height: 40rpx;
  95. }
  96. page .confirm .container .station .info .content view {
  97. display: -webkit-box;
  98. display: -webkit-flex;
  99. display: flex;
  100. -webkit-box-pack: justify;
  101. -webkit-justify-content: space-between;
  102. justify-content: space-between;
  103. }
  104. page .confirm .container .station .info .content view text:nth-child(1) {
  105. width: 200rpx;
  106. display: inline-block;
  107. }
  108. page .confirm .container .station .info .name {
  109. height: 45rpx;
  110. font-size: 32rpx;
  111. font-weight: 600;
  112. color: #111111;
  113. line-height: 45rpx;
  114. }
  115. page .confirm .container > view:not(.station) {
  116. width: 690rpx;
  117. height: 110rpx;
  118. background: #FFFFFF;
  119. box-shadow: 0px 2rpx 6rpx 5rpx rgba(237, 237, 237, 0.5);
  120. border-radius: 10rpx;
  121. margin-top: 20rpx;
  122. display: -webkit-box;
  123. display: -webkit-flex;
  124. display: flex;
  125. -webkit-box-pack: justify;
  126. -webkit-justify-content: space-between;
  127. justify-content: space-between;
  128. -webkit-box-align: center;
  129. -webkit-align-items: center;
  130. align-items: center;
  131. box-sizing: border-box;
  132. padding: 20rpx;
  133. font-size: 28rpx;
  134. font-weight: 500;
  135. color: #111111;
  136. line-height: 40rpx;
  137. }
  138. page .confirm .container > view:not(.station) > view {
  139. display: -webkit-box;
  140. display: -webkit-flex;
  141. display: flex;
  142. -webkit-box-pack: justify;
  143. -webkit-justify-content: space-between;
  144. justify-content: space-between;
  145. -webkit-box-align: center;
  146. -webkit-align-items: center;
  147. align-items: center;
  148. }
  149. page .confirm .container > view:not(.station) > view .icon {
  150. display: inline-block;
  151. width: 35rpx;
  152. height: 30rpx;
  153. margin-right: 14rpx;
  154. }
  155. page .confirm .container > view:not(.station) > view .price {
  156. background: url(/static/icon/dingdan.2x.png) no-repeat 0px 0px;
  157. background-size: 100% 100%;
  158. }
  159. page .confirm .container > view:not(.station) > view .oil {
  160. background: url(/static/icon/sheng.2x.png) no-repeat 0px 0px;
  161. background-size: 100% 100%;
  162. }
  163. page .confirm .container > view:not(.station) > view .discount {
  164. background: url(/static/icon/youhuiquan-2.2x.png) no-repeat 0px 0px;
  165. background-size: 100% 100%;
  166. }
  167. page .confirm .container > view:not(.station) > view .vip {
  168. background: url(/static/icon/huiyuan-.2x.png) no-repeat 0px 0px;
  169. background-size: 100% 100%;
  170. }
  171. page .confirm .container > view:not(.station) text.price {
  172. font-size: 24rpx;
  173. color: #F3B235;
  174. line-height: 33rpx;
  175. }
  176. page .confirm .container > view:not(.station) text.vip {
  177. font-size: 24rpx;
  178. color: #A76825;
  179. line-height: 33rpx;
  180. }
  181. page .confirm .container view.dispose {
  182. width: 690rpx;
  183. height: 138rpx;
  184. position: relative;
  185. display: inline-block;
  186. }
  187. page .confirm .container view.dispose .title {
  188. position: absolute;
  189. top: 36rpx;
  190. left: 20rpx;
  191. }
  192. page .confirm .container view.dispose .title text:nth-child(1) {
  193. height: 40rpx;
  194. font-size: 28rpx;
  195. font-weight: 400;
  196. color: #000000;
  197. line-height: 40rpx;
  198. margin-right: 20rpx;
  199. }
  200. page .confirm .container view.dispose .title text:nth-child(2) {
  201. height: 28rpx;
  202. font-size: 20rpx;
  203. font-family: PingFangSC-Regular, PingFang SC;
  204. font-weight: 400;
  205. color: #F0B849;
  206. line-height: 28rpx;
  207. box-sizing: border-box;
  208. border: 1px solid #F0B849;
  209. }
  210. page .confirm .container view.dispose .tip {
  211. position: absolute;
  212. top: 90rpx;
  213. left: 20rpx;
  214. }
  215. page .confirm .container view.dispose .tip .icon {
  216. width: 22rpx;
  217. height: 22rpx;
  218. background: url(/static/icon/tipicon1.png) no-repeat 0px 0px;
  219. background-size: 100% 100%;
  220. }
  221. page .confirm .container view.dispose .tip text:nth-child(2) {
  222. width: 220rpx;
  223. height: 28rpx;
  224. font-size: 20rpx;
  225. font-family: PingFangSC-Regular, PingFang SC;
  226. font-weight: 400;
  227. color: rgba(0, 0, 0, 0.4);
  228. line-height: 28rpx;
  229. }
  230. page .confirm .container view.coupon .extra {
  231. position: absolute;
  232. right: 20rpx;
  233. top: 54rpx;
  234. height: 34rpx;
  235. font-size: 24rpx;
  236. color: #6D6D6D;
  237. line-height: 34rpx;
  238. }
  239. page .confirm .container view.dzk .extra {
  240. position: absolute;
  241. right: 20rpx;
  242. top: 54rpx;
  243. background: url(/static/icon/select.png) no-repeat 0px 0px;
  244. background-size: 100% 100%;
  245. width: 40rpx;
  246. height: 40rpx;
  247. margin-right: 20rpx;
  248. }
  249. page .confirm .container view.dzk .selected {
  250. background: url(/static/icon/selected.png) no-repeat 0px 0px;
  251. background-size: 100% 100%;
  252. }
  253. page .confirm .container view.dzk .forbid {
  254. background: url(/static/icon/forbid.png) no-repeat 0px 0px;
  255. background-size: 100% 100%;
  256. }
  257. page .confirm .submit {
  258. width: 750rpx;
  259. height: 180rpx;
  260. }
  261. page .confirm .submit .area {
  262. width: 750rpx;
  263. height: 150rpx;
  264. background: #FFFFFF;
  265. position: fixed;
  266. bottom: 0;
  267. left: 0;
  268. right: 0;
  269. display: -webkit-box;
  270. display: -webkit-flex;
  271. display: flex;
  272. -webkit-box-pack: end;
  273. -webkit-justify-content: flex-end;
  274. justify-content: flex-end;
  275. -webkit-box-align: center;
  276. -webkit-align-items: center;
  277. align-items: center;
  278. }
  279. page .confirm .submit .area text:nth-child(1) {
  280. font-size: 28rpx;
  281. font-weight: 400;
  282. color: #111111;
  283. line-height: 40rpx;
  284. }
  285. page .confirm .submit .area text:nth-child(2) {
  286. font-size: 30rpx;
  287. font-weight: 600;
  288. color: #f3b338;
  289. line-height: 40rpx;
  290. }
  291. page .confirm .submit .area .btn {
  292. margin-left: 20rpx;
  293. margin-right: 30rpx;
  294. background-color: #0ea374;
  295. border-radius: 40rpx;
  296. width: 250rpx;
  297. height: 80rpx;
  298. font-size: 28rpx;
  299. font-family: PingFangSC-Regular, PingFang SC;
  300. font-weight: 500;
  301. color: #FFFFFF;
  302. line-height: 80rpx;
  303. text-align: center;
  304. }
  305. page .confirm uni-popup.pay .cont {
  306. width: 750rpx;
  307. height: 682rpx;
  308. background: #FFFFFF;
  309. border-radius: 30rpx 30rpx 0 0;
  310. position: relative;
  311. }
  312. page .confirm uni-popup.pay .cont .close {
  313. background: url(/static/icon/left.png) no-repeat 0px 0px;
  314. background-size: 100% 100%;
  315. width: 18rpx;
  316. height: 30rpx;
  317. position: absolute;
  318. top: 46rpx;
  319. left: 34rpx;
  320. }
  321. page .confirm uni-popup.pay .cont .amount {
  322. width: 100%;
  323. height: 100rpx;
  324. font-size: 80rpx;
  325. font-weight: 400;
  326. color: #000000;
  327. position: absolute;
  328. top: 112rpx;
  329. display: -webkit-box;
  330. display: -webkit-flex;
  331. display: flex;
  332. -webkit-box-pack: center;
  333. -webkit-justify-content: center;
  334. justify-content: center;
  335. -webkit-box-align: center;
  336. -webkit-align-items: center;
  337. align-items: center;
  338. }
  339. page .confirm uni-popup.pay .cont .amount text {
  340. font-size: 40rpx;
  341. }
  342. page .confirm uni-popup.pay .cont .type {
  343. width: 100%;
  344. height: 34rpx;
  345. position: absolute;
  346. top: 310rpx;
  347. }
  348. page .confirm uni-popup.pay .cont .type text:nth-child(1) {
  349. height: 34rpx;
  350. font-size: 24rpx;
  351. font-weight: 400;
  352. color: #aaaaaa;
  353. line-height: 34rpx;
  354. position: absolute;
  355. left: 58rpx;
  356. }
  357. page .confirm uni-popup.pay .cont .type text:nth-child(2) {
  358. height: 34rpx;
  359. font-size: 24rpx;
  360. font-weight: 500;
  361. color: #000000;
  362. line-height: 34rpx;
  363. position: absolute;
  364. right: 144rpx;
  365. }
  366. page .confirm uni-popup.pay .cont .type text:nth-child(3) {
  367. background: url(/static/icon/right.png) no-repeat 0px 0px;
  368. background-size: 100% 100%;
  369. display: inline-block;
  370. width: 12rpx;
  371. height: 22rpx;
  372. position: absolute;
  373. right: 66rpx;
  374. top: 7rpx;
  375. }
  376. page .confirm uni-popup.pay .cont .pay {
  377. width: 590rpx;
  378. height: 76rpx;
  379. background: -webkit-linear-gradient(347deg, #12A273 0%, #25AA7E 100%);
  380. background: linear-gradient(103deg, #12A273 0%, #25AA7E 100%);
  381. border-radius: 38rpx;
  382. font-size: 28rpx;
  383. font-family: PingFangSC-Regular, PingFang SC;
  384. font-weight: 400;
  385. color: #FFFFFF;
  386. line-height: 76rpx;
  387. letter-spacing: 1rpx;
  388. position: absolute;
  389. bottom: 114rpx;
  390. left: 80rpx;
  391. }
  392. page .confirm uni-popup.selectPayType .cont {
  393. width: 750rpx;
  394. height: 680rpx;
  395. background: #FFFFFF;
  396. border-radius: 30rpx 30rpx 0 0;
  397. position: relative;
  398. padding: 0 25rpx;
  399. box-sizing: border-box;
  400. }
  401. page .confirm uni-popup.selectPayType .cont .close {
  402. width: 38rpx;
  403. height: 38rpx;
  404. position: absolute;
  405. top: 24rpx;
  406. left: 24rpx;
  407. background: url(/static/icon/6_d05_close.2x.png) no-repeat 0px 0px;
  408. background-size: 100% 100%;
  409. }
  410. page .confirm uni-popup.selectPayType .cont .credit {
  411. position: absolute;
  412. width: 700rpx;
  413. top: 138rpx;
  414. height: 130rpx;
  415. box-sizing: border-box;
  416. border-bottom: 2rpx solid #D8D8D8;
  417. color: #000 solid #D8D8D8;
  418. padding: 0 30rpx;
  419. }
  420. page .confirm uni-popup.selectPayType .cont .credit .credit-con {
  421. height: 60rpx;
  422. display: -webkit-box;
  423. display: -webkit-flex;
  424. display: flex;
  425. -webkit-box-pack: justify;
  426. -webkit-justify-content: space-between;
  427. justify-content: space-between;
  428. }
  429. page .confirm uni-popup.selectPayType .cont .credit .credit-con .text {
  430. font-size: 28rpx;
  431. height: 40rpx;
  432. line-height: 60rpx;
  433. font-weight: 600;
  434. }
  435. page .confirm uni-popup.selectPayType .cont .credit .credit-con .icon {
  436. background: url(/static/icon/select.png) no-repeat 0px 0px;
  437. background-size: 100% 100%;
  438. width: 40rpx;
  439. height: 40rpx;
  440. }
  441. page .confirm uni-popup.selectPayType .cont .credit .credit-con .selected {
  442. background: url(/static/icon/selected.png) no-repeat 0px 0px;
  443. background-size: 100% 100%;
  444. }
  445. page .confirm uni-popup.selectPayType .cont .credit .credit-con .forbid {
  446. background: url(/static/icon/forbid.png) no-repeat 0px 0px;
  447. background-size: 100% 100%;
  448. }
  449. page .confirm uni-popup.selectPayType .cont .credit .tip {
  450. margin-top: 16rpx;
  451. height: 44rpx;
  452. font-size: 24rpx;
  453. font-weight: 400;
  454. color: rgba(0, 0, 0, 0.29);
  455. line-height: 44rpx;
  456. }
  457. page .confirm uni-popup.selectPayType .cont .wx {
  458. position: absolute;
  459. width: 700rpx;
  460. top: 305rpx;
  461. padding: 0 30rpx;
  462. height: 40rpx;
  463. display: -webkit-box;
  464. display: -webkit-flex;
  465. display: flex;
  466. box-sizing: border-box;
  467. -webkit-box-pack: justify;
  468. -webkit-justify-content: space-between;
  469. justify-content: space-between;
  470. }
  471. page .confirm uni-popup.selectPayType .cont .wx .text {
  472. font-size: 28rpx;
  473. height: 40rpx;
  474. line-height: 40rpx;
  475. font-weight: 600;
  476. }
  477. page .confirm uni-popup.selectPayType .cont .wx .icon {
  478. background: url(/static/icon/select.png) no-repeat 0px 0px;
  479. background-size: 100% 100%;
  480. width: 40rpx;
  481. height: 40rpx;
  482. }
  483. page .confirm uni-popup.selectPayType .cont .wx .selected {
  484. background: url(/static/icon/selected.png) no-repeat 0px 0px;
  485. background-size: 100% 100%;
  486. }
  487. page .confirm uni-popup.selectPayType .cont > button {
  488. width: 590rpx;
  489. height: 76rpx;
  490. background-color: #cccccc;
  491. border-radius: 38rpx;
  492. font-size: 28rpx;
  493. font-weight: 400;
  494. color: #FFFFFF;
  495. line-height: 76rpx;
  496. letter-spacing: 1rpx;
  497. position: absolute;
  498. box-sizing: border-box;
  499. bottom: 114rpx;
  500. left: 80rpx;
  501. }
  502. page .confirm uni-popup.selectPayType .cont > button.available {
  503. background: -webkit-linear-gradient(347deg, #12A273 0%, #25AA7E 100%);
  504. background: linear-gradient(103deg, #12A273 0%, #25AA7E 100%);
  505. }
  506. page .confirm uni-popup.coupon .coupon-container {
  507. width: 100%;
  508. border-radius: 42rpx 42rpx 0px 0px;
  509. background: #F2F2F2;
  510. padding: 0 30rpx;
  511. box-sizing: border-box;
  512. position: relative;
  513. }
  514. page .confirm uni-popup.coupon .coupon-container .close {
  515. width: 38rpx;
  516. height: 38rpx;
  517. position: absolute;
  518. top: 24rpx;
  519. right: 24rpx;
  520. background: url(/static/icon/6_d05_close.2x.png) no-repeat 0px 0px;
  521. background-size: 100% 100%;
  522. }
  523. page .confirm uni-popup.coupon .coupon-container > .title {
  524. height: 105rpx;
  525. font-size: 32rpx;
  526. font-weight: 400;
  527. color: #111111;
  528. line-height: 105rpx;
  529. font-weight: 600;
  530. color: #111111;
  531. text-align: center;
  532. }
  533. page .confirm uni-popup.coupon .coupon-container .coupon-scroll {
  534. max-height: 500rpx;
  535. overflow: scroll;
  536. }
  537. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item {
  538. width: 690rpx;
  539. height: 160rpx;
  540. font-size: 24rpx;
  541. font-weight: 500;
  542. color: #FFFFFF;
  543. line-height: 40rpx;
  544. display: -webkit-box;
  545. display: -webkit-flex;
  546. display: flex;
  547. -webkit-box-pack: justify;
  548. -webkit-justify-content: space-between;
  549. justify-content: space-between;
  550. margin-bottom: 20rpx;
  551. }
  552. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left {
  553. width: 150rpx;
  554. height: 160rpx;
  555. display: -webkit-box;
  556. display: -webkit-flex;
  557. display: flex;
  558. -webkit-box-orient: vertical;
  559. -webkit-box-direction: normal;
  560. -webkit-flex-direction: column;
  561. flex-direction: column;
  562. -webkit-box-pack: center;
  563. -webkit-justify-content: center;
  564. justify-content: center;
  565. text-align: center;
  566. }
  567. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left .amount {
  568. font-size: 20rpx;
  569. }
  570. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .left .amount .big {
  571. font-size: 33rpx;
  572. }
  573. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right {
  574. width: 540rpx;
  575. height: 160rpx;
  576. color: #111111;
  577. position: relative;
  578. }
  579. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .title {
  580. position: absolute;
  581. top: 22rpx;
  582. left: 20rpx;
  583. height: 40rpx;
  584. font-size: 28rpx;
  585. font-weight: 500;
  586. line-height: 40rpx;
  587. }
  588. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .scope {
  589. position: absolute;
  590. top: 72rpx;
  591. left: 20rpx;
  592. height: 28rpx;
  593. font-size: 20rpx;
  594. color: #666666;
  595. line-height: 28rpx;
  596. }
  597. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .valid {
  598. position: absolute;
  599. top: 110rpx;
  600. left: 20rpx;
  601. height: 28rpx;
  602. font-size: 20rpx;
  603. color: #666666;
  604. line-height: 28rpx;
  605. }
  606. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .item .right .use {
  607. position: absolute;
  608. top: 54rpx;
  609. right: 20rpx;
  610. display: inline-block;
  611. width: 160rpx;
  612. height: 55rpx;
  613. }
  614. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .cash {
  615. background: url(/static/icon/youhuiquan1.2x.png) no-repeat 0px 0px;
  616. background-size: 100% 100%;
  617. }
  618. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .discount {
  619. background: url(/static/icon/youhuiquan2.2x.png) no-repeat 0px 0px;
  620. background-size: 100% 100%;
  621. }
  622. page .confirm uni-popup.coupon .coupon-container .coupon-scroll .exchange {
  623. background: url(/static/icon/youhuiquan3.2x.png) no-repeat 0px 0px;
  624. background-size: 100% 100%;
  625. }