app.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. .text_center {
  34. text-align: center;
  35. }
  36. .one_line_hidden {
  37. white-space: nowrap;
  38. text-overflow: ellipsis;
  39. overflow: hidden;
  40. }
  41. .line-through {
  42. text-decoration: line-through;
  43. }
  44. .padLR30 {
  45. padding-left: 30px;
  46. padding-right: 30px;
  47. }
  48. .ft_bold {
  49. font-weight: bold;
  50. }
  51. .f0 {
  52. font-size: 0;
  53. }
  54. .f20 {
  55. font-size: 20rpx;
  56. }
  57. .f24 {
  58. font-size: 24rpx;
  59. }
  60. .f26 {
  61. font-size: 26rpx;
  62. }
  63. .f28 {
  64. font-size: 28rpx;
  65. }
  66. .f30 {
  67. font-size: 30rpx;
  68. }
  69. .f34 {
  70. font-size: 34rpx;
  71. }
  72. .f40 {
  73. font-size: 40rpx;
  74. }
  75. .ml8 {
  76. margin-left: 8rpx;
  77. }
  78. .ml10 {
  79. margin-left: 10rpx;
  80. }
  81. .ml16 {
  82. margin-left: 16rpx;
  83. }
  84. .ml20 {
  85. margin-left: 20rpx;
  86. }
  87. .mr6{
  88. margin-right: 6rpx;
  89. }
  90. .mr10 {
  91. margin-right: 10rpx;
  92. }
  93. .mr16 {
  94. margin-right: 16rpx;
  95. }
  96. .mr20 {
  97. margin-right: 20rpx;
  98. }
  99. .mt4 {
  100. margin-top: 4rpx;
  101. }
  102. .mt8 {
  103. margin-top: 8rpx;
  104. }
  105. .mt10 {
  106. margin-top: 10rpx;
  107. }
  108. .mt15 {
  109. margin-top: 15rpx;
  110. }
  111. .mt20 {
  112. margin-top: 20rpx;
  113. }
  114. .mb10 {
  115. margin-bottom: 10rpx;
  116. }
  117. .mb20 {
  118. margin-bottom: 20rpx;
  119. }
  120. .cola7 {
  121. color: #a7a7a7;
  122. }
  123. .col333 {
  124. color: #333;
  125. }
  126. .col666 {
  127. color: #666;
  128. }
  129. .col999 {
  130. color: #999;
  131. }
  132. .col2B2B2B {
  133. color: #2B2B2B;
  134. }
  135. .coleb4e4f {
  136. color: #EB4E4F
  137. }
  138. .col09BB07 {
  139. color: #09BB07
  140. }
  141. .colef524d {
  142. color: #ef524d;
  143. }
  144. .bacfff {
  145. background: #fff;
  146. }
  147. .l_height34 {
  148. line-height: 34rpx;
  149. }
  150. .l_height42 {
  151. line-height: 42rpx;
  152. }
  153. .f_left {
  154. float: left;
  155. }
  156. .f_right {
  157. float: right;
  158. }
  159. .vux-1px-b {
  160. position: relative;
  161. }
  162. .vux-1px-b::after {
  163. content: " ";
  164. position: absolute;
  165. left: 0;
  166. bottom: 0;
  167. right: 0;
  168. height: 1px;
  169. border-bottom: 1px solid #D9D9D9;
  170. color: #D9D9D9;
  171. -webkit-transform-origin: 0 100%;
  172. transform-origin: 0 100%;
  173. -webkit-transform: scaleY(0.5);
  174. transform: scaleY(0.5);
  175. }
  176. .comment-1px-b::after {
  177. content: " ";
  178. position: absolute;
  179. left: 24rpx;
  180. bottom: 0;
  181. right: 0;
  182. height: 1px;
  183. border-bottom: 1px solid #D9D9D9;
  184. color: #D9D9D9;
  185. -webkit-transform-origin: 0 100%;
  186. transform-origin: 0 100%;
  187. -webkit-transform: scaleY(0.5);
  188. transform: scaleY(0.5);
  189. }
  190. .flex_1px_d {
  191. position: relative;
  192. }
  193. .flex_1px_d::after {
  194. content: "";
  195. position: absolute;
  196. bottom: 0;
  197. right: 0;
  198. width: 720rpx;
  199. height: 2rpx;
  200. background: #d9d9d9;
  201. -webkit-transform: scaleY(0.5);
  202. transform: scaleY(0.5);
  203. }
  204. .arrow_right {
  205. position: relative;
  206. }
  207. .arrow_right::after {
  208. position: absolute;
  209. content: " ";
  210. height: 14rpx;
  211. width: 14rpx;
  212. border-width: 2rpx 2rpx 0 0;
  213. border-color: #999999;
  214. border-style: solid;
  215. -webkit-transform: rotate(45deg);
  216. transform: rotate(45deg);
  217. top: 50%;
  218. right: -15rpx;
  219. margin-top: -7rpx;
  220. }
  221. .back_top_btn {
  222. position: fixed;
  223. right: 50rpx;
  224. bottom: 50rpx;
  225. width: 106rpx;
  226. }
  227. .align_center {
  228. display: flex;
  229. align-items: center;
  230. }