inquiryPayment.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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. .inner-box {
  27. padding: 0.625rem 0.625rem 9.375rem;
  28. }
  29. .inner-box .time-price {
  30. box-sizing: border-box;
  31. padding: 1.5625rem 0;
  32. background: #FFFFFF;
  33. border-radius: 0.5rem;
  34. display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. }
  38. .inner-box .time-price .time {
  39. font-size: 1rem;
  40. font-family: PingFang SC;
  41. font-weight: 500;
  42. color: #222222;
  43. line-height: 1;
  44. text-align: center;
  45. }
  46. .inner-box .time-price .desc {
  47. margin: 0.9375rem 0 0.46875rem;
  48. font-size: 0.8125rem;
  49. font-family: PingFang SC;
  50. color: #999999;
  51. line-height: 1;
  52. text-align: center;
  53. }
  54. .inner-box .time-price .price-box {
  55. display: flex;
  56. align-items: flex-end;
  57. margin-top: 0.875rem;
  58. }
  59. .inner-box .time-price .price-box .unit {
  60. font-size: 1rem;
  61. font-family: PingFang SC;
  62. font-weight: bold;
  63. color: #FF6633;
  64. line-height: 1.3;
  65. margin-right: 0.3125rem;
  66. }
  67. .inner-box .time-price .price-box .num {
  68. font-size: 1.75rem;
  69. font-family: PingFang SC;
  70. font-weight: bold;
  71. color: #FF6633;
  72. line-height: 1;
  73. }
  74. .inner-box .order-info {
  75. margin-top: 0.625rem;
  76. background: #FFFFFF;
  77. border-radius: 0.5rem;
  78. padding: 1.25rem 0.9375rem;
  79. }
  80. .inner-box .order-info .title {
  81. font-size: 0.9375rem;
  82. font-family: PingFang SC;
  83. font-weight: bold;
  84. color: #222222;
  85. line-height: 1;
  86. }
  87. .inner-box .order-info .item {
  88. margin-top: 1.25rem;
  89. display: flex;
  90. align-items: center;
  91. justify-content: space-between;
  92. }
  93. .inner-box .order-info .item .label {
  94. font-size: 0.8125rem;
  95. font-family: PingFang SC;
  96. font-weight: 500;
  97. color: #666666;
  98. line-height: 1;
  99. }
  100. .inner-box .order-info .item .text {
  101. font-size: 0.8125rem;
  102. font-family: PingFang SC;
  103. font-weight: 500;
  104. color: #222222;
  105. line-height: 1rem;
  106. }
  107. .inner-box .order-info .item .cont-text {
  108. font-size: 0.8125rem;
  109. font-family: PingFang SC;
  110. font-weight: 500;
  111. color: #666666;
  112. }
  113. .inner-box .order-info .item .cont-text .bold {
  114. color: #111111;
  115. }
  116. .inner-box .order-info .item .sn-box {
  117. display: flex;
  118. align-items: center;
  119. }
  120. .inner-box .order-info .item .sn-box .copy-btn {
  121. width: 1.8125rem;
  122. height: 1rem;
  123. line-height: 1rem;
  124. text-align: center;
  125. font-size: 0.6875rem;
  126. font-family: PingFang SC;
  127. font-weight: 500;
  128. color: #222222;
  129. background: #F5F5F5;
  130. border-radius: 0.125rem;
  131. margin-left: 0.75rem;
  132. }
  133. .inner-box .order-info .line {
  134. width: 100%;
  135. height: 1px;
  136. background: #F0F0F0;
  137. margin-top: 0.9375rem;
  138. }
  139. .btn-box {
  140. z-index: 9999;
  141. width: 100%;
  142. padding: 0.9375rem 0.9375rem 0;
  143. position: fixed;
  144. bottom: 0;
  145. left: 0;
  146. box-sizing: border-box;
  147. background-color: #ffffff;
  148. display: flex;
  149. flex-direction: column;
  150. align-items: center;
  151. justify-content: center;
  152. }
  153. .btn-box .btn {
  154. margin-bottom: 0.625rem;
  155. width: 100%;
  156. height: 2.75rem;
  157. line-height: 2.75rem;
  158. text-align: center;
  159. font-size: 1.0625rem;
  160. font-family: PingFang SC;
  161. font-weight: 400;
  162. color: #FFFFFF;
  163. background: #C39A58;
  164. border-radius: 0.3125rem;
  165. position: relative;
  166. }
  167. .btn-box .btn1 {
  168. margin-bottom: 0.625rem;
  169. width: 100%;
  170. height: 2.75rem;
  171. line-height: 2.75rem;
  172. text-align: center;
  173. font-size: 1.0625rem;
  174. font-family: PingFang SC;
  175. font-weight: 400;
  176. color: #C39A58;
  177. border: 0.03125rem solid #C39A58;
  178. border-radius: 0.3125rem;
  179. position: relative;
  180. }
  181. .btn-box .btn1 .share-btn {
  182. top: 0;
  183. left: 0;
  184. position: absolute;
  185. width: 100%;
  186. height: 2.75rem;
  187. display: flex;
  188. opacity: 0;
  189. }