payOrder.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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. height: 100%;
  29. background-color: #F2F5F9;
  30. }
  31. .content {
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-between;
  36. }
  37. .content .inner {
  38. padding: 20rpx;
  39. }
  40. .content .inner .time-price {
  41. box-sizing: border-box;
  42. height: 200rpx;
  43. background: #FFFFFF;
  44. border-radius: 16rpx;
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. padding-top: 50rpx;
  49. }
  50. .content .inner .time-price .time {
  51. font-size: 26rpx;
  52. font-family: PingFang SC;
  53. font-weight: 500;
  54. color: #999999;
  55. line-height: 1;
  56. text-align: center;
  57. }
  58. .content .inner .time-price .price-box {
  59. display: flex;
  60. align-items: flex-end;
  61. margin-top: 28rpx;
  62. }
  63. .content .inner .time-price .price-box .unit {
  64. font-size: 32rpx;
  65. font-family: PingFang SC;
  66. font-weight: bold;
  67. color: #FF6633;
  68. line-height: 1.3;
  69. margin-right: 10rpx;
  70. }
  71. .content .inner .time-price .price-box .num {
  72. font-size: 56rpx;
  73. font-family: PingFang SC;
  74. font-weight: bold;
  75. color: #FF6633;
  76. line-height: 1;
  77. }
  78. .content .inner .pay-type {
  79. box-sizing: border-box;
  80. height: 192rpx;
  81. background: #FFFFFF;
  82. border-radius: 16rpx;
  83. margin-top: 20rpx;
  84. padding: 40rpx 30rpx;
  85. display: flex;
  86. flex-direction: column;
  87. justify-content: space-between;
  88. }
  89. .content .inner .pay-type .title {
  90. font-size: 28rpx;
  91. font-family: PingFang SC;
  92. font-weight: 500;
  93. color: #999999;
  94. line-height: 1;
  95. }
  96. .content .inner .pay-type .item {
  97. display: flex;
  98. align-items: center;
  99. justify-content: space-between;
  100. }
  101. .content .inner .pay-type .item .left {
  102. display: flex;
  103. align-items: center;
  104. }
  105. .content .inner .pay-type .item .left image {
  106. width: 44rpx;
  107. height: 44rpx;
  108. margin-right: 20rpx;
  109. }
  110. .content .inner .pay-type .item .left .text {
  111. font-size: 30rpx;
  112. font-family: PingFang SC;
  113. font-weight: bold;
  114. color: #222222;
  115. line-height: 1;
  116. }
  117. .content .inner .order-info {
  118. margin-top: 20rpx;
  119. background: #FFFFFF;
  120. border-radius: 16rpx;
  121. padding: 40rpx 30rpx;
  122. }
  123. .content .inner .order-info .title {
  124. font-size: 30rpx;
  125. font-family: PingFang SC;
  126. font-weight: bold;
  127. color: #222222;
  128. line-height: 1;
  129. }
  130. .content .inner .order-info .item {
  131. margin-top: 40rpx;
  132. display: flex;
  133. align-items: center;
  134. justify-content: space-between;
  135. }
  136. .content .inner .order-info .item .label {
  137. font-size: 26rpx;
  138. font-family: PingFang SC;
  139. font-weight: 500;
  140. color: #666666;
  141. line-height: 1;
  142. }
  143. .content .inner .order-info .item .text {
  144. font-size: 26rpx;
  145. font-family: PingFang SC;
  146. font-weight: 500;
  147. color: #222222;
  148. line-height: 32rpx;
  149. }
  150. .content .inner .order-info .item .cont-text {
  151. font-size: 26rpx;
  152. font-family: PingFang SC;
  153. font-weight: 500;
  154. color: #666666;
  155. }
  156. .content .inner .order-info .item .cont-text .bold {
  157. color: #111111;
  158. }
  159. .content .inner .order-info .item .sn-box {
  160. display: flex;
  161. align-items: center;
  162. }
  163. .content .inner .order-info .item .sn-box .copy-btn {
  164. width: 58rpx;
  165. height: 32rpx;
  166. line-height: 32rpx;
  167. text-align: center;
  168. font-size: 22rpx;
  169. font-family: PingFang SC;
  170. font-weight: 500;
  171. color: #222222;
  172. background: #F5F5F5;
  173. border-radius: 4rpx;
  174. margin-left: 24rpx;
  175. }
  176. .content .inner .order-info .line {
  177. width: 100%;
  178. height: 1px;
  179. background: #F0F0F0;
  180. margin-top: 30rpx;
  181. }
  182. .content .btn-box {
  183. height: 121rpx;
  184. background: #FFFFFF;
  185. display: flex;
  186. align-items: center;
  187. justify-content: center;
  188. }
  189. .content .btn-box .btn {
  190. width: 91.73%;
  191. height: 88rpx;
  192. line-height: 88rpx;
  193. font-size: 30rpx;
  194. font-family: PingFang SC;
  195. font-weight: bold;
  196. color: #FFFFFF;
  197. text-align: center;
  198. background: #2BC7B9;
  199. border-radius: 44rpx;
  200. }