info.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. /* uni.scss */
  15. /* 颜色变量 */
  16. /* 行为相关颜色 */
  17. /* 文字基本颜色 */
  18. /* 背景颜色 */
  19. /* 边框颜色 */
  20. /* 尺寸变量 */
  21. /* 文字尺寸 */
  22. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. .content {
  29. padding-top: 40rpx;
  30. padding-bottom: 5vh;
  31. }
  32. .yellow {
  33. color: #F6B403;
  34. display: flex;
  35. flex-direction: row;
  36. align-items: center;
  37. justify-content: flex-end !important;
  38. }
  39. .row {
  40. justify-content: flex-start;
  41. }
  42. .row .row .name {
  43. min-width: 90rpx;
  44. text-align: right;
  45. }
  46. .card {
  47. background-color: #FFFFFF;
  48. width: 93%;
  49. margin: 0 auto;
  50. margin-bottom: 40rpx;
  51. padding: 30rpx;
  52. border-radius: 30rpx;
  53. display: flex;
  54. flex-direction: column;
  55. align-items: center;
  56. justify-content: space-between;
  57. }
  58. .card .name {
  59. color: #999;
  60. min-width: 20%;
  61. }
  62. .card .text {
  63. text-indent: 1em;
  64. overflow-x: scroll;
  65. white-space: nowrap;
  66. }
  67. .card .red {
  68. color: red;
  69. }
  70. .card .title {
  71. font-size: 36rpx;
  72. font-weight: bold;
  73. padding-bottom: 20rpx;
  74. width: 100%;
  75. }
  76. .card .row {
  77. margin-bottom: 20rpx;
  78. }
  79. .card .order {
  80. width: 100%;
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. background: #F5F6FB;
  85. opacity: 1;
  86. padding: 14rpx 24rpx;
  87. box-sizing: border-box;
  88. border-radius: 16rpx;
  89. margin-bottom: 10rpx;
  90. }
  91. .card .order .order_a {
  92. font-size: 26rpx;
  93. font-family: PingFang SC;
  94. font-weight: 500;
  95. line-height: 36rpx;
  96. color: #1F4971;
  97. opacity: 1;
  98. display: flex;
  99. justify-content: flex-start;
  100. align-items: center;
  101. }
  102. .card .order .order_a .order_yuan {
  103. display: inline-block;
  104. width: 14rpx;
  105. height: 14rpx;
  106. background: #F6B403;
  107. border-radius: 50%;
  108. opacity: 1;
  109. margin-right: 10rpx;
  110. }
  111. .card .order .order_a .order_yuana {
  112. display: inline-block;
  113. width: 14rpx;
  114. height: 14rpx;
  115. background: #F54948;
  116. border-radius: 50%;
  117. opacity: 1;
  118. margin-right: 10rpx;
  119. }
  120. .card .order .order_b {
  121. width: 85%;
  122. text-align: left;
  123. }
  124. .card .order .order_b .order_p {
  125. font-size: 26rpx;
  126. font-family: PingFang SC;
  127. font-weight: 500;
  128. line-height: 36rpx;
  129. color: #111111;
  130. opacity: 1;
  131. }
  132. .card .order .order_b .order_c {
  133. display: flex;
  134. justify-content: flex-start;
  135. align-items: center;
  136. margin-top: 6rpx;
  137. }
  138. .card .order .order_b .order_c .order_p1 {
  139. font-size: 26rpx;
  140. font-family: PingFang SC;
  141. font-weight: 400;
  142. line-height: 36rpx;
  143. color: #111111;
  144. opacity: 1;
  145. }
  146. .card .order .order_b .order_c .order_p2 {
  147. font-size: 26rpx;
  148. font-family: PingFang SC;
  149. font-weight: 400;
  150. line-height: 36rpx;
  151. color: #111111;
  152. opacity: 1;
  153. margin-left: 40rpx;
  154. }
  155. .min-card {
  156. width: 100%;
  157. background-color: #F8F8F8;
  158. }
  159. .image {
  160. width: 100%;
  161. display: flex;
  162. flex-direction: row;
  163. align-items: center;
  164. justify-content: flex-start;
  165. flex-wrap: wrap;
  166. }
  167. .image .image-dom {
  168. width: 120rpx;
  169. height: 120rpx;
  170. border: 1px #eee solid;
  171. margin-right: 20rpx;
  172. margin-bottom: 20rpx;
  173. }
  174. .bottom-btn {
  175. position: fixed;
  176. bottom: 0;
  177. width: 100vw;
  178. height: 10vh;
  179. background-color: #FFFFFF;
  180. display: flex;
  181. flex-direction: row;
  182. align-items: center;
  183. justify-content: flex-end;
  184. }
  185. .bottom-btn .buttom-dom {
  186. height: 70rpx;
  187. min-width: 20%;
  188. background-color: #F6B301;
  189. color: #FFFFFF;
  190. text-align: center;
  191. line-height: 70rpx;
  192. color: #FFFFFF;
  193. border-radius: 70rpx;
  194. margin: 0 40rpx;
  195. padding: 0 10rpx;
  196. }