base.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /**
  2. * 全局样式
  3. */
  4. .flex_row_center_center{
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. }
  9. .flex_row_center_between{
  10. display: flex;
  11. justify-content: center;
  12. align-items: space-between;
  13. }
  14. .flex_row_center_around{
  15. display: flex;
  16. justify-content: center;
  17. align-items: space-around;
  18. }
  19. .flex_row_center_start{
  20. display: flex;
  21. justify-content: center;
  22. align-items: flex-start;
  23. }
  24. .flex_row_center_end{
  25. display: flex;
  26. justify-content: center;
  27. align-items: flex-end;
  28. }
  29. .flex_row_between_center{
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. }
  34. .flex_row_between_between{
  35. display: flex;
  36. justify-content: space-between;
  37. align-items: space-between;
  38. }
  39. .flex_row_between_around{
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: space-around;
  43. }
  44. .flex_row_between_start{
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: flex-start;
  48. }
  49. .flex_row_between_end{
  50. display: flex;
  51. justify-content: space-between;
  52. align-items: flex-end;
  53. }
  54. .flex_row_around_center{
  55. display: flex;
  56. justify-content: space-around;
  57. align-items: center;
  58. }
  59. .flex_row_around_between{
  60. display: flex;
  61. justify-content: space-around;
  62. align-items: space-between;
  63. }
  64. .flex_row_around_around{
  65. display: flex;
  66. justify-content: space-around;
  67. align-items: space-around;
  68. }
  69. .flex_row_around_start{
  70. display: flex;
  71. justify-content: space-around;
  72. align-items: flex-start;
  73. }
  74. .flex_row_around_end{
  75. display: flex;
  76. justify-content: space-around;
  77. align-items: flex-end;
  78. }
  79. .flex_row_start_center{
  80. display: flex;
  81. justify-content: flex-start;
  82. align-items: center;
  83. }
  84. .flex_row_start_between{
  85. display: flex;
  86. justify-content: flex-start;
  87. align-items: space-between;
  88. }
  89. .flex_row_start_around{
  90. display: flex;
  91. justify-content: flex-start;
  92. align-items: space-around;
  93. }
  94. .flex_row_start_start{
  95. display: flex;
  96. justify-content: flex-start;
  97. align-items: flex-start;
  98. }
  99. .flex_row_start_end{
  100. display: flex;
  101. justify-content: flex-start;
  102. align-items: flex-end;
  103. }
  104. .flex_row_end_center{
  105. display: flex;
  106. justify-content: flex-end;
  107. align-items: center;
  108. }
  109. .flex_row_end_between{
  110. display: flex;
  111. justify-content: flex-end;
  112. align-items: space-between;
  113. }
  114. .flex_row_end_around{
  115. display: flex;
  116. justify-content: flex-end;
  117. align-items: space-around;
  118. }
  119. .flex_row_end_start{
  120. display: flex;
  121. justify-content: flex-end;
  122. align-items: flex-start;
  123. }
  124. .flex_row_end_end{
  125. display: flex;
  126. justify-content: flex-end;
  127. align-items: flex-end;
  128. }
  129. .flex_column_center_center{
  130. display: flex;
  131. flex-direction: column;
  132. justify-content: center;
  133. align-items: center;
  134. }
  135. .flex_column_center_between{
  136. display: flex;
  137. flex-direction: column;
  138. justify-content: center;
  139. align-items: space-between;
  140. }
  141. .flex_column_center_around{
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: center;
  145. align-items: space-around;
  146. }
  147. .flex_column_center_start{
  148. display: flex;
  149. flex-direction: column;
  150. justify-content: center;
  151. align-items: flex-start;
  152. }
  153. .flex_column_center_end{
  154. display: flex;
  155. flex-direction: column;
  156. justify-content: center;
  157. align-items: flex-end;
  158. }
  159. .flex_column_between_center{
  160. display: flex;
  161. flex-direction: column;
  162. justify-content: space-between;
  163. align-items: center;
  164. }
  165. .flex_column_between_between{
  166. display: flex;
  167. flex-direction: column;
  168. justify-content: space-between;
  169. align-items: space-between;
  170. }
  171. .flex_column_between_around{
  172. display: flex;
  173. flex-direction: column;
  174. justify-content: space-between;
  175. align-items: space-around;
  176. }
  177. .flex_column_between_start{
  178. display: flex;
  179. flex-direction: column;
  180. justify-content: space-between;
  181. align-items: flex-start;
  182. }
  183. .flex_column_between_end{
  184. display: flex;
  185. flex-direction: column;
  186. justify-content: space-between;
  187. align-items: flex-end;
  188. }
  189. .flex_column_around_center{
  190. display: flex;
  191. flex-direction: column;
  192. justify-content: space-around;
  193. align-items: center;
  194. }
  195. .flex_column_around_between{
  196. display: flex;
  197. flex-direction: column;
  198. justify-content: space-around;
  199. align-items: space-between;
  200. }
  201. .flex_column_around_around{
  202. display: flex;
  203. flex-direction: column;
  204. justify-content: space-around;
  205. align-items: space-around;
  206. }
  207. .flex_column_around_start{
  208. display: flex;
  209. flex-direction: column;
  210. justify-content: space-around;
  211. align-items: flex-start;
  212. }
  213. .flex_column_around_end{
  214. display: flex;
  215. flex-direction: column;
  216. justify-content: space-around;
  217. align-items: flex-end;
  218. }
  219. .flex_column_start_center{
  220. display: flex;
  221. flex-direction: column;
  222. justify-content: flex-start;
  223. align-items: center;
  224. }
  225. .flex_column_start_between{
  226. display: flex;
  227. flex-direction: column;
  228. justify-content: flex-start;
  229. align-items: space-between;
  230. }
  231. .flex_column_start_around{
  232. display: flex;
  233. flex-direction: column;
  234. justify-content: flex-start;
  235. align-items: space-around;
  236. }
  237. .flex_column_start_start{
  238. display: flex;
  239. flex-direction: column;
  240. justify-content: flex-start;
  241. align-items: flex-start;
  242. }
  243. .flex_column_start_end{
  244. display: flex;
  245. flex-direction: column;
  246. justify-content: flex-start;
  247. align-items: flex-end;
  248. }
  249. .flex_column_end_center{
  250. display: flex;
  251. flex-direction: column;
  252. justify-content: flex-end;
  253. align-items: center;
  254. }
  255. .flex_column_end_between{
  256. display: flex;
  257. flex-direction: column;
  258. justify-content: flex-end;
  259. align-items: space-between;
  260. }
  261. .flex_column_end_around{
  262. display: flex;
  263. flex-direction: column;
  264. justify-content: flex-end;
  265. align-items: space-around;
  266. }
  267. .flex_column_end_start{
  268. display: flex;
  269. flex-direction: column;
  270. justify-content: flex-end;
  271. align-items: flex-start;
  272. }
  273. .flex_column_end_end{
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: flex-end;
  277. align-items: flex-end;
  278. }
  279. /* #ifdef H5 */
  280. .image_mode_fill_h5 img{
  281. object-fit: fill;
  282. }
  283. /* #endif */