index.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. li {
  7. list-style: none;
  8. }
  9. select,
  10. input {
  11. outline: none;
  12. }
  13. .text-left {
  14. text-align: left;
  15. }
  16. /* 溢出滚动样式 */
  17. .summary ::-webkit-scrollbar {
  18. height: 7px !important;
  19. width: 7px !important;
  20. }
  21. /*定义了滚动条滑块的样式*/
  22. .summary ::-webkit-scrollbar-thumb {
  23. border-radius: 5px;
  24. border-style: dashed;
  25. background-color: #28BEFC;
  26. border-color: #e2242400;
  27. border-width: 1.5px;
  28. background-clip: padding-box;
  29. }
  30. /*定义了轨道的样式*/
  31. .summary ::-webkit-scrollbar-track {
  32. /*滚动条里面轨道*/
  33. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
  34. border-radius: 5px;
  35. background: rgba(0, 0, 0, 0);
  36. }
  37. @font-face {
  38. font-family: electronicFont;
  39. src: url(../font/DS-DIGIT.TTF);
  40. }
  41. @font-face {
  42. font-family: IMPACT;
  43. src: url(../font/IMPACT.TTF);
  44. }
  45. body {
  46. font-family: Arial, Helvetica, sans-serif;
  47. margin: 0;
  48. padding: 0;
  49. /* 背景图定位 / 背景图尺寸 cover 完全铺满容器 contain 完整显示在容器内 */
  50. background: url(../images/bg.jpg) no-repeat #000;
  51. background-size: cover;
  52. /* 行高是字体1.15倍 */
  53. line-height: 1.15;
  54. position: relative;
  55. }
  56. body .page-container {
  57. font-family: Arial, Helvetica, sans-serif;
  58. margin: 0;
  59. padding: 0;
  60. /* 背景图定位 / 背景图尺寸 cover 完全铺满容器 contain 完整显示在容器内 */
  61. background: url(../images/bg.jpg) no-repeat #000;
  62. background-size: cover;
  63. /* 行高是字体1.15倍 */
  64. line-height: 1.15;
  65. position: relative;
  66. }
  67. header {
  68. position: relative;
  69. height: 1rem;
  70. background: url(../images/head_bg.png) no-repeat top center;
  71. background-size: 100% 100%;
  72. min-width: 1024px;
  73. max-width: 1920px;
  74. }
  75. header h1 {
  76. font-size: 0.35rem;
  77. color: #fff;
  78. text-align: center;
  79. line-height: 1rem;
  80. font-weight: normal;
  81. }
  82. header .filterSec {
  83. position: absolute;
  84. top: 0;
  85. right: 0.375rem;
  86. line-height: 0.9375rem;
  87. font-size: 0.25rem;
  88. color: rgba(255, 255, 255, 0.7);
  89. }
  90. .mainbox {
  91. min-width: 1024px;
  92. max-width: 1920px;
  93. padding: 0.225rem 0.225rem 0 0.2625rem;
  94. }
  95. .mainbox .topSection,
  96. .mainbox .bottomSection {
  97. display: flex;
  98. }
  99. .mainbox.eleFire .topSection .column {
  100. flex: 2;
  101. }
  102. .mainbox.eleFire .topSection .column:nth-child(2) {
  103. flex: 5;
  104. margin: 0 0 0 0.275rem;
  105. overflow: hidden;
  106. }
  107. .mainbox .bottomSection .column {
  108. flex: 1;
  109. }
  110. .mainbox .bottomSection .column:nth-child(2) {
  111. flex: 1;
  112. margin: 0 0 0 0.275rem;
  113. overflow: hidden;
  114. }
  115. .panel {
  116. position: relative;
  117. height: 5.9rem;
  118. border: 1px solid rgba(25, 140, 186, 0.5);
  119. background: rgba(8, 26, 50, 0.6);
  120. padding: 0 0.5375rem;
  121. margin-bottom: 0.2rem;
  122. }
  123. .panel::before {
  124. position: absolute;
  125. top: 0;
  126. left: 0;
  127. content: "";
  128. width: 10px;
  129. height: 10px;
  130. border-top: 2px solid #28BEFC;
  131. border-left: 2px solid #28BEFC;
  132. }
  133. .panel::after {
  134. position: absolute;
  135. top: 0;
  136. right: 0;
  137. content: "";
  138. width: 10px;
  139. height: 10px;
  140. border-top: 2px solid #28BEFC;
  141. border-right: 2px solid #28BEFC;
  142. }
  143. .panel .panel-footer {
  144. position: absolute;
  145. left: 0;
  146. bottom: 0;
  147. width: 100%;
  148. }
  149. .panel .panel-footer::before {
  150. position: absolute;
  151. bottom: 0;
  152. left: 0;
  153. content: "";
  154. width: 10px;
  155. height: 10px;
  156. border-bottom: 2px solid #28BEFC;
  157. border-left: 2px solid #28BEFC;
  158. }
  159. .panel .panel-footer::after {
  160. position: absolute;
  161. bottom: 0;
  162. right: 0;
  163. content: "";
  164. width: 10px;
  165. height: 10px;
  166. border-bottom: 2px solid #28BEFC;
  167. border-right: 2px solid #28BEFC;
  168. }
  169. .panel h2 {
  170. height: 0.6rem;