cokingCoalC.css 12 KB

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