packageOtherPayment.wxss 3.8 KB

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