base.css 20 KB

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