public.css 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776
  1. /*******************************************布局*******************************************/
  2. .app__ps_r {
  3. position: relative;
  4. }
  5. .app__ps_a {
  6. position: absolute;
  7. }
  8. .app__ps_f {
  9. position: fixed;
  10. }
  11. .app__ds_b {
  12. display: block;
  13. }
  14. .app__ds_f {
  15. display: flex;
  16. }
  17. .app__f_w_w {
  18. flex-wrap: wrap;
  19. }
  20. .app__f_r {
  21. display: flex;
  22. flex-flow: row nowrap;
  23. }
  24. .app__f_r_n {
  25. display: flex;
  26. flex-flow: row wrap;
  27. }
  28. .app__f_c {
  29. display: flex;
  30. flex-flow: column nowrap;
  31. }
  32. .app__als_end {
  33. align-self: flex-end;
  34. }
  35. .app_f_g_1 {
  36. flex-grow: 1;
  37. }
  38. .app__f_g_0 {
  39. flex-grow: 0;
  40. }
  41. .app__f_s_1 {
  42. flex-shrink: 1;
  43. }
  44. .app__f_s_0 {
  45. flex-shrink: 0;
  46. }
  47. .app__al_c {
  48. align-items: center;
  49. }
  50. .app__jf_c {
  51. justify-content: center;
  52. }
  53. .app__jf_sb {
  54. justify-content: space-between;
  55. }
  56. .app__jf_l {
  57. justify-content: flex-start;
  58. }
  59. .app__f_1 {
  60. flex: 1;
  61. }
  62. .app__f_2 {
  63. flex: 2;
  64. }
  65. .app__f_2_5 {
  66. flex: 2.3;
  67. }
  68. .app__f_3 {
  69. flex: 3;
  70. }
  71. .app__as_end {
  72. align-self: flex-end;
  73. }
  74. /*******************************************距离*******************************************/
  75. .app__mg_0 {
  76. margin: 0;
  77. }
  78. .app__mg_10 {
  79. margin: 10px;
  80. }
  81. .app__mg_15 {
  82. margin: 15px;
  83. }
  84. .app__ml_0 {
  85. margin-left: 0;
  86. }
  87. .app__ml_5 {
  88. margin-left: 0;
  89. }
  90. .app__ml_10 {
  91. margin-left: 10px;
  92. }
  93. .app__ml_15 {
  94. margin-left: 15px;
  95. }
  96. .app__ml_20 {
  97. margin-left: 20px;
  98. }
  99. .app__ml_30 {
  100. margin-left: 30px;
  101. }
  102. .app__ml_35 {
  103. margin-left: 35px;
  104. }
  105. .app__ml_50 {
  106. margin-left: 50px;
  107. }
  108. .app__ml_60 {
  109. margin-left: 60px;
  110. }
  111. .app__mt_5 {
  112. margin-top: 5px;
  113. }
  114. .app__mt_10 {
  115. margin-top: 10px;
  116. }
  117. .app__mt_13 {
  118. margin-top: 13px;
  119. }
  120. .app__mt_15 {
  121. margin-top: 15px;
  122. }
  123. .app__mt_20 {
  124. margin-top: 20px;
  125. }
  126. .app__mt_35 {
  127. margin-top: 35px;
  128. }
  129. .app__mt_40 {
  130. margin-top: 40px;
  131. }
  132. .app__mb_10 {
  133. margin-bottom: 10px;
  134. }
  135. .app__mr_5 {
  136. margin-right: 5px;
  137. }
  138. .app__mr_10 {
  139. margin-right: 10px;
  140. }
  141. .app__mr_15 {
  142. margin-right: 15px;
  143. }
  144. .app__mr_20 {
  145. margin-right: 20px;
  146. }
  147. .app__mr_30 {
  148. margin-right: 30px;
  149. }
  150. .app__mr_35 {
  151. margin-right: 35px;
  152. }
  153. .app__mr_40 {
  154. margin-right: 40px;
  155. }
  156. .app__mr_50 {
  157. margin-right: 50px;
  158. }
  159. .app__mr_60 {
  160. margin-right: 60px;
  161. }
  162. .app__pd_0 {
  163. padding: 0px;
  164. }
  165. .app__pd_10 {
  166. padding: 10px;
  167. }
  168. .app__pd_15 {
  169. padding: 15px;
  170. }
  171. .app__pd_20 {
  172. padding: 20px;
  173. }
  174. .app__pd_30 {
  175. padding: 30px;
  176. }
  177. .app__pl_10 {
  178. padding-left: 10px;
  179. }
  180. .app__pl_15 {
  181. padding-left: 15px;
  182. }
  183. .app__pr_10 {
  184. padding-right: 10px;
  185. }
  186. .app__pr_20 {
  187. padding-right: 20px;
  188. }
  189. .app__pt_5 {
  190. padding-top: 5px;
  191. }
  192. .app__pt_10 {
  193. padding-top: 10px;
  194. }
  195. .app__pt_15 {
  196. padding-top: 15px;
  197. }
  198. .app__pb_5 {
  199. padding-bottom: 5px;
  200. }
  201. .app__pb_10 {
  202. padding-bottom: 10px;
  203. }
  204. .app__pb_20 {
  205. padding-bottom: 20px;
  206. }
  207. .app__pl_20 {
  208. padding-left: 20px;
  209. }
  210. .app__pl_30 {
  211. padding-left: 30px;
  212. }
  213. .app__pt_20 {
  214. padding-top: 20px;
  215. }
  216. /*******************************************颜色*******************************************/
  217. .app__bg_w {
  218. background-color: #ffffff;
  219. }
  220. .app__bg_5FD4FF {
  221. background-image: linear-gradient(138deg, #5fd4ff, #31a9ff);
  222. }
  223. .app__bg_FF9900 {
  224. background-image: linear-gradient(138deg, #ffc900, #ff9900);
  225. }
  226. .app__bg_308EFF {
  227. background: #308eff;
  228. }
  229. .app_bg_919AA7 {
  230. background: #919aa7;
  231. }
  232. .app__bg_eee {
  233. background: #eeeeee;
  234. }
  235. .app__bg_e8f3ff {
  236. background: #e8f3ff;
  237. }
  238. .app__fc_999 {
  239. color: #999999;
  240. }
  241. .app__fc_666 {
  242. color: #666666;
  243. }
  244. .app__fc_222 {
  245. color: #222222;
  246. }
  247. .app__fc_333 {
  248. color: #333333;
  249. }
  250. .app_fc_w {
  251. color: white;
  252. }
  253. .app__fc_308EFF {
  254. color: #308eff;
  255. }
  256. .app__fc_vip {
  257. color: #B07F29
  258. }
  259. /*******************************************尺寸*******************************************/
  260. .app__img_xxs {
  261. width: 10px;
  262. height: 10px;
  263. }
  264. .app__img_15 {
  265. width: 15px;
  266. height: 15px;
  267. }
  268. .app__img_xs {
  269. width: 20px;
  270. height: 20px;
  271. }
  272. .app__img_s {
  273. width: 30px;
  274. height: 30px;
  275. }
  276. .app__img_md {
  277. width: 40px;
  278. height: 40px;
  279. }
  280. .app__img_xmd {
  281. width: 50px;
  282. height: 50px;
  283. }
  284. .app__img_xxmd {
  285. width: 60px;
  286. height: 60px;
  287. }
  288. .app__img_xxxmd {
  289. width: 70px;
  290. height: 70px;
  291. }
  292. .app__img_bg {
  293. width: 80px;
  294. height: 80px;
  295. }
  296. .app__img_huge {
  297. width: 100px;
  298. height: 100px;
  299. }
  300. .app__img_130 {
  301. width: 130px;
  302. height: 130px;
  303. }
  304. .app__img_144 {
  305. width: 144px;
  306. height: 144px;
  307. }
  308. .app__w_20 {
  309. width: 20px;
  310. }
  311. .app__w_30 {
  312. width: 30px;
  313. }
  314. .app__w_40 {
  315. width: 30px;
  316. }
  317. .app__w_152 {
  318. width: 152px;
  319. }
  320. .app__w_50 {
  321. width: 50px;
  322. }
  323. .app__w_60 {
  324. width: 60px;
  325. }
  326. .app__w_70 {
  327. width: 70px;
  328. }
  329. .app__w_90 {
  330. width: 90px;
  331. }
  332. .app__w_100 {
  333. width: 100px;
  334. }
  335. .app__w_120 {
  336. width: 120px;
  337. }
  338. .app__w_130 {
  339. width: 130px;
  340. }
  341. .app__w_200 {
  342. width: 200px;
  343. }
  344. .app__w_250 {
  345. width: 250px;
  346. }
  347. .app__w_20_p {
  348. width: 20%;
  349. }
  350. .app__w_21_p {
  351. width: 21%;
  352. }
  353. .app__w_24_p {
  354. width: 24%;
  355. }
  356. .app__w_30_p {
  357. width: 30%;
  358. }
  359. .app__w_55_p {
  360. width: 55%;
  361. }
  362. .app__w_80_p {
  363. width: 80%;
  364. }
  365. .app__mw_20_p {
  366. max-width: 20%;
  367. }
  368. .app__mw_30_p {
  369. max-width: 30%;
  370. }
  371. .app__mw_35_p {
  372. max-width: 35%;
  373. }
  374. .app__mw_40_p {
  375. max-width: 40%;
  376. }
  377. .app__mw_50_p {
  378. max-width: 50%;
  379. }
  380. .app__w_100p {
  381. width: 100%;
  382. }
  383. .app__h_20 {
  384. height: 20px;
  385. }
  386. .app__h_30 {
  387. height: 30px;
  388. }
  389. .app__h_35 {
  390. height: 35px;
  391. }
  392. .app__h_40 {
  393. height: 40px;
  394. }
  395. .app__h_45 {
  396. height: 45px;
  397. }
  398. .app__h_50 {
  399. height: 50px;
  400. }
  401. .app__h_60 {
  402. height: 60px;
  403. }
  404. .app__h_65 {
  405. height: 65px;
  406. }
  407. .app__h_328 {
  408. height: 328px;
  409. }
  410. .app__h_233 {
  411. height: 233px
  412. }
  413. .app__h_275 {
  414. height: 275px
  415. }
  416. .app__h_70 {
  417. height: 70px;
  418. }
  419. .app__h_100 {
  420. height: 100px;
  421. }
  422. .app__h_100p {
  423. height: 100%;
  424. }
  425. .app__h_100vh {
  426. height: 100vh;
  427. }
  428. .app__h_130 {
  429. height: 130px;
  430. }
  431. .app__h_160 {
  432. height: 160px;
  433. }
  434. .app__h_172 {
  435. height: 172px;
  436. }
  437. .app__lh_20 {
  438. line-height: 20px;
  439. }
  440. .app__lh_30 {
  441. line-height: 30px;
  442. }
  443. .app__lh_35 {
  444. line-height: 35px;
  445. }
  446. .app__lh_40 {
  447. line-height: 40px;
  448. }
  449. .app__lh_45 {
  450. line-height: 45px;
  451. }
  452. .app__lh_50 {
  453. line-height: 50px;
  454. }
  455. .app__lh_08em {
  456. line-height: 0.8em;
  457. }
  458. .app__lh_1em {
  459. line-height: 1em;
  460. }
  461. .app__lh_11em {
  462. line-height: 1.1em;
  463. }
  464. .app__lh_1_5 {
  465. line-height: 1.5;
  466. }
  467. .app__lh_2 {
  468. line-height: 2;
  469. }
  470. .app__lh_3 {
  471. line-height: 3;
  472. }
  473. /*******************************************字体*******************************************/
  474. .app__fs_12 {
  475. font-size: 12px;
  476. }
  477. .app__fs_13 {
  478. font-size: 13px;
  479. }
  480. .app__fs_14 {
  481. font-size: 14px;
  482. }
  483. .app__fs_15 {
  484. font-size: 15px;
  485. }
  486. .app__fs_16 {
  487. font-size: 16px;
  488. }
  489. .app__fs_17 {
  490. font-size: 17px;
  491. }
  492. .app__fs_18 {
  493. font-size: 18px;
  494. }
  495. .app__fs_19 {
  496. font-size: 19px;
  497. }
  498. .app__fs_20 {
  499. font-size: 20px;
  500. }
  501. .app__fs_21 {
  502. font-size: 21px;
  503. }
  504. .app__fs_25 {
  505. font-size: 25px;
  506. }
  507. .app__fs_30 {
  508. font-size: 30px;
  509. }
  510. .app__fw_400 {
  511. font-weight: 400;
  512. }
  513. .app__fw_500 {
  514. font-weight: 500;
  515. }
  516. .app__fw_600 {
  517. font-weight: 600;
  518. }
  519. .app__fw_bold {
  520. font-weight: bold;
  521. }
  522. /*******************************************其他*******************************************/
  523. .app__bd_a {
  524. border: 1px solid #ebeef5;
  525. }
  526. .app__bd_a_308EFF {
  527. border: 1px solid #308EFF;
  528. }
  529. .app_bd_b {
  530. border-bottom: 1px solid #ebeef5;
  531. }
  532. .app__bd_b_eee {
  533. border-bottom: 1px solid #eeeeee;
  534. }
  535. .app__bd_none {
  536. border: none;
  537. }
  538. .app_br_50_P {
  539. border-radius: 50%;
  540. }
  541. .app_br_2 {
  542. border-radius: 2px;
  543. }
  544. .app_br_5 {
  545. border-radius: 5px;
  546. }
  547. .app_br_10 {
  548. border-radius: 10px;
  549. }
  550. .app__cursor_point {
  551. cursor: pointer;
  552. }
  553. .app__word_b_a {
  554. word-break: break-all;
  555. }
  556. .app__word_b_not {
  557. word-break: keep-all;
  558. }
  559. .app__txt_ellipsis {
  560. white-space: nowrap;
  561. overflow-x: hidden;
  562. text-overflow: ellipsis;
  563. }
  564. .mui-ellipsis-1 {
  565. display: -webkit-box;
  566. overflow: hidden;
  567. white-space: normal !important;
  568. text-overflow: ellipsis;
  569. word-break: break-word;
  570. -webkit-line-clamp: 1;
  571. -webkit-box-orient: vertical;
  572. }
  573. .app__ta_c {
  574. text-align: center;
  575. }
  576. .app__ta_e {
  577. text-align: end;
  578. }
  579. .app__tras {
  580. transition: 0.5s ease-in-out;
  581. }
  582. .app__ws_nw {
  583. white-space: nowrap;
  584. }
  585. .app__w_100vw {
  586. width: 100vw;
  587. }
  588. .app__w_100vh {
  589. width: 100vh;
  590. }