common.css 20 KB

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