index.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. page {
  2. background-color: white;
  3. padding-bottom: 50px;
  4. font-family: PingFang SC;
  5. }
  6. .page-container {
  7. padding: 20rpx 40rpx;
  8. }
  9. .tip {
  10. font-size: 23rpx;
  11. color: rgba(0, 0, 0, 0.5);
  12. width: 90%;
  13. text-align: center;
  14. margin: 30rpx auto 0 auto;
  15. }
  16. .top_tip {
  17. font-size: 28rpx;
  18. color: rgba(0, 0, 0, 0.5);
  19. width: 90%;
  20. text-align: left;
  21. margin-top: 30rpx;
  22. /* margin-left: 20rpx; */
  23. }
  24. .box_text {
  25. background-color: white;
  26. text-align: center;
  27. padding: 300rpx 0;
  28. margin-top: 30rpx;
  29. color: rgba(0, 0, 0, 0.5);
  30. }
  31. .button {
  32. width: 300rpx;
  33. text-align: center;
  34. margin: 250rpx auto 0 auto;
  35. height: 80rpx;
  36. color: white;
  37. border-radius: 5px;
  38. line-height: 80rpx;
  39. background-color: #07c160;
  40. }
  41. .button_clear {
  42. width: 300rpx;
  43. text-align: center;
  44. margin: 0 auto 0 auto;
  45. height: 80rpx;
  46. color: #07c160;
  47. border-radius: 5px;
  48. line-height: 80rpx;
  49. background-color: rgba(0, 0, 0, 0.03);
  50. }
  51. .line {
  52. height: 1rpx;
  53. width: 100%;
  54. background-color: rgba(0, 0, 0, 0.1);
  55. }
  56. .code_box {
  57. text-align: center;
  58. background-color: white;
  59. margin-top: 30rpx;
  60. padding: 17rpx;
  61. }
  62. .code_box_title {
  63. color: rgba(0, 0, 0, 0.5);
  64. font-size: 26rpx;
  65. margin-bottom: 20rpx;
  66. text-align: left;
  67. }
  68. .code_box_record {
  69. display: flex;
  70. }
  71. .code_box_record_title {
  72. width: 33%;
  73. font-size: 26rpx;
  74. color: rgba(0, 0, 0, 0.5);
  75. padding: 20rpx 0;
  76. }
  77. .code_box_record_detail {
  78. width: 25%;
  79. font-size: 26rpx;
  80. padding: 20rpx 0;
  81. display: flex;
  82. align-items: center;
  83. justify-content: center;
  84. }
  85. .title {
  86. margin-top: 16px;
  87. margin-bottom: 8px;
  88. font-size: 36rpx;
  89. font-weight: 500;
  90. color: #000;
  91. }
  92. .info {
  93. margin-top: 12px;
  94. font-size: 28rpx;
  95. font-weight: 400;
  96. color: rgba(0, 0, 0, 0.6);
  97. line-height: 52rpx;
  98. }
  99. .img {
  100. /* margin-top: 16px; */
  101. width: 100%;
  102. }
  103. .code_img {
  104. width: 360rpx;
  105. height: 360rpx;
  106. }
  107. .block {
  108. font-size: 16px;
  109. line-height: 40px;
  110. }
  111. .step-left {
  112. color: #FFF;
  113. background-color: #1aad19;
  114. border: #1aad19 solid 1px;
  115. padding: 0px 6px;
  116. }
  117. .step-right {
  118. color: #1aad19;
  119. background-color: #FFF;
  120. border: #1aad19 solid 1px;
  121. padding: 0px 6px;
  122. margin-right: 10px;
  123. }
  124. .code_zone {
  125. background-color: #0E190E;
  126. color: rgba(255, 255, 255, 0.7);
  127. border-radius: 12rpx;
  128. padding: 16rpx 32rpx;
  129. box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  130. position: relative;
  131. margin-bottom: 24rpx;
  132. }
  133. .btn-full {
  134. height: 40px;
  135. border-radius: 4px;
  136. line-height: 40px;
  137. color: #fff;
  138. background-color: #1aad19;
  139. text-align: center;
  140. margin-bottom: 5px;
  141. }
  142. .step-title {
  143. line-height: 37px;
  144. font-size: 16px;
  145. }
  146. .step-text{
  147. font-size: 14px;
  148. line-height: 24px;
  149. padding: 10px 0px;
  150. text-align: justify;
  151. }
  152. .modal-mask {
  153. position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  154. background: rgba(0,0,0,0.3); z-index: 1000; display: flex; align-items: center; justify-content: center;
  155. }
  156. .modal-content {
  157. background: #fff; padding: 24px; border-radius: 8px; width: 80%;
  158. }
  159. .modal-title { font-size: 18px; margin-bottom: 16px; }
  160. .modal-input { margin-bottom: 12px; border: 1px solid #eee; padding: 8px; border-radius: 4px; width: 100%; }
  161. .modal-actions { display: flex; justify-content: flex-end; gap: 12px; }