index.css 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. header {
  2. position: relative;
  3. height: 1.113rem;
  4. background: linear-gradient(#0a0634 0, #204a9e 100%)
  5. }
  6. header h1 {
  7. font-size: .575rem;
  8. color: #fff;
  9. text-align: center;
  10. line-height: 1.113rem;
  11. font-weight: 400
  12. }
  13. header .showTime {
  14. position: absolute;
  15. top: 0;
  16. right: .375rem;
  17. line-height: .9375rem;
  18. font-size: .25rem;
  19. color: rgba(255, 255, 255, .7)
  20. }
  21. .mainbox {
  22. min-width: 1024px;
  23. max-width: 1920px;
  24. padding: .287rem .287rem 0;
  25. display: flex
  26. }
  27. .mainbox .column {
  28. flex: 3
  29. }
  30. .mainbox .column:nth-child(2) {
  31. flex: 6;
  32. margin: 0 .575rem .1875rem;
  33. overflow: hidden
  34. }
  35. .panel {
  36. position: relative;
  37. /* // background: rgba(255, 255, 255, .01) url(../images/line\(1\) .png);
  38. background: rgba(255, 255, 255, .01) url(../images/line\(1\) .png);*/
  39. background-repeat: no-repeat;
  40. padding: 0 .1875rem .5rem;
  41. margin-bottom: .287rem;
  42. background-size: 100% 100%
  43. }
  44. .no h2,
  45. .panel h2 {
  46. height: .7rem;
  47. line-height: .7rem;
  48. text-align: center;
  49. font-size: .275rem;
  50. background-image: -webkit-linear-gradient(bottom, #00adce, #fff);
  51. -webkit-background-clip: text;
  52. -webkit-text-fill-color: transparent
  53. }
  54. .panel h2 a {
  55. margin: 0 .1875rem;
  56. color: #fff;
  57. text-decoration: underline
  58. }
  59. .panel .chart {
  60. /* height: 90%; */
  61. display: flex;
  62. justify-content: center;
  63. align-items: center
  64. }
  65. .no {
  66. height: 4.05rem;
  67. overflow: hidden;
  68. background-image: url(../images/no-bg.png)
  69. }
  70. table {
  71. width: 10.262rem;
  72. margin: 0 auto;
  73. color: #fff;
  74. font-weight: 400;
  75. font-size: .2rem;
  76. /* line-height: .5rem; */
  77. text-align: center
  78. }
  79. thead th {
  80. font-size: 0.2125rem;
  81. line-height: 0.5rem;
  82. font-weight: 400
  83. }
  84. table tr th {
  85. background: rgba(3, 64, 128, .4);
  86. /* padding: .0625rem; */
  87. }
  88. table tr td {
  89. padding: .0625rem;
  90. line-height: 1.5
  91. }
  92. table tr:first-child th:first-child {
  93. border-top-left-radius: 12px;
  94. border-bottom-left-radius: 12px
  95. }
  96. table tr:first-child th:last-child {
  97. border-top-right-radius: 12px;
  98. border-bottom-right-radius: 12px
  99. }
  100. .map {
  101. position: relative;
  102. height: 7.55rem;
  103. margin-bottom: .287rem;
  104. background-size: 90% 90%;
  105. background-position: bottom center;
  106. /*background-image: url(../images/store.png);*/
  107. background-repeat: no-repeat;
  108. opacity: .5
  109. }
  110. .map .chart {
  111. position: absolute;
  112. top: 0;
  113. left: 0;
  114. z-index: 5;
  115. height: 10.125rem;
  116. width: 100%
  117. }
  118. /* .map .map1,
  119. .map .map2,
  120. .map .map3 {
  121. position: absolute;
  122. top: 50%;
  123. left: 50%;
  124. transform: translate(-50%, -50%);
  125. width: 6.475rem;
  126. height: 6.475rem;
  127. background: url(../images/map.png) no-repeat;
  128. background-size: 100% 100%;
  129. opacity: .3
  130. }
  131. .map .map2 {
  132. width: 8.0375rem;
  133. height: 8.0375rem;
  134. background-image: url(../images/lbx.png);
  135. opacity: .6;
  136. animation: rotate 15s linear infinite;
  137. z-index: 2
  138. }
  139. .map .map3 {
  140. width: 7.075rem;
  141. height: 7.075rem;
  142. background-image: url(../images/jt.png);
  143. animation: rotate1 10s linear infinite
  144. } */
  145. @keyframes rotate {
  146. from {
  147. transform: translate(-50%, -50%) rotate(0)
  148. }
  149. to {
  150. transform: translate(-50%, -50%) rotate(360deg)
  151. }
  152. }
  153. @keyframes rotate1 {
  154. from {
  155. transform: translate(-50%, -50%) rotate(0)
  156. }
  157. to {
  158. transform: translate(-50%, -50%) rotate(-360deg)
  159. }
  160. }
  161. .panel.pie-bar {
  162. height: 7.55rem;
  163. background-image: url(../images/pie-bar-bg.png)
  164. }
  165. .panel.line {
  166. height: 4.05rem;
  167. background-image: url(../images/line-bg.png)
  168. }
  169. .panel.right-top {
  170. height: 5.425rem;
  171. background-image: url(../images/right-top-bg.png)
  172. }
  173. .panel.right-top .chart {
  174. height: 3.4rem
  175. }
  176. .pie-bar-bottom,
  177. .pie-bar-top {
  178. height: 3.438rem;
  179. width: 100%;
  180. position: relative
  181. }
  182. .pie-bar-top .chart {
  183. height: 100%
  184. }
  185. .pie-bar-bottom .chart {
  186. height: 90%
  187. }
  188. .line .chart {
  189. height: 90%
  190. }
  191. .title-btn {
  192. color: #fff;
  193. width: 1.75rem;
  194. line-height: .4rem;
  195. background: rgba(0, 130, 255, .4);
  196. border: 2px solid #0082ff;
  197. border-radius: 10px;
  198. text-align: center;
  199. font-size: .25rem;
  200. margin: .125rem auto
  201. }
  202. .total-squares {
  203. margin: .175rem auto;
  204. text-align: center
  205. }
  206. .total-square {
  207. display: inline-block;
  208. width: .55rem;
  209. height: .55rem;
  210. line-height: .55rem;
  211. border: 1px solid rgba(0, 212, 233, .4);
  212. font-size: .375rem;
  213. color: #F6FF00
  214. }
  215. .yq-total {
  216. font-size: .25rem;
  217. color: #00D4E9;
  218. text-align: center
  219. }
  220. .huan {
  221. height: 6.175rem;
  222. background-image: url(../images/right-bottom-bg.png);
  223. /* min-width:380px; */
  224. }
  225. .huan table {
  226. width: 100%;
  227. }
  228. .huan>table {
  229. margin-top: 0.25rem;
  230. }
  231. .huan ul {
  232. margin: 0 0 0 .7rem
  233. }
  234. .huan li {
  235. width: 35%;
  236. text-align: center;
  237. border: 1px solid rgba(0, 212, 233, .4);
  238. display: inline-block;
  239. padding: 0.125rem 0;
  240. }
  241. .huan li {
  242. margin-right: .35rem;
  243. margin-bottom: 0.125rem;
  244. margin-top: 0.1rem
  245. }
  246. .num-huan {
  247. font-size: 0.325rem
  248. }
  249. .des-huan {
  250. max-width: 100%;
  251. font-size: 0.225rem;
  252. color: #02DDF2;
  253. display: inline-block;
  254. white-space: nowrap;
  255. overflow: hidden;
  256. text-overflow: ellipsis
  257. }
  258. .no table {
  259. width: 100%
  260. }
  261. .no table th,
  262. .no table td {
  263. border-bottom: 1px solid rgba(0, 212, 233, .1);
  264. }
  265. .no tr td:first-child,
  266. .no tr th:first-child {
  267. width: 1rem
  268. }
  269. .no tr td:nth-child(2),
  270. .no tr th:nth-child(2) {
  271. width: 2.3rem
  272. }
  273. .no tr td:nth-child(3),
  274. .no tr th:nth-child(3) {
  275. width: 1rem
  276. }
  277. .no tr td:nth-child(4),
  278. .no tr th:nth-child(4) {
  279. width: 5rem
  280. }
  281. .no tr td:nth-child(5),
  282. .no tr th:nth-child(5) {
  283. width: 1.5rem
  284. }