style.css 27 KB

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