cokingCoalE.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  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. filter: brightness(0.7);
  194. animation: fadenum 2s infinite linear;
  195. }
  196. @keyframes fadenum {
  197. 50% {
  198. filter: brightness(1.3);
  199. }
  200. 100% {
  201. filter: brightness(0.7);
  202. }
  203. }
  204. .item-tl-item > div:last-child {
  205. width: 100%;
  206. height: 50px;
  207. display: flex;
  208. align-items: center;
  209. justify-content: center;
  210. background: url('../images/count.png') no-repeat;
  211. background-size: 100% 100%;
  212. }
  213. .item-tl-item img {
  214. width: 30px;
  215. height: 30px;
  216. }
  217. .item-tl-item span {
  218. font-size: 20px;
  219. margin-right: 10px;
  220. font-style: italic;
  221. font-weight: bold;
  222. }
  223. .item-tr-item img {
  224. margin-right: 10px;
  225. }
  226. .text-style {
  227. margin: 0 10px;
  228. font-size: 18px;
  229. font-weight: bold;
  230. }
  231. .aiQuality {
  232. width: 90%;
  233. height: 70%;
  234. padding-top: 0.2%;
  235. margin: 0 auto;
  236. margin-top: 25px;
  237. }
  238. .rb-item {
  239. display: flex;
  240. align-items: center;
  241. justify-content: center;
  242. height: 80%;
  243. width: 100%;
  244. padding: 20px 0;
  245. background: url('../images/pei-back-big.png') no-repeat center;
  246. background-size: 100% auto;
  247. }
  248. .pitText {
  249. width: 150px;
  250. top: 45%;
  251. right: 37%;
  252. text-align: center;
  253. }
  254. .pitText > p:nth-child(1) {
  255. color: #69c0ff;
  256. font-weight: bold;
  257. font-size: 20px;
  258. }
  259. .top-title1 {
  260. width: 270px;
  261. height: 50px;
  262. line-height: 50px;
  263. left: 45%;
  264. top: 13.5%;
  265. background: url('../images/title.png') no-repeat;
  266. background-size: 100% 100%;
  267. padding-left: 50px;
  268. }
  269. .my-header span.right {
  270. position: absolute;
  271. right: 100px;
  272. bottom: 10px;
  273. font-size: 14px;
  274. }
  275. /* zhb */
  276. /* 宽高纵横比 */
  277. .aspect-auto {
  278. aspect-ratio: auto;
  279. }
  280. .aspect-square {
  281. aspect-ratio: 1 / 1;
  282. }
  283. .aspect-video {
  284. aspect-ratio: 16 / 9;
  285. }
  286. /* aspect-[4/3] */
  287. /* 居中 */
  288. .mx-auto {
  289. margin: 0 auto;
  290. }
  291. /* 设置容器内的列数/每列距离 */
  292. .columns-1 {
  293. columns: 1;
  294. }
  295. /* columns-[20px] */
  296. /* 盒子模型 */
  297. .box-border {
  298. box-sizing: border-box;
  299. }
  300. .box-content {
  301. box-sizing: content-box;
  302. }
  303. /* 消失 */
  304. .hidden {
  305. display: none;
  306. }
  307. /* 块级元素 */
  308. .block {
  309. display: block;
  310. }
  311. /* 行内块 */
  312. .inline-block {
  313. display: inline-block;
  314. }
  315. /* 行内元素 */
  316. .inline {
  317. display: inline;
  318. }
  319. /* 弹性布局 */
  320. .flex {
  321. display: flex;
  322. }
  323. /* 主轴起点在左边 */
  324. .flex-row {
  325. flex-direction: row;
  326. }
  327. /* 主轴起点在右边 */
  328. .flex-row-reverse {
  329. flex-direction: row-reverse;
  330. }
  331. /* 主轴竖向排列,在上面 */
  332. .flex-col {
  333. flex-direction: column;
  334. }
  335. /* 主轴竖向排列,在下面 */
  336. .flex-col-reverse {
  337. flex-direction: column-reverse;
  338. }
  339. /* 自动换行 */
  340. .flex-wrap {
  341. flex-wrap: wrap;
  342. }
  343. /* 自动换行下起点 */
  344. .flex-wrap-reverse {
  345. flex-wrap: wrap-reverse;
  346. }
  347. /* 不换行 */
  348. .flex-nowrap {
  349. flex-wrap: nowrap;
  350. }
  351. /* 弹性成长 */
  352. .grow {
  353. flex-grow: 1;
  354. }
  355. /* 不允许弹性成长 */
  356. .grow-0 {
  357. flex-grow: 0;
  358. }
  359. /* 主轴从左开始 */
  360. .justify-start {
  361. justify-content: flex-start;
  362. }
  363. /* 主轴从右开始 */
  364. .justify-end {
  365. justify-content: flex-end;
  366. }
  367. /* 主轴剧中 */
  368. .justify-center {
  369. justify-content: center;
  370. }
  371. /* 主轴两端无间隔 */
  372. .justify-between {
  373. justify-content: space-between;
  374. }
  375. /* 主轴两端有间隔 */
  376. .justify-around {
  377. justify-content: space-around;
  378. }
  379. /* 所有间隔相等 */
  380. .justify-evenly {
  381. justify-content: space-evenly;
  382. }
  383. /* 纵向起点最上方 */
  384. .items-start {
  385. align-items: flex-start;
  386. }
  387. /* 纵向起点最下方 */
  388. .items-end {
  389. align-items: flex-end;
  390. }
  391. .items-center {
  392. align-items: center;
  393. }
  394. /* 网格布局 */
  395. .grid {
  396. display: grid;
  397. }
  398. /* 有几列 */
  399. .grid-cols-4 {
  400. grid-template-columns: repeat(4, minmax(0, 1fr));
  401. }
  402. /* 有几行 */
  403. .grid-rows-3 {
  404. grid-template-rows: repeat(3, minmax(0, 1fr));
  405. }
  406. /* 间距 */
  407. .gap-7 {
  408. gap: 1.75rem;
  409. }
  410. /* 允许弹性成长 */
  411. .shrink {
  412. flex-shrink: 1;
  413. }
  414. /* 不允许弹性成长 */
  415. .shrink-0 {
  416. flex-shrink: 0;
  417. }
  418. /* 不允许成长也不允许收缩 */
  419. .flex-none {
  420. flex: none;
  421. }
  422. /* 浮动布局 */
  423. .float-right {
  424. float: right;
  425. }
  426. .float-left {
  427. float: left;
  428. }
  429. .clear-both {
  430. clear: both;
  431. }
  432. /* 溢出 */
  433. .overflow-auto {
  434. overflow: auto;
  435. }
  436. .overflow-hidden {
  437. overflow: hidden;
  438. }
  439. .overflow-scroll {
  440. overflow: scroll;
  441. }
  442. .overflow-x-auto {
  443. overflow-x: auto;
  444. }
  445. .overflow-y-auto {
  446. overflow-y: auto;
  447. }
  448. /* 定位 */
  449. .fixed {
  450. position: fixed;
  451. }
  452. .absolute {
  453. position: absolute;
  454. }
  455. .relative {
  456. position: relative;
  457. }
  458. .top-0 {
  459. top: 0px;
  460. }
  461. .right-0 {
  462. right: 0px;
  463. }
  464. .bottom-0 {
  465. bottom: 0px;
  466. }
  467. .left-0 {
  468. left: 0px;
  469. }
  470. /* top-[3px] */
  471. /* z-[100] */
  472. /* 显示隐藏未脱离文档流 */
  473. .visible {
  474. visibility: visible;
  475. }
  476. .invisible {
  477. visibility: hidden;
  478. }
  479. /* 内边距 */
  480. .p-0 {
  481. padding: 0px;
  482. }
  483. .px-0 {
  484. padding-left: 0px;
  485. padding-right: 0px;
  486. }
  487. .py-0 {
  488. padding-top: 0px;
  489. padding-bottom: 0px;
  490. }
  491. .pt-0 {
  492. padding-top: 0px;
  493. }
  494. .pr-0 {
  495. padding-right: 0px;
  496. }
  497. .pb-0 {
  498. padding-bottom: 0px;
  499. }
  500. .pl-0 {
  501. padding-left: 0px;
  502. }
  503. /* p-[5px] */
  504. /* 外边距 */
  505. .m-0 {
  506. margin: 0px;
  507. }
  508. .mx-0 {
  509. margin-left: 0px;
  510. margin-right: 0px;
  511. }
  512. .my-0 {
  513. margin-top: 0px;
  514. margin-bottom: 0px;
  515. }
  516. .mt-0 {
  517. margin-top: 0px;
  518. }
  519. .mr-0 {
  520. margin-right: 0px;
  521. }
  522. .mb-0 {
  523. margin-bottom: 0px;
  524. }
  525. .ml-0 {
  526. margin-left: 0px;
  527. }
  528. /* m-[5px] */
  529. /* 宽度 */
  530. .w-full {
  531. width: 100%;
  532. }
  533. .w-screen {
  534. width: 100vw;
  535. }
  536. /* w-[32rem] */
  537. /* min-w-[50%] */
  538. /* max-w-[50%] */
  539. /* 高度 */
  540. .h-full {
  541. height: 100%;
  542. }
  543. .h-screen {
  544. height: 100vh;
  545. }
  546. /* h-[32rem] */
  547. /* min-h-[50%] */
  548. /* max-h-[32rem] */
  549. /* 字体 */
  550. .text-xs {
  551. font-size: 0.75rem; /* 12px */
  552. line-height: 1rem; /* 16px */
  553. }
  554. .text-sm {
  555. font-size: 0.875rem; /* 14px */
  556. line-height: 1.25rem; /* 20px */
  557. }
  558. .text-base {
  559. font-size: 1rem; /* 16px */
  560. line-height: 1.5rem; /* 24px */
  561. }
  562. .text-lg {
  563. font-size: 1.125rem; /* 18px */
  564. line-height: 1.75rem; /* 28px */
  565. }
  566. .text-xl {
  567. font-size: 1.25rem; /* 20px */
  568. line-height: 1.75rem; /* 28px */
  569. }
  570. .text-2xl {
  571. font-size: 1.5rem; /* 24px */
  572. line-height: 2rem; /* 32px */
  573. }
  574. .text-3xl {
  575. font-size: 1.875rem; /* 30px */
  576. line-height: 2.25rem; /* 36px */
  577. }
  578. .text-4xl {
  579. font-size: 2.25rem; /* 36px */
  580. line-height: 2.5rem; /* 40px */
  581. }
  582. .text-5xl {
  583. font-size: 3rem; /* 48px */
  584. line-height: 1;
  585. }
  586. .text-6xl {
  587. font-size: 3.75rem; /* 60px */
  588. line-height: 1;
  589. }
  590. .text-7xl {
  591. font-size: 4.5rem; /* 72px */
  592. line-height: 1;
  593. }
  594. .text-8xl {
  595. font-size: 6rem; /* 96px */
  596. line-height: 1;
  597. }
  598. .text-9xl {
  599. font-size: 8rem; /* 128px */
  600. line-height: 1;
  601. }
  602. /* text-[14px] */
  603. /* 字体粗细font-weight */
  604. /* font-[1100] */
  605. /* https://tailwindcss.com/docs/font-weight */
  606. /* 字体间距letter-spacing */
  607. /* tracking-[.25em] */
  608. /* 行高line-height */
  609. /* leading-[3rem] */
  610. /* 无列表样式 */
  611. .list-none {
  612. list-style-type: none;
  613. }
  614. /* 小圆点 */
  615. .list-disc {
  616. list-style-type: disc;
  617. }
  618. /* 数字列表 */
  619. .list-decimal {
  620. list-style-type: decimal;
  621. }
  622. .text-left {
  623. text-align: left;
  624. }
  625. .text-center {
  626. text-align: center;
  627. }
  628. .text-right {
  629. text-align: right;
  630. }
  631. /* 所有文本头尾对齐 */
  632. .text-justify {
  633. text-align: justify;
  634. }
  635. /* 文本颜色 */
  636. /* text-[#50d71e] */
  637. /* https://tailwindcss.com/docs/text-color */
  638. /* 下划线 */
  639. .underline {
  640. text-decoration-line: underline;
  641. }
  642. /* 上划线 */
  643. .overline {
  644. text-decoration-line: overline;
  645. }
  646. /* 中划线 */
  647. .line-through {
  648. text-decoration-line: line-through;
  649. }
  650. /* 无划线 */
  651. .no-underline {
  652. text-decoration-line: none;
  653. }
  654. /* 全小写 */
  655. .lowercase {
  656. text-transform: lowercase;
  657. }
  658. /* 全大写 */
  659. .uppercase {
  660. text-transform: uppercase;
  661. }
  662. /* 首字母大写 */
  663. .capitalize {
  664. text-transform: capitalize;
  665. }