index.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .codeDetail {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. .detail-top {
  6. width: 100%;
  7. height: 100%;
  8. position: relative;
  9. z-index: 999;
  10. @include flex(center);
  11. .back-icon {
  12. position: absolute;
  13. left: 0;
  14. top: 50%;
  15. transform: translateY(-50%);
  16. }
  17. .shop-name {
  18. color: #000;
  19. font-size: 32rpx;
  20. }
  21. }
  22. .seize {
  23. width: 100%;
  24. height: 16rpx;
  25. background-color: #ffffff;
  26. }
  27. .container {
  28. width: 100%;
  29. padding: 32rpx 60rpx 0;
  30. box-sizing: border-box;
  31. // @include flex(center, column, null);
  32. position: relative;
  33. .code-image {
  34. width: 650rpx;
  35. position: relative;
  36. z-index: -1111;
  37. }
  38. .img-box {
  39. width: 100%;
  40. /* position: absolute;
  41. top: 32rpx;
  42. z-index: 9999;
  43. left: 50%;
  44. transform: translateX(-50%); */
  45. height: 908rpx;
  46. display: block;
  47. }
  48. .text {
  49. margin-top: 16rpx;
  50. text-align: center;
  51. margin-bottom: 32rpx;
  52. font-size: 28rpx;
  53. color: #3d3d3d;
  54. }
  55. .btn {
  56. margin: 0 auto;
  57. width: 332rpx;
  58. height: 96rpx;
  59. color: #ffffff;
  60. background-color: #fe4b1e;
  61. text-align: center;
  62. line-height: 96rpx;
  63. border-radius: 16rpx;
  64. font-size: 28rpx;
  65. }
  66. }
  67. .illustrate {
  68. position: fixed;
  69. left: 50%;
  70. transform: translateX(-50%);
  71. bottom: 80rpx;
  72. color: #ef530e;
  73. font-size: 28rpx;
  74. .illustrate-box {
  75. @include flex(center, null, 9rpx);
  76. margin-bottom: 20rpx;
  77. }
  78. }
  79. .use-illustrate {
  80. width: 100%;
  81. border-radius: 16rpx 16rpx 0 0;
  82. height: 394rpx;
  83. padding: 48rpx 32rpx 0 32rpx;
  84. box-sizing: border-box;
  85. .use-title {
  86. font-size: 32rpx;
  87. color: rgba(0, 0, 0, 0.9);
  88. font-weight: 600;
  89. margin-bottom: 32rpx;
  90. text-align: center;
  91. }
  92. .use-text {
  93. font-size: 28rpx;
  94. color: rgba(0, 0, 0, 0.4);
  95. }
  96. .use-btn {
  97. width: 100%;
  98. height: 96rpx;
  99. line-height: 96rpx;
  100. text-align: center;
  101. font-weight: 500;
  102. font-size: 32rpx;
  103. color: #ffffff;
  104. border-radius: 16rpx;
  105. background-color: #fe4b1e;
  106. margin-top: 48rpx;
  107. }
  108. }
  109. .pay-way {
  110. width: 100%;
  111. height: 428rpx;
  112. border-radius: 16rpx 16rpx 0 0;
  113. padding: 48rpx 32rpx 0 32rpx;
  114. box-sizing: border-box;
  115. .pay-title {
  116. font-size: 32rpx;
  117. color: rgba(0, 0, 0, 0.9);
  118. font-weight: 600;
  119. margin-bottom: 52rpx;
  120. text-align: center;
  121. }
  122. .pay-more {
  123. width: 100%;
  124. @include flex(center, null, 32rpx);
  125. flex-wrap: wrap;
  126. .more-box {
  127. width: 206rpx;
  128. @include flex(flex-start, null, 16rpx);
  129. image {
  130. width: 40rpx;
  131. height: 40rpx;
  132. display: block;
  133. }
  134. text {
  135. color: #3d3d3d;
  136. font-size: 28rpx;
  137. }
  138. }
  139. }
  140. .pay-btn {
  141. width: 100%;
  142. height: 96rpx;
  143. line-height: 96rpx;
  144. text-align: center;
  145. font-weight: 500;
  146. font-size: 32rpx;
  147. color: #ffffff;
  148. border-radius: 16rpx;
  149. background-color: #fe4b1e;
  150. margin-top: 48rpx;
  151. }
  152. }
  153. }