style.css 24 KB

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