paymentOrder.wxss 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. /*自定义主题色 */
  27. page {
  28. height: 100%;
  29. }
  30. .content {
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. justify-content: space-between;
  35. }
  36. .content .inner {
  37. padding: 20rpx;
  38. }
  39. .content .inner .time-price {
  40. box-sizing: border-box;
  41. padding: 50rpx 0rpx;
  42. background: #FFFFFF;
  43. border-radius: 16rpx;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. }
  48. .content .inner .time-price .time {
  49. font-size: 32rpx;
  50. font-family: PingFang SC;
  51. font-weight: 500;
  52. color: #222222;
  53. line-height: 1;
  54. text-align: center;
  55. }
  56. .content .inner .time-price .desc {
  57. margin: 30rpx 0rpx 15rpx;
  58. font-size: 26rpx;
  59. font-family: PingFang SC;
  60. color: #999999;
  61. line-height: 1;
  62. text-align: center;
  63. }
  64. .content .inner .time-price .price-box {
  65. display: flex;
  66. align-items: flex-end;
  67. margin-top: 28rpx;
  68. }
  69. .content .inner .time-price .price-box .unit {
  70. font-size: 32rpx;
  71. font-family: PingFang SC;
  72. font-weight: bold;
  73. color: #FF6633;
  74. line-height: 1.3;
  75. margin-right: 10rpx;
  76. }
  77. .content .inner .time-price .price-box .num {
  78. font-size: 56rpx;
  79. font-family: PingFang SC;
  80. font-weight: bold;
  81. color: #FF6633;
  82. line-height: 1;
  83. }
  84. .content .inner .pay-type {
  85. box-sizing: border-box;
  86. background: #FFFFFF;
  87. border-radius: 16rpx;
  88. margin-top: 20rpx;
  89. padding: 40rpx 30rpx;
  90. display: flex;
  91. flex-direction: column;
  92. justify-content: space-between;
  93. }
  94. .content .inner .pay-type .title {
  95. font-size: 28rpx;
  96. font-family: PingFang SC;
  97. font-weight: 500;
  98. color: #999999;
  99. line-height: 1;
  100. margin-bottom: 10rpx;
  101. }
  102. .content .inner .pay-type .item {
  103. padding: 15rpx 0rpx;
  104. display: flex;
  105. align-items: center;
  106. justify-content: space-between;
  107. }
  108. .content .inner .pay-type .item .left {
  109. display: flex;
  110. align-items: center;
  111. }
  112. .content .inner .pay-type .item .left image {
  113. width: 44rpx;
  114. height: 44rpx;
  115. margin-right: 20rpx;
  116. }
  117. .content .inner .pay-type .item .left .text {
  118. font-size: 30rpx;
  119. font-family: PingFang SC;
  120. font-weight: bold;
  121. color: #222222;
  122. line-height: 1;
  123. }
  124. .content .inner .order-info {
  125. margin-top: 20rpx;
  126. background: #FFFFFF;
  127. border-radius: 16rpx;
  128. padding: 40rpx 30rpx;
  129. }
  130. .content .inner .order-info .title {
  131. font-size: 30rpx;
  132. font-family: PingFang SC;
  133. font-weight: bold;
  134. color: #222222;
  135. line-height: 1;
  136. }
  137. .content .inner .order-info .item {
  138. margin-top: 40rpx;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. }
  143. .content .inner .order-info .item .label {
  144. font-size: 26rpx;
  145. font-family: PingFang SC;
  146. font-weight: 500;
  147. color: #666666;
  148. line-height: 1;
  149. }
  150. .content .inner .order-info .item .text {
  151. font-size: 26rpx;
  152. font-family: PingFang SC;
  153. font-weight: 500;
  154. color: #222222;
  155. line-height: 32rpx;
  156. }
  157. .content .inner .order-info .item .cont-text {
  158. font-size: 26rpx;
  159. font-family: PingFang SC;
  160. font-weight: 500;
  161. color: #666666;
  162. }
  163. .content .inner .order-info .item .cont-text .bold {
  164. color: #111111;
  165. }
  166. .content .inner .order-info .item .sn-box {
  167. display: flex;
  168. align-items: center;
  169. }
  170. .content .inner .order-info .item .sn-box .copy-btn {
  171. width: 58rpx;
  172. height: 32rpx;
  173. line-height: 32rpx;
  174. text-align: center;
  175. font-size: 22rpx;
  176. font-weight: 500;
  177. color: #222222;
  178. background: #F5F5F5;
  179. border-radius: 4rpx;
  180. margin-left: 24rpx;
  181. }
  182. .content .inner .order-info .line {
  183. width: 100%;
  184. height: 1px;
  185. background: #F0F0F0;
  186. margin-top: 30rpx;
  187. }
  188. .content .btn-box {
  189. height: 242rpx;
  190. background: #FFFFFF;
  191. display: flex;
  192. align-items: center;
  193. justify-content: center;
  194. flex-direction: column;
  195. }
  196. .content .btn-box .btn {
  197. width: 91.73%;
  198. height: 88rpx;
  199. line-height: 88rpx;
  200. font-size: 30rpx;
  201. font-family: PingFang SC;
  202. font-weight: bold;
  203. color: #FFFFFF;
  204. text-align: center;
  205. background: #0bb3f2;
  206. border-radius: 44rpx;
  207. margin-bottom: 10rpx;
  208. }
  209. .content .btn-box .other-btn {
  210. width: 91.73%;
  211. height: 88rpx;
  212. line-height: 88rpx;
  213. font-size: 30rpx;
  214. font-family: PingFang SC;
  215. font-weight: bold;
  216. color: #0bb3f2;
  217. border: 1rpx solid #0bb3f2;
  218. text-align: center;
  219. background: #FFFFFF;
  220. border-radius: 44rpx;
  221. margin-bottom: 10rpx;
  222. position: relative;
  223. }
  224. .content .btn-box .other-btn .share {
  225. display: inline-block;
  226. position: absolute;
  227. top: 0;
  228. left: 0;
  229. width: 100%;
  230. height: 100%;
  231. opacity: 0;
  232. }