order.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html, body {
  6. width: 100%;
  7. height: 100%;
  8. overflow-y: hidden;
  9. }
  10. body {
  11. background: #121e39;
  12. }
  13. .nav {
  14. width: 100%;
  15. display: flex;
  16. justify-content: center;
  17. padding-top: 5px;
  18. }
  19. .nav .logo-img {
  20. width: 308px;
  21. height: 57px;
  22. position: absolute;
  23. left: 50px;
  24. }
  25. .nav-title {
  26. position: absolute;
  27. text-align: center;
  28. color: white;
  29. font-size: 36px;
  30. }
  31. .org-name {
  32. position: absolute;
  33. top: 65px;
  34. text-align: center;
  35. color: white;
  36. font-size: 24px;
  37. }
  38. .title-line {
  39. width: 100%;
  40. overflow: hidden;
  41. position: absolute;
  42. top: 70px;
  43. }
  44. .date-display {
  45. position: absolute;
  46. right: 50px;
  47. top: 40px;
  48. font-size: 20px;
  49. color: #ffffff;
  50. }
  51. .main {
  52. position: absolute;
  53. display: flex;
  54. flex-direction: column;
  55. top: 130px;
  56. bottom: 0;
  57. width: 100%;
  58. }
  59. .task-order {
  60. flex: 1;
  61. overflow: hidden;
  62. height: 96.5%;
  63. }
  64. .ongoing-order {
  65. height: 480px;
  66. display: none;
  67. }
  68. .chart-container {
  69. background: rgba(23,49,96,0.7);
  70. margin: 0 15px 15px;
  71. border-radius: 5px;
  72. height: 96.5%;
  73. overflow: hidden;
  74. }
  75. .chart-title-img {
  76. background: #0a3849;
  77. height: 35px;
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. border-radius: 5px 5px 0 0;
  82. }
  83. .chart-title-img img:first-child {
  84. width: 30px;
  85. height: 30px;
  86. }
  87. .icon-title {
  88. color: #fefffe;
  89. flex: 2;
  90. display: inline-block;
  91. line-height: 35px;
  92. padding-left: 5px;
  93. font-size: 30px;
  94. }
  95. .icon-img {
  96. float: right;
  97. padding-right: 15px;
  98. }
  99. /*表格*/
  100. .table {
  101. color: #ffffff;
  102. width: 100%;
  103. padding: 10px;
  104. /*height: 100%;*/
  105. }
  106. th,td {
  107. text-align: center;
  108. font-size: 24px;
  109. height: 38px;
  110. }
  111. .table thead tr{
  112. background: #157490;
  113. }
  114. .table tbody tr:nth-child(odd){
  115. background: rgba(25,177,201,0.2);
  116. }
  117. .table tbody tr:nth-child(even){
  118. background: rgba(10,56,73,0.58);
  119. }
  120. .table-task-name, .table-project-name {
  121. overflow: hidden;
  122. text-overflow: ellipsis;
  123. white-space: nowrap;
  124. }
  125. .table-task-name {
  126. max-width: 90px;
  127. }
  128. .table-project-name {
  129. max-width: 310px;
  130. }