choosePayment.scss 2.5 KB

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