style.css 24 KB

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