pay.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. .container.data-v-c10d0c50 {
  28. position: relative;
  29. box-sizing: border-box;
  30. padding: 0 20rpx 160rpx;
  31. min-height: 100vh;
  32. background-color: #f2f3f5;
  33. }
  34. .container .countDown.data-v-c10d0c50 {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. height: 70rpx;
  39. color: #808080;
  40. font-size: 24rpx;
  41. }
  42. .container .price.data-v-c10d0c50 {
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. height: 65rpx;
  47. font-size: 50rpx;
  48. font-weight: bold;
  49. }
  50. .container .price text.data-v-c10d0c50 {
  51. font-size: 28rpx;
  52. }
  53. .container .title.data-v-c10d0c50 {
  54. margin-top: 14rpx;
  55. color: #808080;
  56. font-size: 24rpx;
  57. }
  58. .container .info.data-v-c10d0c50 {
  59. display: flex;
  60. flex-direction: column;
  61. box-sizing: border-box;
  62. padding: 0 30rpx;
  63. margin-top: 18rpx;
  64. width: 100%;
  65. border-radius: 15rpx;
  66. background-color: #fff;
  67. }
  68. .container .info .info_time.data-v-c10d0c50 {
  69. display: flex;
  70. align-items: center;
  71. margin-top: 20rpx;
  72. font-size: 32rpx;
  73. font-weight: bold;
  74. }
  75. .container .info .info_time .time_line.data-v-c10d0c50 {
  76. width: 17rpx;
  77. height: 1rpx;
  78. background-color: #096562;
  79. }
  80. .container .info .info_time .time_num.data-v-c10d0c50 {
  81. box-sizing: border-box;
  82. padding: 0 15rpx;
  83. height: 46rpx;
  84. line-height: 46rpx;
  85. font-size: 24rpx;
  86. font-weight: 400;
  87. border-radius: 66rpx;
  88. border: 1rpx solid #096562;
  89. background-color: #f0f2f5;
  90. }
  91. .container .info .info_time .gap.data-v-c10d0c50 {
  92. margin: 0 10rpx;
  93. }
  94. .container .info .info_time text.data-v-c10d0c50 {
  95. font-size: 24rpx;
  96. font-weight: 400;
  97. }
  98. .container .info .info_msg.data-v-c10d0c50 {
  99. margin-top: 15rpx;
  100. font-size: 28rpx;
  101. font-weight: bold;
  102. }
  103. .container .info .info_type.data-v-c10d0c50 {
  104. display: flex;
  105. flex-wrap: wrap;
  106. margin-top: 15rpx;
  107. }
  108. .container .info .info_type .type_item.data-v-c10d0c50 {
  109. box-sizing: border-box;
  110. padding: 0 15rpx;
  111. margin-right: 20rpx;
  112. height: 41rpx;
  113. line-height: 41rpx;
  114. font-size: 24rpx;
  115. color: #fff;
  116. border-radius: 34rpx;
  117. background-color: #096562;
  118. }
  119. .container .info .info_tag.data-v-c10d0c50 {
  120. display: flex;
  121. flex-wrap: wrap;
  122. margin: 18rpx 0 30rpx;
  123. color: #808080;
  124. font-size: 24rpx;
  125. }
  126. .container .info .info_tag .tag_item.data-v-c10d0c50 {
  127. margin-right: 20rpx;
  128. }
  129. .container .way .way_item.data-v-c10d0c50 {
  130. display: flex;
  131. align-items: center;
  132. box-sizing: border-box;
  133. padding: 0 30rpx;
  134. margin-top: 18rpx;
  135. height: 100rpx;
  136. font-size: 28rpx;
  137. border-radius: 15rpx;
  138. background-color: #fff;
  139. }
  140. .container .way .way_item ._img.data-v-c10d0c50 {
  141. width: 40rpx;
  142. height: 40rpx;
  143. }
  144. .container .way .way_item .way_text.data-v-c10d0c50 {
  145. margin-left: 18rpx;
  146. }
  147. .container .way .way_item .way_radio.data-v-c10d0c50 {
  148. margin-left: auto;
  149. -webkit-transform: scale(0.9);
  150. transform: scale(0.9);
  151. }
  152. .container .btn.data-v-c10d0c50 {
  153. position: fixed;
  154. bottom: 40rpx;
  155. display: flex;
  156. justify-content: center;
  157. align-items: center;
  158. width: 710rpx;
  159. height: 96rpx;
  160. color: #fff;
  161. font-size: 32rpx;
  162. border-radius: 64rpx;
  163. background-color: #096562;
  164. }