cokingCoalD.css 10 KB

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