style.css 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362
  1. @charset "utf-8";
  2. body {
  3. position: fixed;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. right: 0;
  8. margin: 0;
  9. padding: 0;
  10. background: #051655;
  11. font-family: 微软雅黑, MicrosoftYahei, sans-serif;
  12. color: #fff;
  13. }
  14. h1, h2, h3, h4, h5, h6, p, ul, ol, pre, table, blockquote, input, button, select, em, textarea {
  15. margin: 0;
  16. font-weight: normal;
  17. margin: 0;
  18. padding: 0;
  19. list-style: none;
  20. font-style: normal;
  21. }
  22. html, body {
  23. font-family: 微软雅黑, MicrosoftYahei, sans-serif;
  24. color: #fff;
  25. background-size: 100% 100%;
  26. background-position: 0 0;
  27. width: 100%;
  28. height: 100%;
  29. background-repeat: no-repeat;
  30. background-color: #0E0F22;
  31. background-image: -webkit-linear-gradient(top, #20427a, #10152b);
  32. background-image: -moz-linear-gradient(top, #20427a, #10152b);
  33. background-image: -ms-linear-gradient(top, #20427a, #10152b);
  34. background-image: -o-linear-gradient(top, #20427a, #10152b);
  35. background-image: linear-gradient(to bottom, #20427a, #10152b);
  36. }
  37. .wpbox {
  38. width: 100%;
  39. height: calc(100% - 10px)
  40. }
  41. .bnt {
  42. height: 9%;
  43. width: 100%;
  44. display: inline-block;
  45. }
  46. .left1 {
  47. width: 18%;
  48. height: calc(100% - 10%);
  49. float: left;
  50. padding-left: 2.2%;
  51. text-align: center;
  52. }
  53. .pleft1 {
  54. width: 18.6%;
  55. float: left;
  56. padding-left: 2.2%;
  57. text-align: center;
  58. }
  59. .puleft {
  60. padding-left: 2.2%;
  61. width: 35.2%;
  62. text-align: center;
  63. height: 100%
  64. }
  65. .puleft2 {
  66. width: 35%;
  67. height: 100%;
  68. padding-left: .4%
  69. }
  70. .mr_right {
  71. width: 25%;
  72. height: 100%
  73. }
  74. .left2 {
  75. width: 18%;
  76. float: left;
  77. height: 100%
  78. }
  79. .mrbox {
  80. float: left;
  81. width: 79%;
  82. height: 100%
  83. }
  84. .mrbox.prbox {
  85. float: left;
  86. width: 60%;
  87. height: 100%
  88. }
  89. .mrbox_bottom {
  90. float: left;
  91. width: 100%;
  92. height: 28%
  93. }
  94. .mrbox_top_midd {
  95. width: 68%;
  96. float: left;
  97. height: 100%;
  98. }
  99. .mrbox_topmidd {
  100. float: left;
  101. width: 76%;
  102. padding-left: .2%;
  103. height: 100%;
  104. }
  105. .amidd_bott, .box {
  106. overflow: hidden;
  107. }
  108. .pmidd_bott {
  109. width: 100%;
  110. height: 57.4%;
  111. }
  112. .mrbox_top_right {
  113. float: right;
  114. width: 29.4%;
  115. padding-right: 1.4%;
  116. height: 100%
  117. }
  118. .mrbox_top {
  119. width: 100%;
  120. height: 62.4%;
  121. }
  122. .hdmrbox_top {
  123. width: 100%;
  124. height: 100%;
  125. }
  126. .lefttime {
  127. background: url(../img/time.png);
  128. background-size: 100% 100%;
  129. background-repeat: no-repeat;
  130. background-position: top center;
  131. width: 84%;
  132. height: 9.3%;
  133. margin-left: 6%
  134. }
  135. .lefttime_text {
  136. padding: 2% 5% 0 5%
  137. }
  138. .lefttime_text li {
  139. font-size: 12px;
  140. color: rgba(255,255,255,.9);
  141. width: 20%;
  142. float: left;
  143. height: 22px;
  144. line-height: 22px;
  145. text-align: center;
  146. border-radius: 4px
  147. }
  148. .lefttime_text li.bg {
  149. background: rgba(0,183,238,.1);
  150. }
  151. .lefttime_text li.active {
  152. background: rgba(0,183,238,.6);
  153. color: #fff;
  154. }
  155. */ .lefttoday {
  156. background:url(../img/left1box.png);
  157. background-repeat: no-repeat;
  158. background-position: -3px 2px;
  159. width:350px;
  160. height:584px;
  161. margin: 0 auto;
  162. }
  163. .lefttoday_tit {
  164. overflow: hidden;
  165. padding: 1.9% 5% .2%;
  166. height: 6%;
  167. position: relative;
  168. }
  169. .lefttoday_tit.height {
  170. height: 12%;
  171. }
  172. .lefttoday_number {
  173. overflow: hidden;
  174. height: 74%;
  175. width: 91%;
  176. margin: 1% 4%;
  177. background: rgba(1,202,217,.2);
  178. }
  179. .lefttoday_tit p.fl {
  180. font-size: 12px;
  181. color: rgba(255,255,255,1);
  182. position: absolute;
  183. left: 5%;
  184. top: 22%
  185. }
  186. .lefttoday_tit p.fr {
  187. font-size: 12px;
  188. color: rgba(255,255,255,.6);
  189. position: absolute;
  190. right: 5%;
  191. top: 25%
  192. }
  193. .lefttoday_tit p.fm {
  194. font-size: 12px;
  195. color: rgba(255,255,255,1);
  196. position: absolute;
  197. left: 40%;
  198. top: 25%
  199. }
  200. .lefttoday_tit.height.ht {
  201. height: 16%;
  202. }
  203. .lefttoday_tit.height p.fl {
  204. position: absolute;
  205. left: 5%;
  206. top: 15%;
  207. }
  208. .lefttoday_tit.height p.fr {
  209. position: absolute;
  210. left: 5%;
  211. top: 65%;
  212. right: auto;
  213. }
  214. .lefttoday_bar ul {
  215. position: relative;
  216. width: 100%;
  217. height: 100%;
  218. }
  219. .lefttoday_bar li {
  220. color: #333;
  221. position: absolute;
  222. border-radius: 50%;
  223. font-size: 12px;
  224. overflow: hidden;
  225. font-weight: normal;
  226. text-align: center;
  227. line-height: 140%
  228. }
  229. .lefttoday_bar li span {
  230. padding-top: 30%;
  231. display: inline-block;
  232. }
  233. .c1 {
  234. background: #ac3ff2
  235. }
  236. .c2 {
  237. background: #ffff00
  238. }
  239. .c3 {
  240. background: #0078ff
  241. }
  242. .c4 {
  243. background: #9cff00
  244. }
  245. .c5 {
  246. background: #ff6c00
  247. }
  248. .c6 {
  249. background: #77b5fb
  250. }
  251. .big0 {
  252. width: 10px;
  253. height: 10px
  254. }
  255. .big1 {
  256. width: 20px;
  257. height: 20px
  258. }
  259. .big2 {
  260. width: 30px;
  261. height: 30px
  262. }
  263. .big3 {
  264. width: 40px;
  265. height: 40px
  266. }
  267. .big4 {
  268. width: 50px;
  269. height: 50px
  270. }
  271. .big5 {
  272. width: 60px;
  273. height: 60px
  274. }
  275. .big6 {
  276. width: 70px;
  277. height: 70px;
  278. }
  279. .leftclass {
  280. background: url(../img/leftb1.png);
  281. background-size: 100% 100%;
  282. background-repeat: no-repeat;
  283. background-position: top center;
  284. width: 350px;
  285. height: 291px;
  286. }
  287. .leftbox2_table {
  288. background: url(../img/leftbox2.png);
  289. background-repeat: no-repeat;
  290. background-position: -2px -2px;
  291. width: 354px;
  292. height: 680px;
  293. }
  294. .left2_table {
  295. width: 91%;
  296. margin-left: 5%;
  297. font-size: 12px;
  298. height: 83.6%;
  299. overflow: hidden;
  300. }
  301. .hdleft2_table {
  302. width: 91%;
  303. margin-left: 5%;
  304. font-size: 12px;
  305. height: 91.6%;
  306. overflow: hidden;
  307. }
  308. .left2_table li {
  309. background: rgba(1,202,217,.2) url(../img/icosjx.png) no-repeat top left;
  310. position: relative;
  311. overflow: hidden;
  312. padding: 2% 6%;
  313. color: rgba(255,255,255,.7);
  314. line-height: 150%
  315. }
  316. .left2_table li b {
  317. color: rgba(255,255,255,1);
  318. font-weight: normal;
  319. }
  320. .left2_table li p.fl {
  321. width: 80%;
  322. overflow: hidden;
  323. }
  324. .left2_table li p.fr {
  325. position: absolute;
  326. right: 5%;
  327. top: -20%;
  328. }
  329. .yellow {
  330. color: #fff45c
  331. }
  332. .green {
  333. color: #00c2fd
  334. }
  335. .left2_table li.bg {
  336. background: rgba(0,255,255,.4) url(../img/icosjx.png) no-repeat top left;
  337. }
  338. .mrbox_tr_box {
  339. background: url(../img/rbox1.png);
  340. background-size: 100% 100%;
  341. background-repeat: no-repeat;
  342. background-position: top center;
  343. width: 354px;
  344. height: 291px;
  345. }
  346. .mrboxtm-mbox {
  347. background: url(../img/midtop.png);
  348. background-size: 100% 100%;
  349. background-repeat: no-repeat;
  350. background-position: top center;
  351. width: 100%;
  352. height: 63.6%;
  353. }
  354. .mrboxtm-b1 {
  355. background: url(../img/mbox1.png);
  356. background-size: 100% 100%;
  357. background-repeat: no-repeat;
  358. background-position: top center;
  359. width: 460px;
  360. height: 233px;
  361. float: left;
  362. }
  363. .mrboxtm-b2 {
  364. background: url(../img/mbox2.png);
  365. background-size: 100% 100%;
  366. background-repeat: no-repeat;
  367. background-position: top center;
  368. width: 330px;
  369. height: 233px;
  370. float: right;
  371. }
  372. /* .mrbox_tr_box{background:url(../img/rbox1.png);background-size: 100% 100%; background-repeat: no-repeat;background-position: top center; width:350px; height:680px;} */
  373. .hdmrboxtm-mbox {
  374. background: url(../img/hdbj.png);
  375. background-size: 100% 100%;
  376. background-repeat: no-repeat;
  377. background-position: top center;
  378. width: 100%;
  379. height: 61.6%;
  380. }
  381. .rbottom_box1 {
  382. background: url(../img/b-rbox2.png);
  383. background-size: 100% 100%;
  384. background-repeat: no-repeat;
  385. background-position: top center;
  386. width: 33.5%;
  387. height: 89.4%;
  388. float: left;
  389. }
  390. .rbottom_box2 {
  391. background: url(../img/bbox2.png);
  392. background-size: 100% 100%;
  393. background-repeat: no-repeat;
  394. background-position: top center;
  395. width: 33.5%;
  396. height: 89.4%;
  397. float: left;
  398. margin-left: .8%
  399. }
  400. .rbottom_box3 {
  401. background: url(../img/b-rbox2.png);
  402. background-size: 100% 100%;
  403. background-repeat: no-repeat;
  404. background-position: top center;
  405. width: 30%;
  406. height: 89.4%;
  407. float: left;
  408. margin-left: 1%
  409. }
  410. .prbottom_box1cont {
  411. margin-left: 5.2%;
  412. width: 90.6%;
  413. height: 82%;
  414. margin-top: 1.8%;
  415. }
  416. .prbottom_box2cont {
  417. margin-left: 5.2%;
  418. width: 90.6%;
  419. height: 82%;
  420. margin-top: 1.8%;
  421. }
  422. .prbottom_box3cont {
  423. margin-left: 5.2%;
  424. width: 90.6%;
  425. height: 82%;
  426. margin-top: 1.8%;
  427. }
  428. .tith2 {
  429. text-align: center;
  430. width: 100%;
  431. font-size: 12px;
  432. padding-top: 1.9%;
  433. font-weight: normal;
  434. letter-spacing: 2px;
  435. font-weight: normal;
  436. overflow: hidden;
  437. }
  438. .fl {
  439. float: left;
  440. }
  441. .fr {
  442. float: right;
  443. }
  444. .topbnt_left {
  445. width: 33%
  446. }
  447. .topbnt_left ul {
  448. padding-top: 38px;
  449. padding-left: 10%;
  450. width: 100%
  451. }
  452. .topbnt_left li {
  453. background: url(../img/bnt.png) center;
  454. font-size: 14px;
  455. line-height: 33px;
  456. background-repeat: no-repeat;
  457. width: 18%;
  458. height: 35px;
  459. float: left;
  460. text-align: center;
  461. margin-left: 1%
  462. }
  463. .topbnt_left li.active, .topbnt_right li.active {
  464. background: url(../img/bntactive.png) no-repeat center;
  465. }
  466. .topbnt_left li a {
  467. text-decoration: none;
  468. color: #fff;
  469. }
  470. .tith1 {
  471. width: 33%;
  472. text-align: center;
  473. padding-top: 16px;
  474. font-weight: bold;
  475. letter-spacing: 8px;
  476. font-size: 36px;
  477. }
  478. .topbnt_right {
  479. padding-top: 2%;
  480. padding-right: 2.5%;
  481. width: 27%
  482. }
  483. .topbnt_right li {
  484. background: url(../img/bnt.png) center;
  485. font-size: 14px;
  486. line-height: 33px;
  487. background-repeat: no-repeat;
  488. width: 22%;
  489. height: 35px;
  490. float: right;
  491. text-align: center;
  492. margin-right: 1%
  493. }
  494. .topbnt_right li a {
  495. text-decoration: none;
  496. color: #fff;
  497. }
  498. .pt1 {
  499. padding-top: 1.3%;
  500. }
  501. .pt2 {
  502. padding-top: 2.2%;
  503. }
  504. .pt3 {
  505. padding-top: 3.3%;
  506. }
  507. .pt6 {
  508. padding-top: 6px;
  509. }
  510. .pt17 {
  511. padding-top: 17px;
  512. }
  513. .pt14 {
  514. padding-top: 14px
  515. }
  516. .pt12 {
  517. padding-top: 12px
  518. }
  519. .pt20 {
  520. padding-top: 22px;
  521. }
  522. /* .box_pad{ margin: 3px 20px; } */
  523. .mrboxtm-map {
  524. background: url(../img/mapbg.png);
  525. background-size: 100% 100%;
  526. background-repeat: no-repeat;
  527. background-position: top center;
  528. width: 90%;
  529. margin-left: 4%;
  530. margin-top: 1%;
  531. height: 90%;
  532. position: relative;
  533. }
  534. .hdmrboxtm-map {
  535. background: url(../img/hdmap.png);
  536. background-size: 100% 100%;
  537. background-repeat: no-repeat;
  538. background-position: top center;
  539. width: 90%;
  540. margin-left: 4%;
  541. margin-top: 1%;
  542. height: 66%;
  543. position: relative;
  544. }
  545. .mrboxtm-map li {
  546. width: 23px;
  547. height: 22px;
  548. line-height: 22px;
  549. color: #fff;
  550. text-align: center;
  551. background-position: center;
  552. background-repeat: no-repeat;
  553. font-size: 12px;
  554. position: absolute;
  555. }
  556. .mrboxtm-map li.bluer {
  557. background-image: url(../img/blue_rico.png);
  558. }
  559. .mrboxtm-map li.redr {
  560. background-image: url(../img/red_rico.png);
  561. }
  562. .ricontop {
  563. width: 29px;
  564. height: 30px;
  565. line-height: 30px;
  566. color: #fff;
  567. text-align: center;
  568. bbackground-size: 100% 100%;
  569. background-repeat: no-repeat;
  570. background-position: top center;
  571. font-size: 12px;
  572. margin-right: 5px;
  573. font-style: normal;
  574. display: inline-block;
  575. }
  576. i.bluer {
  577. background-image: url(../img/ricon2.png);
  578. }
  579. i.redr {
  580. background-image: url(../img/ricon1.png);
  581. }
  582. .font14 p.fl, .font14 p.fr {
  583. color: #fff;
  584. font-size: 14px;
  585. }
  586. .mrtop1 {
  587. background: rgba(1,202,217,.2);
  588. overflow: hidden;
  589. margin: 4px 15px;
  590. }
  591. .widget-inline-box {
  592. text-align: center;
  593. color: rgba(255,255,255,.9);
  594. width: 50%;
  595. padding: 10% 0;
  596. text-align: center;
  597. font-size: 12px;
  598. float: left;
  599. overflow: hidden;
  600. }
  601. .widget-inline-box h3 {
  602. font-size: 22px;
  603. font-weight: 100;
  604. font-weight: normal;
  605. }
  606. .ceeb1fd {
  607. color: #eeb1fd
  608. }
  609. .c24c9ff {
  610. color: #24c9ff
  611. }
  612. .cffff00 {
  613. color: #ffff00
  614. }
  615. .c11e2dd {
  616. color: #11e2dd
  617. }
  618. .text-muted {
  619. font-size: 12px;
  620. color: #789ce0;
  621. }
  622. .text-muted img {
  623. vertical-align: middle;
  624. margin: 0 3px
  625. }
  626. .mrtop2 {
  627. margin: 4px 15px;
  628. padding: 20px 0;
  629. background: rgba(1,202,217,.2);
  630. width: 305px
  631. }
  632. .tith4 {
  633. font-size: 12px;
  634. text-align: center;
  635. }
  636. .mrtop3 {
  637. margin: 4px 15px;
  638. padding: 20px 0;
  639. background: rgba(1,202,217,.2);
  640. width: 305px
  641. }
  642. .mrboxtm-b1wp {
  643. margin: 4px 25px;
  644. padding: 20px 0;
  645. background: rgba(1,202,217,.2);
  646. width: 415px;
  647. overflow: hidden;
  648. }
  649. .mrboxtm_text {
  650. overflow: hidden;
  651. padding-left: 12px;
  652. padding-bottom: 10px;
  653. }
  654. .mrbtext_info {
  655. background: rgba(1,202,217,.2);
  656. font-weight: normal;
  657. padding: 10px 0;
  658. text-align: center;
  659. font-size: 12px;
  660. color: rgba(255,255,255,.7);
  661. float: left;
  662. margin: 2px 0 10px 8px;
  663. width: 140px;
  664. }
  665. .mrbtext_info b {
  666. font-weight: normal;
  667. font-size: 18px;
  668. }
  669. .lefttoday_number .widget-inline-box {
  670. width: 25%
  671. }
  672. /* 警情警力分析 完*/
  673. .aleftboxttop {
  674. background: url(../img/leftb1.png);
  675. background-size: 100% 100%;
  676. background-repeat: no-repeat;
  677. background-position: top center;
  678. width: 99%;
  679. height: 27.5%;
  680. margin-bottom: 1%
  681. }
  682. .aleftboxttop .lefttoday_number {
  683. background: none;
  684. }
  685. .aleftboxttop .widget-inline-box {
  686. width: 24.2%;
  687. margin: 0 .4%;
  688. background: rgba(1,202,217,.2);
  689. padding: 16% 0;
  690. height: 100%;
  691. font-size: 10px;
  692. }
  693. .aleftboxtmidd {
  694. background: url(../img/aleftboxtmidd.png);
  695. background-size: 100% 100%;
  696. background-repeat: no-repeat;
  697. background-position: top center;
  698. width: 98.5%;
  699. height: 29.4%;
  700. margin-bottom: 1%
  701. }
  702. .aleftboxtmiddcont {
  703. width: 91%;
  704. height: 66%;
  705. margin-left: 4.4%;
  706. margin-top: 1%;
  707. }
  708. .aleftboxtbott {
  709. background: url(../img/aleftboxtbott.png);
  710. background-size: 100% 100%;
  711. background-repeat: no-repeat;
  712. background-position: top center;
  713. width: 100%;
  714. height: 40%
  715. }
  716. .aleftboxtbott_cont {
  717. width: 91%;
  718. height: 72.6%;
  719. margin-top: 1.8%;
  720. margin-left: 4.4%;
  721. }
  722. .aleftboxtbott_cont2 {
  723. width: 89.9%;
  724. height: 86.6%;
  725. margin-top: 2.8%;
  726. margin-left: 5%;
  727. }
  728. .aleftboxtbott_contr {
  729. width: 89.9%;
  730. height: 90.6%;
  731. margin-top: 1.8%;
  732. margin-left: 5%;
  733. }
  734. .amiddboxttop {
  735. overflow: hidden;
  736. background: url(../img/amiddboxttop.png);
  737. background-size: 100% 100%;
  738. background-repeat: no-repeat;
  739. background-position: top center;
  740. width: 99%;
  741. height: 52.1%;
  742. }
  743. .amiddboxttop_map {
  744. background: url(../img/img.png);
  745. background-size: 100% 100%;
  746. background-repeat: no-repeat;
  747. background-position: top center;
  748. position: relative;
  749. width: 90%;
  750. height: 86%;
  751. margin: 1.4% 5% 0;
  752. }
  753. .hot_map {
  754. width: 90%;
  755. height: 86%;
  756. margin: 1.4% 5% 0;
  757. }
  758. .amidd_bott {
  759. width: 100%;
  760. height: 38%;
  761. padding-top: .8%
  762. }
  763. .amiddboxttop_map span {
  764. background: url(../img/camera.png);
  765. background-repeat: no-repeat;
  766. background-position: 0 0;
  767. width: 24px;
  768. height: 19px;
  769. display: inline-block;
  770. position: absolute;
  771. }
  772. .amiddboxttop_map span.camera_l {
  773. background: url(../img/camera_l.png);
  774. background-repeat: no-repeat;
  775. background-position: 0 0;
  776. width: 24px;
  777. height: 19px;
  778. display: inline-block;
  779. position: absolute;
  780. }
  781. .amiddboxtbott1 {
  782. background: url(../img/amiddboxtbott1.png);
  783. background-size: 100% 100%;
  784. background-repeat: no-repeat;
  785. background-position: top center;
  786. width: 48%;
  787. height: 91.6%;
  788. margin-left: .5%;
  789. margin-right: 1%
  790. }
  791. .amiddboxtbott1content {
  792. width: 91%;
  793. height: 86.5%;
  794. margin-left: 4.8%;
  795. margin-top: 1.6%;
  796. }
  797. .amiddboxtbott1content2 {
  798. width: 91%;
  799. height: 80%;
  800. margin-left: 4.8%;
  801. margin-top: .6%;
  802. }
  803. .amiddboxtbott2 {
  804. background: url(../img/amiddboxtbott2.png);
  805. background-size: 100% 100%;
  806. background-repeat: no-repeat;
  807. background-position: top center;
  808. float: right;
  809. width: 49%;
  810. height: 91.8%;
  811. margin-right: .9%;
  812. }
  813. .amiddboxtbott2content {
  814. width: 91.8%;
  815. height: 86%;
  816. margin-left: 4.4%;
  817. margin-top: 1.6%;
  818. }
  819. .arightboxtop {
  820. background: url(../img/arightboxtop.png);
  821. background-size: 100% 100%;
  822. background-repeat: no-repeat;
  823. background-position: top center;
  824. width: 100%;
  825. height: 51.9%;
  826. }
  827. .arightboxbott {
  828. background: url(../img/arightboxbott.png);
  829. background-size: 100% 100%;
  830. background-repeat: no-repeat;
  831. background-position: top center;
  832. width: 100%;
  833. height: 35%;
  834. margin-top: 3%
  835. }
  836. .arightboxbottcont {
  837. width: 91%;
  838. margin-top: 1%;
  839. margin-left: 5%;
  840. height: 79%;
  841. }
  842. .arightboxbottcont2 {
  843. width: 90%;
  844. margin-top: 1.6%;
  845. margin-left: 5.3%;
  846. height: 85.5%;
  847. }
  848. .plefttoday {
  849. background: url(../img/pleft1middt.png);
  850. background-size: 100% 100%;
  851. background-repeat: no-repeat;
  852. background-position: top center;
  853. width: 96%;
  854. height: 30%;
  855. margin-top: .4%;
  856. }
  857. .plefttoday .widget-inline-box {
  858. width: 48%;
  859. padding: 4% 0
  860. }
  861. .lpeftmidbot {
  862. background: url(../img/pleft1middb.png);
  863. background-size: 100% 100%;
  864. background-repeat: no-repeat;
  865. background-position: top center;
  866. width: 95.8%;
  867. height: 27.6%;
  868. margin-top: 3.4%;
  869. }
  870. .lpeftmidbotcont {
  871. width: 90.1%;
  872. margin-top: 2%;
  873. margin-left: 5.2%;
  874. height: 82%;
  875. }
  876. .lpeftbot {
  877. background: url(../img/pleft1middb.png);
  878. background-size: 100% 100%;
  879. background-repeat: no-repeat;
  880. background-position: top center;
  881. width: 95.8%;
  882. height: 27.6%;
  883. margin-top: 3.4%;
  884. }
  885. .lpeftbotcont {
  886. width: 90.1%;
  887. margin-top: 2%;
  888. margin-left: 5.2%;
  889. height: 82%;
  890. }
  891. .pleftbox2top {
  892. background: url(../img/pleftbox2top.png);
  893. background-size: 100% 100%;
  894. background-repeat: no-repeat;
  895. background-position: top center;
  896. width: 96.8%;
  897. height: 35.2%;
  898. margin-top: 1%;
  899. }
  900. .pleftbox2topcont {
  901. width: 90.1%;
  902. margin-top: 2%;
  903. margin-left: 5%;
  904. height: 88%
  905. }
  906. .pleftbox2midd {
  907. background: url(../img/pleftbox2mid.png);
  908. background-size: 100% 100%;
  909. background-repeat: no-repeat;
  910. background-position: top center;
  911. width: 96.8%;
  912. height: 24.6%;
  913. margin-top: 3.8%;
  914. }
  915. .pleftbox2middcont {
  916. width: 90.1%;
  917. margin-top: 2%;
  918. margin-left: 5.2%;
  919. height: 82%;
  920. overflow: hidden;
  921. }
  922. .lpeft2bot {
  923. background: url(../img/pleft1middb.png);
  924. background-size: 100% 100%;
  925. background-repeat: no-repeat;
  926. background-position: top center;
  927. width: 97.8%;
  928. height: 24.6%;
  929. margin-top: 4.2%;
  930. }
  931. .lpeftb2otcont1 {
  932. width: 100%;
  933. height: 100%;
  934. }
  935. .hdrightboxtop {
  936. background: url(../img/hdbjr.png);
  937. background-size: 100% 100%;
  938. background-repeat: no-repeat;
  939. background-position: top center;
  940. width: 100%;
  941. height: 87%;
  942. }
  943. .lpeftb2otcont {
  944. width: 90.1%;
  945. margin-top: 2%;
  946. margin-left: 5.2%;
  947. height: 82%;
  948. }
  949. .pmrboxbottom {
  950. background: url(../img/pmiddboxmidd.png);
  951. background-size: 100% 100%;
  952. background-repeat: no-repeat;
  953. background-position: top center;
  954. position: relative;
  955. width: 100%;
  956. height: 32.9%;
  957. margin-top: 1.8%;
  958. }
  959. .pmrboxbottomcont {
  960. width: 94.1%;
  961. margin-top: 1.1%;
  962. margin-left: 3.1%;
  963. height: 76%;
  964. }
  965. .mrbox_bottom_bott {
  966. width: 100%;
  967. height: 27%;
  968. margin-top: 1.8%;
  969. }
  970. .pmrtop {
  971. background: url(../img/prighttop.png);
  972. background-size: 100% 100%;
  973. background-repeat: no-repeat;
  974. background-position: top center;
  975. width: 100%;
  976. height: 56.6%;
  977. }
  978. .pmrtop_contheight {
  979. height: 30%;
  980. width: 100%;
  981. overflow: hidden;
  982. }
  983. .pmrtop1 {
  984. background: url(../img/prighttop.png);
  985. background-size: 100% 100%;
  986. background-repeat: no-repeat;
  987. background-position: top center;
  988. width: 100%;
  989. height: 40.4%;
  990. }
  991. .pmrtop_cont1 {
  992. height: 87%;
  993. width: 100%;
  994. overflow: hidden;
  995. }
  996. .pmrmiddcont {
  997. width: 98.1%;
  998. margin-top: 1.1%;
  999. margin-left: 3.1%;
  1000. height: 64%;
  1001. }
  1002. .pmrtop_contheight .widget-inline-box {
  1003. padding: 5% 0;
  1004. }
  1005. .lefttoday_bar {
  1006. height: 56%;
  1007. width: 100%;
  1008. }
  1009. .pmrtop_cont {
  1010. background: rgba(1,202,217,.2);
  1011. width: 90.6%;
  1012. height: 86%;
  1013. margin: 2.2% 0 0 5.1%
  1014. }
  1015. .pmrtop_wid .widget-inline-box {
  1016. width: 33%;
  1017. }
  1018. .pulefttop {
  1019. background: url(../img/pulefttop.png);
  1020. background-size: 100% 100%;
  1021. background-repeat: no-repeat;
  1022. background-position: top center;
  1023. width: 100%;
  1024. height: 29%;
  1025. }
  1026. .puleftboxtmidd {
  1027. background: url(../img/puleftmidd.png);
  1028. background-size: 100% 100%;
  1029. background-repeat: no-repeat;
  1030. background-position: top center;
  1031. width: 100%;
  1032. height: 28.6%;
  1033. margin-top: 1%
  1034. }
  1035. .puleftboxtbott {
  1036. background: url(../img/puleftbott.png);
  1037. background-size: 100% 100%;
  1038. background-repeat: no-repeat;
  1039. background-position: top center;
  1040. width: 100%;
  1041. height: 28%;
  1042. margin-top: 1%
  1043. }
  1044. .pumiddboxttop1 {
  1045. background: url(../img/pumiddtop1.png);
  1046. background-size: 100% 100%;
  1047. background-repeat: no-repeat;
  1048. background-position: top center;
  1049. width: 47.7%;
  1050. height: 100%;
  1051. padding-left: 1.4%;
  1052. }
  1053. .pumiddboxttop2 {
  1054. background: url(../img/pumiddtop2.png);
  1055. background-size: 100% 100%;
  1056. background-repeat: no-repeat;
  1057. background-position: top center;
  1058. width: 47.7%;
  1059. height: 100%;
  1060. margin-left: 1.4%;
  1061. }
  1062. .pmiddboxtbott {
  1063. background: url(../img/pumiddbott.png);
  1064. background-size: 100% 100%;
  1065. background-repeat: no-repeat;
  1066. background-position: top center;
  1067. width: 98.4%;
  1068. height: 27.8%;
  1069. margin-top: 2%
  1070. }
  1071. .purightboxtop {
  1072. background: url(../img/purighttop.png);
  1073. background-size: 100% 100%;
  1074. background-repeat: no-repeat;
  1075. background-position: top center;
  1076. width: 100%;
  1077. height: 29%;
  1078. }
  1079. .purightboxmidd {
  1080. background: url(../img/purightmidd.png);
  1081. background-size: 100% 100%;
  1082. background-repeat: no-repeat;
  1083. background-position: top center;
  1084. width: 100%;
  1085. height: 28%;
  1086. margin-top: 1.8%
  1087. }
  1088. .purightboxbott {
  1089. background: url(../img/purightbott.png);
  1090. background-size: 100% 100%;
  1091. background-repeat: no-repeat;
  1092. background-position: top center;
  1093. width: 100%;
  1094. height: 28%;
  1095. margin-top: 2.2%
  1096. }
  1097. .purightboxtopcont {
  1098. width: 90.2%;
  1099. height: 77%;
  1100. margin-left: 5%;
  1101. }
  1102. .purightboxmiddcont {
  1103. width: 90.2%;
  1104. height: 77%;
  1105. margin-left: 5%;
  1106. }
  1107. .purightboxbottcont {
  1108. width: 90.2%;
  1109. height: 77%;
  1110. margin-left: 5%;
  1111. }
  1112. .pumiddboxtbott1cont {
  1113. width: 62%;
  1114. height: 100%;
  1115. margin-left: 3%;
  1116. }
  1117. .tith2 span {
  1118. display: inline-block;
  1119. float: left;
  1120. width: 40%;
  1121. }
  1122. .pbox {
  1123. width: 100%;
  1124. height: 76%;
  1125. }
  1126. .pulefttoday_bar {
  1127. width: 46.7%;
  1128. height: 100%;
  1129. margin-left: 2.5%;
  1130. }
  1131. .pulefttoday_bar2 {
  1132. width: 46.7%;
  1133. height: 100%;
  1134. margin-right: 2.5%;
  1135. }
  1136. .puleftboxtmidd1 {
  1137. width: 46.7%;
  1138. height: 100%;
  1139. margin-left: 2.5%;
  1140. }
  1141. .puleftboxtbott1 {
  1142. width: 62.7%;
  1143. height: 100%;
  1144. margin-left: 2.5%;
  1145. }
  1146. .puleftboxtbott2 {
  1147. width: 30.7%;
  1148. height: 100%;
  1149. margin-right: 2.5%;
  1150. }
  1151. .puleft2height {
  1152. width: 96%;
  1153. height: 88%;
  1154. margin-left: 3%;
  1155. }
  1156. .puleftbox2bott_cont {
  1157. width: 100%;
  1158. height: 100%;
  1159. }
  1160. .pulefttoday_bar, .puleftboxtbott2, .pumiddboxtbott2 {
  1161. background: rgba(1,202,217,.2);
  1162. }
  1163. .puleftboxtbott2 .widget-inline-box {
  1164. width: 100%;
  1165. margin: 0;
  1166. padding: 2% 0
  1167. }
  1168. .pumiddboxttop1 .widget-inline-box {
  1169. width: 45%;
  1170. background: rgba(1,202,217,.2);
  1171. margin-left: 2%;
  1172. margin-bottom: 1.5%;
  1173. height: 38%;
  1174. }
  1175. .pumiddboxttop1 .widget-inline-box p {
  1176. padding-top: 30%;
  1177. }
  1178. .f30 {
  1179. font-size: 40px !important;
  1180. margin: 10% 0
  1181. }
  1182. .pumiddboxtbott2 {
  1183. width: 30.9%;
  1184. height: 100%;
  1185. margin-right: 2.5%;
  1186. }
  1187. .pumiddboxtbott2 .widget-inline-box {
  1188. width: 100%;
  1189. margin: 0;
  1190. text-align: center;
  1191. }
  1192. .pumiddboxtbott2 .widget-inline-box p {
  1193. padding-top: 19%
  1194. }
  1195. .pumiddboxttop2_cont {
  1196. width: 90%;
  1197. margin-left: 4.5%;
  1198. margin-top: 0;
  1199. height: 85.4%;
  1200. overflow: hidden;
  1201. text-align: left;
  1202. }
  1203. .pumiddboxttop2_cont ul {
  1204. height: 100%;
  1205. }
  1206. .pumiddboxttop2_cont li {
  1207. background: rgba(1,202,217,.2) url(../img/hot.png) no-repeat 12px 12px;
  1208. height: 13.8%
  1209. }
  1210. .pumiddboxttop2_cont li p.text_l {
  1211. line-height: 160%;
  1212. width: 95%;
  1213. overflow: hidden;
  1214. padding-left: 10%;
  1215. }
  1216. .pumiddboxttop2_cont li p.text_r {
  1217. text-align: right;
  1218. width: 99%;
  1219. height: 40%;
  1220. }
  1221. .pumiddboxttop2_cont li.bg {
  1222. background: rgba(0,255,255,.4) url(../img/hot.png) no-repeat 12px 12px;
  1223. }
  1224. .pvr {
  1225. position: relative;
  1226. }
  1227. .pvr ul {
  1228. position: absolute;
  1229. left: 11%;
  1230. top: 13%;
  1231. }
  1232. .pvr ul li {
  1233. width: 16px;
  1234. height: 16px;
  1235. text-align: center;
  1236. line-height: 16px;
  1237. margin-top: 82%;
  1238. border-radius: 2px;
  1239. font-size: 12px;
  1240. display: block;
  1241. color: #fff;
  1242. z-index: 1111
  1243. }
  1244. .hot1 {
  1245. background-color: #ff0000
  1246. }
  1247. .hot2 {
  1248. background-color: #ff7200
  1249. }
  1250. .hot3 {
  1251. background-color: #ffbd5e
  1252. }
  1253. .hot4 {
  1254. background-color: #b3b3b3
  1255. }
  1256. .hot5 {
  1257. background-color: #597a9f
  1258. }
  1259. .liwp ul li {
  1260. margin-top: 79%;
  1261. }
  1262. .hdtop ul li {
  1263. margin-top: 95%;
  1264. }
  1265. .pulefttoday_bar2 ul {
  1266. position: absolute;
  1267. left: 4.7%;
  1268. top: 8%;
  1269. }
  1270. .pulefttoday_bar2 ul li {
  1271. margin-top: 110%;
  1272. }
  1273. .tlbox {
  1274. overflow: hidden;
  1275. height: 74%;
  1276. width: 91%;
  1277. margin: 1% 4%;
  1278. background: rgba(1,202,217,.2);
  1279. font-size: 12px;
  1280. }
  1281. .tlbox p.text {
  1282. padding-left: 3%;
  1283. }
  1284. .tlbox p.text span {
  1285. width: 27.8%;
  1286. color: rgba(255,255,255,.6);
  1287. display: inline-block;
  1288. text-align: left;
  1289. }
  1290. .tlbox ul {
  1291. height: 100%
  1292. }
  1293. .tlbox li {
  1294. height: 20%;
  1295. padding-top: 5.6%;
  1296. }
  1297. .tlbox p.rwith {
  1298. width: 90%;
  1299. height: 10px;
  1300. background: #4ab4ff;
  1301. margin: 2% 5%;
  1302. }
  1303. .tlbox span.rwith_img {
  1304. height: 10px;
  1305. background: #f8e19a;
  1306. float: left;
  1307. display: inline-block;
  1308. }
  1309. .tlbox p.text span.w12 {
  1310. width: 28%;
  1311. text-align: left;
  1312. }
  1313. .tlbox p.bgc3 {
  1314. background: #f19ec2
  1315. }
  1316. .tlbox span.qgc2 {
  1317. background: #7ecef4
  1318. }
  1319. .tlbox p.bgc2 {
  1320. background: #99b0f7
  1321. }
  1322. .tlbox span.qgc3 {
  1323. background: #cce198
  1324. }
  1325. .tlbox p.text span.tr {
  1326. text-align: right;
  1327. width: 10%;
  1328. padding-right: 3%;
  1329. }
  1330. .tlbox li span i {
  1331. width: 14px;
  1332. height: 6px;
  1333. display: inline-block;
  1334. margin-right: 3px;
  1335. }
  1336. .ricon1 {
  1337. background: #f8e19a;
  1338. }
  1339. .ricon2 {
  1340. background: #7ecef4;
  1341. }
  1342. .ricon3 {
  1343. background: #f19ec2;
  1344. }
  1345. .tricon1 {
  1346. background: #4ab4ff;
  1347. }
  1348. .tricon2 {
  1349. background: #99b0f7;
  1350. }
  1351. .tricon3 {
  1352. background: #cce198;
  1353. }
  1354. .hdwid {
  1355. width: 49.6%;
  1356. }
  1357. /* 交通分析*/