base.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. list-style: none;
  5. text-decoration: none;
  6. }
  7. /* CSS Document */
  8. ::-webkit-scrollbar-track{border-radius: 10px;-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);}/*滚动条的滑轨背景颜色*/
  9. ::-webkit-scrollbar-thumb{background-color: rgba(0,0,0,0.05);border-radius: 10px;-webkit-box-shadow: inset 1px 1px 0 rgba(75, 75, 75, 0.58);}/*滑块颜色*/
  10. ::-webkit-scrollbar-thumb{background-color: rgba(0,0,0,0.2);border-radius: 10px;-webkit-box-shadow: inset 1px 1px 0 rgba(48, 48, 48, 0.92);}
  11. ::-webkit-scrollbar{width: 16px;height: 16px;}/* 滑块整体设置*/
  12. ::-webkit-scrollbar-track,
  13. ::-webkit-scrollbar-thumb{border-radius: 999px;border: 5px solid transparent;}
  14. ::-webkit-scrollbar-track{box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;}
  15. ::-webkit-scrollbar-thumb{min-height: 20px;background-clip: content-box;box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;}
  16. ::-webkit-scrollbar-corner{background: transparent;}/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
  17. body{
  18. font-size: 100%;
  19. }
  20. a:hover{
  21. text-decoration: none;
  22. }
  23. .left{
  24. float: left;
  25. }
  26. .right{
  27. float: right;
  28. }
  29. .clear{
  30. clear: both;
  31. }
  32. .text_right{
  33. text-align: right;
  34. }
  35. .header{
  36. width: 100%;
  37. height: 80px;
  38. background-color: #030829;
  39. }
  40. .header_center{
  41. width: 30%;
  42. margin: 0px auto;
  43. color: #FFFFff;
  44. text-align: center;
  45. height: 80px;
  46. background-image: url("../img/logoBg.png");
  47. background-size: 100% 100%;
  48. font-family: "微软雅黑"!important;
  49. }
  50. .header_center h2{
  51. margin-top: 10px !important;
  52. margin-bottom: 10px; !important;
  53. font-size: 18px !important;
  54. }
  55. .color_font{
  56. color: #e8f7fe !important;
  57. font-size: 12px !important;
  58. }
  59. .header_logo{
  60. margin-left: 1%;
  61. margin-top: 12px;
  62. }
  63. .header_logo img{
  64. height: 56px;
  65. }
  66. .nav{
  67. width: 35%;
  68. }
  69. .nav>ul{
  70. }
  71. .nav>ul>li{
  72. display: inline-block;
  73. width: 120px;
  74. text-align: center;
  75. height: 50px;
  76. position: relative;
  77. line-height: 50px;
  78. margin-top: 15px;
  79. box-sizing: border-box;
  80. /*box-shadow: -5px 0px 5px #034c6a inset, !*左边阴影*!*/
  81. /*0px -5px 15px #034c6a inset, !*上边阴影*!*/
  82. /*5px 0px 15px #034c6a inset, !*右边阴影*!*/
  83. /*0px 5px 15px #034c6a inset;*/
  84. border-radius: 5px;
  85. }
  86. .nav>ul>li:hover{
  87. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  88. 0px -10px 15px #034c6a inset, /*上边阴影*/
  89. 10px 0px 15px #034c6a inset, /*右边阴影*/
  90. 0px 10px 15px #034c6a inset;
  91. box-sizing: border-box;
  92. }
  93. .nav>ul>li i{
  94. width: 16px;
  95. height: 16px;
  96. display: inline-block;
  97. position: relative;
  98. top:3px;
  99. margin-right: 5px;
  100. }
  101. .nav>ul>li>a{
  102. color: #ffffff;
  103. /*display: inline-block;*/
  104. /*padding: 0 15px 0 5px;*/
  105. font-size: 14px;
  106. }
  107. /*.nav>ul>li:hover .li_ul{*/
  108. /*display: block;*/
  109. /*}*/
  110. .li_ul{
  111. position: absolute;
  112. background-color: #030829;
  113. width: 100%;
  114. /*border-top:4px solid #4b8df8;*/
  115. display: none;
  116. z-index: 999;
  117. }
  118. .li_ul li{
  119. line-height: 40px !important;
  120. }
  121. .li_ul li:hover{
  122. background-color: #4b8df8;
  123. }
  124. .li_ul li a{
  125. color: #ffffff;
  126. font-size: 13px;
  127. }
  128. .nav_1{
  129. background-image: url("../img/nav_1.png");
  130. }
  131. .nav_2{
  132. background-image: url("../img/nav_2.png");
  133. }
  134. .nav_3{
  135. background-image: url("../img/nav_3.png");
  136. }
  137. .nav_4{
  138. background-image: url("../img/nav_4.png");
  139. }
  140. .nav_5{
  141. background-image: url("../img/nav_5.png");
  142. }
  143. .nav_6{
  144. background-image: url("../img/nav_6.png");
  145. }
  146. .nav_7{
  147. background-image: url("../img/nav_7.png");
  148. }
  149. .nav_8{
  150. background-image: url("../img/nav_9.png");
  151. }
  152. .nav_active{
  153. border-bottom: 4px solid #4b8df8;
  154. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  155. 0px -10px 15px #034c6a inset, /*上边阴影*/
  156. 10px 0px 15px #034c6a inset, /*右边阴影*/
  157. 0px 10px 15px #034c6a inset;
  158. box-sizing: border-box;
  159. }
  160. .con{
  161. width: 100%;
  162. background-color: #081832;
  163. padding-top: 20px;
  164. padding-bottom: 20px;
  165. }
  166. .con1{
  167. width: 100%;
  168. background-color: #081832cc;
  169. /*padding-bottom: 4px;*/
  170. box-sizing: border-box;
  171. overflow: auto;
  172. ;
  173. }
  174. .find_expend{
  175. display: none;
  176. }
  177. .con1::before{
  178. content: "";
  179. display: block;
  180. clear: both;
  181. visibility: hidden;
  182. height: 0;
  183. }
  184. .select_time{
  185. width: 140px;
  186. height: 36px;
  187. margin-bottom: 25px;
  188. margin-left: 1%;
  189. padding-left: 20px;
  190. ;
  191. }
  192. .select_time img{
  193. height: 18px;
  194. margin-top: 9px;
  195. }
  196. .select_time input{
  197. border: none;
  198. background-color: transparent;
  199. width: 80px;
  200. height: 20px;
  201. top:-5px;
  202. margin-left: 10px;
  203. position: relative;
  204. text-indent: 1em;
  205. outline: none;
  206. }
  207. .con_div{
  208. height: 110px;
  209. width: 98%;
  210. margin-left: 1%;
  211. margin-bottom: 25px;
  212. }
  213. .con_div_text{
  214. height: 100%;
  215. background-color: #034c6a;
  216. width: 32%;
  217. margin-right: 1.3%;
  218. }
  219. .con_div_text01{
  220. width: 50%;
  221. height: 100%;
  222. }
  223. .text01_img{
  224. width: 40px;
  225. height: 40px;
  226. margin-left: 5%;
  227. margin-top: 35px;
  228. }
  229. .text01_div{
  230. margin-top: 15px;
  231. margin-left: 5%;
  232. text-align: center;
  233. }
  234. .text01_div p{
  235. line-height: 35px;
  236. }
  237. .text01_div p:nth-child(1){
  238. font-size: 13px;
  239. color: #ffffff;
  240. }
  241. .text01_div p:nth-child(2){
  242. font-size: 28px;
  243. color: #ffff43;
  244. font-weight: 600;
  245. }
  246. .red{
  247. color: red !important;
  248. }
  249. .sky{
  250. color: #25f3e6 !important;
  251. }
  252. .org{
  253. color: #ff4e4e !important;
  254. }
  255. .div_any{
  256. width: 98%;
  257. margin-left: 1%;
  258. margin-bottom: 25px;
  259. height: 610px;
  260. }
  261. .div_any01{
  262. width: 23%;
  263. margin-right: 2%;
  264. }
  265. .div_any02{
  266. width: 48%;
  267. margin-right: 2%;
  268. }
  269. .div_any03{
  270. width: 98%;
  271. margin: 15px auto;
  272. }
  273. .div_any_child{
  274. width: 100%;
  275. height: 280px;
  276. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  277. 0px -10px 15px #034c6a inset, /*上边阴影*/
  278. 10px 0px 15px #034c6a inset, /*右边阴影*/
  279. 0px 10px 15px #034c6a inset;
  280. border: 1px solid #034c6a;
  281. box-sizing: border-box;
  282. position: relative;
  283. margin-top: 25px;
  284. }
  285. .div_any_child01{
  286. width: 48%;
  287. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  288. 0px -10px 15px #034c6a inset, /*上边阴影*/
  289. 10px 0px 15px #034c6a inset, /*右边阴影*/
  290. 0px 10px 15px #034c6a inset;
  291. border: 1px solid #034c6a;
  292. box-sizing: border-box;
  293. position: relative;
  294. margin-right: 2%;
  295. }
  296. .div_any_child01_wh{
  297. width: 98% !important;
  298. }
  299. .div_height01{
  300. height: auto !important;
  301. padding: 5px;
  302. }
  303. .char_table{
  304. height: 200px;
  305. }
  306. .p_chart{
  307. height: 250px;
  308. padding: 5px 10px;
  309. margin-top: 15px;
  310. }
  311. #map_div{
  312. width: 96%;
  313. height: 94%;
  314. margin: 4% auto;
  315. }
  316. .div_height{
  317. height:586px !important;
  318. }
  319. .div_any_title{
  320. background-color: #034c6a;
  321. border-radius: 18px;
  322. position: absolute;
  323. height: 35px;
  324. width: 60%;
  325. top:-15px;
  326. color: #ffffff;
  327. font-weight: bold;
  328. font-size: 16px;
  329. left: 20%;
  330. line-height: 35px;
  331. text-align: center;
  332. }
  333. .div_any_title img{
  334. width: 18px;
  335. height: 18px;
  336. position: relative;
  337. top:2px;
  338. margin-right: 5px;
  339. }
  340. .any_title_width{
  341. width: 30% !important;
  342. left: 35% !important;
  343. }
  344. .div_table{
  345. width: 98%;
  346. margin-left: 1%;
  347. margin-bottom: 25px;
  348. height: 280px;
  349. }
  350. .div_table_box{
  351. width: 23%;
  352. margin-right: 2%;
  353. }
  354. .table_p{
  355. height: 93%;
  356. margin-top: 7%;
  357. position: relative;
  358. }.table_p01{
  359. height:auto !important;
  360. margin-top: 0!important;
  361. position: relative;
  362. }
  363. .table_p01 table td{
  364. padding: 6px 0;
  365. }
  366. .table_p table{
  367. width: 100%;
  368. height: 100%;
  369. border-collapse: collapse;
  370. position: absolute;
  371. text-align: center;
  372. }
  373. .table_p table thead th{
  374. color: #61d2f7;
  375. font-size: 14px;
  376. font-weight: 600;
  377. padding-top: 5px;
  378. padding-bottom: 5px;
  379. }
  380. .table_p table tbody{
  381. color: #ffffff;
  382. font-size: 13px;
  383. }
  384. .table_p table tbody tr:nth-child(2n+1){
  385. background-color: #072951;
  386. box-shadow: -10px 0px 15px #034c6a inset,
  387. 10px 0px 15px #034c6a inset;
  388. }
  389. .car_left{
  390. width: 18%;
  391. height: 100%;
  392. background-color: #081832;
  393. }
  394. .car_center{
  395. height: 100%;
  396. background-color: #081832;
  397. width: 50.5%;
  398. margin-left: 0.5%;
  399. }
  400. .car_center video{
  401. width: 49.5%;
  402. height: 49%;
  403. box-sizing: border-box;
  404. box-shadow: -10px 0px 15px #034c6a inset,
  405. 10px 0px 15px #034c6a inset;
  406. float: left;
  407. }
  408. .magin_top{
  409. margin-top: 1%;
  410. }
  411. .magin_left{
  412. margin-left: 1%;
  413. }
  414. .car_right{
  415. width: 31%;
  416. height: 100%;
  417. }
  418. .text_center{
  419. text-align: center;
  420. }
  421. .carNo_input{
  422. width: 75%;
  423. height: 25px;
  424. margin-top: 5px;
  425. margin-bottom: 5px;
  426. text-indent: 2em;
  427. margin-left: 5%;
  428. border:1px solid #072951;
  429. border-radius: 3px;
  430. }
  431. .find_but{
  432. height: 25px;
  433. background-image: url("../img/find.png");
  434. width: 25px;
  435. background-repeat: no-repeat;
  436. background-size: 100% 100%;
  437. position: relative;
  438. top:8px;
  439. border:none;
  440. background-color: transparent;
  441. }
  442. .find_but1{
  443. height: 25px;
  444. background-image: url("../img/find.png");
  445. width: 25px;
  446. background-repeat: no-repeat;
  447. background-size: 100% 100%;
  448. position: relative;
  449. top:8px;
  450. border:1px solid #4b8df8;
  451. background-color: transparent;
  452. }
  453. .set_list{
  454. padding: 10px 5%;
  455. color: #eee;
  456. font-size: 14px;
  457. }
  458. .list_i{
  459. width: 16px;
  460. height: 16px;
  461. display: inline-block;
  462. background-image: url("../img/nav_1.png");
  463. top:3px;
  464. position: relative;
  465. }
  466. .left_up{
  467. height: 58%;
  468. }
  469. .left_table{
  470. height: 98%;
  471. border-radius: 5px;
  472. width:18%!important;
  473. background-color: #081832;
  474. }
  475. .right_table{
  476. height: 98%;
  477. border-radius: 5px;
  478. width:81.5%!important;
  479. background-color: #081832;
  480. margin-left: 0.5%;
  481. }
  482. .center_table{
  483. height: 100%;
  484. border-radius: 5px;
  485. width:100%;
  486. background-color: #081832;
  487. margin: 0 auto;
  488. }
  489. .bow_shadow{
  490. box-shadow: -8px 0px 10px #034c6a inset,
  491. 8px 0px 10px #034c6a inset;
  492. width: 100%;
  493. box-sizing: border-box;
  494. }
  495. .ztree li a{
  496. color: #FFFFff !important;
  497. }
  498. .left_down{
  499. height: 40%;
  500. margin-top: 2%;
  501. }
  502. .tab_a{
  503. width: 45%;
  504. height: 30px;
  505. line-height: 30px;
  506. color: #FFFFff;
  507. background-color: #667fa7;
  508. display: inline-block;
  509. margin-right: 1%;
  510. margin-top: 5px;
  511. font-size: 14px;
  512. }
  513. .tab_aActive{
  514. background-color:#034c6a !important;
  515. font-weight: 600;
  516. }
  517. .car_content{
  518. margin-left: 5%;
  519. font-size: 13px;
  520. color: #eeeeee;
  521. }
  522. .car_content p{
  523. padding-top: 5px;
  524. padding-bottom: 5px;
  525. }
  526. .table2_find{
  527. background-color: #072951;
  528. box-shadow: -10px 0px 15px #034c6a inset, 10px 0px 15px #034c6a inset;
  529. width: 100%;
  530. padding: 5px 0;
  531. color: #FFFFff;
  532. }
  533. .table2_find input[type=text]{
  534. background-color: transparent;
  535. width: 16%;
  536. height: 24px;
  537. border-radius: 3px;
  538. text-indent: 1em;
  539. border:1px solid #7EC4CC;
  540. }
  541. .table_find{
  542. width: 100%;
  543. padding: 8px 0;
  544. border-bottom: 2px solid #a5c5f83b;
  545. font-size: 13px;
  546. }
  547. .more_find{
  548. cursor: pointer;
  549. position: relative;
  550. top:5px;
  551. }
  552. .table_find .glyphicon{
  553. margin-right: 5px;
  554. }
  555. .table_find button{
  556. padding: 4px 10px;
  557. }
  558. .table_find p{
  559. margin-top: 8px;
  560. }
  561. .table_find label{
  562. color: #eeeeee;
  563. width: 8%;
  564. display: inline-block;
  565. text-align: right;
  566. }
  567. .table_find input[type=text],.table_find input[type=date]{
  568. width: 16%;
  569. height: 24px;
  570. border-radius: 3px;
  571. text-indent: 1em;
  572. border:1px solid#4b8df8;
  573. background-color: #cccccc4f;
  574. }
  575. .table_find select{
  576. width: 12%;
  577. height: 24px;
  578. border-radius: 3px;
  579. text-indent: 1em;
  580. border:1px solid #4b8df8;
  581. background-color: #cccccc4f;
  582. }
  583. .table_find input[type=checkbox]{
  584. width: 14px;
  585. height: 14px;
  586. position: relative;
  587. top:3px;
  588. margin-right: 5px;
  589. }
  590. .table_find span{
  591. color: #b2cbf3;
  592. margin-right: 2%;
  593. }
  594. .find_button{
  595. width: 5%;
  596. height: 26px;
  597. border: none;
  598. border-radius: 2px;
  599. background-color: #4b8df8;
  600. color: #FFFFff;
  601. font-size: 14px;
  602. }
  603. .table2_style{
  604. color: #FFFFff;
  605. border: none !important;
  606. font-size: 13px;
  607. }
  608. .table2_style a{
  609. margin-right: 10px;
  610. }
  611. .table2_style tbody tr:nth-child(2n+1){
  612. background-color: #072951;
  613. border-left: 4px solid #4b8df8;;
  614. }
  615. .table2_style thead tr{
  616. color: #FFFFff;
  617. background-color:#4b8df8;
  618. }
  619. .table2_style td{
  620. border: none !important;
  621. }
  622. .table2_style thead th{
  623. border-bottom: none !important;
  624. }
  625. .table2_style tbody tr:nth-child(2n):hover{
  626. /*color: #072951;*/
  627. background-color: rgba(75, 141, 248, 0.65);
  628. }
  629. .table_style{
  630. color: #FFFFff;
  631. box-shadow: -8px 0px 10px #034c6a inset,
  632. 8px 0px 10px #034c6a inset;
  633. border: none !important;
  634. font-size: 13px;
  635. }
  636. .table_style a{
  637. margin-right: 10px;
  638. }
  639. .table_style td{
  640. border: none !important;
  641. }
  642. .table_style tbody tr:nth-child(2n+1){
  643. background-color: #072951;
  644. box-shadow: -10px 0px 15px #034c6a inset,
  645. 10px 0px 15px #034c6a inset;
  646. }
  647. .table_style thead tr{
  648. color: #4b8df8;
  649. }
  650. .table_style thead th{
  651. border-bottom: none !important;
  652. }
  653. .table_style tbody tr:nth-child(2n):hover{
  654. /*color: #072951;*/
  655. background-color: rgba(75, 141, 248, 0.12);
  656. }
  657. .table_div{
  658. margin-top: 10px;
  659. color: #FFFFff;
  660. }
  661. .table_but{
  662. text-align: right;
  663. font-size: 13px;
  664. padding-bottom: 5px;
  665. padding-top: 10px;
  666. }
  667. .table_but a{
  668. margin-right: 15px;
  669. color: #FFFFff;
  670. }
  671. .table_but a i{
  672. margin-right: 5px;
  673. }
  674. .table_del{
  675. color: orangered;
  676. }
  677. .table_edit{
  678. color: #0D8BBD;
  679. }
  680. .span_left{
  681. padding: 5px;
  682. }
  683. /*地图界面样式*/
  684. .map_con{
  685. width: 100%;
  686. padding: 0;
  687. background-color: #081832cc;
  688. }
  689. .map_left{
  690. width: 79%;
  691. height: 100%;
  692. }
  693. .map_right{
  694. width: 20.5%;
  695. height: 100%;
  696. background-color: #081832;
  697. }
  698. .map_box{
  699. width: 100%;
  700. height: 100%;
  701. }
  702. .map_top{
  703. position: absolute;
  704. top:80px;
  705. left: 0;
  706. height: 35px;
  707. width: 79%;
  708. border-bottom: 1px solid #4b8df8;
  709. background-color: rgba(255, 255, 255, 0.84);
  710. z-index: 99;
  711. }
  712. .map_top>ul{
  713. list-style: none;
  714. font-size: 14px;
  715. float: right;
  716. }
  717. .map_top>ul>li{
  718. display: inline-block;
  719. line-height: 35px;
  720. padding: 0 10px;
  721. }
  722. .map_top>ul>li i{
  723. margin-right: 5px;
  724. }
  725. .map_top>ul>li a{
  726. color: #2E2D3C;
  727. }
  728. .map_top>ul .active,.map_top>ul>li .active{
  729. color: #0D8BBD;
  730. }
  731. .map_select{
  732. position: fixed;
  733. top:160px;
  734. right: 21.5%;
  735. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  736. 0px -10px 15px #034c6a inset, /*上边阴影*/
  737. 10px 0px 15px #034c6a inset, /*右边阴影*/
  738. 0px 10px 15px #034c6a inset;
  739. border: 1px solid #034c6a;
  740. width: 120px;
  741. height: 180px;
  742. border-radius: 5px;
  743. background-color: #081832e3;
  744. }
  745. .map_select p{
  746. padding: 8px 15px;
  747. color: #FFFFff;
  748. font-size: 14px;
  749. }
  750. .map_select p input[type=checkbox]{
  751. width: 15px;
  752. height: 15px;
  753. position: relative;
  754. top:3px;
  755. margin-right: 10px;
  756. }
  757. .map_right_top{
  758. width: 100%;
  759. height: 35px;
  760. background-color: #034c6a;
  761. }
  762. .map_right_top>ul>li{
  763. list-style: none;
  764. display: inline-block;
  765. line-height: 35px;
  766. font-size: 14px;
  767. text-align: center;
  768. width: 32%;
  769. color: #FFFFff;
  770. cursor: pointer;
  771. }
  772. .map_right_top>ul>li.li_active{
  773. background-color: #0D8BBD;
  774. }
  775. .map_chart{
  776. width: 100%;
  777. height: 250px;
  778. box-sizing: border-box;
  779. position: relative;
  780. margin-top: 25px;
  781. }
  782. .map_con{
  783. width: 100%;
  784. }
  785. .map_con_div{
  786. display: none;
  787. }
  788. .map_work{
  789. margin-top: 5px;
  790. border-top:1px solid #0D8BBD;;
  791. }
  792. .map_work>ul>li{
  793. list-style: none;
  794. display: inline-block;
  795. width: 32%;
  796. text-align: center;
  797. margin-top: 10px;
  798. margin-bottom: 10px;
  799. cursor: pointer;
  800. padding: 10px 0;
  801. }
  802. .map_work>ul>li:hover{
  803. box-shadow: -10px 0px 15px #034c6a inset, /*左边阴影*/
  804. 0px -10px 15px #034c6a inset, /*上边阴影*/
  805. 10px 0px 15px #034c6a inset, /*右边阴影*/
  806. 0px 10px 15px #034c6a inset;
  807. }
  808. .map_work>ul>li .img_div{
  809. width: 28px;
  810. height: 24px;
  811. margin: 0 auto;
  812. }
  813. .img_div01{
  814. background: url(../img/map_photo.png) no-repeat;
  815. background-position: -126px -73px;
  816. }
  817. .img_div02{
  818. background: url(../img/map_photo.png) no-repeat;
  819. background-position: -98px -122px;
  820. }
  821. .img_div_text{
  822. color: #FFFFff;
  823. margin-top: 8px;
  824. font-size: 13px;
  825. }
  826. .back_i{
  827. position: relative;
  828. top:2px;
  829. margin-right: 5px;
  830. }
  831. .map_resList{
  832. width: 96%;
  833. margin: 0 auto;
  834. font-size: 13px;
  835. display: none;
  836. }
  837. .map_resList>ul>li{
  838. list-style: none;
  839. margin-top: 8px;
  840. }
  841. .map_resList>ul>li p{
  842. padding: 5px 0;
  843. color: #eeeeee;
  844. }
  845. .map_resList>ul>li a{
  846. margin-right: 6px;
  847. }
  848. .map_resList>ul>li a img{
  849. width: 16px;
  850. }
  851. .map_resList>ul>li:nth-child(2n+1){
  852. background-color: #0d8bbd36;
  853. }
  854. /*统计分析界面样式*/
  855. .static_top{
  856. width: 140px;
  857. height: 36px;
  858. line-height: 36px;
  859. background-color: #04425f;
  860. margin-bottom: 25px;
  861. margin-left: 1%;
  862. padding-left: 20px;
  863. border-radius: 1px;
  864. box-shadow: 0px 3px 3px #61d2f7;
  865. }
  866. .static_top i{
  867. width: 16px;
  868. height: 16px;
  869. display: inline-block;
  870. position: relative;
  871. background-image: url("../img/nav_7.png");
  872. background-repeat: no-repeat;
  873. margin-right: 6px;
  874. top:1px;
  875. }
  876. .static_top span{
  877. color: #25f3e6;
  878. }
  879. .stiatic_top_con{
  880. background-color: #034c6a;
  881. width: 96%;
  882. margin-left: 1%;
  883. margin-bottom: 25px;
  884. padding: 10px 1%;
  885. border-radius: 5px;
  886. }
  887. .stiatic_top_con table{
  888. width: 100%;
  889. border-collapse: collapse;
  890. }
  891. .stiatic_top_con table td{
  892. color: #FFFFff;
  893. padding: 5px;
  894. font-size: 13px;
  895. border:1px solid #485f849c;
  896. }
  897. .stiatic_top_con table .labe_td{
  898. color: #61d2f7;
  899. font-size: 14px;
  900. width: 120px;
  901. text-align: right;
  902. }
  903. .layui-layer-title{
  904. /*box-shadow: -8px 0px 10px #034c6a inset,*/
  905. /*8px 0px 10px #034c6a inset;*/
  906. background-color: #081832d4 !important;
  907. color: #FFFFff !important;
  908. border-bottom: 3px solid #4b8df8 !important;
  909. box-sizing: border-box;
  910. }