style.css 24 KB

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