index.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. /* 定制宽高按钮 */
  2. @import '~ant-design-vue/dist/antd.css';
  3. .flex {
  4. display: -webkit-box;
  5. /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  6. display: -moz-box;
  7. /* Firefox 17- */
  8. display: -webkit-flex;
  9. /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  10. display: -moz-flex;
  11. /* Firefox 18+ */
  12. display: -ms-flexbox;
  13. /* IE 10 */
  14. display: flex;
  15. /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  16. }
  17. .inlineflex {
  18. display: -webkit-inline-box;
  19. /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  20. display: -moz-inline-box;
  21. /* Firefox 17- */
  22. display: -webkit-inline-flex;
  23. /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  24. display: -moz-inline-flex;
  25. /* Firefox 18+ */
  26. display: -ms-inline-flexbox;
  27. /* IE 10 */
  28. display: inline-flex;
  29. /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
  30. }
  31. .ellipse {
  32. white-space: nowrap;
  33. text-overflow: ellipsis;
  34. overflow: hidden;
  35. }
  36. .ant-input::placeholder {
  37. color: #394753;
  38. }
  39. .commonInput {
  40. background: #15202B;
  41. border: 1px solid #2B3F52;
  42. border-radius: 3px;
  43. color: #E5E5E5;
  44. }
  45. .commonInput .ant-input {
  46. color: #E5E5E5;
  47. background: transparent;
  48. }
  49. .commonInput .ant-input-suffix {
  50. color: #E5E5E5;
  51. }
  52. .commonInput:hover,
  53. .commonInput:focus {
  54. border-color: #0C95FF;
  55. }
  56. .tableConditionInput {
  57. width: 140px;
  58. height: 30px;
  59. line-height: 30px;
  60. background: #252D34;
  61. /*圆角兼容性*/
  62. -moz-border-radius: 3px 3px 3px 3px;
  63. -webkit-border-radius: 3px 3px 3px 3px;
  64. border-radius: 3px 3px 3px 3px;
  65. border: 0;
  66. color: #E5E5E5;
  67. font-size: 14px;
  68. }
  69. .tableConditionInput + .tableConditionInput {
  70. margin-left: 10px;
  71. }
  72. .ant-select-dropdown {
  73. background: #424E59;
  74. border: 1px solid #48545F;
  75. box-shadow: 0px 10px 10px 0px rgba(18, 22, 24, 0.36);
  76. border-radius: 5px;
  77. }
  78. .ant-select-dropdown .ant-select-item {
  79. color: #7a8a94;
  80. }
  81. .ant-select-dropdown .ant-select-item-option-active,
  82. .ant-select-dropdown .ant-select-item-option-selected,
  83. .ant-select-dropdown .ant-select-item-option-hover {
  84. background: #3a87f7;
  85. color: #E5E5E5;
  86. }
  87. .topTable .ant-table {
  88. width: 100%;
  89. }
  90. .topTable .ant-table table {
  91. border: 0;
  92. }
  93. .topTable .ant-table .ant-table-thead tr {
  94. box-shadow: 0px 1px 0px 0px #2E3539;
  95. }
  96. .topTable .ant-table .ant-table-thead tr th {
  97. line-height: 34px;
  98. background: #212629;
  99. padding-top: 0;
  100. padding-bottom: 0;
  101. color: #556772;
  102. font-size: 14px;
  103. border-right: 1px solid #161A1C;
  104. border-bottom: 1px solid #161A1C;
  105. white-space: nowrap;
  106. text-overflow: ellipsis;
  107. overflow: hidden;
  108. }
  109. .topTable .ant-table .ant-table-tbody tr td {
  110. height: 34px;
  111. line-height: 34px;
  112. padding: 0 8px;
  113. border-right: 1px solid #161A1C;
  114. border-bottom: 1px solid #161A1C;
  115. font-size: 16px;
  116. color: #E5E5E5;
  117. white-space: nowrap;
  118. text-overflow: ellipsis;
  119. overflow: hidden;
  120. }
  121. .topTable .ant-table .ant-table-placeholder {
  122. border: 0;
  123. background: #0E0E0F;
  124. }
  125. .dialogTable .ant-table {
  126. width: 100%;
  127. }
  128. .dialogTable .ant-table table {
  129. border: 1px solid #1B2A38;
  130. border-radius: 0;
  131. }
  132. .dialogTable .ant-table .ant-table-thead tr {
  133. box-shadow: 0px 1px 0px 0px #2E3539;
  134. }
  135. .dialogTable .ant-table .ant-table-thead tr th {
  136. line-height: 36px;
  137. background: #0F1A25;
  138. padding-top: 0;
  139. padding-bottom: 0;
  140. color: #88a0ae;
  141. font-size: 16px;
  142. border-right: 1px solid #1B2A38;
  143. border-bottom: 1px solid #1B2A38;
  144. white-space: nowrap;
  145. text-overflow: ellipsis;
  146. overflow: hidden;
  147. }
  148. .dialogTable .ant-table .ant-table-tbody tr td {
  149. height: 36px;
  150. line-height: 36px;
  151. padding: 0 8px;
  152. border-right: 1px solid #1B2A38;
  153. border-bottom: 1px solid #1B2A38;
  154. font-size: 14px;
  155. color: #E5E5E5;
  156. white-space: nowrap;
  157. text-overflow: ellipsis;
  158. overflow: hidden;
  159. background: #0F1A25;
  160. }
  161. .dialogTable .ant-table .ant-table-placeholder {
  162. border: 0;
  163. background: #0F1A25;
  164. }
  165. .ant-empty-normal {
  166. color: #556772;
  167. }
  168. .ant-empty-img-simple-path,
  169. .ant-empty-img-simple-ellipse {
  170. fill: #556772;
  171. }
  172. .ant-empty-img-simple-g {
  173. stroke: #556772;
  174. }
  175. .add-custom .ant-modal-content,
  176. .commonModal .ant-modal-content {
  177. background: #0F1A25;
  178. border-radius: 5px;
  179. }
  180. .add-custom .ant-modal-content .ant-modal-close .ant-modal-close-x,
  181. .commonModal .ant-modal-content .ant-modal-close .ant-modal-close-x {
  182. width: 40px;
  183. height: 40px;
  184. line-height: 40px;
  185. }
  186. .add-custom .ant-modal-content .ant-modal-close .ant-modal-close-x .ant-modal-close-icon,
  187. .commonModal .ant-modal-content .ant-modal-close .ant-modal-close-x .ant-modal-close-icon {
  188. color: #1271BA;
  189. }
  190. .add-custom .ant-modal-content .ant-modal-header,
  191. .commonModal .ant-modal-content .ant-modal-header {
  192. height: 40px;
  193. background: linear-gradient(0deg, #112C43, #084258);
  194. border-radius: 5px;
  195. padding: 0;
  196. text-align: center;
  197. border-bottom: 0;
  198. }
  199. .add-custom .ant-modal-content .ant-modal-header .ant-modal-title,
  200. .commonModal .ant-modal-content .ant-modal-header .ant-modal-title {
  201. line-height: 40px;
  202. font-size: 16px;
  203. color: #ffffff;
  204. }
  205. .add-custom .ant-modal-content .ant-modal-body,
  206. .commonModal .ant-modal-content .ant-modal-body {
  207. min-height: 380px;
  208. }
  209. .add-custom .ant-modal-content .ant-modal-footer,
  210. .commonModal .ant-modal-content .ant-modal-footer {
  211. border-top: 0;
  212. text-align: center;
  213. padding-bottom: 31px;
  214. }
  215. .add-custom .ant-modal-content .ant-modal-footer .ant-btn-primary,
  216. .commonModal .ant-modal-content .ant-modal-footer .ant-btn-primary {
  217. width: 200px;
  218. height: 34px;
  219. line-height: 34px;
  220. border: 0;
  221. background: linear-gradient(0deg, #3163BA 0%, #4179DB 100%);
  222. border-radius: 3px;
  223. font-size: 16px;
  224. color: #ffffff;
  225. }
  226. .add-custom .ant-modal-content .ant-modal-footer .ant-btn-primary:hover,
  227. .commonModal .ant-modal-content .ant-modal-footer .ant-btn-primary:hover {
  228. background: linear-gradient(0deg, rgba(49, 99, 186, 0.8) 0%, rgba(65, 121, 219, 0.8) 100%);
  229. color: rgba(255, 255, 255, 0.8);
  230. }
  231. .add-custom .ant-modal-content .ant-modal-footer .ant-btn.cancelBtn,
  232. .commonModal .ant-modal-content .ant-modal-footer .ant-btn.cancelBtn {
  233. width: 200px;
  234. height: 34px;
  235. line-height: 34px;
  236. border: 1px solid #0C95FF;
  237. border-radius: 3px;
  238. background: transparent;
  239. font-size: 16px;
  240. color: #0C95FF;
  241. margin-right: 20px;
  242. }
  243. .add-custom .ant-modal-content .ant-modal-footer .ant-btn.cancelBtn:hover,
  244. .commonModal .ant-modal-content .ant-modal-footer .ant-btn.cancelBtn:hover {
  245. border-color: rgba(12, 149, 255, 0.8);
  246. }
  247. .ant-form.inlineForm .ant-row.ant-form-item {
  248. margin-bottom: 21px;
  249. }
  250. .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-label {
  251. width: 130px;
  252. line-height: 30px;
  253. text-align: left;
  254. }
  255. .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-label label {
  256. color: #7a8a94;
  257. }
  258. .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-label label::after {
  259. content: '';
  260. }
  261. .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-control-wrapper .ant-form-item-control {
  262. line-height: 30px;
  263. }
  264. .ant-form.inlineForm .relative.ant-form-item {
  265. position: relative;
  266. }
  267. .ant-form.inlineForm .relative.ant-form-item .tip {
  268. position: absolute;
  269. font-size: 14px;
  270. color: #7a8a94;
  271. }
  272. .ant-form.inlineForm .tc.ant-form-item .ant-form-item-control-wrapper {
  273. margin: 0 auto;
  274. }
  275. .ant-select-single .ant-select-selector {
  276. height: 30px;
  277. padding: 0 8px;
  278. background: #15202B;
  279. border: 1px solid #0C95FF;
  280. border-radius: 3px;
  281. color: #E5E5E5;
  282. }
  283. .ant-select-single .ant-select-arrow {
  284. right: 8px;
  285. color: #3A87F7;
  286. }
  287. .inlineFormSelect.ant-select-single,
  288. .shortSelect.ant-select-single {
  289. /*圆角兼容性*/
  290. -moz-border-radius: 3px 3px 3px 3px;
  291. -webkit-border-radius: 3px 3px 3px 3px;
  292. border-radius: 3px 3px 3px 3px;
  293. border: 1px solid #2B3F52;
  294. }
  295. .inlineFormSelect.ant-select-single:hover,
  296. .inlineFormSelect.ant-select-single:focus {
  297. border-color: #0C95FF;
  298. }
  299. .inlineFormSelect.ant-select-single .ant-select-selector {
  300. height: 30px;
  301. padding: 0 8px;
  302. background: #15202B;
  303. border: 0;
  304. color: #E5E5E5;
  305. }
  306. .inlineFormSelect.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  307. color: #394753;
  308. }
  309. .inlineFormSelect.ant-select-single .ant-select-arrow {
  310. right: 8px;
  311. color: #3A87F7 !important;
  312. }
  313. .shortSelect.ant-select-single {
  314. margin-right: 0;
  315. }
  316. .shortSelect.ant-select-single .ant-select-selector {
  317. padding: 0 5px;
  318. }
  319. .shortSelect.ant-select-single .ant-select-selector .ant-select-selection-item {
  320. padding-right: 14px;
  321. }
  322. .typeSelect.ant-select-single {
  323. /*圆角兼容性*/
  324. -moz-border-radius: 3px 3px 3px 3px;
  325. -webkit-border-radius: 3px 3px 3px 3px;
  326. border-radius: 3px 3px 3px 3px;
  327. border: 1px solid #2B3F52;
  328. }
  329. .typeSelect.ant-select-single:hover,
  330. .typeSelect.ant-select-single:focus {
  331. border-color: #0C95FF;
  332. }
  333. .typeSelect.ant-select-single .ant-select-selector {
  334. height: 30px;
  335. padding: 0 8px;
  336. background: #15202B;
  337. border: 0;
  338. color: #E5E5E5;
  339. }
  340. .typeSelect.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
  341. color: #394753;
  342. }
  343. .typeSelect.ant-select-single .ant-select-arrow {
  344. right: 8px;
  345. color: #3a87f7;
  346. }
  347. .dialogInput {
  348. background: #15202B;
  349. border: 1px solid #2B3F52;
  350. border-radius: 3px;
  351. color: #E5E5E5;
  352. }
  353. .dialogInput .ant-input {
  354. color: #E5E5E5;
  355. background: transparent;
  356. }
  357. .dialogInput .ant-input-suffix {
  358. color: #E5E5E5;
  359. }
  360. .dialogInput:hover,
  361. .dialogInput:focus {
  362. border-color: #0C95FF;
  363. }
  364. .white {
  365. color: #ffffff;
  366. }
  367. .blue {
  368. color: #3a87f7;
  369. }
  370. .green {
  371. color: #1FF195;
  372. }
  373. /*滚动条样式*/
  374. ::-webkit-scrollbar {
  375. width: 10px;
  376. height: 10px;
  377. }
  378. ::-webkit-scrollbar-thumb {
  379. border-radius: 10px;
  380. background-color: #272E32;
  381. }
  382. ::-webkit-scrollbar-button {
  383. background-color: #171A1B;
  384. }
  385. ::-webkit-scrollbar-track-piece {
  386. background-color: #171A1B;
  387. }
  388. ::-webkit-scrollbar-corner,
  389. .el-input::-webkit-scrollbar-corner {
  390. background-color: #171A1B;
  391. }
  392. html {
  393. font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  394. -webkit-text-size-adjust: 100%;
  395. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  396. -webkit-font-smoothing: antialiased;
  397. -moz-osx-font-smoothing: grayscale;
  398. }
  399. body {
  400. margin: 0;
  401. overflow: hidden;
  402. background-color: #e9eef3;
  403. }
  404. .ant-layout {
  405. background: rgb(255 255 255);
  406. }
  407. .ant-layout aside {
  408. background: rgb(255 255 255);
  409. }
  410. .ant-layout > section header {
  411. background: rgb(255 255 255);
  412. padding: 0;
  413. }
  414. .ant-layout > section main {
  415. background: rgb(255 255 255);
  416. }
  417. .ant-card .ant-card-head {
  418. border: none;
  419. }
  420. .ant-card .ant-card-head .ant-card-head-wrapper {
  421. border-bottom: 1px solid #f0f0f0;
  422. }
  423. .ant-card .ant-card-head .ant-card-head-wrapper .ant-card-head-title {
  424. text-align: left;
  425. font-size: 16px;
  426. font-family: Source Han Sans CN;
  427. font-weight: 500;
  428. color: #444444;
  429. }
  430. .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title,
  431. .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle,
  432. .ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description {
  433. color: #1abbcf;
  434. }
  435. .ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon {
  436. border-color: #1abbcf;
  437. }
  438. .ant-modal-title {
  439. font-size: 18px;
  440. font-family: Source Han Sans CN;
  441. font-weight: 500;
  442. color: #1abbcf;
  443. }
  444. .submit {
  445. background: #1abbcf;
  446. border-radius: 3px;
  447. color: #fff;
  448. }
  449. .ant-btn-primary {
  450. background-color: #1abbcf;
  451. }
  452. .ant-btn:hover,
  453. .ant-btn:focus,
  454. .ant-menu-item:hover,
  455. .ant-menu-item-active,
  456. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
  457. .ant-menu-submenu-active,
  458. .ant-menu-submenu-title:hover,
  459. .ant-menu-submenu-selected,
  460. .ant-menu-item-selected,
  461. .ant-menu-item-selected > a,
  462. .ant-menu-item-selected > a:hover {
  463. color: #1abbcf;
  464. }
  465. .ant-menu-vertical .ant-menu-item::after,
  466. .ant-menu-vertical-left .ant-menu-item::after,
  467. .ant-menu-vertical-right .ant-menu-item::after,
  468. .ant-menu-inline .ant-menu-item::after {
  469. border-right: 3px solid #1abbcf;
  470. }
  471. .ant-checkbox-checked::after,
  472. .ant-checkbox-wrapper:hover .ant-checkbox-inner,
  473. .ant-checkbox:hover .ant-checkbox-inner,
  474. .ant-checkbox-input:focus + .ant-checkbox-inner,
  475. .ant-input-affix-wrapper:hover,
  476. .ant-input-affix-wrapper:focus,
  477. .ant-select:not(.ant-select-disabled):hover .ant-select-selector,
  478. .ant-btn-primary,
  479. .ant-btn:hover,
  480. .ant-input:focus,
  481. .ant-input:hover,
  482. .ant-btn:focus,
  483. .ant-btn-primary,
  484. .ant-btn:hover,
  485. .ant-input:focus,
  486. .ant-input:hover,
  487. .ant-btn:focus {
  488. border-color: #1abbcf;
  489. }
  490. .ant-input-affix-wrapper:focus,
  491. .ant-btn:focus {
  492. box-shadow: rgb(26 187 10.35%) 0px 0px 0px 2px;
  493. }
  494. ::selection {
  495. color: #ffffff;
  496. background: rgb(54 187 207);
  497. }
  498. .ant-modal-wrap {
  499. overflow-y: scroll;
  500. }
  501. .theme {
  502. color: #3a87f7;
  503. }
  504. .icon {
  505. width: 1em;
  506. height: 1em;
  507. vertical-align: -0.15em;
  508. fill: currentColor;
  509. overflow: hidden;
  510. }
  511. .ant-spin-nested-loading > div > .ant-spin {
  512. max-height: 100%;
  513. }
  514. .ant-spin-nested-loading {
  515. width: 100%;
  516. height: 100%;
  517. }
  518. .ant-spin-nested-loading .ant-spin-container {
  519. width: 100%;
  520. height: 100%;
  521. display: flex;
  522. }
  523. .ant-switch-checked {
  524. background-color: #3a87f7;
  525. }
  526. .icon {
  527. cursor: pointer;
  528. }
  529. .ant-empty {
  530. height: 100%;
  531. display: flex;
  532. flex-direction: column;
  533. justify-content: center;
  534. align-items: center;
  535. }
  536. .mt15 {
  537. margin-top: 15px;
  538. }
  539. .mt25 {
  540. margin-top: 25px;
  541. }
  542. .ellipsis {
  543. font-size: 12px;
  544. display: block / inline-block;
  545. overflow: hidden;
  546. white-space: nowrap;
  547. text-overflow: ellipsis;
  548. width: 120px;
  549. display: inline-block;
  550. }
  551. .ant-menu-dark,
  552. .ant-menu-dark {
  553. background-color: #1d2327;
  554. }
  555. .ant-menu-dark .ant-menu-submenu-title,
  556. .ant-menu-dark .ant-menu-submenu-title {
  557. font-size: 16px;
  558. text-align: left;
  559. }
  560. .ant-menu-dark .ant-menu-sub,
  561. .ant-menu-dark .ant-menu-sub {
  562. background-color: #14181b;
  563. }
  564. .ant-menu-dark .ant-menu-sub .ant-menu-item,
  565. .ant-menu-dark .ant-menu-sub .ant-menu-item {
  566. font-size: 14px;
  567. font-family: Adobe Heiti Std;
  568. color: #88A0AE;
  569. text-align: left;
  570. }
  571. .ant-menu-dark .ant-menu-sub .ant-menu-item-selected,
  572. .ant-menu-dark .ant-menu-sub .ant-menu-item-selected {
  573. color: #fff;
  574. }
  575. .ant-menu-horizontal > .ant-menu-item-active,
  576. .ant-menu-horizontal > .ant-menu-item-open,
  577. .ant-menu-horizontal > .ant-menu-item-selected,
  578. .ant-menu-horizontal > .ant-menu-item:hover,
  579. .ant-menu-horizontal > .ant-menu-submenu-active,
  580. .ant-menu-horizontal > .ant-menu-submenu-open,
  581. .ant-menu-horizontal > .ant-menu-submenu-selected,
  582. .ant-menu-horizontal > .ant-menu-submenu:hover {
  583. color: #3a87f7;
  584. }
  585. .mine_layout .ant-menu .ant-menu-item-selected,
  586. .mine_layout .ant-menu .ant-menu-item:hover {
  587. color: #3a87f7;
  588. border-bottom: 2px solid #3a87f7;
  589. }
  590. .pointer {
  591. cursor: pointer;
  592. }
  593. .ant-table-wrapper .ant-table-thead tr th {
  594. background: #212629;
  595. color: #556772;
  596. font-size: 14px;
  597. font-family: Adobe Heiti Std;
  598. }
  599. .ant-table-wrapper .ant-table-thead > tr:first-child > th:last-child,
  600. .ant-table-wrapper .ant-table-thead > tr:first-child > th:first-child {
  601. border-radius: 0px;
  602. }
  603. .ant-table-wrapper .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  604. background: #172b56;
  605. }
  606. .ant-table-wrapper .ant-table-body tr td {
  607. background-color: #0E0E0F;
  608. color: white;
  609. cursor: pointer;
  610. }
  611. .ant-table-wrapper .ant-table-bordered .ant-table-thead > tr > th,
  612. .ant-table-wrapper .ant-table-bordered .ant-table-tbody > tr > td {
  613. padding: 0;
  614. height: 34px;
  615. line-height: 34px;
  616. border-color: #161a1c;
  617. font-family: Adobe Heiti Std;
  618. font-size: 16px;
  619. }
  620. .ant-table-wrapper .ant-table-fixed {
  621. width: max-content !important;
  622. color: #e5e5e5;
  623. background: #0e0e0f;
  624. border-top-color: #0e0e0f !important;
  625. border-left-color: #161a1c !important;
  626. }
  627. .table-height {
  628. height: calc(100% - 40px);
  629. }