style.css 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  1. /* 一行省略 */
  2. @import url('h5.css');
  3. @import url('color_match.css');
  4. .space-nowrap{
  5. white-space: nowrap;
  6. }
  7. .text-view1 {
  8. display: inline-block;
  9. white-space: nowrap;
  10. width: 100%;
  11. overflow: hidden;
  12. text-overflow:ellipsis;
  13. /* height: 20upx; */
  14. }
  15. .text-view2 {
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. display: flex;
  19. display: -webkit-box;
  20. -webkit-line-clamp: 2;
  21. -webkit-box-orient: vertical;
  22. }
  23. .overflow{
  24. overflow: hidden;
  25. }
  26. /* 字体粗细 */
  27. .font-bold {
  28. font-weight: bold;
  29. }
  30. .fw-300 {
  31. font-weight: 300;
  32. }
  33. .m-0 {
  34. margin: 0 !important;
  35. }
  36. .mt-0,
  37. .my-0 {
  38. margin-top: 0 !important;
  39. }
  40. .mr-0,
  41. .mx-0 {
  42. margin-right: 0 !important;
  43. }
  44. .mb-0,
  45. .my-0 {
  46. margin-bottom: 0 !important;
  47. }
  48. .ml-0,
  49. .mx-0 {
  50. margin-left: 0 !important;
  51. }
  52. .m-1 {
  53. margin: 0.25rem !important;
  54. }
  55. .mt-1,
  56. .my-1 {
  57. margin-top: 0.25rem !important;
  58. }
  59. .mr-1,
  60. .mx-1 {
  61. margin-right: 0.25rem !important;
  62. }
  63. .mb-1,
  64. .my-1 {
  65. margin-bottom: 0.25rem !important;
  66. }
  67. .ml-1,
  68. .mx-1 {
  69. margin-left: 0.25rem !important;
  70. }
  71. .m-2 {
  72. margin: 0.5rem !important;
  73. }
  74. .mt-2,
  75. .my-2 {
  76. margin-top: 0.5rem !important;
  77. }
  78. .mr-2,
  79. .mx-2 {
  80. margin-right: 0.5rem !important;
  81. }
  82. .mb-2,
  83. .my-2 {
  84. margin-bottom: 0.5rem !important;
  85. }
  86. .ml-2,
  87. .mx-2 {
  88. margin-left: 0.5rem !important;
  89. }
  90. .m-3 {
  91. margin: 1rem !important;
  92. }
  93. .mt-3,
  94. .my-3 {
  95. margin-top: 1rem !important;
  96. }
  97. .mr-3,
  98. .mx-3 {
  99. margin-right: 1rem !important;
  100. }
  101. .mb-3,
  102. .my-3 {
  103. margin-bottom: 1rem !important;
  104. }
  105. .ml-3,
  106. .mx-3 {
  107. margin-left: 1rem !important;
  108. }
  109. .m-4 {
  110. margin: 1.5rem !important;
  111. }
  112. .mt-4,
  113. .my-4 {
  114. margin-top: 1.5rem !important;
  115. }
  116. .mr-4,
  117. .mx-4 {
  118. margin-right: 1.5rem !important;
  119. }
  120. .mb-4,
  121. .my-4 {
  122. margin-bottom: 1.5rem !important;
  123. }
  124. .ml-4,
  125. .mx-4 {
  126. margin-left: 1.5rem !important;
  127. }
  128. .m-5 {
  129. margin: 3rem !important;
  130. }
  131. .mt-5,
  132. .my-5 {
  133. margin-top: 3rem !important;
  134. }
  135. .mr-5,
  136. .mx-5 {
  137. margin-right: 3rem !important;
  138. }
  139. .mb-5,
  140. .my-5 {
  141. margin-bottom: 3rem !important;
  142. }
  143. .ml-5,
  144. .mx-5 {
  145. margin-left: 3rem !important;
  146. }
  147. .p-0 {
  148. padding: 0 !important;
  149. }
  150. .pt-0,
  151. .py-0 {
  152. padding-top: 0 !important;
  153. }
  154. .pr-0,
  155. .px-0 {
  156. padding-right: 0 !important;
  157. }
  158. .pb-0,
  159. .py-0 {
  160. padding-bottom: 0 !important;
  161. }
  162. .pl-0,
  163. .px-0 {
  164. padding-left: 0 !important;
  165. }
  166. .p-1 {
  167. padding: 0.25rem !important;
  168. }
  169. .pt-1,
  170. .py-1 {
  171. padding-top: 0.25rem !important;
  172. }
  173. .pr-1,
  174. .px-1 {
  175. padding-right: 0.25rem !important;
  176. }
  177. .pb-1,
  178. .py-1 {
  179. padding-bottom: 0.25rem !important;
  180. }
  181. .pl-1,
  182. .px-1 {
  183. padding-left: 0.25rem !important;
  184. }
  185. .p-2 {
  186. padding: 0.5rem !important;
  187. }
  188. .pt-2,
  189. .py-2 {
  190. padding-top: 0.5rem !important;
  191. }
  192. .pr-2,
  193. .px-2 {
  194. padding-right: 0.5rem !important;
  195. }
  196. .pb-2,
  197. .py-2 {
  198. padding-bottom: 0.5rem !important;
  199. }
  200. .pl-2,
  201. .px-2 {
  202. padding-left: 0.5rem !important;
  203. }
  204. .p-3 {
  205. padding: 1rem !important;
  206. }
  207. .pt-3,
  208. .py-3 {
  209. padding-top: 1rem !important;
  210. }
  211. .pr-3,
  212. .px-3 {
  213. padding-right: 1rem !important;
  214. }
  215. .pb-3,
  216. .py-3 {
  217. padding-bottom: 1rem !important;
  218. }
  219. .pl-3,
  220. .px-3 {
  221. padding-left: 1rem !important;
  222. }
  223. .p-4 {
  224. padding: 1.5rem !important;
  225. }
  226. .pt-4,
  227. .py-4 {
  228. padding-top: 1.5rem !important;
  229. }
  230. .pr-4,
  231. .px-4 {
  232. padding-right: 1.5rem !important;
  233. }
  234. .pb-4,
  235. .py-4 {
  236. padding-bottom: 1.5rem !important;
  237. }
  238. .pl-4,
  239. .px-4 {
  240. padding-left: 1.5rem !important;
  241. }
  242. .p-5 {
  243. padding: 3rem !important;
  244. }
  245. .pt-5,
  246. .py-5 {
  247. padding-top: 3rem !important;
  248. }
  249. .pr-5,
  250. .px-5 {
  251. padding-right: 3rem !important;
  252. }
  253. .pb-5,
  254. .py-5 {
  255. padding-bottom: 3rem !important;
  256. }
  257. .pl-5,
  258. .px-5 {
  259. padding-left: 3rem !important;
  260. }
  261. .m-n1 {
  262. margin: -0.25rem !important;
  263. }
  264. .mt-n1,
  265. .my-n1 {
  266. margin-top: -0.25rem !important;
  267. }
  268. .mr-n1,
  269. .mx-n1 {
  270. margin-right: -0.25rem !important;
  271. }
  272. .mb-n1,
  273. .my-n1 {
  274. margin-bottom: -0.25rem !important;
  275. }
  276. .ml-n1,
  277. .mx-n1 {
  278. margin-left: -0.25rem !important;
  279. }
  280. .m-n2 {
  281. margin: -0.5rem !important;
  282. }
  283. .mt-n2,
  284. .my-n2 {
  285. margin-top: -0.5rem !important;
  286. }
  287. .mr-n2,
  288. .mx-n2 {
  289. margin-right: -0.5rem !important;
  290. }
  291. .mb-n2,
  292. .my-n2 {
  293. margin-bottom: -0.5rem !important;
  294. }
  295. .ml-n2,
  296. .mx-n2 {
  297. margin-left: -0.5rem !important;
  298. }
  299. .m-n3 {
  300. margin: -1rem !important;
  301. }
  302. .mt-n3,
  303. .my-n3 {
  304. margin-top: -1rem !important;
  305. }
  306. .mr-n3,
  307. .mx-n3 {
  308. margin-right: -1rem !important;
  309. }
  310. .mb-n3,
  311. .my-n3 {
  312. margin-bottom: -1rem !important;
  313. }
  314. .ml-n3,
  315. .mx-n3 {
  316. margin-left: -1rem !important;
  317. }
  318. .m-n4 {
  319. margin: -1.5rem !important;
  320. }
  321. .mt-n4,
  322. .my-n4 {
  323. margin-top: -1.5rem !important;
  324. }
  325. .mr-n4,
  326. .mx-n4 {
  327. margin-right: -1.5rem !important;
  328. }
  329. .mb-n4,
  330. .my-n4 {
  331. margin-bottom: -1.5rem !important;
  332. }
  333. .ml-n4,
  334. .mx-n4 {
  335. margin-left: -1.5rem !important;
  336. }
  337. .m-n5 {
  338. margin: -3rem !important;
  339. }
  340. .mt-n5,
  341. .my-n5 {
  342. margin-top: -3rem !important;
  343. }
  344. .mr-n5,
  345. .mx-n5 {
  346. margin-right: -3rem !important;
  347. }
  348. .mb-n5,
  349. .my-n5 {
  350. margin-bottom: -3rem !important;
  351. }
  352. .ml-n5,
  353. .mx-n5 {
  354. margin-left: -3rem !important;
  355. }
  356. .m-auto {
  357. margin: auto !important;
  358. }
  359. .mt-auto,
  360. .my-auto {
  361. margin-top: auto !important;
  362. }
  363. .mr-auto,
  364. .mx-auto {
  365. margin-right: auto !important;
  366. }
  367. .mb-auto,
  368. .my-auto {
  369. margin-bottom: auto !important;
  370. }
  371. .ml-auto,
  372. .mx-auto {
  373. margin-left: auto !important;
  374. }
  375. /* border */
  376. .border-dashed-bottom {
  377. border-bottom: 1px dashed #dee2e6 !important;
  378. }
  379. .border {
  380. border: 1px solid #dee2e6 !important;
  381. }
  382. .border-top {
  383. border-top: 1px solid #dee2e6 !important;
  384. }
  385. .border-right {
  386. border-right: 1px solid #dee2e6 !important;
  387. }
  388. .border-bottom {
  389. border-bottom: 1px solid #dee2e6 !important;
  390. }
  391. .border-left {
  392. border-left: 1px solid #dee2e6 !important;
  393. }
  394. .border05 {
  395. border: 0.5px solid #dee2e6 !important;
  396. }
  397. .border-top05 {
  398. border-top: 0.5px solid #dee2e6 !important;
  399. }
  400. .border-right05 {
  401. border-right: 0.5px solid #dee2e6 !important;
  402. }
  403. .border-bottom05 {
  404. border-bottom: 0.5px solid #dee2e6 !important;
  405. }
  406. .border-left05 {
  407. border-left: 0.5px solid #dee2e6 !important;
  408. }
  409. .border-0 {
  410. border: 0 !important;
  411. }
  412. .border-top-0 {
  413. border-top: 0 !important;
  414. }
  415. .border-right-0 {
  416. border-right: 0 !important;
  417. }
  418. .border-bottom-0 {
  419. border-bottom: 0 !important;
  420. }
  421. .border-left-0 {
  422. border-left: 0 !important;
  423. }
  424. .b-radius-5 {
  425. border-radius: 5px;
  426. }
  427. /* display */
  428. .d-none {
  429. display: none !important;
  430. }
  431. .d-inline {
  432. display: inline !important;
  433. }
  434. .d-inline-block {
  435. display: inline-block !important;
  436. }
  437. .d-block {
  438. display: block !important;
  439. }
  440. .d-table {
  441. display: table !important;
  442. }
  443. .d-table-row {
  444. display: table-row !important;
  445. }
  446. .d-table-cell {
  447. display: table-cell !important;
  448. }
  449. .d-flex {
  450. display: -webkit-box !important;
  451. display: -ms-flexbox !important;
  452. display: flex !important;
  453. }
  454. .d-inline-flex {
  455. display: -webkit-inline-box !important;
  456. display: -ms-inline-flexbox !important;
  457. display: inline-flex !important;
  458. }
  459. .d-inline-block {
  460. display:inline-block;
  461. }
  462. .align-baseline {
  463. vertical-align: baseline !important;
  464. }
  465. .align-top {
  466. vertical-align: top !important;
  467. }
  468. .align-middle {
  469. vertical-align: middle !important;
  470. }
  471. .align-bottom {
  472. vertical-align: bottom !important;
  473. }
  474. .align-text-bottom {
  475. vertical-align: text-bottom !important;
  476. }
  477. .align-text-top {
  478. vertical-align: text-top !important;
  479. }
  480. .w-10{
  481. width: 10% !important;
  482. }
  483. .w-15{
  484. width: 15% !important;
  485. }
  486. .w-20 {
  487. width: 20% !important;
  488. }
  489. .w-25 {
  490. width: 25% !important;
  491. }
  492. .w-30 {
  493. width: 30% !important;
  494. }
  495. .w-33 {
  496. width: 33% !important;
  497. }
  498. .w-35 {
  499. width: 35% !important;
  500. }
  501. .w-40 {
  502. width: 40% !important;
  503. }
  504. .w-45 {
  505. width: 45% !important;
  506. }
  507. .w-50 {
  508. width: 50% !important;
  509. }
  510. .w-55 {
  511. width: 55% !important;
  512. }
  513. .w-60 {
  514. width: 60% !important;
  515. }
  516. .w-65 {
  517. width: 65% !important;
  518. }
  519. .w-70 {
  520. width: 70% !important;
  521. }
  522. .w-75 {
  523. width: 75% !important;
  524. }
  525. .w-80 {
  526. width: 80% !important;
  527. }
  528. .w-85 {
  529. width: 85% !important;
  530. }
  531. .w-90 {
  532. width: 90% !important;
  533. }
  534. .w-100 {
  535. width: 100% !important;
  536. }
  537. .w-auto {
  538. width: auto !important;
  539. }
  540. .h-25 {
  541. height: 25% !important;
  542. }
  543. .h-50 {
  544. height: 50% !important;
  545. }
  546. .h-75 {
  547. height: 75% !important;
  548. }
  549. .h-100 {
  550. height: 100% !important;
  551. }
  552. .h-auto {
  553. height: auto !important;
  554. }
  555. .mw-100 {
  556. max-width: 100% !important;
  557. }
  558. .mh-100 {
  559. max-height: 100% !important;
  560. }
  561. .min-vw-100 {
  562. min-width: 100vw !important;
  563. }
  564. .min-vh-100 {
  565. min-height: 100vh !important;
  566. }
  567. .vw-100 {
  568. width: 100vw !important;
  569. }
  570. .vh-100 {
  571. height: 100vh !important;
  572. }
  573. .text-right {
  574. text-align: right;
  575. }
  576. .text-left {
  577. text-align: left;
  578. }
  579. .text-center {
  580. text-align: center;
  581. }
  582. .float-right {
  583. float: right;
  584. }
  585. .float-left {
  586. float: left;
  587. }
  588. .float-none {
  589. clear: both;
  590. }
  591. /* flex */
  592. .row {
  593. display: -ms-flexbox;
  594. display: flex;
  595. -ms-flex-wrap: wrap;
  596. flex-wrap: wrap;
  597. }
  598. .col {
  599. -ms-flex-preferred-size: 0;
  600. flex-basis: 0;
  601. -ms-flex-positive: 1;
  602. flex-grow: 1;
  603. min-width: 0;
  604. max-width: 100%;
  605. }
  606. .col-auto {
  607. -ms-flex: 0 0 auto;
  608. flex: 0 0 auto;
  609. width: auto;
  610. max-width: 100%;
  611. }
  612. .align-items-start {
  613. -ms-flex-align: start !important;
  614. align-items: flex-start !important;
  615. }
  616. .align-items-end {
  617. -ms-flex-align: end !important;
  618. align-items: flex-end !important;
  619. }
  620. .align-items-center {
  621. -ms-flex-align: center !important;
  622. align-items: center !important;
  623. }
  624. .align-items-baseline {
  625. -ms-flex-align: baseline !important;
  626. align-items: baseline !important;
  627. }
  628. .align-items-stretch {
  629. -ms-flex-align: stretch !important;
  630. align-items: stretch !important;
  631. }
  632. /* 正方形的图片 */
  633. .picbox {
  634. width: 100% !important;
  635. height: 0;
  636. padding-bottom: 100%;
  637. margin: 0;
  638. position: relative;
  639. overflow: hidden;
  640. }
  641. .picbox .picimg {
  642. width: 100%;
  643. height: 100%;
  644. position: absolute;
  645. }
  646. p {
  647. margin-bottom: 0;
  648. }
  649. .position-fixed{
  650. position: fixed;
  651. }
  652. .position-relative{
  653. position: relative;
  654. }
  655. .position-absolute{
  656. position: absolute;
  657. }
  658. .positionY-50{
  659. position: absolute;
  660. top: 50%;
  661. transform: translateY(-50%);
  662. }
  663. .positionX-50{
  664. position: absolute;
  665. left: 50%;
  666. transform: translateX(-50%);
  667. }
  668. .position-50{
  669. position: absolute;
  670. left: 50%;
  671. top: 50%;
  672. transform: translate(-50%,-50%);
  673. }
  674. .cursor-pointer{
  675. cursor: pointer;
  676. }
  677. /* 居中*/
  678. .centerd{
  679. display: flex !important;
  680. height: 100%;
  681. align-items: center;
  682. justify-content: center;
  683. }
  684. /* 居中*/
  685. .centerY{
  686. display: flex !important;
  687. align-items: center;
  688. }
  689. .line-height1{
  690. line-height: 1;
  691. }
  692. .border-box{
  693. box-sizing: border-box;
  694. }