menu.css 23 KB

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