equipment.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. body{
  2. color: var(--text-color);
  3. /* background: #101010; */
  4. padding: 20px;
  5. }
  6. .s1{
  7. padding-bottom: 10px;
  8. }
  9. .s1,.s2{
  10. display: flex;
  11. justify-content: space-between;
  12. flex-wrap: wrap;
  13. margin: 0px auto 10px;
  14. }
  15. .s-title{
  16. display: flex;
  17. justify-content: space-between;
  18. width: 100%;
  19. }
  20. .s-title .tag{
  21. color: var(--sub-text-color);
  22. font-size: 14px;
  23. padding: 2px;
  24. border: 1px solid var(--sub-text-color);
  25. }
  26. .s1 .s1-title{
  27. margin-top: 15px;
  28. font-size: 16px;
  29. }
  30. .s1 .s1-title span{
  31. color: #fd8f0f;
  32. font-weight: bold;
  33. }
  34. .s1 .e-con{
  35. height: 120px;
  36. width: 100%;
  37. display: flex;
  38. margin-top: 10px;
  39. }
  40. .s1 .e-con>div{
  41. flex: 1;
  42. }
  43. .s1 .e-con>div>div:first-child{
  44. width: 100%;
  45. height: 90%;
  46. }
  47. .s1 .con-txt{
  48. width: 100%;
  49. text-align: center;
  50. }
  51. .s2 .s2-con{
  52. display: flex;
  53. justify-content: space-between;
  54. width: 100%;
  55. }
  56. .s2 .s2-con .sl-title{
  57. font-size: 16px;
  58. margin-top: 10px;
  59. }
  60. .s2 .s2-con .sl-sub{
  61. font-size: 18px;
  62. font-weight: bold;
  63. line-height: 2;
  64. margin-bottom: 10px;
  65. color: #fd8f0f;
  66. }
  67. .s2 .s2-con .s2-left{
  68. flex: 2;
  69. }
  70. .s2 .s2-con .s2-right{
  71. flex: 3;
  72. }
  73. .s3 .s3-select{
  74. display: flex;
  75. justify-content: space-between;
  76. padding-top: 10px;
  77. font-size: 14px;
  78. }
  79. .s3 .s3-select select{
  80. width: 100px;
  81. }
  82. .s3 .jiaotong{
  83. width: 100%;
  84. padding: 10px 0;
  85. box-sizing: border-box;
  86. height: 200px;
  87. }
  88. .s3 .jiaotong .jiaotong-table{
  89. height: 94%;
  90. margin-top: 2%;
  91. overflow: hidden;
  92. }
  93. .s3 .jiaotong .jiaotong-table .t-main{
  94. overflow-y: scroll;
  95. height: 85%;
  96. margin-top: 15px;
  97. }
  98. .s3 .jiaotong .jiaotong-table span{
  99. display: inline-block;
  100. text-align: center;
  101. flex: 2;
  102. }
  103. .s3 .jiaotong .jiaotong-table span:first-child{
  104. flex: 3;
  105. }
  106. .s3 .jiaotong .jiaotong-table span:last-child{
  107. flex: 1
  108. }
  109. .s3 .jiaotong .jiaotong-table .t-header{
  110. color: var(--sub-text-color);
  111. font-size: 14px;
  112. display: flex;
  113. justify-content: space-between;
  114. }
  115. .s3 .jiaotong .jiaotong-table .t-body{
  116. display: flex;
  117. justify-content: space-between;
  118. font-size: 14px;
  119. padding: 10px 0;
  120. }
  121. .s3 .jiaotong .jiaotong-table .active{
  122. background: var(--sub-text-color);
  123. }
  124. .s4 .s4-con{
  125. display: flex;
  126. justify-content: space-between;
  127. margin-top: 10px;
  128. }
  129. .s4 .s4-con .s4-left{
  130. flex: 2;
  131. }
  132. .s4 .s4-con .s4-right{
  133. flex: 3;
  134. margin-left: 10px;
  135. }
  136. .s4 .s4-con .s4-right .s4-item{
  137. display: flex;
  138. justify-content: space-between;
  139. line-height: 2;
  140. align-items: center;
  141. margin-top: 5px;
  142. font-size: 16px;
  143. }
  144. .s4 .s4-con .s4-right .s4-item .s4i-l{
  145. color: var(--sub-text-color);
  146. flex: 2;
  147. }
  148. .s4 .s4-con .s4-right .s4-item .s4i-r{
  149. flex: 3;
  150. text-align: right;
  151. }