style.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598
  1. /** 初始化 **/
  2. html,
  3. body {
  4. width: 100%;
  5. height: 100%;
  6. }
  7. body,
  8. div,
  9. dl,
  10. dt,
  11. dd,
  12. ul,
  13. ol,
  14. li,
  15. h1,
  16. h2,
  17. h3,
  18. h4,
  19. h5,
  20. h6,
  21. input,
  22. button,
  23. textarea,
  24. p,
  25. blockquote,
  26. th,
  27. td,
  28. form,
  29. pre {
  30. margin: 0;
  31. padding: 0;
  32. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  33. color: #333;
  34. }
  35. body {
  36. -webkit-font-feature-settings: 'kern' 1;
  37. -moz-font-feature-settings: 'kern' 1;
  38. -o-font-feature-settings: 'kern' 1;
  39. text-rendering: geometricPrecision;
  40. font-family: "Microsoft YaHei";
  41. }
  42. a:active,
  43. a:hover {
  44. outline: 0
  45. }
  46. img {
  47. display: inline-block;
  48. border: none;
  49. vertical-align: middle;
  50. }
  51. li {
  52. list-style: none;
  53. }
  54. table {
  55. border-collapse: collapse;
  56. border-spacing: 0;
  57. }
  58. h1,
  59. h2,
  60. h3 {
  61. font-size: 14px;
  62. font-weight: 400;
  63. }
  64. h4,
  65. h5,
  66. h6 {
  67. font-size: 100%;
  68. font-weight: 400;
  69. }
  70. button,
  71. input,
  72. select,
  73. textarea {
  74. font-size: 100%;
  75. }
  76. input,
  77. button,
  78. textarea,
  79. select,
  80. optgroup,
  81. option {
  82. font-family: inherit;
  83. font-size: inherit;
  84. font-style: inherit;
  85. font-weight: inherit;
  86. outline: 0;
  87. }
  88. pre {
  89. white-space: pre-wrap;
  90. white-space: -moz-pre-wrap;
  91. white-space: -pre-wrap;
  92. white-space: -o-pre-wrap;
  93. word-wrap: break-word;
  94. }
  95. /** 滚动条 **/
  96. ::-webkit-scrollbar {
  97. width: 5px;
  98. height: 10px;
  99. }
  100. ::-webkit-scrollbar-button:vertical {
  101. display: none;
  102. }
  103. ::-webkit-scrollbar-track,
  104. ::-webkit-scrollbar-corner {
  105. background-color: rgba(14, 148, 234, 0.2);
  106. }
  107. ::-webkit-scrollbar-thumb {
  108. border-radius: 0;
  109. background-color: rgba(0, 0, 0, .3);
  110. }
  111. ::-webkit-scrollbar-thumb:vertical:hover {
  112. background-color: rgba(0, 0, 0, .35);
  113. }
  114. ::-webkit-scrollbar-thumb:vertical:active {
  115. background-color: rgba(0, 0, 0, .38);
  116. }
  117. /*下拉框*/
  118. .select {
  119. width: 2.1rem;
  120. height: 0.8rem;
  121. position: relative;
  122. font-size: 0.18rem;
  123. color: #cdddf7;
  124. outline: none;
  125. }
  126. .select p{}
  127. .select-div {
  128. box-sizing: border-box;
  129. width: 1.6rem;
  130. height: 0.4rem;
  131. line-height: 0.4rem;
  132. border: 1px solid #0E94EA;
  133. background: url(../images/arrow.png) 95% center no-repeat;
  134. padding-left: 10px;
  135. cursor: default;
  136. position: absolute;
  137. top: 0;
  138. left: 0;
  139. color: #cdddf7;
  140. }
  141. .select-ul {
  142. position: absolute;
  143. width: 1.6rem;
  144. top: 0.5rem;
  145. left: 0;
  146. z-index: 10;
  147. display: none;
  148. }
  149. .select-ul.company {
  150. height: 1.2rem;
  151. overflow-y: auto;
  152. }
  153. .select-ul>li {
  154. height: 0.4rem;
  155. line-height: 0.4rem;
  156. padding-left: 10px;
  157. box-sizing: border-box;
  158. background-color: rgba(14, 148, 234, 0.2);
  159. cursor: default;
  160. color: #cdddf7;
  161. }
  162. .select-ul>li.active,
  163. .select-ul>li:hover {
  164. color: white;
  165. background: #0e94eb;
  166. }
  167. .select-ul>li {
  168. width: 1.6rem;
  169. }
  170. .data-box {
  171. width: 4.9rem;
  172. margin: auto;
  173. top: 0.42rem;
  174. bottom: 0;
  175. left: 0;
  176. right: 0;
  177. }
  178. .chart-box {
  179. position: absolute;
  180. top: 0.42rem;
  181. bottom: 0;
  182. width: 90%;
  183. margin: auto;
  184. left: 0;
  185. right: 0;
  186. height: auto;
  187. }
  188. .container-flex {
  189. width: 100%;
  190. height: 100%;
  191. background: url(../images/index_bg.png) left top no-repeat;
  192. background-size: 100% 100%;
  193. display: flex;
  194. flex-flow: row nowrap;
  195. justify-content: center;
  196. outline: none;
  197. }
  198. .box-left {
  199. width: 28%;
  200. height: 100%;
  201. background: url(../images/line_img.png) top right repeat-y;
  202. }
  203. .left-top {
  204. width: 100%;
  205. height: 20.4%;
  206. position: relative;
  207. }
  208. .left-top>.current-num {
  209. width: 4.9rem;
  210. height: 1.8rem;
  211. position: absolute;
  212. margin: auto;
  213. top: 0;
  214. left: 0;
  215. bottom: 0;
  216. right: 0;
  217. background: url(../images/border_bg01.png) top left no-repeat;
  218. background-size: 100% 100%;
  219. }
  220. .current-num>div {
  221. width: 100%;
  222. height: 0.8rem;
  223. line-height: 0.8rem;
  224. text-align: center;
  225. background: url(../images/title_bg01.png) center center no-repeat;
  226. font-size: 0.2rem;
  227. color: #0e94ea;
  228. background-size: 1.8rem 0.25rem;
  229. font-weight: 900;
  230. }
  231. .current-num>p {
  232. font-size: 0.46rem;
  233. text-align: center;
  234. color: white;
  235. }
  236. .left-center {
  237. width: 100%;
  238. height: 37%;
  239. position: relative;
  240. }
  241. .pie-chart>div {
  242. float: left;
  243. width: 50%;
  244. height: 100%;
  245. position: relative;
  246. }
  247. .pie-data {
  248. height: 2.25rem;
  249. position: absolute;
  250. margin: auto;
  251. top: 0;
  252. left: 0;
  253. width: 100%;
  254. bottom: 0;
  255. display: flex;
  256. align-items: center;
  257. flex-flow: row wrap;
  258. overflow-y: auto;
  259. padding-right: 5px;
  260. }
  261. .pie-data p {
  262. width: 100%;
  263. height: 0.45rem;
  264. line-height: 0.45rem;
  265. font-size: 0.2rem;
  266. color: #cdddf7;
  267. display: flex;
  268. flex-flow: row nowrap;
  269. justify-content: space-around;
  270. cursor: default;
  271. }
  272. .pie-data p>span {
  273. width: 0;
  274. flex-grow: 1;
  275. margin: 0 5px;
  276. text-align: left;
  277. overflow: hidden;
  278. text-overflow: ellipsis;
  279. white-space: nowrap;
  280. }
  281. .pie-data p>.pie-number {
  282. flex-grow: 2;
  283. }
  284. .legend {
  285. display: inline-block;
  286. width: 0.2rem;
  287. height: 0.16rem;
  288. line-height: 0.2rem;
  289. border-radius: 2px;
  290. background: white;
  291. }
  292. .left-bottom {
  293. width: 100%;
  294. height: 42.6%;
  295. position: relative;
  296. }
  297. .filter-con {
  298. width: 100%;
  299. height: 0.4rem;
  300. position: absolute;
  301. float: left;
  302. top: 10px;
  303. left: 0;
  304. display: none;
  305. flex-flow: row nowrap;
  306. justify-content: space-between;
  307. /* visibility: hidden;*/
  308. z-index: 999;
  309. }
  310. .pop-filter {
  311. width: 5.2rem;
  312. top: 1.1rem;
  313. left: 0.5rem;
  314. }
  315. .pop-filters {
  316. width: 5.2rem;
  317. top: 1.1rem;
  318. left: 0.5rem;
  319. }
  320. .gd-map {
  321. width: 100%;
  322. height: 90%;
  323. }
  324. .box-center {
  325. width: 44%;
  326. height: 100%;
  327. /* background: green;*/
  328. }
  329. .center-top {
  330. width: 100%;
  331. height: 8.8%;
  332. position: relative;
  333. top: 0;
  334. left: 0;
  335. background: url(../images/title_border.png) bottom center no-repeat;
  336. display: flex;
  337. justify-content: center;
  338. align-items: center;
  339. }
  340. .center-top>h1 {
  341. color: #cdddf7;
  342. font-size: 0.35rem;
  343. font-weight: 900;
  344. letter-spacing: 5px;
  345. }
  346. .center-center {
  347. width: 100%;
  348. height: 15.3%;
  349. display: flex;
  350. flex-flow: row nowrap;
  351. justify-content: center;
  352. align-items: center;
  353. }
  354. .weather-box {
  355. width: 4.1rem;
  356. height: 1.1rem;
  357. border: 1px solid #0E94EA;
  358. display: flex;
  359. flex-flow: row nowrap;
  360. justify-content: space-around;
  361. align-items: center;
  362. }
  363. .weather-box>.data {
  364. width: 2.19rem;
  365. height: 0.65rem;
  366. border-right: 2px solid #cdddf7;
  367. }
  368. .data>p {
  369. font-size: 0.16rem;
  370. margin: 0 5px;
  371. color: #cdddf7;
  372. text-align: center;
  373. margin: 0;
  374. }
  375. .data>p>span {
  376. margin: 0 5px;
  377. }
  378. .data>p.time {
  379. font-size: 0.42rem;
  380. height: 0.42rem;
  381. line-height: 0.42rem;
  382. }
  383. .weather-box>.weather {
  384. width: 1.8rem;
  385. height: 0.65rem;
  386. display: flex;
  387. flex-flow: row nowrap;
  388. justify-content: space-around;
  389. align-items: center;
  390. margin-left: 10px;
  391. }
  392. .weather>img {
  393. height: 100%;
  394. }
  395. .weather>div {
  396. width: 0.8rem;
  397. height: 100%;
  398. }
  399. .weather>div>p {
  400. font-size: 0.12rem;
  401. color: #cdddf7;
  402. overflow: hidden;
  403. text-overflow: ellipsis;
  404. white-space: nowrap;
  405. height: 0.24rem;
  406. line-height: 0.24rem;
  407. }
  408. .weather>div>p.active {
  409. color: white;
  410. font-size: 0.16rem;
  411. }
  412. .select-box {
  413. width: 3.4rem;
  414. height: 1.1rem;
  415. box-sizing: border-box;
  416. position: relative;
  417. }
  418. .adddiv{
  419. width:100px;
  420. height:100px;
  421. background: red;
  422. }
  423. .select-pop {
  424. width: 1.6rem;
  425. }
  426. .select-box>ul,
  427. .select-pop>ul {
  428. width: 1.6rem;
  429. height: 0.4rem;
  430. font-size: 0.18rem;
  431. overflow: hidden;
  432. border: 1px solid #0E94EA;
  433. position: absolute;
  434. top: 0;
  435. left: 0;
  436. }
  437. .select-box>ul>li,
  438. .select-pop>ul>li {
  439. width: 0.8rem;
  440. height: 0.4rem;
  441. line-height: 0.4rem;
  442. text-align: center;
  443. float: left;
  444. color: #cdddf7;
  445. cursor: pointer;
  446. }
  447. .select-box>ul>li.active,
  448. .select-pop>ul>li.active {
  449. background: #0e94eb;
  450. color: white;
  451. }
  452. .select-box>div {
  453. width: 100%;
  454. height: 0.4rem;
  455. position: absolute;
  456. bottom: 0;
  457. left: 0;
  458. display: flex;
  459. flex-flow: row nowrap;
  460. justify-content: space-between;
  461. }
  462. .center-center>img {
  463. width: 0.13rem;
  464. height: 1.1rem;
  465. margin: 0 0.2rem;
  466. }
  467. .center-bottom {
  468. width: 100%;
  469. height: 50.9%;
  470. position: relative;
  471. }
  472. .center-bottom-two {
  473. width: 100%;
  474. height: 25%;
  475. position: relative;
  476. }
  477. .center-bottom>.city-data {
  478. width: 8.05rem;
  479. height: 100%;
  480. margin: auto;
  481. position: absolute;
  482. }
  483. .city-box {
  484. width: 1.8rem;
  485. /* height: 1.9rem;*/
  486. border: 1px solid #0e94ea;
  487. position: absolute;
  488. top: 0;
  489. left: 0;
  490. }
  491. .city-box>p {
  492. height: 0.4rem;
  493. line-height: 0.4rem;
  494. text-align: center;
  495. border-bottom: 1px solid #0e94ea;
  496. font-size: 0.18rem;
  497. color: #cdddf7;
  498. box-sizing: border-box;
  499. }
  500. .city-box>p>span {
  501. color: #d09d26;
  502. }
  503. .city-btn {
  504. width: 100%;
  505. /* height: 0.5rem;*/
  506. display: flex;
  507. flex-flow: row wrap;
  508. align-items: center;
  509. justify-content: space-around;
  510. overflow: hidden;
  511. }
  512. .city-btn>li,
  513. .city-div>li {
  514. font-size: 0.14rem;
  515. height: 0.2rem;
  516. line-height: 0.2rem;
  517. float: left;
  518. color: white;
  519. margin: 0.02rem 0;
  520. padding: 0 0.03rem;
  521. cursor: pointer;
  522. }
  523. .city-btn>li.active,
  524. .city-btn>li:hover,
  525. .city-div>li.active,
  526. .city-div>li:hover {
  527. background: #0e94ea;
  528. }
  529. .city-div {
  530. width: 100%;
  531. height: 1rem;
  532. display: flex;
  533. flex-flow: row wrap;
  534. /* align-items: center;*/
  535. justify-content: flex-start;
  536. overflow-y: auto;
  537. }
  538. .city-div>li {
  539. padding: 0 0.05rem;
  540. text-align: center;
  541. }
  542. .ranking-box {
  543. width: 2.5rem;
  544. border: 1px solid #0e94ea;
  545. position: absolute;
  546. left: 0;
  547. bottom: 20px;
  548. background-color: rgba(14, 148, 235, 0.102);
  549. }
  550. .ranking-box>li {
  551. width: 100%;
  552. height: 0.3rem;
  553. line-height: 0.3rem;
  554. display: flex;
  555. flex-flow: row nowrap;
  556. justify-content: space-around;
  557. font-size: 0.18rem;
  558. color: rgba(255, 255, 255, .7);
  559. }
  560. .ranking-box>li>span {
  561. width: 0;
  562. flex-grow: 1;
  563. text-align: center;
  564. }
  565. .ranking-box>li>p {
  566. width: 0;
  567. flex-grow: 2;
  568. color: rgba(255, 255, 255, .7);
  569. text-align: center;
  570. overflow: hidden;
  571. text-overflow: ellipsis;
  572. white-space: nowrap;
  573. }
  574. .ranking-box>li:nth-child(2n+1) {
  575. background: rgba(14, 148, 235, 0.102);
  576. }
  577. .ranking-box>li:first-child {
  578. height: 0.4rem;
  579. line-height: 0.4rem;
  580. font-size: 0.2rem;
  581. background: rgba(14, 148, 235, 0.8);
  582. }
  583. .ranking-box>li:first-child>p {
  584. color: white;
  585. }
  586. .box-right {
  587. width: 28%;
  588. height: 100%;
  589. background: url(../images/line_img.png) top left repeat-y;
  590. }
  591. .right-top {
  592. width: 100%;
  593. height: 41%;
  594. box-sizing: border-box;
  595. padding-top: 0.2rem;
  596. position: relative;
  597. }
  598. .right-top>.data-box,
  599. .right-top>.chart-box {
  600. top: 1rem;
  601. }
  602. .table1 {
  603. font-size: 0.16rem;
  604. border: 1px solid #0e94ea;
  605. border-top: none;
  606. border-right: none;
  607. margin: auto;
  608. }
  609. .table1 tr {
  610. background: rgba(14, 148, 234, 0.1);
  611. }
  612. .table1 tr.bg-color {
  613. background: #162539;
  614. }
  615. .table1 tr td {
  616. height: 0.3rem;
  617. line-height: 0.3rem;
  618. color: #cdddf7;
  619. text-align: left;
  620. }
  621. .table1 tr td.data-table {
  622. color: #fff;
  623. }
  624. .table1 tr td:nth-child(2n+1) {
  625. width: 1rem;
  626. }
  627. .table1 tr td:nth-child(2n) {
  628. width: 1.4rem;
  629. }
  630. .table2 {
  631. font-size: 0.16rem;
  632. border: 1px solid #0e94ea;
  633. border-top: none;
  634. border-right: none;
  635. margin: auto;
  636. }
  637. .table2 tr {
  638. border-top: 1px solid #0e94ea;
  639. background: rgba(14, 148, 234, 0.1);
  640. }
  641. .table2 tr.bg-color {
  642. background: rgba(14, 148, 234, 0.2);
  643. }
  644. .table2 tr td {
  645. border-right: 1px solid #0e94ea;
  646. height: 0.6rem;
  647. line-height: 0.6rem;
  648. color: #cdddf7;
  649. text-align: center;
  650. }
  651. .table2tr td.data-table {
  652. color: #fff;
  653. }
  654. .table2 tr td:nth-child(2n+1) {
  655. width: 1.8rem;
  656. }
  657. .table2 tr td:nth-child(2n) {
  658. width: 2.5rem;
  659. }
  660. .right-center {
  661. width: 100%;
  662. height: 29%;
  663. position: relative;
  664. }
  665. .time-box {
  666. width: 3.9rem;
  667. height: 0.4rem;
  668. position: absolute;
  669. top: 5px;
  670. right: 0;
  671. overflow: hidden;
  672. z-index: 10;
  673. display: none;
  674. }
  675. .time-div {
  676. float: left;
  677. width: 1.8rem;
  678. height: 0.4rem;
  679. position: relative;
  680. }
  681. .time-div.end {
  682. float: right;
  683. }
  684. .time-div>img {
  685. width: 0.2rem;
  686. height: 0.2rem;
  687. margin: auto;
  688. position: absolute;
  689. top: 0;
  690. bottom: 0;
  691. right: 0.1rem;
  692. }
  693. .time-input {
  694. width: 1.8rem;
  695. height: 0.4rem;
  696. box-sizing: border-box;
  697. border: 1px solid #0E94EA;
  698. font-size: 0.16rem;
  699. background: rgba(14, 148, 234, 0.2);
  700. position: absolute;
  701. top: 0;
  702. left: 0;
  703. color: #cdddf7;
  704. padding-left: 10px;
  705. }
  706. .data-box>.data-number {
  707. width: 4.9rem;
  708. height: 2.3rem;
  709. position: absolute;
  710. margin: auto;
  711. top: 0;
  712. left: 0;
  713. right: 0;
  714. bottom: 0;
  715. background: url(../images/bg_img03.png) top left no-repeat;
  716. background-size: 100% 100%;
  717. color: #cdddf7;
  718. font-size: 0.4rem;
  719. line-height: 2.3rem;
  720. text-align: center;
  721. }
  722. .right-bottom {
  723. width: 100%;
  724. height: 30%;
  725. position: relative;
  726. }
  727. .data-box>.settings-box {
  728. box-sizing: border-box;
  729. width: 4.9rem;
  730. height: 2.38rem;
  731. position: absolute;
  732. margin: auto;
  733. top: 0;
  734. left: 0;
  735. right: 0;
  736. bottom: 0;
  737. background-color: rgba(14, 148, 234, 0.2);
  738. border: 1px solid #0E94EA;
  739. color: white;
  740. font-size: 0.18rem;
  741. overflow: hidden;
  742. }
  743. .settings-box>p {
  744. color: #cdddf7;
  745. margin-bottom: 0.46rem;
  746. padding-left: 0.4rem;
  747. height: 0.22rem;
  748. line-height: 0.22rem;
  749. }
  750. .settings-box>p:first-child {
  751. padding-top: 0.46rem;
  752. }
  753. .settings-box>div {
  754. display: flex;
  755. flex-flow: row nowrap;
  756. align-items: center;
  757. justify-content: center;
  758. padding-top: 0.2rem;
  759. }
  760. .settings-box>div>p {
  761. width: 2.9rem;
  762. font-size: 0.14rem;
  763. padding: 0;
  764. color: #cdddf7;
  765. }
  766. .settings-box>p>img {
  767. width: 0.2rem;
  768. height: 0.22rem;
  769. margin-right: 5px;
  770. }
  771. .settings-box>p>span,
  772. .settings-box>div>p>span {
  773. color: white;
  774. margin: 0 0.15rem;
  775. }
  776. .settings-box>div>img {
  777. height: 0.2rem;
  778. margin: 0 0.05rem;
  779. }
  780. .config {
  781. text-decoration: underline;
  782. cursor: pointer;
  783. }
  784. .settings-box>form label {
  785. color: #cdddf7;
  786. margin-right: 10px;
  787. }
  788. .four-f {
  789. letter-spacing: 0.045rem;
  790. }
  791. .settings-box>form input {
  792. width: 1.2rem;
  793. height: 0.4rem;
  794. border: 1px solid #0E94EA;
  795. background: rgba(14, 148, 235, 0.2);
  796. color: white;
  797. padding-left: 0.1rem;
  798. }
  799. .settings-box>form>div {
  800. width: 94%;
  801. margin: auto;
  802. }
  803. .set-ter {
  804. height: 0.64rem;
  805. line-height: 0.64rem;
  806. }
  807. .set-time {
  808. height: 0.4rem;
  809. width: 3.56rem;
  810. padding-left: 1.2rem;
  811. }
  812. .set-time>.time-div,
  813. .set-time>.time-div>input {
  814. width: 1.6rem;
  815. }
  816. .end-1 {
  817. margin-left: 0.1rem;
  818. }
  819. .set-peo {
  820. height: 0.70rem;
  821. line-height: 0.7rem;
  822. }
  823. .settings-box>.set-btn {
  824. height: 0.64rem;
  825. line-height: 0.64rem;
  826. text-align: center;
  827. padding-top: 0;
  828. }
  829. .set-btn>button {
  830. width: 0.9rem;
  831. height: 0.4rem;
  832. border: 1px solid #0E94EA;
  833. background: rgba(14, 148, 235, 0.2);
  834. color: white;
  835. margin: 0 5px;
  836. cursor: pointer;
  837. }
  838. .settings-box>.close-icon {
  839. display: block;
  840. width: 0.16rem;
  841. height: 0.16rem;
  842. position: absolute;
  843. top: 5px;
  844. right: 5px;
  845. background: url(../images/close_icon.png) top left no-repeat;
  846. background-size: 100% 100%;
  847. cursor: pointer;
  848. }
  849. .settings-box>.kf {
  850. padding-top: 0.8rem;
  851. line-height: 0.3rem;
  852. }
  853. .title-box {
  854. width: 4.9rem;
  855. height: 0.42rem;
  856. background: url(../images/box_title.png) top left no-repeat;
  857. background-size: 100% 100%;
  858. margin: auto;
  859. display: flex;
  860. flex-flow: row nowrap;
  861. align-items: center;
  862. position: relative;
  863. }
  864. .title-box>h6,
  865. .title-box>p {
  866. font-size: 0.2rem;
  867. color: white;
  868. height: 0.42rem;
  869. line-height: 0.42rem;
  870. margin-left: 0.4rem;
  871. }
  872. .title-box>p>span {
  873. cursor: pointer;
  874. color: rgba(255, 255, 255, .6);
  875. }
  876. .title-box>p>span.active {
  877. color: rgba(255, 255, 255, 1);
  878. }
  879. .line-img {
  880. width: 1px;
  881. height: 0.2rem;
  882. margin: 0 10px;
  883. }
  884. .title-box>.line-img {
  885. position: absolute;
  886. right: 1.3rem;
  887. }
  888. .title-box>button {
  889. font-size: 0.18rem;
  890. border: none;
  891. background: transparent;
  892. color: #cdddf7;
  893. height: 0.42rem;
  894. position: absolute;
  895. right: 0.6rem;
  896. display: flex;
  897. flex-flow: row nowrap;
  898. align-items: center;
  899. cursor: pointer;
  900. }
  901. .title-box>button:hover {
  902. color: white;
  903. }
  904. .title-box>button>img {
  905. width: 0.2rem;
  906. height: 0.2rem;
  907. margin-right: 5px;
  908. }
  909. .unit {
  910. font-size: 0.16rem;
  911. height: 0.4rem;
  912. color: #cdddf7;
  913. text-align: right;
  914. padding-right: 0.3rem;
  915. line-height: 0.4rem;
  916. }
  917. .container {
  918. width: 100%;
  919. height: 100%;
  920. background: rgba(0, 0, 0, .7);
  921. position: absolute;
  922. top: 0;
  923. left: 0;
  924. display: flex;
  925. visibility: hidden;
  926. justify-content: center;
  927. align-items: center;
  928. }
  929. .pop-up {
  930. width: 70%;
  931. height: 80%;
  932. background: url(../images/popUP_bg.png) top left no-repeat;
  933. background-size: 100% 100%;
  934. position: absolute;
  935. padding: 0.2rem 0.5rem;
  936. visibility: hidden;
  937. }
  938. .pop-up .title {
  939. width: 100%;
  940. height: 0.9rem;
  941. line-height: 0.9rem;
  942. font-size: 0.3rem;
  943. color: white;
  944. padding-left: 0.2rem;
  945. background: url(../images/title_line.png) center left no-repeat;
  946. }
  947. .pop-up .pie-chart {
  948. width: 76%;
  949. height: 80%;
  950. }
  951. .pop-up .pie-data {
  952. width: 80%;
  953. }
  954. .pop-chart {
  955. width: 80%;
  956. top: 1.5rem;
  957. left: 2.3rem;
  958. bottom: 0.5rem;
  959. }
  960. .pop-charts {
  961. width: 60%;
  962. top: 0.45rem;
  963. left: 2.3rem;
  964. bottom: 0.5rem;
  965. }
  966. .pop-up .pie-data p {
  967. height: 0.6rem;
  968. line-height: 0.6rem;
  969. font-size: 0.28rem;
  970. }
  971. .pop-up .pie-data .legend {
  972. width: 0.38rem;
  973. height: 0.28rem;
  974. vertical-align: middle;
  975. }
  976. .close-pop {
  977. display: inline-block;
  978. position: absolute;
  979. top: 0.3rem;
  980. right: 0.5rem;
  981. width: 13px;
  982. height: 0.9rem;
  983. background: url(../images/close.png) center left no-repeat;
  984. background-size: 13px 13px;
  985. cursor: pointer;
  986. z-index: 99;
  987. }
  988. .pop-data {
  989. width: 2rem;
  990. position: absolute;
  991. top: 2.25rem;
  992. bottom: 0.5rem;
  993. left: 0.5rem;
  994. }
  995. .cont-div {
  996. width: 100%;
  997. height: 100%;
  998. position: absolute;
  999. top: 0;
  1000. left: 0;
  1001. padding: 0.2rem 0.5rem;
  1002. visibility: hidden;
  1003. }
  1004. .pop-data-box {
  1005. width: 60%;
  1006. height: 50%;
  1007. background: url(../images/bg_img04.png) top left no-repeat;
  1008. background-size: 100% 100%;
  1009. position: absolute;
  1010. margin: 0 auto;
  1011. bottom: 20%;
  1012. left: 0;
  1013. right: 0;
  1014. display: flex;
  1015. justify-content: center;
  1016. align-items: center;
  1017. color: #cdddf7;
  1018. font-size: 0.88rem;
  1019. }
  1020. .pop-data-box p {
  1021. color: #cdddf7;
  1022. }
  1023. .btn-class {
  1024. height: 0.4rem;
  1025. padding: 0 15px;
  1026. border: 1px solid #0E94EA;
  1027. font-size: 0.18rem;
  1028. background: transparent;
  1029. color: #cdddf7;
  1030. position: absolute;
  1031. top: 1.7rem;
  1032. left: 0.5rem;
  1033. display: flex;
  1034. flex-flow: row nowrap;
  1035. justify-content: center;
  1036. align-items: center;
  1037. cursor: pointer;
  1038. }
  1039. .btn-class>img {
  1040. width: 0.18rem;
  1041. height: 0.18rem;
  1042. }
  1043. .enlarge-btn {
  1044. width: 0.36rem;
  1045. height: 0.36rem;
  1046. background: url(../images/menu_btn.png) top left no-repeat;
  1047. background-size: 100% 100%;
  1048. float: left;
  1049. border: none;
  1050. cursor: pointer;
  1051. }
  1052. .enlarge-btn:hover,
  1053. .enlarge-btn.active {
  1054. background: url(../images/menu_on.png) top left no-repeat;
  1055. background-size: 100% 100%;
  1056. }
  1057. .enlarge-box {
  1058. height: 0.36rem;
  1059. position: absolute;
  1060. bottom: 20px;
  1061. left: 3rem;
  1062. overflow: hidden;
  1063. }
  1064. .modal-btn {
  1065. float: left;
  1066. display: none;
  1067. }
  1068. .modal-btn>li {
  1069. float: left;
  1070. width: 0.36rem;
  1071. height: 0.36rem;
  1072. line-height: 0.36rem;
  1073. box-sizing: border-box;
  1074. border: 1px solid #0E94EA;
  1075. border-left: none;
  1076. color: #cdddf7;
  1077. font-size: 0.18rem;
  1078. text-align: center;
  1079. cursor: default;
  1080. position: relative;
  1081. }
  1082. .modal-btn>li>div {
  1083. position: absolute;
  1084. top: 0;
  1085. left: 0;
  1086. width: 0.36rem;
  1087. height: 0.36rem;
  1088. background: url(../images/fangda.png) top left no-repeat;
  1089. background-size: 100% 100%;
  1090. display: none;
  1091. }
  1092. .modal-btn>li:hover>div {
  1093. display: block;
  1094. }
  1095. .pop-time .time-box {
  1096. top: 1.28rem;
  1097. left: -3rem;
  1098. }
  1099. .set-div {
  1100. width: 9.8rem;
  1101. height: 88%;
  1102. margin: 0 auto;
  1103. overflow: hidden;
  1104. overflow-y: auto;
  1105. font-size: 0.18rem;
  1106. }
  1107. .four-f {
  1108. letter-spacing: 0.045rem;
  1109. }
  1110. .set-box {
  1111. height: 0.63rem;
  1112. display: flex;
  1113. flex-flow: row nowrap;
  1114. align-items: center;
  1115. }
  1116. .set-box>label {
  1117. color: #cdddf7;
  1118. margin-right: 10px;
  1119. float: left;
  1120. }
  1121. .set-box>input,
  1122. .pages-div>input {
  1123. width: 0.8rem;
  1124. height: 0.4rem;
  1125. border: 1px solid #0E94EA;
  1126. background: rgba(14, 148, 235, 0.2);
  1127. color: white;
  1128. padding-left: 0.1rem;
  1129. }
  1130. .set-box>.input-edit {
  1131. width: 4.3rem;
  1132. }
  1133. .pages-div>input {
  1134. background: transparent;
  1135. margin: 0 0.2rem;
  1136. }
  1137. .set-box>input:nth-child(2n+1) {
  1138. margin: 0 0.07rem;
  1139. }
  1140. .set-box>button,
  1141. .pages-div>button {
  1142. width: 0.36rem;
  1143. height: 0.36rem;
  1144. line-height: 0.38rem;
  1145. text-align: center;
  1146. background-color: transparent;
  1147. border: 1px solid #0E94EA;
  1148. color: white;
  1149. padding-left: 0.1rem;
  1150. cursor: pointer;
  1151. }
  1152. .plus {
  1153. margin: 0 0.07rem;
  1154. background: url(../images/plus.png) center center no-repeat;
  1155. background-size: 0.18rem;
  1156. }
  1157. .mineus {
  1158. background: url(../images/jian.png) center center no-repeat;
  1159. background-size: 0.18rem;
  1160. margin-left: 0.1rem;
  1161. }
  1162. .set-box>.add-btn {
  1163. width: 1rem;
  1164. margin-left: 0.4rem;
  1165. height: 0.4rem;
  1166. display: flex;
  1167. flex-flow: row nowrap;
  1168. align-items: center;
  1169. justify-content: center;
  1170. }
  1171. .add-btn>img {
  1172. width: 0.18rem;
  1173. }
  1174. .table3 {
  1175. font-size: 0.16rem;
  1176. border: 1px solid #0e94ea;
  1177. border-top: none;
  1178. margin: 10px auto;
  1179. }
  1180. .table3 tr {
  1181. border-top: 1px solid #0e94ea;
  1182. }
  1183. .table4 {
  1184. font-size: 0.16rem;
  1185. border: 1px solid #0e94ea;
  1186. border-top: none;
  1187. margin: 10px auto;
  1188. }
  1189. .table4 tr {
  1190. border-top: 1px solid #0e94ea;
  1191. background: rgba(14, 148, 234, 0.1);
  1192. }
  1193. .table3 thead tr {
  1194. background: rgba(14, 148, 234, 0.4);
  1195. }
  1196. .table3 tr.bg-color {
  1197. background: rgba(14, 148, 234, 0.2);
  1198. }
  1199. .table3 tr td:nth-child(2n+1),
  1200. .table3 tr td:nth-child(2n+1)>p {
  1201. width: 3rem;
  1202. }
  1203. .table3 tr td:nth-child(2n),
  1204. .table3 tr td:nth-child(2n)>p {
  1205. width: 1.8rem;
  1206. }
  1207. .table3 tr td,
  1208. .table3 tr th {
  1209. border-right: 1px solid #0e94ea;
  1210. height: 0.4rem;
  1211. line-height: 0.4rem;
  1212. color: #cdddf7;
  1213. text-align: center;
  1214. }
  1215. .table3 tr td p {
  1216. overflow: hidden;
  1217. text-overflow: ellipsis;
  1218. white-space: nowrap;
  1219. color: #cdddf7;
  1220. }
  1221. .table3 thead tr th {
  1222. border-right: none;
  1223. }
  1224. .pages-div {
  1225. height: 0.63rem;
  1226. display: flex;
  1227. flex-flow: row nowrap;
  1228. justify-content: center;
  1229. align-items: center;
  1230. }
  1231. .prev {
  1232. background: url(../images/prev.png) center center no-repeat;
  1233. background-size: 0.12rem;
  1234. }
  1235. .next {
  1236. background: url(../images/next.png) center center no-repeat;
  1237. background-size: 0.12rem;
  1238. }
  1239. .pages-div p {
  1240. color: white;
  1241. margin: 0 0.1rem;
  1242. }
  1243. .pages-div>.skip {
  1244. width: 0.7rem;
  1245. height: 0.4rem;
  1246. line-height: 0.4rem;
  1247. }
  1248. @media screen and (max-height: 670px) {
  1249. .right-top {
  1250. height: 47%;
  1251. }
  1252. .right-center {
  1253. height: 23%;
  1254. }
  1255. .data-box>.data-number {
  1256. height: 1.65rem;
  1257. line-height: 1.65rem;
  1258. }
  1259. .data-box>.settings-box {
  1260. height: 2rem;
  1261. }
  1262. }
  1263. .edit-div {
  1264. width: 6.5rem;
  1265. height: 2.9rem;
  1266. font-size: 0.18rem;
  1267. position: absolute;
  1268. margin: auto;
  1269. top: 0;
  1270. left: 0;
  1271. right: 0;
  1272. bottom: 0;
  1273. padding: 0 0.4rem;
  1274. border: 1px solid #0e94eb;
  1275. background-color: rgb(20, 32, 48);
  1276. box-shadow: 0 0 10px #cdddf7;
  1277. box-sizing: border-box;
  1278. }
  1279. .edit-div h4 {
  1280. font-size: 0.2rem;
  1281. color: white;
  1282. height: 0.65rem;
  1283. line-height: 0.65rem;
  1284. }
  1285. .edit-box {
  1286. justify-content: flex-end;
  1287. }
  1288. .edit-box>button {
  1289. width: 0.92rem;
  1290. height: 0.4rem;
  1291. line-height: 0.4rem;
  1292. margin: 0 0.17rem;
  1293. }
  1294. .table3 tr td p.edit {
  1295. color: #0e94eb;
  1296. cursor: pointer;
  1297. }
  1298. .table3 tr td p.edit:hover,
  1299. .table3 tr td p.edit.active {
  1300. color: #d09d26;
  1301. }
  1302. .tishi {
  1303. position: absolute;
  1304. margin: auto;
  1305. top: 0.4rem;
  1306. left: 0;
  1307. right: 0;
  1308. width: 4.8rem;
  1309. text-align: center;
  1310. height: 0.4rem;
  1311. line-height: 0.4rem;
  1312. border: 1px solid #d09d26;
  1313. background: rgba(239, 176, 19, 0.2);
  1314. font-size: 0.16rem;
  1315. color: white;
  1316. display: none;
  1317. }
  1318. @media screen and (max-height: 610px) {
  1319. .right-top {
  1320. height: 49%
  1321. }
  1322. .right-center {
  1323. height: 21%;
  1324. }
  1325. .data-box>.data-number {
  1326. height: 1.4rem;
  1327. line-height: 1.4rem;
  1328. }
  1329. .data-box>.settings-box {
  1330. height: 1.6rem;
  1331. }
  1332. .pop-data .ranking-box {
  1333. height: 1.9rem;
  1334. overflow-y: auto;
  1335. }
  1336. }
  1337. /*地图样式*/
  1338. .map_wk{
  1339. margin:0px;
  1340. padding:0px;
  1341. background:url(../images/map_bg.png) no-repeat top;
  1342. background-size:100%;
  1343. height:550px;
  1344. }
  1345. .map_wk img{
  1346. width:40px;
  1347. height:30px;;
  1348. }
  1349. .center_map_zhs{
  1350. position: absolute;
  1351. left:70%;
  1352. top:20px;
  1353. }
  1354. .center_map_pld{
  1355. position: absolute;
  1356. left:45%;
  1357. top:80px;
  1358. }
  1359. .center_map_wfd{
  1360. position: absolute;
  1361. left:25%;
  1362. top:60px;
  1363. }
  1364. .center_map_cxd{
  1365. position: absolute;
  1366. left:9%;
  1367. top:120px;
  1368. }
  1369. .center_map_chx{
  1370. position: absolute;
  1371. left:63%;
  1372. top:240px;
  1373. }
  1374. .center_map_jzq{
  1375. position: absolute;
  1376. left:28%;
  1377. top:240px;
  1378. }
  1379. .center_map_dls{
  1380. position: absolute;
  1381. left:13%;
  1382. top:300px;
  1383. }
  1384. .center_map_lsk{
  1385. position: absolute;
  1386. left:2%;
  1387. top:340px;
  1388. }