app.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. /**app.wxss**/
  2. page {
  3. font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", '微软雅黑', Arial, sans-serif;
  4. background-color: #f7f7f7;
  5. }
  6. .container {
  7. height: 100%;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: space-between;
  12. padding: 200rpx 0;
  13. box-sizing: border-box;
  14. }
  15. .flex_center {
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. }
  20. .over_hidden {
  21. overflow: hidden;
  22. }
  23. .abs_img {
  24. position: absolute;
  25. width: 100%;
  26. height: 100%;
  27. left: 0;
  28. top: 0;
  29. }
  30. .pos_rel {
  31. position: relative;
  32. }
  33. .pos_abs {
  34. position: absolute;
  35. }
  36. .text_right {
  37. text-align: right;
  38. }
  39. .text_center {
  40. text-align: center;
  41. }
  42. .one_line_hidden {
  43. white-space: nowrap;
  44. text-overflow: ellipsis;
  45. overflow: hidden;
  46. }
  47. .line-through {
  48. text-decoration: line-through;
  49. }
  50. .padLR30 {
  51. padding-left: 30px;
  52. padding-right: 30px;
  53. }
  54. .ft_bold {
  55. font-weight: bold;
  56. }
  57. .f0 {
  58. font-size: 0;
  59. }
  60. .f20 {
  61. font-size: 20rpx;
  62. }
  63. .f22 {
  64. font-size: 22rpx;
  65. }
  66. .f24 {
  67. font-size: 24rpx;
  68. }
  69. .f26 {
  70. font-size: 26rpx;
  71. }
  72. .f28 {
  73. font-size: 28rpx;
  74. }
  75. .f30 {
  76. font-size: 30rpx;
  77. }
  78. .f34 {
  79. font-size: 34rpx;
  80. }
  81. .f40 {
  82. font-size: 40rpx;
  83. }
  84. .ml4 {
  85. margin-left: 4rpx;
  86. }
  87. .ml8 {
  88. margin-left: 8rpx;
  89. }
  90. .ml10 {
  91. margin-left: 10rpx;
  92. }
  93. .ml16 {
  94. margin-left: 16rpx;
  95. }
  96. .ml20 {
  97. margin-left: 20rpx;
  98. }
  99. .mr6{
  100. margin-right: 6rpx;
  101. }
  102. .mr10 {
  103. margin-right: 10rpx;
  104. }
  105. .mr16 {
  106. margin-right: 16rpx;
  107. }
  108. .mr20 {
  109. margin-right: 20rpx;
  110. }
  111. .mt4 {
  112. margin-top: 4rpx;
  113. }
  114. .mt5 {
  115. margin-top: 5rpx;
  116. }
  117. .mt8 {
  118. margin-top: 8rpx;
  119. }
  120. .mt10 {
  121. margin-top: 10rpx;
  122. }
  123. .mt15 {
  124. margin-top: 15rpx;
  125. }
  126. .mt20 {
  127. margin-top: 20rpx;
  128. }
  129. .mt30 {
  130. margin-top: 30rpx;
  131. }
  132. .mt60 {
  133. margin-top: 60rpx;
  134. }
  135. .mb10 {
  136. margin-bottom: 10rpx;
  137. }
  138. .mb20 {
  139. margin-bottom: 20rpx;
  140. }
  141. .cola7 {
  142. color: #a7a7a7;
  143. }
  144. .col333 {
  145. color: #333;
  146. }
  147. .col666 {
  148. color: #666;
  149. }
  150. .col999 {
  151. color: #999;
  152. }
  153. .col1e5992 {
  154. color: #1e5992;
  155. }
  156. .col2B2B2B {
  157. color: #2B2B2B;
  158. }
  159. .cole73636 {
  160. color: #E73636;
  161. }
  162. .coleb4e4f {
  163. color: #EB4E4F
  164. }
  165. .col09BB07 {
  166. color: #09BB07
  167. }
  168. .colef524d {
  169. color: #ef524d;
  170. }
  171. .bacfff {
  172. background: #fff;
  173. }
  174. .l_height34 {
  175. line-height: 34rpx;
  176. }
  177. .l_height42 {
  178. line-height: 42rpx;
  179. }
  180. .f_left {
  181. float: left;
  182. }
  183. .f_right {
  184. float: right;
  185. }
  186. .vux-1px-b {
  187. position: relative;
  188. }
  189. .vux-1px-b::after {
  190. content: " ";
  191. position: absolute;
  192. left: 0;
  193. bottom: 0;
  194. right: 0;
  195. height: 1px;
  196. border-bottom: 1px solid #D9D9D9;
  197. color: #D9D9D9;
  198. -webkit-transform-origin: 0 100%;
  199. transform-origin: 0 100%;
  200. -webkit-transform: scaleY(0.5);
  201. transform: scaleY(0.5);
  202. }
  203. .comment-1px-b::after {
  204. content: " ";
  205. position: absolute;
  206. left: 24rpx;
  207. bottom: 0;
  208. right: 0;
  209. height: 1px;
  210. border-bottom: 1px solid #D9D9D9;
  211. color: #D9D9D9;
  212. -webkit-transform-origin: 0 100%;
  213. transform-origin: 0 100%;
  214. -webkit-transform: scaleY(0.5);
  215. transform: scaleY(0.5);
  216. }
  217. .flex_1px_d {
  218. position: relative;
  219. }
  220. .flex_1px_d::after {
  221. content: "";
  222. position: absolute;
  223. bottom: 0;
  224. right: 0;
  225. width: 720rpx;
  226. height: 2rpx;
  227. background: #d9d9d9;
  228. -webkit-transform: scaleY(0.5);
  229. transform: scaleY(0.5);
  230. }
  231. .arrow_right {
  232. position: relative;
  233. }
  234. .arrow_right::after {
  235. position: absolute;
  236. content: " ";
  237. height: 14rpx;
  238. width: 14rpx;
  239. border-width: 2rpx 2rpx 0 0;
  240. border-color: #999999;
  241. border-style: solid;
  242. -webkit-transform: rotate(45deg);
  243. transform: rotate(45deg);
  244. top: 50%;
  245. right: -15rpx;
  246. margin-top: -7rpx;
  247. }
  248. .back_top_btn {
  249. position: fixed;
  250. right: 50rpx;
  251. bottom: 50rpx;
  252. width: 106rpx;
  253. }
  254. .align_center {
  255. display: flex;
  256. align-items: center;
  257. }