common.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. :root {
  2. --fontColor: #515151;
  3. --mainWidth: 1000px;
  4. --mainColor: #0093fd;
  5. --linkColor: #308EFF;
  6. font-size: 14px;
  7. }
  8. html, body, div, span, applet, object, iframe,
  9. blockquote, pre, abbr, acronym, address, big, cite, code,
  10. del, dfn, em, img, ins, kbd, q, s, samp,
  11. small, strike, strong, sub, sup, tt, var,
  12. b, u, i, center,
  13. dl, dt, dd, ol, ul, li,
  14. fieldset, form, label, legend,
  15. table, caption, tbody, tfoot, thead, tr, th, td,
  16. article, aside, canvas, details, embed,
  17. figure, figcaption, footer, header, hgroup,
  18. menu, nav, output, ruby, section, summary,
  19. time, mark, audio, video {
  20. margin: 0;
  21. padding: 0;
  22. border: 0;
  23. font-size: 100%;
  24. font: inherit;
  25. vertical-align: baseline;
  26. }
  27. /* HTML5 display-role reset for older browsers */
  28. article, aside, details, figcaption, figure,
  29. footer, header, hgroup, menu, nav, section {
  30. display: block;
  31. }
  32. a {
  33. color: var(--linkColor);
  34. text-decoration: none;
  35. }
  36. body {
  37. line-height: 1;
  38. background: #F4F5F9;
  39. }
  40. ol, ul {
  41. list-style: none;
  42. }
  43. blockquote, q {
  44. quotes: none;
  45. }
  46. blockquote:before, blockquote:after,
  47. q:before, q:after {
  48. content: '';
  49. content: none;
  50. }
  51. table {
  52. border-collapse: collapse;
  53. border-spacing: 0;
  54. }
  55. input {
  56. outline: none;
  57. border: 0;
  58. }
  59. button {
  60. border: 0;
  61. padding: 0;
  62. margin: 0;
  63. background: transparent;
  64. outline: none;
  65. cursor: pointer;
  66. }
  67. sub {
  68. font-size: .6em;
  69. }
  70. img {
  71. max-width: 100%;
  72. }
  73. .flex {
  74. display: flex;
  75. }
  76. .flex-column {
  77. display: flex;
  78. flex-direction: column;
  79. }
  80. .space-between {
  81. display: flex;
  82. justify-content: space-between;
  83. }
  84. .space-around {
  85. display: flex;
  86. justify-content: space-around;
  87. }
  88. .align-center {
  89. display: flex;
  90. align-items: center;
  91. }
  92. .align-center-c {
  93. display: flex;
  94. flex-direction: column;
  95. align-items: center;
  96. }
  97. .justify-center {
  98. display: flex;
  99. justify-content: center;
  100. }
  101. .justify-center-c {
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: center;
  105. }
  106. .justify-between {
  107. display: flex;
  108. justify-content: space-between;
  109. }
  110. .margin-0-auto {
  111. margin: 0 auto;
  112. }
  113. .inline-block {
  114. display: inline-block;
  115. }
  116. .gray-153 {
  117. color: rgb(153, 153, 153);
  118. }
  119. .gray-34 {
  120. color: rgb(34, 34, 34);
  121. }
  122. .gray-51 {
  123. color: rgb(51, 51, 51);
  124. }
  125. .text-center {
  126. text-align: center;
  127. }
  128. .app__jus__c {
  129. justify-content: center;
  130. }
  131. .app__alig_c {
  132. align-items: center;
  133. }
  134. .app__dp_f {
  135. display: flex;
  136. }
  137. .app__f_r {
  138. flex-flow: row nowrap;
  139. }
  140. .app__f_c {
  141. flex-flow: column nowrap;
  142. }
  143. .app__f_s_0 {
  144. flex-shrink: 0;
  145. }
  146. .app__f_s_1 {
  147. flex-shrink: 1;
  148. }
  149. .app__f_g_1 {
  150. flex-grow: 1;
  151. }
  152. .app__f_g_0 {
  153. flex-grow: 0;
  154. }
  155. .app__ml_10 {
  156. margin-left: 10px;
  157. }
  158. .app__mr_10 {
  159. margin-right: 10px;
  160. }
  161. .app__mt_10 {
  162. margin-top: 10px;
  163. }
  164. .app__mt_20 {
  165. margin-top: 20px;
  166. }
  167. .app__mb_10 {
  168. margin-bottom: 10px;
  169. }
  170. .app__fc_r {
  171. color: red;
  172. }
  173. .app__fc_grey {
  174. color: rgba(153, 153, 153, 1)
  175. }
  176. .app__fc_b{
  177. color: #629eff
  178. }
  179. .app__fz_10 {
  180. font-size: 10px;
  181. }
  182. .app__fz_11 {
  183. font-size: 11px;
  184. }
  185. .app__fz_12 {
  186. font-size: 12px;
  187. }
  188. .app__fz_13 {
  189. font-size: 13px;
  190. }
  191. .app__fz_14 {
  192. font-size: 14px;
  193. }
  194. .app__fz_15 {
  195. font-size: 15px;
  196. }
  197. .app__fz_16 {
  198. font-size: 16px;
  199. }
  200. .app__fz_17 {
  201. font-size: 17px;
  202. }
  203. .app__fz_18 {
  204. font-size: 18px;
  205. }
  206. .app__fz_19 {
  207. font-size: 19px;
  208. }
  209. .app__fz_20 {
  210. font-size: 20px;
  211. }
  212. .app__tg_c {
  213. text-align: center;
  214. }
  215. .app__bd_g{
  216. border:1px solid #ddd
  217. }
  218. /* common empty */
  219. .result-empty-wrapper {
  220. width: 100%;
  221. height: 320px;
  222. display: flex;
  223. flex-direction: column;
  224. align-items: center;
  225. justify-content: center;
  226. background: #ffffff;
  227. }
  228. .result-empty-wrapper img {
  229. width: 154px;
  230. height: 154px;
  231. }
  232. .result-empty-wrapper span {
  233. margin-top: -20px;
  234. height: 20px;
  235. line-height: 20px;
  236. font-size: 14px;
  237. font-family: PingFangSC, PingFangSC-Regular;
  238. color: #999999;
  239. }