common.css 3.9 KB

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