choosePayment.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. .pay-content {
  2. padding: 40rpx;
  3. .pay-list {
  4. &-item {
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. height: 104rpx;
  9. border-top: solid 1px #eeeeee;
  10. &-image {
  11. display: flex;
  12. font-size: 30rpx;
  13. color: #1E1E1E;
  14. .image {
  15. width: 54rpx;
  16. height: 45rpx;
  17. margin-right: 20rpx;
  18. }
  19. }
  20. &:last-child {
  21. border-bottom: solid 1px #eeeeee;
  22. }
  23. }
  24. }
  25. .pay-money {
  26. text-align: center;
  27. font-size: 38rpx;
  28. color: #008CFF;
  29. margin-top: 20rpx;
  30. font-weight: bold;
  31. .original-discount-money {
  32. text-decoration: line-through;
  33. color: #333;
  34. font-size: 24rpx;
  35. margin-left: 20rpx;
  36. }
  37. }
  38. .pay-btn {
  39. margin-top: 34rpx;
  40. }
  41. }
  42. .coupon-popup {
  43. position: relative;
  44. min-height: 100vh;
  45. overflow-y: auto;
  46. background-color: #F9F9F9;
  47. &-list {
  48. padding: 30rpx;
  49. &-item {
  50. background-color: #fff;
  51. border-radius: 17rpx;
  52. margin-bottom: 20rpx;
  53. &-top {
  54. padding: 30rpx;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: baseline;
  58. border-bottom: 1px solid #EEEEEE;
  59. &-left {
  60. display: flex;
  61. align-items: baseline;
  62. .cplitl-left {
  63. color: #FF6D6D;
  64. font-size: 20rpx;
  65. margin-right: 34rpx;
  66. text:last-child {
  67. font-size: 60rpx;
  68. font-weight: bold;
  69. }
  70. &-bottom {
  71. color: #333333;
  72. font-size: 24rpx;
  73. }
  74. }
  75. .cplitl-right {
  76. view {
  77. &:first-child {
  78. font-size: 32rpx;
  79. color: #333333;
  80. font-weight: 700;
  81. margin-bottom: 8rpx;
  82. }
  83. &:last-child {
  84. font-size: 20rpx;
  85. color: #666;
  86. }
  87. }
  88. }
  89. }
  90. }
  91. &-bottom {
  92. color: #999999;
  93. padding: 10rpx 30rpx;
  94. font-size: 20rpx;
  95. .cplib-point {
  96. margin-top: 10rpx;
  97. &-content {
  98. padding-top: 10rpx;
  99. font-size: 24rpx;
  100. color: #999999;
  101. }
  102. }
  103. }
  104. }
  105. }
  106. &-btn {
  107. width: 100%;
  108. padding: 80rpx 30rpx;
  109. position: absolute;
  110. bottom: 0;
  111. left: 0;
  112. }
  113. }