cokingCoalE.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. *,
  2. *:before,
  3. *:after {
  4. padding: 0;
  5. margin: 0;
  6. box-sizing: border-box;
  7. }
  8. html,
  9. body {
  10. height: 100%;
  11. font-size: 14px;
  12. background-color: #ecffff;
  13. font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica, 'PingFang SC',
  14. 'Hiragino Sans GB', Arial, sans-serif;
  15. }
  16. .flex {
  17. display: flex;
  18. }
  19. .flex1 {
  20. flex: 1;
  21. }
  22. .flex2 {
  23. flex: 2;
  24. }
  25. .flex-around {
  26. display: flex;
  27. justify-content: space-around;
  28. }
  29. .flex-between {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. }
  34. .flex-end {
  35. display: flex;
  36. justify-content: flex-end;
  37. }
  38. .flex-align-center {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .text-center {
  43. text-align: center;
  44. }
  45. .font12 {
  46. font-size: 12px;
  47. }
  48. .main-color {
  49. color: #0bf1ff;
  50. }
  51. .danger-color {
  52. color: #f15450 !important;
  53. }
  54. .error-color {
  55. color: #ffc704 !important;
  56. }
  57. .btm10 {
  58. margin-bottom: 10px;
  59. }
  60. .btm20 {
  61. margin-bottom: 20px;
  62. }
  63. a {
  64. text-decoration: none;
  65. cursor: pointer;
  66. }
  67. [v-cloak] {
  68. display: none;
  69. }
  70. #app {
  71. background: url('../images/top-back.png') center center no-repeat;
  72. background-size: 100% 100%;
  73. padding-top: 10px;
  74. height: 100vh;
  75. overflow: hidden;
  76. color: #fff;
  77. }
  78. .my-header {
  79. height: 70px;
  80. line-height: 70px;
  81. background: url('../images/title-back.png') center center no-repeat;
  82. background-size: 100% 100%;
  83. color: #0bf1ff;
  84. text-align: center;
  85. font-size: 25px;
  86. font-weight: 600;
  87. }
  88. .my-header span {
  89. background-image: -webkit-linear-gradient(top, #fff, #99eeff);
  90. -webkit-background-clip: text;
  91. -webkit-text-fill-color: transparent;
  92. }
  93. .main {
  94. padding: 15px;
  95. height: calc(100% - 70px);
  96. background-size: 80%;
  97. padding-bottom: 65px;
  98. gap: 20px;
  99. }
  100. .footer {
  101. position: fixed;
  102. bottom: 0;
  103. padding: 10px;
  104. display: flex;
  105. background-color: rgba(0, 0, 0, 0.5);
  106. width: 100%;
  107. background: url('../images/foot-back.png') no-repeat center bottom;
  108. background-size: 100% 100%;
  109. }
  110. .footer a {
  111. height: 40px;
  112. line-height: 40px;
  113. text-align: center;
  114. color: #fff;
  115. background: url('../images/footer-item.png') no-repeat;
  116. background-size: 100% 100%;
  117. width: 200px;
  118. }
  119. .footer a:hover {
  120. background: url('../images/footer-item-checked.png') no-repeat;
  121. background-size: 100% 100%;
  122. }
  123. .top {
  124. width: 100%;
  125. height: 40%;
  126. margin-bottom: 15px;
  127. }
  128. .bottom {
  129. width: 100%;
  130. height: 58%;
  131. }
  132. .top-left {
  133. width: 69% !important;
  134. height: 100%;
  135. background: url('../images/lt-back.png') no-repeat;
  136. background-size: 100% 100%;
  137. margin-right: 15px;
  138. }
  139. .top-right {
  140. width: 30% !important;
  141. height: 100%;
  142. background: url('../images/rt-back.png') no-repeat;
  143. background-size: 100% 100%;
  144. }
  145. .bottom-left {
  146. width: 69% !important;
  147. height: 100%;
  148. background: url('../images/lb-back.png') no-repeat;
  149. background-size: 100% 100%;
  150. margin-right: 15px;
  151. }
  152. .bottom-right {
  153. width: 30% !important;
  154. height: 100%;
  155. background: url('../images/rb-back.png') no-repeat;
  156. background-size: 100% 100%;
  157. }
  158. .center-title {
  159. height: 15%;
  160. width: 90%;
  161. }
  162. .arrow {
  163. width: 17px;
  164. height: 34px;
  165. margin-right: 5px;
  166. }
  167. .item-tl,
  168. item-tr {
  169. width: 95%;
  170. height: 70%;
  171. padding: 0 2%;
  172. margin-top: 22px !important;
  173. }
  174. .item-tl-item {
  175. width: 24.5%;
  176. height: 100%;
  177. display: flex;
  178. flex-direction: column;
  179. align-items: center;
  180. background: url('../images/rectangle.png') no-repeat;
  181. background-size: 100% 100%;
  182. }
  183. .item-tl-item > div:first-child {
  184. background: url('../images/flying.png') no-repeat;
  185. background-size: 100% 100%;
  186. height: 140px;
  187. line-height: 140px;
  188. text-align: center;
  189. font-weight: bold;
  190. font-size: 16px;
  191. width: 140px;
  192. margin-bottom: 30px;
  193. }
  194. .item-tl-item > div:last-child {
  195. width: 100%;
  196. height: 50px;
  197. display: flex;
  198. align-items: center;
  199. justify-content: center;
  200. background: url('../images/count.png') no-repeat;
  201. background-size: 100% 100%;
  202. }
  203. .item-tl-item img {
  204. width: 30px;
  205. height: 30px;
  206. }
  207. .item-tl-item span {
  208. font-size: 20px;
  209. margin-right: 10px;
  210. font-style: italic;
  211. font-weight: bold;
  212. }
  213. .item-tr-item img {
  214. margin-right: 10px;
  215. }
  216. .text-style {
  217. margin: 0 10px;
  218. font-size: 18px;
  219. font-weight: bold;
  220. }
  221. .aiQuality {
  222. width: 90%;
  223. height: 70%;
  224. padding-top: 0.2%;
  225. margin: 0 auto;
  226. margin-top: 25px;
  227. }
  228. .rb-item {
  229. display: flex;
  230. align-items: center;
  231. justify-content: center;
  232. height: 80%;
  233. width: 100%;
  234. padding: 20px 0;
  235. background: url('../images/pei-back-big.png') no-repeat center;
  236. background-size: 100% auto;
  237. }
  238. .pitText {
  239. width: 150px;
  240. top: 45%;
  241. right: 37%;
  242. text-align: center;
  243. }
  244. .pitText > p:nth-child(1) {
  245. color: #69c0ff;
  246. font-weight: bold;
  247. font-size: 20px;
  248. }
  249. .top-title1 {
  250. width: 270px;
  251. height: 50px;
  252. line-height: 50px;
  253. left: 45%;
  254. top: 13.5%;
  255. background: url('../images/title.png') no-repeat;
  256. background-size: 100% 100%;
  257. padding-left: 50px;
  258. }
  259. .my-header span.right {
  260. position: absolute;
  261. right: 100px;
  262. bottom: 10px;
  263. font-size: 14px;
  264. }
  265. /* zhb */
  266. /* 宽高纵横比 */
  267. .aspect-auto {
  268. aspect-ratio: auto;
  269. }
  270. .aspect-square {
  271. aspect-ratio: 1 / 1;
  272. }
  273. .aspect-video {
  274. aspect-ratio: 16 / 9;
  275. }
  276. /* aspect-[4/3] */
  277. /* 居中 */
  278. .mx-auto {
  279. margin: 0 auto;
  280. }
  281. /* 设置容器内的列数/每列距离 */
  282. .columns-1 {
  283. columns: 1;
  284. }
  285. /* columns-[20px] */
  286. /* 盒子模型 */
  287. .box-border {
  288. box-sizing: border-box;
  289. }
  290. .box-content {
  291. box-sizing: content-box;
  292. }
  293. /* 消失 */
  294. .hidden {
  295. display: none;
  296. }
  297. /* 块级元素 */
  298. .block {
  299. display: block;
  300. }
  301. /* 行内块 */
  302. .inline-block {
  303. display: inline-block;
  304. }
  305. /* 行内元素 */
  306. .inline {
  307. display: inline;
  308. }
  309. /* 弹性布局 */
  310. .flex {
  311. display: flex;
  312. }
  313. /* 主轴起点在左边 */
  314. .flex-row {
  315. flex-direction: row;
  316. }
  317. /* 主轴起点在右边 */
  318. .flex-row-reverse {
  319. flex-direction: row-reverse;
  320. }
  321. /* 主轴竖向排列,在上面 */
  322. .flex-col {
  323. flex-direction: column;
  324. }
  325. /* 主轴竖向排列,在下面 */
  326. .flex-col-reverse {
  327. flex-direction: column-reverse;
  328. }
  329. /* 自动换行 */
  330. .flex-wrap {
  331. flex-wrap: wrap;
  332. }
  333. /* 自动换行下起点 */
  334. .flex-wrap-reverse {
  335. flex-wrap: wrap-reverse;
  336. }
  337. /* 不换行 */
  338. .flex-nowrap {
  339. flex-wrap: nowrap;
  340. }
  341. /* 弹性成长 */
  342. .grow {
  343. flex-grow: 1;
  344. }
  345. /* 不允许弹性成长 */
  346. .grow-0 {
  347. flex-grow: 0;
  348. }
  349. /* 主轴从左开始 */
  350. .justify-start {
  351. justify-content: flex-start;
  352. }
  353. /* 主轴从右开始 */
  354. .justify-end {
  355. justify-content: flex-end;
  356. }
  357. /* 主轴剧中 */
  358. .justify-center {
  359. justify-content: center;
  360. }
  361. /* 主轴两端无间隔 */
  362. .justify-between {
  363. justify-content: space-between;
  364. }
  365. /* 主轴两端有间隔 */
  366. .justify-around {
  367. justify-content: space-around;
  368. }
  369. /* 所有间隔相等 */
  370. .justify-evenly {
  371. justify-content: space-evenly;
  372. }
  373. /* 纵向起点最上方 */
  374. .items-start {
  375. align-items: flex-start;
  376. }
  377. /* 纵向起点最下方 */
  378. .items-end {
  379. align-items: flex-end;
  380. }
  381. .items-center {
  382. align-items: center;
  383. }
  384. /* 网格布局 */
  385. .grid {
  386. display: grid;
  387. }
  388. /* 有几列 */
  389. .grid-cols-4 {
  390. grid-template-columns: repeat(4, minmax(0, 1fr));
  391. }
  392. /* 有几行 */
  393. .grid-rows-3 {
  394. grid-template-rows: repeat(3, minmax(0, 1fr));
  395. }
  396. /* 间距 */
  397. .gap-7 {
  398. gap: 1.75rem;
  399. }
  400. /* 允许弹性成长 */
  401. .shrink {
  402. flex-shrink: 1;
  403. }
  404. /* 不允许弹性成长 */
  405. .shrink-0 {
  406. flex-shrink: 0;
  407. }
  408. /* 不允许成长也不允许收缩 */
  409. .flex-none {
  410. flex: none;
  411. }
  412. /* 浮动布局 */
  413. .float-right {
  414. float: right;
  415. }
  416. .float-left {
  417. float: left;
  418. }
  419. .clear-both {
  420. clear: both;
  421. }
  422. /* 溢出 */
  423. .overflow-auto {
  424. overflow: auto;
  425. }
  426. .overflow-hidden {
  427. overflow: hidden;
  428. }
  429. .overflow-scroll {
  430. overflow: scroll;
  431. }
  432. .overflow-x-auto {
  433. overflow-x: auto;
  434. }
  435. .overflow-y-auto {
  436. overflow-y: auto;
  437. }
  438. /* 定位 */
  439. .fixed {
  440. position: fixed;
  441. }
  442. .absolute {
  443. position: absolute;
  444. }
  445. .relative {
  446. position: relative;
  447. }
  448. .top-0 {
  449. top: 0px;
  450. }
  451. .right-0 {
  452. right: 0px;
  453. }
  454. .bottom-0 {
  455. bottom: 0px;
  456. }
  457. .left-0 {
  458. left: 0px;
  459. }
  460. /* top-[3px] */
  461. /* z-[100] */
  462. /* 显示隐藏未脱离文档流 */
  463. .visible {
  464. visibility: visible;
  465. }
  466. .invisible {
  467. visibility: hidden;
  468. }
  469. /* 内边距 */
  470. .p-0 {
  471. padding: 0px;
  472. }
  473. .px-0 {
  474. padding-left: 0px;
  475. padding-right: 0px;
  476. }
  477. .py-0 {
  478. padding-top: 0px;
  479. padding-bottom: 0px;
  480. }
  481. .pt-0 {
  482. padding-top: 0px;
  483. }
  484. .pr-0 {
  485. padding-right: 0px;
  486. }
  487. .pb-0 {
  488. padding-bottom: 0px;
  489. }
  490. .pl-0 {
  491. padding-left: 0px;
  492. }
  493. /* p-[5px] */
  494. /* 外边距 */
  495. .m-0 {
  496. margin: 0px;
  497. }
  498. .mx-0 {
  499. margin-left: 0px;
  500. margin-right: 0px;
  501. }
  502. .my-0 {
  503. margin-top: 0px;
  504. margin-bottom: 0px;
  505. }
  506. .mt-0 {
  507. margin-top: 0px;
  508. }
  509. .mr-0 {
  510. margin-right: 0px;
  511. }
  512. .mb-0 {
  513. margin-bottom: 0px;
  514. }
  515. .ml-0 {
  516. margin-left: 0px;
  517. }
  518. /* m-[5px] */
  519. /* 宽度 */
  520. .w-full {
  521. width: 100%;
  522. }
  523. .w-screen {
  524. width: 100vw;
  525. }
  526. /* w-[32rem] */
  527. /* min-w-[50%] */
  528. /* max-w-[50%] */
  529. /* 高度 */
  530. .h-full {
  531. height: 100%;
  532. }
  533. .h-screen {
  534. height: 100vh;
  535. }
  536. /* h-[32rem] */
  537. /* min-h-[50%] */
  538. /* max-h-[32rem] */
  539. /* 字体 */
  540. .text-xs {
  541. font-size: 0.75rem; /* 12px */
  542. line-height: 1rem; /* 16px */
  543. }
  544. .text-sm {
  545. font-size: 0.875rem; /* 14px */
  546. line-height: 1.25rem; /* 20px */
  547. }
  548. .text-base {
  549. font-size: 1rem; /* 16px */
  550. line-height: 1.5rem; /* 24px */
  551. }
  552. .text-lg {
  553. font-size: 1.125rem; /* 18px */
  554. line-height: 1.75rem; /* 28px */
  555. }
  556. .text-xl {
  557. font-size: 1.25rem; /* 20px */
  558. line-height: 1.75rem; /* 28px */
  559. }
  560. .text-2xl {
  561. font-size: 1.5rem; /* 24px */
  562. line-height: 2rem; /* 32px */
  563. }
  564. .text-3xl {
  565. font-size: 1.875rem; /* 30px */
  566. line-height: 2.25rem; /* 36px */
  567. }
  568. .text-4xl {
  569. font-size: 2.25rem; /* 36px */
  570. line-height: 2.5rem; /* 40px */
  571. }
  572. .text-5xl {
  573. font-size: 3rem; /* 48px */
  574. line-height: 1;
  575. }
  576. .text-6xl {
  577. font-size: 3.75rem; /* 60px */
  578. line-height: 1;
  579. }
  580. .text-7xl {
  581. font-size: 4.5rem; /* 72px */
  582. line-height: 1;
  583. }
  584. .text-8xl {
  585. font-size: 6rem; /* 96px */
  586. line-height: 1;
  587. }
  588. .text-9xl {
  589. font-size: 8rem; /* 128px */
  590. line-height: 1;
  591. }
  592. /* text-[14px] */
  593. /* 字体粗细font-weight */
  594. /* font-[1100] */
  595. /* https://tailwindcss.com/docs/font-weight */
  596. /* 字体间距letter-spacing */
  597. /* tracking-[.25em] */
  598. /* 行高line-height */
  599. /* leading-[3rem] */
  600. /* 无列表样式 */
  601. .list-none {
  602. list-style-type: none;
  603. }
  604. /* 小圆点 */
  605. .list-disc {
  606. list-style-type: disc;
  607. }
  608. /* 数字列表 */
  609. .list-decimal {
  610. list-style-type: decimal;
  611. }
  612. .text-left {
  613. text-align: left;
  614. }
  615. .text-center {
  616. text-align: center;
  617. }
  618. .text-right {
  619. text-align: right;
  620. }
  621. /* 所有文本头尾对齐 */
  622. .text-justify {
  623. text-align: justify;
  624. }
  625. /* 文本颜色 */
  626. /* text-[#50d71e] */
  627. /* https://tailwindcss.com/docs/text-color */
  628. /* 下划线 */
  629. .underline {
  630. text-decoration-line: underline;
  631. }
  632. /* 上划线 */
  633. .overline {
  634. text-decoration-line: overline;
  635. }
  636. /* 中划线 */
  637. .line-through {
  638. text-decoration-line: line-through;
  639. }
  640. /* 无划线 */
  641. .no-underline {
  642. text-decoration-line: none;
  643. }
  644. /* 全小写 */
  645. .lowercase {
  646. text-transform: lowercase;
  647. }
  648. /* 全大写 */
  649. .uppercase {
  650. text-transform: uppercase;
  651. }
  652. /* 首字母大写 */
  653. .capitalize {
  654. text-transform: capitalize;
  655. }