main.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274
  1. html {
  2. font-size: 10px;
  3. }
  4. body {
  5. padding: 0;
  6. margin: 0;
  7. cursor: default;
  8. background-color: #020D32 !important;
  9. width: 100%;
  10. height: 1080px;
  11. overflow: hidden;
  12. }
  13. .hidden {
  14. display: none
  15. }
  16. .nodata {
  17. color: #999;
  18. line-height: 4rem;
  19. font-size: 1.4rem;
  20. width: 100%;
  21. text-align: center;
  22. }
  23. .header {
  24. /*background-image: url(../images/img_headline.png);*/
  25. height: 10.8rem;
  26. width: 100%;
  27. float: left;
  28. background-size: 100% 100%;
  29. background-repeat: no-repeat;
  30. position: relative;
  31. }
  32. .header_logo {
  33. background-image: url(../images/logo.png);
  34. height: 117px;
  35. width: 570px;
  36. float: left;
  37. background-size: 100% 100%;
  38. background-repeat: no-repeat;
  39. position: relative;
  40. background-position: -20px -14px;
  41. z-index: 1;
  42. }
  43. .header_background {
  44. background-color: #162449;
  45. height: 62px;
  46. width: 100%;
  47. float: left;
  48. border-bottom: 2px solid #202f5a;
  49. position: absolute;
  50. z-index: 0;
  51. }
  52. .header_background > div {
  53. float: right;
  54. width: 65%;
  55. height: 22px;
  56. line-height: 22px;
  57. margin-top: 20px;
  58. }
  59. .app_default {
  60. float: left;
  61. color: #ffffff;
  62. font-size: 16px;
  63. cursor: pointer;
  64. margin-right: 20px;
  65. }
  66. .app_default > a {
  67. color: #ffffff !important;
  68. cursor: pointer !important;
  69. }
  70. .app_active {
  71. float: left;
  72. font-size: 16px;
  73. color: #2aaef2;
  74. cursor: pointer;
  75. margin-right: 20px;
  76. }
  77. .app_active > a {
  78. color: #2aaef2 !important;
  79. cursor: pointer !important;
  80. }
  81. .app_icon {
  82. height: 14px;
  83. width: 14px;
  84. float: left;
  85. background-size: 100% 100%;
  86. background-repeat: no-repeat;
  87. position: relative;
  88. margin-top: 5px;
  89. margin-right: 4px;
  90. }
  91. .screen_default_icon {
  92. background-image: url(../images/icon_bigScreenNormal.png);
  93. }
  94. .screen_active_icon {
  95. background-image: url(../images/icon_bigScreenSelected.png);
  96. }
  97. .search_default_icon {
  98. background-image: url(../images/icon_searchNorma.png);
  99. }
  100. .search_active_icon {
  101. background-image: url(../images/icon_searchSelected.png);
  102. }
  103. .elevator_default_icon {
  104. background-image: url(../images/icon_elevatorNormal.png);
  105. }
  106. .elevator_active_icon {
  107. background-image: url(../images/icon_elevatorSelected.png);
  108. }
  109. .data_default_icon {
  110. background-image: url(../images/icon_dateNormal.png);
  111. }
  112. .data_active_icon {
  113. background-image: url(../images/icon_dateSelected.png);
  114. }
  115. .deviceadmin_default_icon {
  116. background-image: url(../images/icon_settingNormal.png);
  117. }
  118. .deviceadmin_active_icon {
  119. background-image: url(../images/icon_settingSelected.png);
  120. }
  121. .header_bar {
  122. width: 100%;
  123. height: 1.4rem;
  124. font-size: 1.4rem;
  125. font-family: Microsoft YaHei;
  126. font-weight: 400;
  127. color: #D9EFFF;
  128. line-height: 1.4rem;
  129. position: absolute;
  130. top: 5.8rem;
  131. bottom: 3.6rem;
  132. }
  133. .header_bar > span {
  134. cursor: pointer;
  135. margin-left: 2rem;
  136. margin-right: 2rem;
  137. }
  138. .header_bar > span > a {
  139. border-bottom: 2px solid;
  140. }
  141. .control_active {
  142. color: #2AAEF2;
  143. }
  144. .main_title {
  145. width: 31rem;
  146. height: 7rem;
  147. font-size: 3.2rem;
  148. font-weight: 600;
  149. color: #FFFFFF;
  150. line-height: 7rem;
  151. text-shadow: 2px 2px 0px #02004d;
  152. margin: 0 auto;
  153. text-align: center;
  154. }
  155. .layout_dialog {
  156. background: linear-gradient(39deg, #081531 0%, #17274b 100%);
  157. overflow: hidden;
  158. outline: 0;
  159. border-radius: 2px;
  160. position: fixed !important;
  161. z-index: 10000;
  162. color: #B9E3FF;
  163. border: 1px solid #003670;
  164. display: none;
  165. left: 50%;
  166. top: 50%;
  167. }
  168. .layout_caption {
  169. float: left;
  170. width: 100%;
  171. height: 4.5rem;
  172. border-radius: 0.5rem 0.5rem 0 0;
  173. line-height: 4rem;
  174. background: linear-gradient(109deg, #052c60 0%, #2e68b7 100%);
  175. }
  176. .layout_title {
  177. float: left;
  178. font-size: 2rem;
  179. font-weight: 400;
  180. color: #B9E3FF;
  181. padding-left: 1.8rem;
  182. opacity: 0.9;
  183. }
  184. .layout_content {
  185. float: left;
  186. width: 100%;
  187. padding-top: 2rem;
  188. }
  189. .layout_close {
  190. background-image: url(../images/btn_close.png);
  191. width: 1.4rem;
  192. height: 1.4rem;
  193. float: right;
  194. background-repeat: no-repeat;
  195. margin: 1.8rem 1.5rem 0 0;
  196. cursor: pointer;
  197. }
  198. .clearn {
  199. background: #000000;
  200. opacity: 0.5;
  201. width: 100%;
  202. height: 100%;
  203. z-index: 102;
  204. position: absolute;
  205. left: 0;
  206. top: 0;
  207. line-height: 0;
  208. font-size: 0;
  209. overflow: hidden;
  210. display: none;
  211. }
  212. .monitor_content {
  213. float: left;
  214. width: 100%;
  215. }
  216. .body_content {
  217. float: left;
  218. /*padding-left: 2rem;*/
  219. /*padding-right: 2rem;*/
  220. width: 100%;
  221. }
  222. .body_side {
  223. margin-left: 1rem;
  224. width: 22%;
  225. height: 100%;
  226. float: left;
  227. }
  228. .body_center {
  229. width: 56%;
  230. height: 100%;
  231. float: left;
  232. position: relative;
  233. z-index: 100000;
  234. margin-left: 2rem;
  235. margin-right: 2rem;
  236. }
  237. .side_right {
  238. width: 19%;
  239. height: 100%;
  240. float: right;
  241. }
  242. .container_data_show {
  243. background-color: #1B2342;
  244. }
  245. .container_data_show > div {
  246. float: left;
  247. width: 100%;
  248. }
  249. .container_data_show .top > span {
  250. float: left;
  251. width: 33.3%;
  252. font-size: 1.6rem;
  253. color: #2AAEF2;
  254. }
  255. .container_data_show .top .caption {
  256. text-align: center;
  257. color: #fff;
  258. font-size: 1.4rem;
  259. font-weight: bold;
  260. letter-spacing: 3px;
  261. }
  262. .floor_row_item {
  263. float: left;
  264. width: 100%;
  265. border-bottom: 1px solid #3F4973;
  266. height: 9rem;
  267. line-height: 9rem
  268. }
  269. .floor_row_item > span {
  270. float: left
  271. }
  272. .floor_row_item .floor_name {
  273. font-size: 2rem;
  274. color: #fff;
  275. padding: 2rem;
  276. cursor: pointer;
  277. width: 4.8rem;
  278. }
  279. .floor_row_item .room_count {
  280. width: 4rem;
  281. height: 4rem;
  282. background: #0164CF;
  283. line-height: 4rem;
  284. text-align: center;
  285. color: #fff;
  286. border-radius: 2rem;
  287. font-weight: bold;
  288. margin-top: 4.2rem;
  289. font-size: 1.4rem;
  290. }
  291. .floor_row_item .room_list {
  292. margin-top: 2rem;
  293. line-height: 3.5rem;
  294. width: 68%;
  295. overflow-x: hidden;
  296. margin-left: 1rem;
  297. margin-right: 1rem;
  298. }
  299. .floor_row_item .penson_icon {
  300. color: #60befe;
  301. margin-top: 5rem;
  302. font-size: 1.4rem;
  303. line-height: 3rem;
  304. cursor: pointer;
  305. position: relative;
  306. }
  307. .room_item {
  308. height: 7rem;
  309. width: 5rem;
  310. display: block;
  311. float: left;
  312. /*color: #000;*/
  313. font-weight: bold;
  314. font-size: 1.4rem;
  315. margin: 0 1rem;
  316. text-align: center;
  317. cursor: pointer;
  318. }
  319. .room_free {
  320. background-image: url('/static/images/img_doorEmpty.png');
  321. background-repeat: no-repeat;
  322. background-size: contain;
  323. }
  324. .room_free_back {
  325. float: left;
  326. width: 7rem;
  327. margin-left: 7px;
  328. height: 10px;
  329. margin-top: 1px;
  330. }
  331. .room_busy {
  332. background-image: url('/static/images/img_doorNomal.png');
  333. background-repeat: no-repeat;
  334. background-size: contain;
  335. color: #1e98f9;
  336. }
  337. .room_important {
  338. background-image: url('/static/images/img_doorWarning.png');
  339. background-repeat: no-repeat;
  340. background-size: contain;
  341. color: #fff !important;
  342. color: red;
  343. }
  344. .room_more_none {
  345. width: 1.5rem;
  346. height: 3rem;
  347. line-height: 3rem;
  348. margin-top: 5rem;
  349. margin-left: 1.5rem;
  350. }
  351. .room_more_left {
  352. width: 1.5rem;
  353. height: 3rem;
  354. line-height: 3rem;
  355. margin-top: 5rem;
  356. margin-left: 1.5rem;
  357. background-image: url('/static/images/img_nextPage.png');
  358. cursor: pointer;
  359. }
  360. .room_more_right {
  361. width: 1.5rem;
  362. height: 3rem;
  363. line-height: 3rem;
  364. margin-top: 5rem;
  365. background-image: url('/static/images/img_nextPage.png');
  366. transform: rotate(180deg);
  367. -ms-transform: rotate(180deg); /* IE 9 */
  368. -moz-transform: rotate(180deg); /* Firefox */
  369. -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
  370. -o-transform: rotate(180deg); /* Opera */
  371. cursor: pointer;
  372. }
  373. .floor_room_row_item {
  374. margin-top: 3rem;
  375. margin-left: 2rem;
  376. margin-right: 2rem;
  377. float: left;
  378. padding-top: 1rem;
  379. }
  380. .floor_room_row_item.room_active {
  381. background-image: url('/static/images/img_doorSelected.png');
  382. background-repeat: no-repeat;
  383. background-size: contain;
  384. }
  385. .dianti_run_bg1_div {
  386. position: absolute;
  387. background-color: #193258;
  388. left: 10%;
  389. bottom: 0;
  390. height: 94%;
  391. width: 80%;
  392. }
  393. .dianti_run_bg2_div {
  394. position: absolute;
  395. background-color: #3b4a67;
  396. left: 10%;
  397. bottom: 0;
  398. height: 91%;
  399. width: 80%;
  400. }
  401. .dianti_run_bg3_div {
  402. position: absolute;
  403. background-color: #3b4a67;
  404. left: 10%;
  405. top: 1rem;
  406. height: 3rem;
  407. width: 10%;
  408. }
  409. .liftimg {
  410. position: absolute;
  411. width: 3.6rem;
  412. height: 5.4rem;
  413. z-index: 1000;
  414. bottom: 0;
  415. background-color: #88aadf;
  416. display: block;
  417. }
  418. .liftimg > span {
  419. display: block;
  420. text-align: center;
  421. font-weight: bold;
  422. border-radius: 5px 5px 0 0;
  423. }
  424. .floor_num{
  425. width: 100%;
  426. height: 30%;
  427. background-color: #99df1c;
  428. border-radius: 5px 5px 0 0;
  429. }
  430. .lift_door_left{
  431. position: absolute;
  432. z-index: -1;
  433. display: block;
  434. width: 45%;
  435. top: 20%;
  436. height: 80%;
  437. left: 5%;
  438. }
  439. .lift_door_right{
  440. position: absolute;
  441. z-index: -1;
  442. display: block;
  443. width: 45%;
  444. top: 20%;
  445. height: 80%;
  446. right: 6%;
  447. }
  448. .lift_door_right>img,.lift_door_left>img{
  449. width: 100%;
  450. height: 100%;
  451. }
  452. .title_image {
  453. background-image: url(../images/img_titleBg.png);
  454. background-repeat: no-repeat;
  455. background-size: 100% 100%;
  456. width: 31.6rem;
  457. height: 3.2rem;
  458. margin: 0 auto;
  459. margin-bottom: 1.5rem;
  460. font-size: 1.8rem;
  461. text-align: center;
  462. color: #D9EFFF;
  463. line-height: 3.2rem;
  464. font-weight: bold;
  465. }
  466. .lift_timer {
  467. position: absolute;
  468. left: 4rem;
  469. width: 19rem;
  470. height: 2rem;
  471. line-height: 2rem;
  472. color: #ccc;
  473. text-align: center;
  474. top: 0.5rem;
  475. border: 1px solid #193258;
  476. border-radius: 1rem;
  477. background: #182040;
  478. }
  479. .content_box {
  480. width: 100%;
  481. height: auto;
  482. background-color: #08183A;
  483. background-image: linear-gradient(rgba(8, 24, 58, 1), rgba(8, 24, 58, 1));
  484. box-shadow: 5px 5px 5px 5px rgb(8 24 58 /20%);
  485. margin-bottom: 2rem;
  486. position: relative;
  487. /*opacity: 0.6;*/
  488. }
  489. .corner {
  490. width: 1rem;
  491. height: 1rem;
  492. position: absolute;
  493. opacity: 0.6;
  494. }
  495. .corner_top_left {
  496. border-style: solid none none solid;
  497. border-width: 1px 0 0 1px;
  498. border-color: #7DAAFF transparent transparent #7DAAFF;
  499. top: 0;
  500. left: 0;
  501. }
  502. .corner_top_right {
  503. border-style: solid solid none none;
  504. border-width: 1px 1px 0 0;
  505. border-color: #7DAAFF #7DAAFF transparent transparent;
  506. top: 0;
  507. right: 0;
  508. }
  509. .corner_bottom_left {
  510. border-style: none none solid solid;
  511. border-width: 0 0 1px 1px;
  512. border-color: transparent transparent #7DAAFF #7DAAFF;
  513. bottom: 0;
  514. left: 0;
  515. }
  516. .corner_bottom_right {
  517. border-style: none solid solid none;
  518. border-width: 0 1px 1px 0;
  519. border-color: transparent #7DAAFF #7DAAFF transparent;
  520. bottom: 0;
  521. right: 0;
  522. }
  523. .device_row {
  524. float: left;
  525. width: 100%;
  526. height: 4rem;
  527. margin-bottom: 2rem;
  528. padding: 1px 0px;
  529. color: #ffffff;
  530. font-size: 1.6rem;
  531. font-family: Microsoft YaHei;
  532. }
  533. .device_icon {
  534. float: left;
  535. background-repeat: no-repeat;
  536. width: 5.2rem;
  537. height: 4rem;
  538. background-size: 100% 100%;
  539. margin-right: 1rem;
  540. }
  541. .scout {
  542. background-image: url(../images/img_code.png);
  543. }
  544. .scout_progress {
  545. float: left;
  546. width: 82%;
  547. height: 1.8rem;
  548. background: linear-gradient(38deg, #02143e 0%, #0073e8 100%);
  549. -webkit-text-fill-color: transparent;
  550. border-radius: 10px;
  551. margin-top: 0.5rem;
  552. }
  553. .camera {
  554. background-image: url(../images/img_camera.png);
  555. }
  556. .camera_location {
  557. background-image: url(../images/img_cameraLocation.png);
  558. }
  559. .camera_progress {
  560. float: left;
  561. width: 82%;
  562. height: 1.8rem;
  563. background: linear-gradient(38deg, #14182e 0%, #fd890c 100%);
  564. -webkit-text-fill-color: transparent;
  565. border-radius: 10px;
  566. margin-top: 0.5rem;
  567. }
  568. .door {
  569. background-image: url(../images/img_rke.png);
  570. }
  571. .door_progress {
  572. float: left;
  573. width: 82%;
  574. height: 1.8rem;
  575. background: linear-gradient(38deg, #0a1e3b 0%, #4ee899 100%);
  576. -webkit-text-fill-color: transparent;
  577. border-radius: 10px;
  578. margin-top: 0.5rem;
  579. }
  580. .offline_box {
  581. float: left;
  582. width: 40%;
  583. }
  584. .offline_warning {
  585. float: left;
  586. width: 24px;
  587. height: 22px;
  588. background-image: url(../images/img_offlineWarning.png);
  589. }
  590. .offline_warning_text {
  591. width: 5.8rem !important;
  592. font-size: 1.4rem;
  593. font-family: Microsoft YaHei;
  594. font-weight: 400;
  595. color: #FF7237;
  596. line-height: 2.2rem;
  597. padding-left: 0.5rem;
  598. }
  599. .nick_name {
  600. width: 9.9rem;
  601. height: 3rem;
  602. border: 1px solid #62A2CD;
  603. background: linear-gradient(0deg, #010514 0%, #061739 98%);
  604. }
  605. .total_box {
  606. width: 85%;
  607. margin: 0 auto;
  608. background-color: rebeccapurple;
  609. }
  610. .total_field {
  611. float: left;
  612. width: 100%;
  613. height: 2rem;
  614. line-height: 2rem;
  615. }
  616. .total_value_row {
  617. float: left;
  618. width: 100%;
  619. height: 7rem;
  620. line-height: 7rem;
  621. }
  622. .total_value {
  623. font-size: 2.5rem !important;
  624. font-family: "Arial";
  625. color: #FFFFFF;
  626. float: left;
  627. }
  628. .total_number_value {
  629. float: left;
  630. width: 40%;
  631. }
  632. .total_dynamic_val {
  633. float: left;
  634. width: 60%;
  635. font-size: 14px;
  636. }
  637. .total_row {
  638. float: left;
  639. color: #2AAEF2;
  640. width: 50%;
  641. height: 2rem;
  642. line-height: 2rem;
  643. font-size: 1.6rem;
  644. }
  645. .circle_flag {
  646. float: left;
  647. width: 0.8rem;
  648. height: 0.8rem;
  649. margin: 0.5rem 0.5rem 0 0;
  650. border-radius: 100%;
  651. background-color: #2AAEF2;
  652. }
  653. .place_area {
  654. width: 36rem;
  655. margin-left: 2rem;
  656. margin-right: 2rem;
  657. }
  658. .place_field_title {
  659. float: left;
  660. background-color: rgba(65, 160, 235, 0.15);
  661. height: 5rem;
  662. line-height: 5rem;
  663. color: #2AAEF2;
  664. width: 100%;
  665. }
  666. .place_field_title > span {
  667. float: left;
  668. width: 15%;
  669. text-align: center;
  670. }
  671. .place_value {
  672. float: left;
  673. height: 5.5rem;
  674. line-height: 5.5rem;
  675. color: #CFCFCF;
  676. width: 100%;
  677. }
  678. .place_value > span {
  679. float: left;
  680. width: 15%;
  681. text-align: center;
  682. }
  683. .place_index {
  684. color: #FFC300;
  685. font-family: Arial;
  686. font-style: italic;
  687. }
  688. .nick_name_box {
  689. background-image: url(../images/img_photoBorder.png);
  690. height: 10.2rem;
  691. width: 9rem;
  692. float: left;
  693. background-size: 9rem 10rem;
  694. background-repeat: no-repeat;
  695. position: relative;
  696. margin-top: 1rem;
  697. margin-bottom: 2rem;
  698. cursor: pointer;
  699. padding: 2px 2px 0 2px;
  700. margin-right: 1.7rem;
  701. }
  702. .nick_name_box > img {
  703. width: 100%;
  704. height: 9.8rem;
  705. }
  706. .nick_name_box > div {
  707. background-image: url(../images/img_photoNameBg.png);
  708. height: 2rem;
  709. width: 6.9rem;
  710. background-size: 100% 100%;
  711. background-repeat: no-repeat;
  712. line-height: 2rem;
  713. margin: -1rem auto 0 auto;
  714. text-align: center;
  715. color: #fff;
  716. font-weight: 400;
  717. position: relative;
  718. font-size: 1.2rem;
  719. }
  720. .nick_name_titel {
  721. color: #fff;
  722. width: 2.6rem;
  723. height: 2.6rem;
  724. border-radius: 100px;
  725. background-color: #f10303;
  726. font-size: 14px;
  727. line-height: 2.6rem;
  728. position: absolute;
  729. top: -10px;
  730. right: -9px;
  731. text-align: center;
  732. }
  733. .nick_name_box_small {
  734. background-image: url(../images/img_photoBorder.png);
  735. height: 16.2rem;
  736. width: 15rem;
  737. float: left;
  738. background-size: 100% 100%;
  739. background-repeat: no-repeat;
  740. position: relative;
  741. margin-bottom: 3rem;
  742. cursor: pointer;
  743. padding: 2px 2px 0 2px;
  744. margin-right: 1rem;
  745. }
  746. .nick_name_box_small > img {
  747. width: 100%;
  748. height: 16rem;
  749. }
  750. .nick_name_box_small > div {
  751. background-image: url(../images/img_photoNameBg.png);
  752. height: 3rem;
  753. width: 9.9rem;
  754. background-size: 100% 100%;
  755. background-repeat: no-repeat;
  756. line-height: 3rem;
  757. margin: -1.4rem auto 0 auto;
  758. text-align: center;
  759. color: #fff;
  760. font-weight: 400;
  761. position: relative;
  762. }
  763. .nick_name_reminder {
  764. background-image: url(../images/img_reminder.png);
  765. height: 2.4rem;
  766. width: 2.4rem;
  767. background-size: 100% 100%;
  768. background-repeat: no-repeat;
  769. line-height: 2.4rem;
  770. text-align: center;
  771. color: #fff;
  772. position: absolute;
  773. right: -0.8rem;
  774. top: -0.8rem;
  775. cursor: pointer;
  776. font-size: 1.2rem;
  777. }
  778. .flag_value {
  779. float: right;
  780. width: 50%;
  781. height: 1.8rem;
  782. line-height: 1.8rem;
  783. margin-top: 2.2rem;
  784. }
  785. .up_icon {
  786. background-image: url(../images/img_increase.png);
  787. width: 0.9rem;
  788. height: 1.3rem;
  789. background-size: 100% 100%;
  790. background-repeat: no-repeat;
  791. float: left;
  792. margin: 2.4rem 0 0 0.5rem;
  793. }
  794. .up_text {
  795. float: left;
  796. color: #f04538 !important;
  797. margin-left: 5px;
  798. }
  799. .down_icon {
  800. background-image: url(../images/img_reduce.png);
  801. width: 0.9rem;
  802. height: 1.3rem;
  803. background-size: 100% 100%;
  804. background-repeat: no-repeat;
  805. float: left;
  806. margin: 0.2rem 0.5rem 0 1rem;
  807. }
  808. .down_text {
  809. float: left;
  810. color: green;
  811. }
  812. .search_box {
  813. float: left;
  814. width: 38rem;
  815. height: 4.4rem;
  816. background: rgba(33, 42, 72, 0.65);
  817. border: 1px solid rgba(153, 204, 255, 0.25);
  818. border-radius: 2px;
  819. }
  820. .search_key {
  821. float: left;
  822. width: 3rem;
  823. height: 3.2rem;
  824. font-size: 1.4rem;
  825. font-family: Microsoft YaHei;
  826. font-weight: 400;
  827. color: #FFFFFF;
  828. line-height: 1.6rem;
  829. margin: 0.5rem 0.5rem 0 1rem;
  830. border-right: 1px solid #fff;
  831. padding-right: 1rem;
  832. }
  833. .search_input {
  834. float: left;
  835. width: 30rem;
  836. height: 3.2rem;
  837. resize: none;
  838. outline: none;
  839. border: none;
  840. font-size: 1.4rem;
  841. line-height: 3.2rem;
  842. margin-top: 0.5rem;
  843. padding: 0 1rem;
  844. background-color: transparent;
  845. color: #ffffff;
  846. letter-spacing: 1px;
  847. }
  848. .search_botton {
  849. background-image: url(../images/btn_search.png);
  850. width: 6rem;
  851. height: 4.6rem;
  852. background-size: 100% 100%;
  853. background-repeat: no-repeat;
  854. float: right;
  855. cursor: pointer;
  856. }
  857. #search_result ul {
  858. padding: 1rem !important
  859. }
  860. #search_result li {
  861. line-height: 2rem;
  862. font-size: 1.2rem;
  863. color: #999999;
  864. }
  865. #search_result ul:hover {
  866. background-color: #ededed;
  867. }
  868. .person_info_title {
  869. float: left;
  870. width: 100%;
  871. height: 5rem;
  872. line-height: 5rem;
  873. background-color: rgb(29, 38, 71);
  874. text-align: center;
  875. color: #fff;
  876. font-weight: bold;
  877. letter-spacing: 1px;
  878. font-size: 1.6rem;
  879. }
  880. #fulltext_search_datatype .datatypeitem {
  881. cursor: pointer;
  882. color: #b5b3b3;
  883. margin-right: 2rem;
  884. height: 3rem;
  885. display: inline-block;
  886. line-height: 4rem;
  887. padding: 0.5rem;
  888. font-size: 1.4rem;
  889. }
  890. #fulltext_search_datatype .datatypeitem.active {
  891. color: #fff;
  892. border-bottom: 2px solid #2aaef2;
  893. background-color: transparent !important;
  894. font-weight: bold;
  895. font-size: 1.6rem;
  896. }
  897. #fulltext_search_condition {
  898. font-size: 1.6rem;
  899. margin-top: 1rem;
  900. color: #ccc;
  901. margin-left: 27.5rem;
  902. position: relative;
  903. }
  904. #fulltext_search_condition .datelist {
  905. position: absolute;
  906. left: 0;
  907. top: 3rem;
  908. background-color: #1b2342;
  909. border: 1px solid #999;
  910. border-radius: 3px;
  911. padding: 0.5rem;
  912. }
  913. #fulltext_search_condition .datelist > div {
  914. cursor: pointer;
  915. line-height: 3rem;
  916. }
  917. #fulltext_search_condition .datelist > div:hover {
  918. background-color: #535c91
  919. }
  920. .person_left {
  921. margin-left: 3.5rem;
  922. float: left;
  923. width: 35%;
  924. height: 100%;
  925. }
  926. .person_right {
  927. float: right;
  928. margin-right: 3.5rem;
  929. width: 55%;
  930. height: 100%;
  931. }
  932. .person_title {
  933. float: left;
  934. width: 100%;
  935. height: 4rem;
  936. margin-bottom: 1.5rem;
  937. }
  938. .person_title_text {
  939. width: 100%;
  940. height: 100%;
  941. font-size: 1.4rem;
  942. font-family: Microsoft YaHei;
  943. font-weight: bold;
  944. color: #D9EFFF;
  945. line-height: 4rem;
  946. float: left;
  947. }
  948. .person_line {
  949. background-image: url(../images/img_tltleLine.png);
  950. width: 100%;
  951. height: 2px;
  952. background-size: 100% 100%;
  953. background-repeat: no-repeat;
  954. float: left;
  955. }
  956. .person_img_box {
  957. float: left;
  958. width: 12.5rem;
  959. height: 13rem;
  960. }
  961. .person_img_box > img {
  962. width: 100%;
  963. height: 100%;
  964. cursor: pointer;
  965. }
  966. .person_field {
  967. float: right;
  968. width: 75%;
  969. height: 3rem;
  970. line-height: 3rem;
  971. margin-bottom: 1rem;
  972. }
  973. .person_field > span {
  974. float: left;
  975. width: 30%;
  976. height: 100%;
  977. font-size: 1.4rem;
  978. color: #aba8a8;
  979. margin-right: 1rem;
  980. }
  981. .person_field > input {
  982. float: left;
  983. width: 25%;
  984. height: 100%;
  985. font-size: 1.6rem;
  986. font-weight: 500;
  987. border: 1px solid #3F4973;
  988. outline: none;
  989. background-color: transparent;
  990. margin-right: 1rem;
  991. color: #ffffff;
  992. padding: 0 0.8rem;
  993. }
  994. .person_field2 {
  995. float: left;
  996. width: 100%;
  997. height: 100%;
  998. font-size: 1.6rem;
  999. font-weight: 500;
  1000. border: 1px solid #3F4973;
  1001. outline: none;
  1002. background-color: transparent;
  1003. color: #ffffff;
  1004. padding: 0 0.8rem;
  1005. }
  1006. .combox_icon {
  1007. float: left;
  1008. margin: 0.5rem 0 0 -3rem;
  1009. color: #fff;
  1010. font-size: 20px !important;
  1011. cursor: pointer;
  1012. }
  1013. .confirm {
  1014. background-color: #2AAEF2;
  1015. }
  1016. .cancel {
  1017. background-color: #3F4973;
  1018. }
  1019. .active {
  1020. background-color: #898ed7 !important;
  1021. color: #fff;
  1022. }
  1023. .trajectory_box {
  1024. width: 95%;
  1025. float: left;
  1026. color: #ffffff;
  1027. border-left: 2px dashed #ffffff;
  1028. font-size: 16px;
  1029. }
  1030. .trajectory_icon {
  1031. position: absolute;
  1032. width: 12px;
  1033. height: 12px;
  1034. border-radius: 100px;
  1035. background-color: #f47920;
  1036. left: -6px;
  1037. top: 9px;
  1038. }
  1039. .trajectory_box > span {
  1040. float: left;
  1041. width: 90%;
  1042. height: 32px;
  1043. line-height: 32px;
  1044. padding-left: 15px;
  1045. position: relative;
  1046. }
  1047. .trajectory_img_box {
  1048. float: left;
  1049. width: 90%;
  1050. padding: 10px 0px 0px 15px;
  1051. position: relative;
  1052. }
  1053. .trajectory_img_box > img {
  1054. float: left;
  1055. width: 95px;
  1056. height: 100px;
  1057. margin: 0 10px 10px 0;
  1058. border: 1px solid #6e6a6a;
  1059. }
  1060. .person_card {
  1061. float: left;
  1062. width: 8.5rem;
  1063. height: 11rem;
  1064. margin: 1rem;
  1065. border: 1px solid #3f4973;
  1066. border-radius: 3px;
  1067. padding: 1rem;
  1068. }
  1069. .person_card > img {
  1070. width: 8.5rem;
  1071. height: 11rem;
  1072. }
  1073. .person_name {
  1074. background-image: url(/static/images/img_photoNameBg.png);
  1075. height: 1.8rem;
  1076. background-size: 100% 100%;
  1077. background-repeat: no-repeat;
  1078. line-height: 1.8rem;
  1079. text-align: center;
  1080. color: #fff;
  1081. font-weight: 400;
  1082. position: relative;
  1083. display: block;
  1084. width: 100%;
  1085. margin-top: 0.2rem;
  1086. }
  1087. .return_prev {
  1088. height: 25px;
  1089. line-height: 25px;
  1090. cursor: pointer;
  1091. font-size: 12px;
  1092. position: absolute;
  1093. left: 10px;
  1094. top: 5px;
  1095. }
  1096. .return_prev > i {
  1097. float: left;
  1098. }
  1099. .return_prev > span {
  1100. font-size: 14px;
  1101. float: left;
  1102. line-height: 25px;
  1103. padding-left: 2px;
  1104. }
  1105. .system_log_name {
  1106. float: left;
  1107. font-size: 2.5rem;
  1108. background: linear-gradient(180deg, #fff 0%, #a285e1 100%);
  1109. background-clip: border-box;
  1110. -webkit-background-clip: text;
  1111. -webkit-text-fill-color: transparent;
  1112. margin: 1rem 0 0 3rem;
  1113. height: 40px;
  1114. line-height: 4rem;
  1115. font-family: "微软雅黑" !important;
  1116. }