confirm.acss 18 KB

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