app.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944
  1. /* 通用样式 */
  2. /* Unable to preventDefault inside passive event listener due to target being treated as passive. See */
  3. /* 解决控制台以上输出提示 */
  4. * {
  5. touch-action: pan-y;
  6. }
  7. @font-face {
  8. font-family: "iconfont";
  9. src: url('../fonts/iconfont.ttf');
  10. }
  11. /* 自定义字体通用样式 */
  12. .app-icon {
  13. font-family: "iconfont", sans-serif !important;
  14. font-size: 16px;
  15. font-weight: normal;
  16. font-style: normal;
  17. line-height: 1;
  18. display: inline-block;
  19. text-decoration: none;
  20. -webkit-font-smoothing: antialiased;
  21. }
  22. .app-icon.mui-active {
  23. color: #FF0000;
  24. }
  25. /* 账号 */
  26. .app-icon-account:before {
  27. content: "\e8eb";
  28. }
  29. /* 密码 */
  30. .app-icon-password:before {
  31. content: "\e808";
  32. }
  33. /* IP地址图标 */
  34. .app-icon-ip::before {
  35. content: "\e6b6";
  36. }
  37. /* COM端口图标 */
  38. .app-icon-com::before {
  39. content: "\e69c";
  40. }
  41. /* 用户图标 */
  42. .app-ico-user::before {
  43. content: "\e68f";
  44. }
  45. /* 下一条信息图标 */
  46. .app-ico-next:before {
  47. content: "\e84e";
  48. }
  49. /* 所属河道图标 */
  50. .app-icon-sshd:before {
  51. content: "\ebfe";
  52. }
  53. /* 上报类别图标 */
  54. .app-icon-sslb:before {
  55. content: "\ebb8";
  56. }
  57. /* 日期图标 */
  58. .app-icon-date:before {
  59. content: "\eb9a";
  60. }
  61. /* 用户图标 */
  62. .app-icon-member:before {
  63. content: "\eb8e";
  64. }
  65. /* 案件审核图标 */
  66. .app-icon-verify:before {
  67. content: "\eb74";
  68. }
  69. /* 派发案件图标 */
  70. .app-icon-assign:before {
  71. content: "\eb89";
  72. }
  73. /* 督办案件图标 */
  74. .app-icon-supervise:before {
  75. content: "\e6be";
  76. }
  77. /* 督办人员图标 */
  78. .app-icon-supervise-user:before {
  79. content: "\e6c1";
  80. }
  81. /* 撤派案件图标 */
  82. .app-icon-undoassign:before {
  83. content: "\e7a9";
  84. }
  85. /* 地图定位图标 */
  86. .app-icon-location:before {
  87. content: "\e7a5";
  88. }
  89. /* GPS导航图标 */
  90. .app-icon-navigation:before {
  91. content: "\eb8b";
  92. }
  93. /* 详情图标 */
  94. .app-icon-info:before {
  95. content: "\e7db";
  96. }
  97. /* 微信图标 */
  98. .app-icon-weixin:before {
  99. content: "\e8e9";
  100. }
  101. /* 案件处理图标 */
  102. .app-icon-check:before {
  103. content: "\e816";
  104. }
  105. /* 电话图标 */
  106. .app-icon-phone:before {
  107. content: "\e848";
  108. }
  109. /* 相机图标 */
  110. .app-icon-camera:before {
  111. content: "\e820";
  112. }
  113. /* 主页图标-统计 */
  114. .app-icon-main-count:before {
  115. content: "\e6cd";
  116. }
  117. /* 主页图标-任务 */
  118. .app-icon-main-task:before {
  119. content: "\e616";
  120. }
  121. /* 主页图标-地图 */
  122. .app-icon-main-map:before {
  123. content: "\e695";
  124. }
  125. /* 主页图标-通讯录 */
  126. .app-icon-main-address:before {
  127. content: "\e6dd";
  128. }
  129. /* 主页图标-我的 */
  130. .app-icon-main-set:before {
  131. content: "\e622";
  132. }
  133. /* 菜单图标-待处理 */
  134. .app-cion-menu-waitcheck:before {
  135. content: "\e6b9";
  136. }
  137. /* 菜单图标-待复飞 */
  138. .app-cion-menu-waitrepeat:before {
  139. content: "\e6b3";
  140. }
  141. /* 菜单图标-待审核 */
  142. .app-cion-menu-waitverify:before {
  143. content: "\e6f5";
  144. }
  145. /* 菜单图标-已结案 */
  146. .app-cion-menu-close:before {
  147. content: "\e6b4";
  148. }
  149. /* 菜单图标-待派发 */
  150. .app-cion-menu-assign:before {
  151. content: "\e6ba";
  152. }
  153. /* 菜单图标-撤销派发 */
  154. .app-cion-menu-undoassign:before {
  155. content: "\e6b5";
  156. }
  157. /* 菜单图标-待督办 */
  158. .app-cion-menu-wait-supervise:before {
  159. content: "\e6be";
  160. }
  161. /* 菜单图标-已督办 */
  162. .app-cion-menu-supervise:before {
  163. content: "\e6bf";
  164. }
  165. /* 菜单图标-飞行航线 */
  166. .app-cion-menu-line:before {
  167. content: "\e6b2";
  168. }
  169. /* 菜单图标-考核排名 */
  170. .app-cion-menu-khpm:before {
  171. content: "\e9ae";
  172. }
  173. /* 菜单图标-统计分析 */
  174. .app-cion-menu-tjfx:before {
  175. content: "\e6c0";
  176. }
  177. /* 菜单图标-查询 */
  178. .app-cion-menu-query:before {
  179. content: '\e6ae';
  180. }
  181. /* 菜单图标-首页 */
  182. .app-cion-menu-main:before {
  183. content: '\e606';
  184. }
  185. /* 菜单图标-饼图 */
  186. .app-cion-menu-pie:before {
  187. content: '\e6ad';
  188. }
  189. /* 菜单图标-本地案件 */
  190. .app-cion-menu-local:before {
  191. content: "\e6bf";
  192. }
  193. /* 案件列表-图标-待处理 */
  194. .app-icon-caseinfo-waitcheck::before {
  195. content: "\e62d";
  196. }
  197. /* 案件列表-图标-待复飞 */
  198. .app-icon-caseinfo-waitrepeat::before {
  199. content: "\e635";
  200. }
  201. /* 案件列表-图标-待审核 */
  202. .app-icon-caseinfo-waitverify::before {
  203. content: "\e633";
  204. }
  205. /* 案件列表-图标-已结案 */
  206. .app-icon-caseinfo-close::before {
  207. content: "\e625";
  208. }
  209. /* 案件列表-图标-待派发 */
  210. .app-icon-caseinfo-waitassign::before {
  211. content: "\e627";
  212. }
  213. /* 案件列表-图标-以派发 */
  214. .app-icon-caseinfo-yesassign::before {
  215. content: "\e634";
  216. }
  217. /* 导航栏按钮 审核 */
  218. .app-icon-nav-button-verify::before {
  219. content: "\e655";
  220. }
  221. /* 案件审核 审核类型 同意结案 */
  222. .app-icon-chk-close::before {
  223. content: "\e6bb";
  224. }
  225. /* 案件审核 审核类型 重新处理 */
  226. .app-icon-chk-recheck::before {
  227. content: "\e62e";
  228. }
  229. /* 案件审核 审核类型 重新复飞 */
  230. .app-icon-chk-rerepeat::before {
  231. content: "\e659";
  232. }
  233. /* 地图 按钮 测量面积 */
  234. .app-icon-map-measurearea::before {
  235. content: "\e6db";
  236. }
  237. /* 地图 按钮 测量长度 */
  238. .app-icon-map-measurelength::before {
  239. content: "\e6cf";
  240. }
  241. /* 地图 按钮 通用占地分析 */
  242. .app-icon-map-common-analysis:before {
  243. content: '\edb5';
  244. }
  245. /* 地图 按钮 栅格图 */
  246. .app-icon-map-raster::before {
  247. content: "\e729";
  248. }
  249. /* 地图 按钮 矢量图 */
  250. .app-icon-map-vector::before {
  251. content: "\e626";
  252. }
  253. /* 地图 按钮 定位 */
  254. .app-icon-map-location::before {
  255. content: "\e6e0";
  256. }
  257. /* 地图 按钮 初始定位 */
  258. .app-icon-map-initlocation::before {
  259. content: "\e6da";
  260. }
  261. /* 地图 按钮 图层控制 */
  262. .app-icon-map-layer::before {
  263. content: "\e600";
  264. }
  265. /* 地图 按钮 坐标查询 */
  266. .app-icon-map-inputcoord-location::before {
  267. content: "\e6dc";
  268. }
  269. /* 地图 按钮 查询坐标 */
  270. .app-icon-map-querycoord::before {
  271. content: "\e6d9";
  272. }
  273. /* 地图 按钮 分屏对比 */
  274. .app-icon-map-screen::before {
  275. content: "\e6a0";
  276. }
  277. /* 地图 按钮 点查询 */
  278. .app-icon-map-pointquery::before {
  279. content: "\e8c7";
  280. }
  281. /* 地图 按钮 区域查询 */
  282. .app-icon-map-areaquery::before {
  283. content: "\e6f0";
  284. }
  285. /* 地图 按钮 案件 点查询 */
  286. .app-icon-map-case-pointquery::before {
  287. content: "\e6de";
  288. }
  289. /* 地图 按钮 案件 区域查询 */
  290. .app-icon-map-case-areaquery::before {
  291. content: "\e6e1";
  292. }
  293. /* 地图 按钮 点图查询 */
  294. .app-icon-map-query-point:before {
  295. content: '\e6c4';
  296. }
  297. /* 地图 按钮 区域查询 */
  298. .app-icon-map-query-polygon:before {
  299. content: '\e6c5';
  300. }
  301. /* 回退一步 */
  302. .app-icon-map-redo::before {
  303. content: "\e6ce";
  304. }
  305. /* 恢复原状 */
  306. .app-icon-map-undo::before {
  307. content: "\e6cc";
  308. }
  309. /* 地图 图层 矢量图层 */
  310. .app-icon-map-layer-vector::before {
  311. content: "\e754";
  312. }
  313. /* 地图 图层 栅格图层 */
  314. .app-icon-map-layer-raster::before {
  315. content: "\e674";
  316. }
  317. /* 普通图层 */
  318. .app-icon-map-layer-normal::before {
  319. content: "\e640";
  320. }
  321. /* 地图 按钮 窗口工具 */
  322. .app-icon-map-window::before {
  323. content: "\e6d8";
  324. }
  325. /* 地图 按钮 清扫工具 */
  326. .app-icon-map-clean::before {
  327. content: "\e69e";
  328. }
  329. /* 地图 按钮 地类分析 */
  330. .app-icon-map-land::before {
  331. content: "\e6f3"
  332. }
  333. /* 地图 按钮 地类分析结果展示 */
  334. .app-icon-map-land-result::before {
  335. content: "\ec71";
  336. }
  337. /* 案件分析 */
  338. .app-icon-map-case-analysis::before {
  339. content: "\e6c3";
  340. }
  341. /* 图层选择图标 */
  342. .app-icon-map-layer-select::before {
  343. content: "\e6e2";
  344. }
  345. /* 定位图标 */
  346. .app-icon-nomarl-location::before {
  347. content: "\e636";
  348. }
  349. /* 上升箭头 */
  350. .app-icon-arrow-up::before {
  351. content: "\e64f";
  352. }
  353. /* 下降箭头 */
  354. .app-icon-arrow-down::before {
  355. content: "\e652";
  356. }
  357. .app-icon-arrow-other:before {
  358. content: "\e8c0";
  359. }
  360. /* 通讯录电话图标 */
  361. .app-icon-address-phone::before {
  362. content: "\e68e";
  363. color: rgb(255, 255, 255);
  364. }
  365. /* 通讯录短信图标 */
  366. .app-icon-address-message::before {
  367. content: "\ec3f";
  368. color: rgb(255, 255, 255);
  369. }
  370. /* 设置-编辑个人信息图标 */
  371. .app-icon-set-edit::before {
  372. content: "\e6f4";
  373. }
  374. /* 设置-版本图标 */
  375. .app-icon-set-version::before {
  376. content: "\eb66";
  377. }
  378. /* 设置-关于图标 */
  379. .app-icon-set-about::before {
  380. content: "\e6a1";
  381. }
  382. /* 设置-重登陆图标 */
  383. .app-icon-set-relogin::before {
  384. content: "\e6a2";
  385. }
  386. /* 设置-快捷键 */
  387. .app-icon-set-kjkey::before {
  388. content: "\e676";
  389. }
  390. /* 关闭图标 */
  391. .app-icon-close::before {
  392. content: "\e88a";
  393. }
  394. /* 右向双箭头 */
  395. .app-icon-arrow-right::before {
  396. content: "\e85d";
  397. }
  398. /* 向下双箭头 */
  399. .app-icon-arrow-down-copy::before {
  400. content: '\ec0d';
  401. }
  402. /* 查询图标 */
  403. .app-icon-menu-query::before {
  404. content: '\e6ae';
  405. }
  406. /* 柱状图菜单图标 */
  407. .app-icon-menu-bar::before {
  408. content: '\e6aa';
  409. }
  410. /* 金额柱状图图标 */
  411. .app-icon-menu-bar-money::before {
  412. content: '\e6ad';
  413. }
  414. /* 折线图图标 */
  415. .app-icon-menu-line::before {
  416. content: '\e6af';
  417. }
  418. /* 资源统计图标 */
  419. .app-icon-menu-resource-count:before {
  420. content: '\e8cd';
  421. }
  422. /* 摄像头图标 */
  423. .app-icon-menu-monitor:before {
  424. content: '\e67b';
  425. }
  426. /* 地图上展示线图标 */
  427. .app-icon-map-line::before {
  428. content: '\e6b2';
  429. }
  430. /* 错误图标 */
  431. .app-icon-error:before {
  432. content: '\ec00';
  433. }
  434. /* 关闭按钮向左箭头 */
  435. .app-icon-close-left-arrow:before {
  436. content: '\e7a9';
  437. }
  438. /* 详细信息 */
  439. .app-iocn-details:before {
  440. content: '\e6ae';
  441. }
  442. /* 占压分析图标 */
  443. .app-icon-accupy-analysis:before {
  444. content: '\e63d';
  445. }
  446. .
  447. /**
  448. * 主页样式
  449. */
  450. /* 案件动态 单元格样式 */
  451. .cr-case-dynamic-cell {
  452. padding: 3px 0px 3px 15px;
  453. }
  454. /* 案件动态 大行样式 */
  455. .cr-case-dynamic-row-big {
  456. display: flex;
  457. align-items: center;
  458. }
  459. /* 案件动态 前置图标样式 */
  460. .cr-case-dynamic-ico {
  461. width: 34px;
  462. height: 34px;
  463. line-height: 34px;
  464. margin-right: 10px;
  465. background-color: rgba(255, 255, 255, 0);
  466. border-radius: 17px;
  467. text-align: center;
  468. box-shadow: rgb(95, 150, 222) 0px 0px 10px inset;
  469. }
  470. /* 案件动态 标识样式 */
  471. .cr-case-dynamic-ico>span {
  472. display: inline-block;
  473. color: rgb(255, 255, 255);
  474. /* background: linear-gradient(to bottom, rgb(86, 113, 235) 50%, rgb(99, 144, 231) 50%);
  475. -webkit-background-clip: text;
  476. color: transparent; */
  477. }
  478. /* 案件动态 单元格内行样式 */
  479. .cr-case-dynamic-row {
  480. font-size: 11px;
  481. height: 20px !important;
  482. line-height: 24px;
  483. }
  484. /* 案件动态 行内 日期样式 */
  485. .cr-case-dynamic-row .cr-case-dynamic-date {
  486. color: rgb(46, 122, 253) !important;
  487. font-size: 13px;
  488. }
  489. /* 案件动态 行内 标题样式 */
  490. .cr-case-dynamic-row .cr-case-dynamic-title {
  491. font-family: 'TTTGB-Medium' !important;
  492. font-size: 15px;
  493. color: rgb(223, 141, 49);
  494. }
  495. /* 案件动态 行内 标题样式 */
  496. .cr-case-dynamic-row .cr-case-dynamic-key {
  497. font-family: 'TTTGB-Medium';
  498. font-size: 13px;
  499. color: rgb(203, 203, 203);
  500. }
  501. /* 案件动态 行内 值样式 */
  502. .cr-case-dynamic-row .cr-case-dynamic-val {
  503. color: rgb(125, 201, 236) !important;
  504. /* font-weight: bold; */
  505. margin-right: 10px;
  506. margin-left: 3px;
  507. font-family: 'UnidreamLED' !important;
  508. font-size: 14px;
  509. }
  510. /* 案件动态 行内 排名样式 */
  511. .cr-case-dynamic-row .cr-case-dynamic-ranking {
  512. display: inline-block;
  513. background-color: rgb(50, 85, 239) !important;
  514. width: 16px;
  515. height: 16px;
  516. line-height: 16px;
  517. color: rgb(255, 255, 255) !important;
  518. text-align: center;
  519. border-radius: 3px;
  520. }
  521. /**
  522. * 激活控件的背景色
  523. */
  524. .cr-active {
  525. background-color: rgb(51, 165, 40) !important;
  526. }
  527. /**
  528. * 图表ECharts样式
  529. */
  530. /* 图表提示框标题样式 */
  531. .echarts-tooltip-title {
  532. font-family: 'TTTGB-Medium', sans-serif;
  533. color: rgb(0, 35, 155);
  534. }
  535. /* 图表提示框行值样式 */
  536. .echarts-tooltip-row-value {
  537. font-weight: bold;
  538. float: right;
  539. color: rgb(26, 38, 80);
  540. }
  541. /* 图表提示框行占比样式 */
  542. .echarts-tooltip-row-proportion {
  543. font-weight: bold;
  544. color: rgb(0, 89, 38);
  545. font-family: 'UnidreamLED', sans-serif;
  546. }
  547. /* 通用样式 */
  548. /* html body通用样式 */
  549. html,
  550. body {
  551. height: 100%;
  552. margin: 0px;
  553. padding: 0px;
  554. }
  555. /* body通用背景样式 */
  556. body {
  557. background-color: rgb(53, 72, 116, 1.0) !important;
  558. }
  559. /* 横向分割线样式 */
  560. .cr-line-h {
  561. height: 4px;
  562. width: 100%;
  563. background-color: rgba(230, 230, 230, 0);
  564. }
  565. /***+++++++++++++修改MUI样式+++++++++++++***/
  566. /* 此用于非沉浸式导航栏 注意 这很重要 */
  567. .mui-bar {
  568. background: #243f6d !important;
  569. height: 44px !important;
  570. padding-top: 0px !important;
  571. color: rgb(34, 97, 179) !important;
  572. }
  573. /* 导航栏搜索框的颜色 */
  574. .mui-bar .mui-search input {
  575. border: solid 1px rgba(0, 0, 0, 0.6);
  576. border-radius: 3px;
  577. color: rgba(0, 0, 0, 1);
  578. }
  579. .mui-bar-nav h1 {
  580. color: #fff
  581. }
  582. /* 紧跟在mui-bar-nav之后的mui-content类 */
  583. .mui-bar-nav~.mui-content {
  584. padding-top: 64px;
  585. }
  586. .mui-bar-nav~.mui-content .mui-pull-top-pocket {
  587. top: 64px;
  588. }
  589. .mui-bar-nav~.mui-content.mui-scroll-wrapper .mui-scrollbar-vertical {
  590. top: 64px;
  591. }
  592. .mui-bar-nav~.mui-content .mui-slider.mui-fullscreen {
  593. top: 64px;
  594. }
  595. /* 选择项弹出框整体样式 */
  596. .mui-poppicker {
  597. background-color: rgb(230, 230, 230) !important;
  598. border-top-right-radius: 10px !important;
  599. border-top-left-radius: 10px !important;
  600. border-top: solid 0px rgb(255, 255, 255) !important;
  601. box-shadow: none !important;
  602. }
  603. /* 选择项弹出框确定按钮样式 */
  604. .mui-poppicker-btn-ok {
  605. background-color: rgb(240, 61, 89) !important;
  606. border: solid 0px rgb(255, 255, 255) !important;
  607. }
  608. /* 选择项弹出框取消按钮样式 */
  609. .mui-poppicker-btn-cancel {
  610. border: solid 0px rgb(255, 255, 255) !important;
  611. }
  612. /* 选择项弹出框题头样式 */
  613. .mui-poppicker-header {
  614. background-color: rgb(37, 109, 187) !important;
  615. border-top-right-radius: 10px !important;
  616. border-top-left-radius: 10px !important;
  617. }
  618. /* 选择项框选中项的颜色 */
  619. .mui-pciker-list li.highlight {
  620. color: rgb(236, 182, 98) !important;
  621. }
  622. /* 选择项框边框颜色 */
  623. .mui-pciker-rule-ft {
  624. border-top: solid 1px rgba(236, 182, 98, 0.45) !important;
  625. border-bottom: solid 1px rgba(236, 182, 98, 0.45) !important;
  626. }
  627. /* mui按钮点击样式 */
  628. .mui-btn:active {
  629. border: solid 1px rgba(37, 109, 187, 0.8) !important;
  630. }
  631. /* 行样式 */
  632. .cr-input-row {
  633. display: flex;
  634. }
  635. /* 行内标签样式 */
  636. .cr-input-row>label {
  637. width: 110px !important;
  638. }
  639. /* 行内输入框样式 */
  640. .cr-input-row>input {
  641. flex: 1;
  642. }
  643. /* 文字颜色 */
  644. .f-color {
  645. color: rgb(59, 146, 255) !important;
  646. }
  647. /* 普通案件颜色 */
  648. .f-color-case-normal {
  649. color: rgb(0, 0, 0) !important;
  650. }
  651. /* 派发中案件颜色 */
  652. .f-color-case-wait-assign {
  653. color: rgb(211, 11, 3) !important;
  654. }
  655. /* 处理中案件颜色 */
  656. .f-color-case-wait-check {
  657. color: rgb(129, 210, 226) !important;
  658. }
  659. /* 复飞中案件颜色 */
  660. .f-color-case-wait-flight {
  661. color: rgb(205, 84, 99) !important;
  662. }
  663. /* 审核中案件颜色 */
  664. .f-color-case-wait-verify {
  665. color: rgb(225, 149, 67) !important;
  666. }
  667. /* 结案案件颜色 */
  668. .f-color-case-close {
  669. color: rgb(144, 239, 124) !important;
  670. }
  671. /* 重要标识颜色 */
  672. .f-important {
  673. color: rgb(255, 255, 0);
  674. font-weight: bold;
  675. }
  676. /* 背景色 */
  677. .f-back-color {
  678. background-color: rgba(36, 63, 109, 0.8) !important;
  679. }
  680. /* 普通标题 */
  681. .wc-title-normal {
  682. margin-top: 10px;
  683. margin-bottom: 10px;
  684. font-size: 15px;
  685. color: rgb(255, 255, 255) !important;
  686. font-family: 'TTTGB-Medium';
  687. }
  688. /* 重要标题 */
  689. .wc-title-important {
  690. color: rgb(11, 102, 255);
  691. }
  692. /**
  693. * 以下是ArcGIS For JS 样式改正
  694. */
  695. /* esriView Popup 整体样式 */
  696. .esri-popup__main-container {
  697. background-color: rgba(174, 186, 208, 1.0) !important;
  698. width: auto !important;
  699. display: block !important;
  700. }
  701. /* esriView Popup 顶部标题栏包含按钮区域整体样式 */
  702. .esri-popup__header {
  703. background-color: rgb(37, 109, 187) !important;
  704. }
  705. /* esriView Popup 标题文字样式 */
  706. .esri-popup__header-title {
  707. color: rgb(255, 255, 255) !important;
  708. }
  709. /* esriView Popup 标题关闭按钮样式 */
  710. .esri-popup__button {
  711. color: rgb(255, 255, 255) !important;
  712. }
  713. /* esriView Popup 文字内容样式 */
  714. .esri-popup__content {
  715. color: #0000FF;
  716. margin: 10px !important;
  717. text-align: center;
  718. }
  719. /* esriView Popup 底部工具栏背景 */
  720. .esri-popup__footer {
  721. /* background-color: red !important; */
  722. }
  723. /* 底部小三角的样式 */
  724. .esri-popup__pointer-direction {
  725. background-color: rgba(174, 186, 208, 1.0) !important;
  726. }
  727. /* 通用样式 */
  728. /* flex容器布局竖向 */
  729. .cr-layout-flex-v {
  730. height: 100%;
  731. display: flex;
  732. flex-direction: column;
  733. }
  734. /* 顶部时间 */
  735. .topTime {
  736. position: absolute;
  737. top: 10px;
  738. z-index: 30;
  739. left: 10px;
  740. color: rgb(255, 255, 255);
  741. font-size: 12px;
  742. font-family: 'TTTGB-Medium';
  743. }
  744. /* 顶部时间内元素统一样式 */
  745. .topTime span {
  746. margin-left: 5px;
  747. }
  748. /* 当前号样式 */
  749. .topTime span:nth-child(1) {
  750. font-size: 20px;
  751. font-weight: bold;
  752. color: rgb(235, 195, 48);
  753. }
  754. /* 当前时间样式 */
  755. .topTime span:last-child {
  756. font-size: 20px;
  757. font-family: 'UnidreamLED' !important;
  758. }
  759. /* 奇数行样式 */
  760. .jt-row-odd-number {
  761. background-color: rgb(39, 56, 122) !important;
  762. }
  763. /* 偶数行样式 */
  764. .jt-row-even-number {
  765. background-color: rgb(49, 72, 157) !important;
  766. }