menu.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421
  1. .fl {
  2. float: left;
  3. }
  4. .fr {
  5. float: right;
  6. }
  7. .clearfix:after {
  8. content: ".";
  9. display: block;
  10. height: 0pt;
  11. clear: both;
  12. visibility: hidden;
  13. }
  14. .clearfix {
  15. display: block;
  16. }
  17. #layerControlMenu .myLayers .clearfix {
  18. display: inline-block;
  19. }
  20. #layerControlMenu .myLayers .clearfix:after {
  21. content: ".";
  22. display: inline-block;
  23. height: 0pt;
  24. clear: both;
  25. visibility: hidden;
  26. }
  27. #menu.moveOut {
  28. /*left: 0px;*/
  29. }
  30. #menu {
  31. position: absolute;
  32. top: 70px;
  33. left: 0px;
  34. width: 340px;
  35. /*height: 631px;*/
  36. /* background: #1257ac; */
  37. background: rgba(64, 158, 255, 0.86);
  38. z-index: 1001;
  39. }
  40. #menu .menu-title {
  41. color: #fff;
  42. height: 50px;
  43. line-height: 50px;
  44. font-size: 18px;
  45. padding: 0 0 0 20px;
  46. border-bottom: 1px solid rgba(64, 208, 255, 0.86);
  47. }
  48. #menu .menu-title p {
  49. display: inline-block;
  50. float: right;
  51. position: relative;
  52. right: 15px;
  53. height: 50px;
  54. width: 25px;
  55. background: url(../images/layout/menu-title.png);
  56. cursor: pointer;
  57. }
  58. #menu .im-0 {
  59. cursor: pointer;
  60. -webkit-user-select: none;
  61. -moz-user-select: none;
  62. -ms-user-select: none;
  63. user-select: none;
  64. margin-left: 20px;
  65. padding-left: 35px;
  66. }
  67. #menu .menu-scroll {
  68. max-height: 700px;
  69. overflow: hidden;
  70. overflow-y: auto;
  71. /* background: #1f5e9f; */
  72. }
  73. #menu .mnsc {
  74. max-height: 600px;
  75. overflow: auto;
  76. }
  77. /* 菜单各项图标 */
  78. #menu .menu-base.infoMenu .im-0 {
  79. background: url(../images/layout/menu.png) left no-repeat;
  80. background-size: 17px;
  81. }
  82. #menu p.zhuanTi {
  83. background: url(../images/layout/zhuanti.png) no-repeat 0px 18px;
  84. }
  85. #menu p.hailiang {
  86. background: url(../images/layout/menu-list.png) no-repeat -11px -30px;
  87. }
  88. #menu p.tdm {
  89. background: url(../images/layout/menu-list.png) no-repeat -11px -74px;
  90. }
  91. #menu p.infoIcon {
  92. background: url(../images/layout/menu-list.png) no-repeat -11px -118px;
  93. }
  94. #menu p.kuozhan {
  95. background: url(../images/layout/menu-list.png) no-repeat -11px -166px;
  96. }
  97. /* 图层控制图标 */
  98. /*#menu span.menu-layer-title{
  99. background: url(../images/layout/layer.png) left no-repeat;
  100. background-size: 20px;
  101. }*/
  102. #menu li {
  103. line-height: 49px;
  104. /* background: #1257ab; */
  105. color: #fff;
  106. font-size: 14px;
  107. }
  108. #menu li.menu-base {
  109. border-bottom: 1px solid rgba(64, 208, 255, 0.86);
  110. }
  111. #menu li.menu-base:hover > p span,
  112. #menu li.menu-base.active > p span {
  113. color: #fdda34;
  114. }
  115. #menu .print {
  116. padding: 10px;
  117. padding-left: 0;
  118. }
  119. #menu .print span {
  120. display: inline-block;
  121. text-align: left;
  122. width: 50px;
  123. margin-left: 40px;
  124. font-size: 14px;
  125. }
  126. #menu .print .ctr {
  127. text-align: center;
  128. }
  129. #menu .print select,
  130. #menu .print button {
  131. line-height: 32px;
  132. height: 32px;
  133. border: 1px solid #a4a4a4;
  134. border-radius: 4px;
  135. background: #fff;
  136. color: #666;
  137. }
  138. #menu .print #paper {
  139. width: 90px;
  140. }
  141. #menu .print #ruler {
  142. width: 154px;
  143. }
  144. #menu .print .PDF {
  145. width: 212px;
  146. }
  147. #menu .print #legend {
  148. margin-left: 40px;
  149. }
  150. #menu .print #cdGrid {
  151. margin-left: 50px;
  152. }
  153. #menu .print input[type="checkbox"] {
  154. background: #fff;
  155. vertical-align: middle;
  156. }
  157. #menu .print label {
  158. font-size: 14px;
  159. margin-left: 5px;
  160. }
  161. #menu .print p {
  162. margin-top: -5px;
  163. }
  164. #menu .mn-content {
  165. display: none;
  166. /* background: #1f5e9f; */
  167. }
  168. #menu .infoMenu {
  169. }
  170. #menu .infoMenu li {
  171. border-left: none;
  172. border-right: none;
  173. background: #365162;
  174. }
  175. #menu .infoMenu li span:hover,
  176. #menu .infoMenu .im-2 a:hover,
  177. #menu .infoMenu .im-3 div:hover {
  178. color: #fdda34;
  179. }
  180. #menu .infoMenu .fu {
  181. cursor: pointer;
  182. -webkit-user-select: none;
  183. -moz-user-select: none;
  184. -ms-user-select: none;
  185. user-select: none;
  186. height: 40px;
  187. line-height: 40px;
  188. }
  189. #menu .infoMenu .fu span {
  190. display: inline-block;
  191. margin-left: 40px;
  192. padding-left: 24px;
  193. background: url(../images/layout/right.png) left no-repeat;
  194. }
  195. #menu .infoMenu .commitMecal .startCommit {
  196. display: none;
  197. }
  198. #menu .infoMenu .commitMecal .startCommit p,
  199. #menu .infoMenu .commitMecal .stopCommit p {
  200. text-indent: 37px;
  201. cursor: default;
  202. }
  203. #menu .infoMenu .im-2 .fu span {
  204. margin-left: 50px;
  205. font-size: 14px;
  206. }
  207. #menu .infoMenu .commitMecal .startCommit span {
  208. color: #0ff;
  209. padding: 0px;
  210. margin-left: 10px;
  211. cursor: pointer;
  212. }
  213. #menu .infoMenu .commitMecal .stopCommit span {
  214. color: #f00;
  215. padding: 0px;
  216. margin-left: 10px;
  217. cursor: pointer;
  218. }
  219. #menu .infoMenu .active .fu span {
  220. background: url(../images/layout/down.png) left no-repeat;
  221. }
  222. #menu .infoMenu .active .im-2 .fu span {
  223. background: url(../images/layout/right.png) left no-repeat;
  224. }
  225. #menu .infoMenu .active .im-2.active .fu span,
  226. #menu .infoMenu .active .im-2 .fu.active span {
  227. background: url(../images/layout/down.png) left no-repeat;
  228. }
  229. #menu .infoMenu .im-1 {
  230. border-top: 1px solid rgba(64, 208, 255, 0.86);
  231. position: relative;
  232. }
  233. #menu #exKuozhan.infoMenu .im-1 {
  234. padding-left: 64px;
  235. }
  236. #menu .infoMenu .im-2 {
  237. border-bottom: 1px solid #06418a;
  238. }
  239. #menu .infoMenu .im-1 ul li.im-3 {
  240. background: #124071;
  241. border-top: 1px solid #235487;
  242. padding-left: 20px;
  243. }
  244. #menu .infoMenu .im-1 ul li.im-3 span {
  245. font-size: 12px;
  246. }
  247. #menu .infoMenu .im-3 li {
  248. line-height: 35px;
  249. font-size: 14px;
  250. }
  251. #menu .infoMenu .im-3 li .fr {
  252. display: inline-block;
  253. font-size: 12px;
  254. width: 16px;
  255. line-height: 16px;
  256. text-align: center;
  257. border: 1px solid #fff;
  258. border-radius: 100% 100%;
  259. margin: 9px 28px 0 5px;
  260. cursor: pointer;
  261. color: #fff;
  262. opacity: 0.26;
  263. -webkit-user-select: none;
  264. -moz-user-select: none;
  265. -ms-user-select: none;
  266. user-select: none;
  267. }
  268. #menu .infoMenu .im-3 input[type="checkbox"] {
  269. margin-right: 5px;
  270. }
  271. #menu li.switch {
  272. height: 12px;
  273. background: url(../images/layout/drag-bar.png) center no-repeat;
  274. cursor: pointer;
  275. }
  276. #menu .active .mn-content {
  277. display: block;
  278. }
  279. #menu .active .im-0,
  280. #menu .active .im-m {
  281. /*background: #4577A6;*/
  282. color: #fff;
  283. }
  284. #menu .infoMenu .im-1 ul {
  285. display: none;
  286. /* background: #184A7E; */
  287. }
  288. #menu .infoMenu .im-1 ul li {
  289. /* background: #0f4a8b; */
  290. cursor: pointer;
  291. }
  292. #menu .myLayers li {
  293. background: #1f5e9f;
  294. }
  295. #menu .infoMenu .im-1 .im-3 li {
  296. background: #123d6a;
  297. margin-left: 35px;
  298. }
  299. #menu .infoMenu .im-1.active ul {
  300. display: block;
  301. }
  302. #menu .infoMenu .im-1.active .im-2 ul {
  303. display: none;
  304. }
  305. #menu .infoMenu .im-1.active .im-2.active ul {
  306. display: block;
  307. }
  308. #menu .infoMenu .im-2 ul.im-3 {
  309. display: none;
  310. padding: 8px 0 8px 56px;
  311. border-top: 1px solid #235487;
  312. background: #123d6a;
  313. }
  314. #menu .infoMenu .im-1 .im-2.active ul.im-3 {
  315. display: block;
  316. }
  317. #menu .im-m {
  318. cursor: move;
  319. }
  320. #menu .im-m a {
  321. line-height: 49px;
  322. text-align: center;
  323. display: inline-block;
  324. }
  325. #menu .im-m a span {
  326. font-size: 14px;
  327. color: #eee;
  328. height: 16px;
  329. line-height: 16px;
  330. width: 46px;
  331. /*border-left: 1px solid #06B2DC;*/
  332. }
  333. #menu .im-m a.dao span {
  334. border: none;
  335. }
  336. #menu .im-m a.a-upload {
  337. position: relative;
  338. cursor: pointer;
  339. overflow: hidden;
  340. *display: inline;
  341. *zoom: 1;
  342. margin: 5px 0 5px 70px;
  343. vertical-align: middle;
  344. }
  345. #menu .im-m a.a-upload input {
  346. position: absolute;
  347. font-size: 100px;
  348. right: 0;
  349. top: 0;
  350. opacity: 0;
  351. filter: alpha(opacity=0);
  352. cursor: pointer;
  353. }
  354. #menu .im-m a:hover span,
  355. #menu .im-m a.active span {
  356. color: #444;
  357. background: #01b7ff;
  358. text-decoration: none;
  359. }
  360. #menu .mn-content .mn-act {
  361. display: none;
  362. margin-left: 40px;
  363. font-size: 12px;
  364. margin-top: -5px;
  365. padding-bottom: 5px;
  366. }
  367. #menu .mn-content .mn-act.active {
  368. display: block;
  369. }
  370. #menu .mn-content .mn-act .layer-cale {
  371. margin: 0 5px;
  372. }
  373. #menu .mn-content p.tip-none {
  374. text-align: center;
  375. display: none;
  376. }
  377. #menu .dao {
  378. margin-left: 20px;
  379. }
  380. #menu .infoMenu .im-1 ul.menu-content {
  381. max-height: 168px;
  382. overflow: auto;
  383. }
  384. #menu .no-bg {
  385. background: none !important;
  386. }
  387. #menu .dzzy .ztContent {
  388. /* display: none; */
  389. }
  390. #menu .dzzy .ztContent.active {
  391. /* display: block; */
  392. }
  393. /*#menu .dzzy .zhuanTi{
  394. border-top: 1px solid #1961b6;
  395. }*/
  396. #menu .dzzy .sectionbg {
  397. margin-left: 40px;
  398. background: url(../images/layout/right.png) left no-repeat;
  399. padding-left: 25px;
  400. height: 40px;
  401. line-height: 40px;
  402. }
  403. #menu .dzzy .sectionbg.open {
  404. background: url(../images/layout/down.png) left no-repeat;
  405. color: #fdda34;
  406. }
  407. #menu .dzzy section.item .linkContent li {
  408. /* background: #123d6a; */
  409. border-bottom: 1px solid #44616d;
  410. height: 40px;
  411. line-height: 40px;
  412. position: relative;
  413. }
  414. #menu .dzzy .zt-cbx {
  415. margin-left: 85px;
  416. vertical-align: middle;
  417. display: none;
  418. }
  419. #menu .dzzy section.item .linkContent .translate {
  420. margin-left: 80px;
  421. display: inline-block;
  422. width: 250px;
  423. overflow: hidden;
  424. white-space: nowrap;
  425. text-overflow: ellipsis;
  426. }
  427. #menu .dzzy section {
  428. border-bottom: 1px solid #44616d;
  429. cursor: pointer;
  430. }
  431. /*#menu .dzzy section:nth-child(1){
  432. border-top: 1px solid #235487;
  433. }*/
  434. #menu .dzzy section.item .linkContent li:nth-child(1) {
  435. border-top: 1px solid #235487;
  436. }
  437. #menu .ml74 {
  438. margin-left: 74px;
  439. }
  440. #menu #TDMap .tdmapContent {
  441. /*display: none;*/
  442. }
  443. #menu #TDMap .tdmapContent.active {
  444. /*display: block;*/
  445. }
  446. #menu #TDMap .tianditu {
  447. border-bottom: 1px solid #2a67a5;
  448. }
  449. #menu #TDMap .sectionbg {
  450. margin-left: 65px;
  451. background: url(../images/layout/right.png) left no-repeat;
  452. padding-left: 25px;
  453. }
  454. #menu #TDMap .sectionbg.open {
  455. background: url(../images/layout/down.png) left no-repeat;
  456. }
  457. #menu #TDMap section.item .linkContent li {
  458. background: #123d6a;
  459. }
  460. #menu #TDMap .zt-cbx {
  461. margin-left: 85px;
  462. vertical-align: middle;
  463. }
  464. #menu #TDMap section.item .linkContent .translate {
  465. margin-left: 5px;
  466. }
  467. #menu #TDMap section {
  468. border-bottom: 1px solid #235487;
  469. }
  470. #menu #TDMap section.item .linkContent li:nth-child(1) {
  471. border-top: 1px solid #235487;
  472. }
  473. /* #menu .sanWei li.item {
  474. position: relative;
  475. height: 40px;
  476. line-height: 40px;
  477. cursor: pointer;
  478. }
  479. #menu .sanWei li.item .no-bg {
  480. display: inline-block;
  481. margin-left: 80px;
  482. width: 250px;
  483. }
  484. #menu .sanWei li.item .zt-cbx{
  485. display: none;
  486. } */
  487. #menu li.item {
  488. position: relative;
  489. height: 40px;
  490. line-height: 40px;
  491. cursor: pointer;
  492. }
  493. #menu li.item .no-bg {
  494. display: inline-block;
  495. margin-left: 80px;
  496. width: 250px;
  497. }
  498. #menu li.item .zt-cbx {
  499. display: none;
  500. }
  501. /* 图层控制 */
  502. #layerControlMenu {
  503. position: absolute;
  504. width: 230px;
  505. display: none;
  506. left: 0px;
  507. z-index: 1002;
  508. }
  509. #layerControlMenu.bl {
  510. display: block;
  511. }
  512. #layerControlMenu .myLayers {
  513. /*line-height: 46px;*/
  514. width: 202px;
  515. border: 1px solid #aaaaaa;
  516. border-radius: 4px;
  517. background: rgba(64, 158, 230, 0.86);
  518. }
  519. #layerControlMenu .myLayers.active {
  520. width: 100%;
  521. }
  522. #layerControlMenu .myLayers.active .clearLayer {
  523. cursor: pointer;
  524. width: 18px;
  525. height: 18px;
  526. background: url(../images/layout/clear.png) no-repeat;
  527. margin: 13px 13px 0 0;
  528. }
  529. #layerControlMenu .layerListSwitch {
  530. cursor: pointer;
  531. width: 20px;
  532. height: 20px;
  533. margin: 15px 5px 0 0;
  534. background: url(../images/layout/arrow_down.png) 0 5px no-repeat;
  535. }
  536. #layerControlMenu .myLayers.active .layerListSwitch {
  537. background: url(../images/layout/arrow_up.png) 0 5px no-repeat;
  538. }
  539. #layerControlMenu .myLayers span.data-save {
  540. display: none !important;
  541. }
  542. #layerControlMenu .myLayers p {
  543. display: inline-block;
  544. }
  545. #layerControlMenu .im-m {
  546. cursor: move;
  547. /* background: url(../images/layout/layer_title_bg.png) no-repeat; */
  548. }
  549. #layerControlMenu .im-m .im-0 {
  550. padding-left: 20px;
  551. margin-left: 0;
  552. color: #fff;
  553. }
  554. #layerControlMenu .myLayers.active .im-m {
  555. line-height: 46px;
  556. border-bottom: 1px solid #000;
  557. /* background: url(../images/layout/layer-title-bg.png) no-repeat; */
  558. /* background: rgba(9, 30, 41, 0.8); */
  559. background: rgba(34, 78, 125, 0.8);
  560. border-radius: 4px;
  561. }
  562. #layerControlMenu .myLayers p:nth-child(1) {
  563. padding-right: 1%;
  564. /*width: 97%;*/
  565. display: block;
  566. line-height: 46px;
  567. border-bottom: 0;
  568. }
  569. #layerControlMenu .myLayers li {
  570. color: #fff;
  571. border-bottom: 1px solid #aaaaaa;
  572. position: relative;
  573. background: url(../images/layout/zhenyan.png) 45px 16px / 21px no-repeat;
  574. background-size: 20px;
  575. /*line-height: 46px;*/
  576. /*padding: 0 5px 5px 5px;*/
  577. }
  578. #layerControlMenu .myLayers li:last-child {
  579. border-bottom: none;
  580. }
  581. /* #layerControlMenu .myLayers li.sxlayer{
  582. background: none !important;
  583. } */
  584. #layerControlMenu .myLayers li .close {
  585. display: inline-block;
  586. text-align: center;
  587. cursor: pointer;
  588. font-size: 20px;
  589. width: 13px;
  590. height: 14px;
  591. line-height: 18px;
  592. border-radius: 100% 100%;
  593. vertical-align: top;
  594. margin: 19px 0 0 20px;
  595. /*opacity: 0;*/
  596. background: url(../images/layout/bg_close.png) no-repeat;
  597. text-indent: -111111px;
  598. background-size: 13px;
  599. }
  600. #layerControlMenu .myLayers li .close:hover {
  601. background: url(../images/layout/bg_close.png) no-repeat;
  602. background-size: 13px;
  603. }
  604. #layerControlMenu .myLayers li .fr {
  605. font-size: 14px;
  606. -webkit-user-select: none;
  607. -moz-user-select: none;
  608. -ms-user-select: none;
  609. user-select: none;
  610. }
  611. #layerControlMenu .myLayers li .fr.gear {
  612. width: 20px;
  613. height: 49px;
  614. cursor: pointer;
  615. margin-right: 0px;
  616. background: url(../images/layout/gear_gray.png) center no-repeat;
  617. filter: contrast(1000%);
  618. }
  619. #layerControlMenu .myLayers li .fr.location {
  620. width: 20px;
  621. height: 49px;
  622. cursor: pointer;
  623. margin-right: 0px;
  624. background: url(../images/layout/location.png) center no-repeat;
  625. filter: contrast(1000%);
  626. }
  627. #layerControlMenu .myLayers li .fr.stereoscopic_set {
  628. width: 20px;
  629. height: 49px;
  630. cursor: pointer;
  631. margin-right: 0px;
  632. background: url(../images/layout/gear_gray.png) center no-repeat;
  633. }
  634. #layerControlMenu .myLayers li .fr.legend {
  635. width: 20px;
  636. height: 49px;
  637. cursor: pointer;
  638. margin-right: 0px;
  639. background: url(../images/layout/atlas_info.png) center no-repeat;
  640. }
  641. #layerControlMenu .myLayers li .move {
  642. position: relative;
  643. width: 17px;
  644. height: 45px;
  645. margin: 0px 0 0 21px;
  646. vertical-align: top;
  647. }
  648. #layerControlMenu .myLayers li .up {
  649. cursor: pointer;
  650. background: url(../images/layout/up_gray.png) center no-repeat;
  651. width: 17px;
  652. height: 10px;
  653. position: absolute;
  654. top: 10px;
  655. left: 1px;
  656. }
  657. #layerControlMenu .myLayers li .down {
  658. cursor: pointer;
  659. background: url(../images/layout/down_gray.png) center no-repeat;
  660. width: 17px;
  661. height: 10px;
  662. position: absolute;
  663. top: 30px;
  664. left: -4px;
  665. }
  666. #layerControlMenu .myLayers li input {
  667. display: inline-block;
  668. position: absolute;
  669. width: 20px;
  670. top: 15px;
  671. left: 45px;
  672. height: 20px;
  673. vertical-align: text-bottom;
  674. }
  675. #layerControlMenu .myLayers li input[type="checkbox"] {
  676. opacity: 0;
  677. cursor: pointer;
  678. }
  679. #layerControlMenu .myLayers span {
  680. display: inline-block;
  681. }
  682. #layerControlMenu .myLayers .scroll-bar {
  683. max-height: 250px;
  684. overflow: auto;
  685. /* background: #f5f5f5; */
  686. /* border: 1px solid #01b7ff; */
  687. border-top: none;
  688. }
  689. #layerControlMenu .myLayers li .clearfix {
  690. width: 97%;
  691. padding-right: 3%;
  692. position: relative;
  693. }
  694. #layerControlMenu .myLayers .mn-content span.data-name {
  695. width: 90px;
  696. overflow: hidden;
  697. white-space: nowrap;
  698. text-overflow: ellipsis;
  699. vertical-align: top;
  700. line-height: 50px;
  701. margin-left: 40px;
  702. }
  703. #layerControlMenu .myLayers .op {
  704. position: relative;
  705. margin: 0px 5px;
  706. width: 85px;
  707. height: 5px;
  708. background: #001550;
  709. }
  710. #layerControlMenu .myLayers .op .chang {
  711. position: absolute;
  712. left: 0;
  713. top: 0;
  714. background: #299eef;
  715. width: 0;
  716. height: 5px;
  717. vertical-align: middle;
  718. }
  719. #layerControlMenu .myLayers .op .yuan {
  720. width: 12px;
  721. height: 12px;
  722. position: absolute;
  723. top: -5px;
  724. left: 0px;
  725. background: #378be0;
  726. border: 1px solid #378be0;
  727. border-radius: 100% 100%;
  728. cursor: pointer;
  729. -webkit-user-select: none;
  730. -moz-user-select: none;
  731. -ms-user-select: none;
  732. user-select: none;
  733. }
  734. #layerControlMenu .myLayers .layer-detail {
  735. display: inline-block;
  736. width: 12px;
  737. height: 15px;
  738. background: url(../images/layout/detail.png) no-repeat;
  739. vertical-align: text-bottom;
  740. margin-left: 7px;
  741. cursor: pointer;
  742. }
  743. #layerControlMenu .myLayers .layer-cale {
  744. display: inline-block;
  745. width: 17px;
  746. height: 16px;
  747. background: url(../images/layout/star.png) no-repeat;
  748. vertical-align: text-bottom;
  749. cursor: pointer;
  750. }
  751. #layerControlMenu .myLayers .down {
  752. margin-left: 5px;
  753. }
  754. #layerControlMenu .myLayers .mn-act.no .wSet {
  755. opacity: 0;
  756. }
  757. #layerControlMenu .myLayers .mn-act.yes .wSet {
  758. opacity: 1;
  759. }
  760. #layerControlMenu .mn-content .mn-act {
  761. display: none;
  762. margin-left: 20px;
  763. font-size: 12px;
  764. margin-top: -5px;
  765. padding-bottom: 5px;
  766. line-height: 46px;
  767. }
  768. #layerControlMenu .mn-content .mn-act.active {
  769. display: block;
  770. }
  771. #layerControlMenu .mn-content .mn-act.DS {
  772. margin-left: 10px;
  773. }
  774. #layerControlMenu .myLayers li .DS .move {
  775. margin: 0;
  776. }
  777. #layerControlMenu .mn-content .mn-act .layer-cale {
  778. margin: 0 5px;
  779. }
  780. #layerControlMenu .mn-content p.tip-none {
  781. text-align: center;
  782. display: none;
  783. }
  784. #layerControlMenu .dao {
  785. margin-left: 20px;
  786. }
  787. #layerControlMenu .infoMenu .im-1 ul.menu-content {
  788. /*max-height: 168px;*/
  789. /*overflow: auto;*/
  790. }
  791. #layerControlMenu .no-bg {
  792. background: none !important;
  793. }
  794. #layerControlMenu .mn-content {
  795. display: none;
  796. /* background: #fff; */
  797. }
  798. #layerControlMenu .active .mn-content {
  799. display: block;
  800. }
  801. #menu-title {
  802. position: absolute;
  803. top: 800px;
  804. left: 0;
  805. width: 100%;
  806. color: transparent;
  807. cursor: pointer;
  808. line-height: 66px;
  809. background: url(../images/layout/logo.png) center no-repeat;
  810. }
  811. #menu .taiShiTool {
  812. line-height: 35px;
  813. padding-bottom: 10px;
  814. vertical-align: middle;
  815. margin: 0px 0px 0px 0px;
  816. }
  817. .meun-checkBox {
  818. position: absolute;
  819. width: 20px;
  820. height: 18px;
  821. left: 50px;
  822. top: 11px;
  823. }
  824. .commitbtn .meun-checkBox {
  825. margin: 0px !important;
  826. padding: 0px !important;
  827. }
  828. .meun-checkBox.menu-select-no {
  829. opacity: 0.64;
  830. }
  831. .menu-select-no {
  832. color: #fff;
  833. background: url("../images/weixing/selected-no.png") no-repeat 3px center !important;
  834. }
  835. .menu-select {
  836. color: #03e3fa;
  837. background: url("../images/weixing/selected.png") no-repeat 3px center !important;
  838. }
  839. .menu-select + .translate {
  840. color: #fdda34;
  841. }
  842. .satellite .meun-checkBox,
  843. .ts .meun-checkBox {
  844. left: 35px;
  845. }
  846. .eye {
  847. display: inline-block;
  848. text-indent: -1111111111px;
  849. background: url(../images/layout/biyan.png) no-repeat;
  850. background-size: 20px;
  851. position: absolute;
  852. top: 22px;
  853. left: 48px;
  854. width: 20px;
  855. height: 12px;
  856. }
  857. .eye.checkTrue {
  858. background: url(../images/layout/zhenyan.png) no-repeat;
  859. background-size: 20px;
  860. top: 18px;
  861. }
  862. #layerControlMenu .myLayers span.eye {
  863. display: none;
  864. }
  865. .myLayer .clearfix:after {
  866. display: inline-block;
  867. }
  868. .menu-scroll .gongxin {
  869. /* display: none; */
  870. }
  871. #wrapper .sx-video-content {
  872. width: 492px;
  873. /*width:500px;*/
  874. height: 78px;
  875. }
  876. #wrapper .sx-video-title {
  877. height: 20px;
  878. }
  879. #wrapper .sx-video-panel {
  880. height: 54px;
  881. background: #1257ac;
  882. border: 1px solid #03e3fa;
  883. /*clear: both;*/
  884. }
  885. #wrapper .sx-video-panel-left {
  886. height: 54px;
  887. width: 14px;
  888. float: left;
  889. background: url(../../scripts/meteo/other/meteoVideo/img/border-left.png)
  890. no-repeat;
  891. }
  892. #wrapper .sx-video-panel-right {
  893. height: 54px;
  894. width: 14px;
  895. float: right;
  896. background: url(../../scripts/meteo/other/meteoVideo/img/border-right.png)
  897. no-repeat;
  898. }
  899. #wrapper .sx-video-panel-center {
  900. width: 400px;
  901. height: 54px;
  902. float: left;
  903. margin-left: 20px;
  904. }
  905. #wrapper .sx-title-left {
  906. height: 20px;
  907. width: auto;
  908. float: left;
  909. max-width: 600px;
  910. }
  911. #wrapper .sx-title-left .sx-title-left-l {
  912. width: 7px;
  913. height: 20px;
  914. float: left;
  915. background: url(../../scripts/meteo/other/meteoVideo/img/title-lbg.png)
  916. no-repeat;
  917. }
  918. #wrapper .sx-title-left .sx-title-left-c {
  919. float: left;
  920. height: 20px;
  921. min-width: 92px;
  922. font-size: 13px;
  923. color: #fff;
  924. background: url(../../scripts/meteo/other/meteoVideo/img/title-cbg.png)
  925. repeat-x;
  926. }
  927. #wrapper .sx-title-left .sx-title-left-r {
  928. width: 20px;
  929. height: 20px;
  930. float: left;
  931. background: url(../../scripts/meteo/other/meteoVideo/img/title-rbg.png)
  932. no-repeat;
  933. }
  934. #wrapper .sx-title-right-close {
  935. width: 24px;
  936. height: 20px;
  937. float: right;
  938. cursor: pointer;
  939. margin-top: 2px;
  940. background: url(../../scripts/meteo/other/meteoVideo/img/btn_close.png) 0 5px
  941. no-repeat;
  942. }
  943. #wrapper .sx-video-progress-total {
  944. height: 24px;
  945. width: 400px;
  946. }
  947. #wrapper .sx-video-progress-div {
  948. margin-top: 18px;
  949. height: 6px;
  950. float: left;
  951. }
  952. #wrapper .sx-video-progress {
  953. height: 6px;
  954. width: 400px;
  955. cursor: pointer;
  956. position: relative;
  957. background: url(../../scripts/meteo/other/meteoVideo/img/time-progress.png)
  958. no-repeat;
  959. }
  960. #wrapper .sx-video-progress_btn {
  961. height: 24px;
  962. width: 24px;
  963. cursor: pointer;
  964. position: absolute;
  965. top: -11px;
  966. left: -11px;
  967. background: url(../../scripts/meteo/other/meteoVideo/img/point.png) no-repeat;
  968. }
  969. #wrapper .sx-video-opt {
  970. height: 30px;
  971. width: 400px;
  972. float: left;
  973. }
  974. #wrapper .sx-video-bottom {
  975. position: absolute;
  976. left: 200px;
  977. height: 30px;
  978. width: 160px;
  979. margin: 7px 0px 0px 0px;
  980. float: left;
  981. text-align: center;
  982. }
  983. #wrapper .sx-video-btn-group {
  984. position: absolute;
  985. left: -30px;
  986. width: 160px;
  987. height: 24px;
  988. float: left;
  989. margin-left: 18px;
  990. text-align: center;
  991. }
  992. #wrapper .sx-start-time {
  993. color: #fff;
  994. width: 160px;
  995. font-size: 8px;
  996. float: left;
  997. height: 24px;
  998. margin-top: 3px;
  999. text-align: left;
  1000. }
  1001. #wrapper .sx-end-time {
  1002. color: #fff;
  1003. float: left;
  1004. width: 120px;
  1005. font-size: 8px;
  1006. height: 24px;
  1007. margin-top: 3px;
  1008. text-align: right;
  1009. }
  1010. #wrapper .sx-video-btn-stop {
  1011. width: 12px;
  1012. height: 12px;
  1013. float: left;
  1014. cursor: pointer;
  1015. }
  1016. #wrapper .sx-video-btn-back {
  1017. width: 10px;
  1018. margin-left: 25px;
  1019. height: 14px;
  1020. float: left;
  1021. cursor: pointer;
  1022. }
  1023. #wrapper .sx-video-btn-play {
  1024. width: 12px;
  1025. height: 16px;
  1026. margin-left: 25px;
  1027. float: left;
  1028. cursor: pointer;
  1029. }
  1030. #wrapper .sx-video-btn-next {
  1031. width: 10px;
  1032. margin-left: 25px;
  1033. height: 14px;
  1034. float: left;
  1035. cursor: pointer;
  1036. }
  1037. #wrapper .sx-video-progress-count {
  1038. /* width: 60px; */
  1039. height: 53px;
  1040. color: #03e3fa;
  1041. font-size: 12px;
  1042. float: left;
  1043. }
  1044. #wrapper .sx-video-progress-times {
  1045. height: 16px;
  1046. margin: 10px 0px 0px 4px;
  1047. }
  1048. #wrapper .sx-video-progress-nowtime {
  1049. color: #03e3fa;
  1050. font-size: 12px;
  1051. }
  1052. #wrapper .sx-video-progress-lasttime {
  1053. color: #03e3fa;
  1054. font-size: 12px;
  1055. }
  1056. #wrapper .sx-video-progress-bottom {
  1057. float: left;
  1058. height: 24px;
  1059. width: 60px;
  1060. }
  1061. #wrapper .sx-video-query-btn {
  1062. height: 24px;
  1063. width: 22px;
  1064. cursor: pointer;
  1065. margin-left: 20px;
  1066. background: url(../../scripts/meteo/other/meteoVideo/img/time-queryBtn.png)
  1067. no-repeat;
  1068. }
  1069. #wrapper .sx-video-query-panel {
  1070. display: none;
  1071. width: 260px;
  1072. height: 53px;
  1073. position: relative;
  1074. float: left;
  1075. }
  1076. #wrapper .sx-video-ipt-div {
  1077. width: 220px;
  1078. height: 53px;
  1079. }
  1080. #wrapper .sx-video-query-ipt {
  1081. padding: 2px;
  1082. width: 220px;
  1083. height: 24px;
  1084. }
  1085. #wrapper .sx-video-query-label {
  1086. color: #fff;
  1087. text-align: center;
  1088. vertical-align: middle;
  1089. font-size: 13px;
  1090. }
  1091. #wrapper .sx-video-query-div {
  1092. position: absolute;
  1093. height: 53px;
  1094. top: 8px;
  1095. right: 3px;
  1096. width: 40px;
  1097. }
  1098. #wrapper .sx-video-query-btns {
  1099. height: 21px;
  1100. width: 29px;
  1101. color: #1257ac;
  1102. text-align: center;
  1103. vertical-align: middle;
  1104. padding: 5px;
  1105. background: #fff;
  1106. cursor: pointer;
  1107. border-radius: 4px;
  1108. border: 1px solid #03e3fa;
  1109. }
  1110. #wrapper .sx-video-query-btns:hover {
  1111. font-weight: bold;
  1112. background: #cbffc3;
  1113. opacity: 0.8;
  1114. }
  1115. #wrapper .sx-video-stop-img {
  1116. background: url(../../scripts/meteo/other/meteoVideo/img/stop_gray.png)
  1117. no-repeat;
  1118. }
  1119. #wrapper .sx-video-back-img {
  1120. background: url(../../scripts/meteo/other/meteoVideo/img/prev_gray.png)
  1121. no-repeat;
  1122. }
  1123. #wrapper .sx-video-play-img {
  1124. background: url(../../scripts/meteo/other/meteoVideo/img/play.png) no-repeat;
  1125. }
  1126. #wrapper .sx-video-parse-img {
  1127. background: url(../../scripts/meteo/other/meteoVideo/img/pause.png) no-repeat;
  1128. }
  1129. #wrapper .sx-video-next-img {
  1130. background: url(../../scripts/meteo/other/meteoVideo/img/next_gray.png)
  1131. no-repeat;
  1132. }
  1133. #wrapper .sx-video-stop-img-blue {
  1134. background: url(../../scripts/meteo/other/meteoVideo/img/stop_blue.png)
  1135. no-repeat;
  1136. }
  1137. #wrapper .sx-video-back-img-blue {
  1138. background: url(../../scripts/meteo/other/meteoVideo/img/prev_blue.png)
  1139. no-repeat;
  1140. }
  1141. #wrapper .sx-video-play-img-blue {
  1142. background: url(../../scripts/meteo/other/meteoVideo/img/next_blue.png)
  1143. no-repeat;
  1144. }
  1145. #wrapper .sx-video-next-img-blue {
  1146. background: url(../../scripts/meteo/other/meteoVideo/img/next_blue.png)
  1147. no-repeat;
  1148. }
  1149. .shixu-time-box {
  1150. display: none;
  1151. position: absolute;
  1152. bottom: 86px;
  1153. left: 50%;
  1154. margin-left: -248px;
  1155. }
  1156. #wrapper .sx-title-left-c .title {
  1157. margin: 0 5px;
  1158. }
  1159. #wrapper .sx-title-left-c .time {
  1160. color: #03e3fa;
  1161. font-weight: 800;
  1162. }
  1163. #vuemenu {
  1164. max-height: 400px;
  1165. overflow: hidden;
  1166. overflow-y: auto;
  1167. }
  1168. /* element-ui */
  1169. .el-tree {
  1170. background: transparent;
  1171. color: #fff;
  1172. }
  1173. .el-tree-node .is-leaf + .el-checkbox .el-checkbox__inner {
  1174. display: inline-block !important;
  1175. }
  1176. .el-tree-node .el-checkbox .el-checkbox__inner {
  1177. display: none !important;
  1178. }
  1179. .el-tree-node .el-checkbox .el-checkbox__input.is-disabled {
  1180. display: none !important;
  1181. }
  1182. .el-tree-node__content:hover {
  1183. background-color: transparent;
  1184. }
  1185. .el-tree-node:focus > .el-tree-node__content {
  1186. background-color: transparent;
  1187. }
  1188. .el-tree-node__content {
  1189. height: 40px;
  1190. }
  1191. .el-tree-node__label {
  1192. font-size: 16px;
  1193. }