app.wxss 2.9 KB

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