scanboard.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  1. @font-face {
  2. font-family: 'tapeworm';
  3. src: url('../fonts/tapeworm.eot');
  4. src: url('../fonts/tapeworm.eot?#iefix') format('embedded-opentype'),
  5. url('../fonts/tapeworm.woff2') format('woff2'),
  6. url('../fonts/tapeworm.woff') format('woff'),
  7. url('../fonts/tapeworm.ttf') format('truetype'),
  8. url('../fonts/tapeworm.svg#tapewormregular') format('svg');
  9. font-weight: normal;
  10. font-style: normal;
  11. }
  12. html,body{
  13. height: 100%;
  14. overflow: hidden;
  15. }
  16. body{
  17. background: url(../images/bg.jpg);
  18. background-size: 100% 100%;
  19. }
  20. #loader{
  21. width: 80px;
  22. height: 80px;
  23. position: absolute;
  24. top: 50%;
  25. left: 50%;
  26. margin: -40px 0 0 -40px;
  27. z-index: 1000;
  28. }
  29. .scanboardWp{
  30. height: 100%;
  31. position: relative;
  32. z-index: 11;
  33. }
  34. .color-yellow{
  35. color: #ffd220 !important;
  36. }
  37. .color-green{
  38. color: #32ffc7 !important;
  39. }
  40. .color-blue{
  41. color: #1eb6fe !important;
  42. }
  43. .color-red{
  44. color: #ff0e0d !important;
  45. }
  46. .border-yellow{
  47. border-color: #ffd220 !important;
  48. }
  49. .border-green{
  50. border-color: #32ffc7 !important;
  51. }
  52. .border-blue{
  53. border-color: #1eb6fe !important;
  54. }
  55. .border-red{
  56. border-color: #ff0e0d !important;
  57. }
  58. .bg-yellow{
  59. background-color: #ffd220 !important;
  60. }
  61. .bg-green{
  62. background-color: #32ffc7 !important;
  63. }
  64. .bg-blue{
  65. background-color: #1eb6fe !important;
  66. }
  67. .bg-red{
  68. background-color: #ff0e0d !important;
  69. }
  70. .wp{
  71. width: 94%;
  72. margin: 0 auto;
  73. height: 100%;
  74. }
  75. .left{
  76. float: left;
  77. width: 20%;
  78. }
  79. .center{
  80. float: left;
  81. width: 56%;
  82. }
  83. .right{
  84. float: right;
  85. width: 24%;
  86. }
  87. #top{
  88. height: 8%;
  89. border-bottom: 1px solid #162c52;
  90. }
  91. #top .pageTit{
  92. height: 100%;
  93. position: relative;
  94. }
  95. #top .pageTit a{
  96. display: block;
  97. width: 50%;
  98. height: 44px;
  99. background: url(../images/titBg.png);
  100. background-size: 100% 100%;
  101. line-height: 44px;
  102. text-align: center;
  103. font-size: 18px;
  104. color: #00deff;
  105. position: absolute;
  106. top: 50%;
  107. margin-top: -22px;
  108. }
  109. #top .topLogo{
  110. height: 100%;
  111. text-align: center;
  112. }
  113. #top .topLogo img{
  114. height: 90%;
  115. width: auto;
  116. }
  117. #top .topBar{
  118. height: 100%;
  119. }
  120. #top .topBar .topTime{
  121. padding-top: 18px;
  122. color: #fff;
  123. text-align: right;
  124. }
  125. #top .topBar .company{
  126. position: relative;
  127. }
  128. #top .topBar .company h3{
  129. text-align: right;
  130. color: #02b6d4;
  131. height: 28px;
  132. line-height: 28px;
  133. font-size: 16px;
  134. padding: 0 15px 0 28px;
  135. cursor: pointer;
  136. position: relative;
  137. }
  138. #top .topBar .company h3:before{
  139. display: block;
  140. content: "";
  141. width: 20px;
  142. height: 20px;
  143. background: url(../images/s_ico1.png) no-repeat;
  144. background-size: 100% 100%;
  145. position: absolute;
  146. left: 0;
  147. top: 3px;
  148. }
  149. #top .topBar .company h3:after{
  150. display: block;
  151. content: "";
  152. width: 7px;
  153. height: 4px;
  154. background: url(../images/s_ico2.png) no-repeat;
  155. position: absolute;
  156. right: 0;
  157. top: 10px;
  158. }
  159. #top .topBar .company .dropdown{
  160. position: absolute;
  161. top: 28px;
  162. right: -10px;
  163. padding: 6px 10px;
  164. background: #00deff;
  165. border-radius: 6px;
  166. min-width: 100px;
  167. display: none;
  168. }
  169. #top .topBar .company:hover .dropdown{
  170. display: block;
  171. }
  172. #top .topBar .company .dropdown a{
  173. display: block;
  174. text-align: center;
  175. line-height: 24px;
  176. margin: 4px 0;
  177. }
  178. #main{
  179. padding-top: 30px;
  180. }
  181. .item{
  182. margin-bottom: 24px;
  183. background-color: #222;
  184. background-color: rgba(0,0,0,0.3);border-radius: 8px;
  185. }
  186. .itemTit{
  187. padding: 12px 30px;
  188. border-bottom: 1px solid #1e5b6b;
  189. }
  190. .itemTit span{
  191. display: block;
  192. height: 20px;
  193. line-height: 20px;
  194. border-left: 5px solid transparent;
  195. font-size: 18px;
  196. color: #fff;
  197. padding-left: 8px;
  198. }
  199. .itemTit span small{
  200. margin-left: 4px;
  201. }
  202. .itemCon{
  203. padding: 12px 30px;
  204. }
  205. .itembg{
  206. background-image: url(../images/gz.png);
  207. background-repeat: repeat
  208. }
  209. .waybill .progress{
  210. margin-bottom: 8px;
  211. }
  212. .waybill .progress h3{
  213. line-height: 36px;
  214. color: #fff;
  215. }
  216. .waybill .progress h3 span{
  217. float: left;
  218. font-size: 16px;
  219. }
  220. .waybill .progress h3 i{
  221. float: right;
  222. font-style: normal;
  223. }
  224. .waybill .progressBar{
  225. height: 6px;
  226. background: #fff;
  227. background: rgba(255,255,255,0.5);
  228. }
  229. .waybill .progressBar span{
  230. display: block;
  231. height: 6px;
  232. width: 0;
  233. }
  234. .waybill .progress h4{
  235. line-height: 24px;
  236. color: #fff;
  237. }
  238. .listStyle li span{
  239. float: left;
  240. width: 50%;
  241. color: #fff;
  242. font-size: 15px;
  243. height: 32px;
  244. line-height: 32px;
  245. }
  246. .listStyle li span strong{
  247. font-weight: normal;
  248. color: #45c6c8;
  249. margin-right: 4px;
  250. }
  251. .centerWp{
  252. width: 94%;
  253. margin: 0 auto;
  254. }
  255. #myMap{
  256. height: 480px;
  257. }
  258. #myMap .amap-info-content{
  259. background: #00deff;
  260. border-radius: 8px;
  261. box-shadow: none;
  262. border: none;
  263. padding: 15px 25px 15px 15px;
  264. }
  265. #myMap .amap-info-sharp{
  266. display: none;
  267. }
  268. #myMap .amap-info-close{
  269. /* background: url(../images/s_ico5.png); */
  270. color: #fff;
  271. }
  272. .billChart .itemTit{
  273. border: none;
  274. padding-left: 5px;
  275. }
  276. #myChart1{
  277. height: 220px;
  278. }
  279. .total{
  280. padding: 8px 0;
  281. }
  282. .total .itemTit{
  283. border: none;
  284. }
  285. .total .totalNum{
  286. color: #00deff;
  287. font-family: 'tapeworm';
  288. }
  289. .total .totalNum strong{
  290. font-size: 48px;
  291. margin-right: 12px;
  292. line-height: 72px;
  293. vertical-align: top;
  294. }
  295. .total .totalNum span{
  296. font-size: 20px;
  297. line-height: 90px;
  298. vertical-align: top;
  299. }
  300. .infoPie ul li{
  301. float: left;
  302. width: 33%;
  303. }
  304. .infoPie ul li span{
  305. display: block;
  306. width: 68px;
  307. height: 68px;
  308. margin: 16px auto;
  309. border: 2px solid transparent;
  310. text-align: center;
  311. line-height: 72px;
  312. font-size: 24px;
  313. border-radius: 100%;
  314. }
  315. .infoPie ul li p{
  316. text-align: center;
  317. font-size: 16px;
  318. padding-bottom: 8px;
  319. }
  320. .billState .StateTit{
  321. height: 37px;
  322. border-bottom: 1px dashed #404040;
  323. }
  324. .billState .StateBox span{
  325. float: left;
  326. width: 33%;
  327. height: 37px;
  328. line-height: 37px;
  329. color: #fff;
  330. overflow: hidden;
  331. text-overflow:ellipsis
  332. }
  333. .billState .StateBox span:nth-child(1){
  334. width: 38%;
  335. }
  336. .billState .StateBox span:nth-child(2){
  337. width: 28%;
  338. }
  339. .billState .StateBox span:nth-child(3){
  340. width: 34%;
  341. }
  342. .billState .StateBox .fontInner{
  343. border-bottom: 1px dashed #404040;
  344. }
  345. .billState .progress{
  346. height: 6px;
  347. position: relative;
  348. padding-right: 50px;
  349. margin-top: 15px;
  350. }
  351. .billState .progress .progressBar{
  352. height: 6px;
  353. background: rgba(255,255,255,0.5);
  354. }
  355. .billState .progress .progressBar span{
  356. display: block;
  357. height: 6px;
  358. width: 0;
  359. }
  360. .billState .progress h3{
  361. position: absolute;
  362. height: 20px;
  363. width: 40px;
  364. line-height: 20px;
  365. top: -7px;
  366. right: 0;
  367. }
  368. .billState .progress h3 i{
  369. font-style: normal;
  370. }
  371. #FontScroll{
  372. height: 228px;
  373. overflow: hidden;
  374. }
  375. .filterbg{
  376. width: 100%;
  377. height: 100%;
  378. background: rgba(30,182,254,0.5);
  379. position: absolute;
  380. top: 0;
  381. left: 0;
  382. z-index: 998;
  383. display: none;
  384. }
  385. .popup{
  386. width: 0;
  387. height: 0;
  388. background: #061f3e;
  389. position: absolute;
  390. top: 50%;
  391. left: 50%;
  392. z-index: 999;
  393. border-radius: 8px;
  394. display: none;
  395. -webkit-transform: translate(-50%,-50%);
  396. -moz-transform: translate(-50%,-50%);
  397. -ms-transform: translate(-50%,-50%);
  398. -o-transform: translate(-50%,-50%);
  399. transform: translate(-50%,-50%);
  400. }
  401. .popup .popupClose{
  402. display: block;
  403. width: 44px;
  404. height: 44px;
  405. background: url(../images/s_ico3.png);
  406. background-size: 100 100%;
  407. position: absolute;
  408. top: -22px;
  409. right: -22px;
  410. display: none;
  411. transition: 0.3s;
  412. }
  413. .popup .popupClose:hover{
  414. transform: rotate(180deg);
  415. }
  416. .summary{
  417. width: 96%;
  418. height: 92%;
  419. margin: 2% auto;
  420. display: none;
  421. }
  422. .summary .summaryTop{
  423. height: 50%;
  424. }
  425. .summary .summaryBottom{
  426. height: 50%;
  427. }
  428. .summaryTit{
  429. height: 12%;
  430. text-align: center;
  431. }
  432. .summaryTit img{
  433. height: 100%;
  434. max-height: 68px;
  435. width: auto;
  436. }
  437. .summaryPie{
  438. height: 100%;
  439. float: left;
  440. width: 33%;
  441. }
  442. .summaryBar{
  443. height: 100%;
  444. float: left;
  445. width: 30%;
  446. margin-right: 2%;
  447. }
  448. #summaryBar{
  449. height: 80%;
  450. }
  451. .summaryLine{
  452. float: left;
  453. width: 60%;
  454. height: 100%;
  455. }
  456. #summaryLine{
  457. height: 80%;
  458. }
  459. @media screen and (max-width: 1919px) and (min-width: 1680px){
  460. #top .pageTit a{
  461. height: 40px;
  462. line-height: 40px;
  463. font-size: 16px;
  464. margin-top: -20px;
  465. width: 52%;
  466. }
  467. #top .topBar .topTime{
  468. padding-top: 16px;
  469. }
  470. #top .topBar .company h3{
  471. height: 26px;
  472. line-height: 26px;
  473. font-size: 16px;
  474. }
  475. #top .topBar .company .dropdown{
  476. top: 26px;
  477. }
  478. #main{
  479. padding-top: 28px;
  480. }
  481. .item{
  482. margin-bottom: 20px;
  483. }
  484. .itemTit{
  485. padding: 10px 30px;
  486. }
  487. .itemTit span{
  488. height: 20px;
  489. line-height: 20px;
  490. border-left: 4px solid transparent;
  491. font-size: 17px;
  492. }
  493. .itemCon{
  494. padding: 10px 26px;
  495. }
  496. .waybill .progress{
  497. margin-bottom: 8px;
  498. }
  499. .waybill .progress h3{
  500. line-height: 34px;
  501. }
  502. .waybill .progress h3 span{
  503. float: left;
  504. }
  505. .waybill .progress h4{
  506. line-height: 22px;
  507. }
  508. .listStyle li span{
  509. font-size: 15px;
  510. height: 32px;
  511. line-height: 32px;
  512. }
  513. #myMap{
  514. height: 440px;
  515. }
  516. #myMap .amap-info-content{
  517. background: #00deff;
  518. border-radius: 8px;
  519. box-shadow: none;
  520. border: none;
  521. padding: 15px 25px 15px 15px;
  522. }
  523. #myChart1{
  524. height: 220px;
  525. }
  526. .total{
  527. padding: 8px 0;
  528. }
  529. .total .totalNum strong{
  530. font-size: 44px;
  531. line-height: 68px;
  532. }
  533. .total .totalNum span{
  534. font-size: 18px;
  535. line-height: 84px;
  536. }
  537. .infoPie ul li span{
  538. width: 68px;
  539. height: 68px;
  540. margin: 12px auto;
  541. border: 2px solid transparent;
  542. line-height: 72px;
  543. font-size: 24px;
  544. }
  545. .infoPie ul li p{
  546. font-size: 16px;
  547. padding-bottom: 8px;
  548. }
  549. .billState .StateTit{
  550. height: 37px;
  551. }
  552. .billState .StateBox span{
  553. height: 37px;
  554. line-height: 37px;
  555. }
  556. .billState .StateBox span:nth-child(1){
  557. width: 38%;
  558. }
  559. .billState .StateBox span:nth-child(2){
  560. width: 28%;
  561. }
  562. .billState .StateBox span:nth-child(3){
  563. width: 34%;
  564. }
  565. .billState .progress{
  566. margin-top: 15px;
  567. }
  568. .billState .progress h3{
  569. height: 20px;
  570. line-height: 20px;
  571. top: -7px;
  572. }
  573. #FontScroll{
  574. height: 228px;
  575. }
  576. .popup .popupClose{
  577. width: 40px;
  578. height: 40px;
  579. top: -20px;
  580. right: -20px;
  581. background-size: 100% 100%;
  582. }
  583. }
  584. @media screen and (max-width: 1679px) and (min-width: 1440px){
  585. #top .pageTit a{
  586. height: 36px;
  587. line-height: 36px;
  588. font-size: 15px;
  589. margin-top: -18px;
  590. width: 54%;
  591. }
  592. #top .topBar .topTime{
  593. padding-top: 10px;
  594. }
  595. #top .topBar .company h3{
  596. height: 24px;
  597. line-height: 24px;
  598. font-size: 15px;
  599. }
  600. #top .topBar .company h3:before{
  601. width: 18px;
  602. height: 18px;
  603. top: 2px;
  604. }
  605. #top .topBar .company .dropdown{
  606. top: 24px;
  607. }
  608. #main{
  609. padding-top: 16px;
  610. }
  611. .item{
  612. margin-bottom: 14px;
  613. }
  614. .itemTit{
  615. padding: 6px 24px;
  616. }
  617. .itemTit span{
  618. height: 18px;
  619. line-height: 18px;
  620. border-left: 4px solid transparent;
  621. font-size: 16px;
  622. }
  623. .itemCon{
  624. padding: 6px 22px;
  625. }
  626. .waybill .progress{
  627. margin-bottom: 4px;
  628. }
  629. .waybill .progress h3{
  630. line-height: 30px;
  631. }
  632. .waybill .progress h3 span{
  633. font-size: 14px;
  634. }
  635. .waybill .progress h4{
  636. line-height: 20px;
  637. }
  638. .listStyle li span{
  639. font-size: 15px;
  640. height: 28px;
  641. line-height: 28px;
  642. }
  643. #myMap{
  644. height: 360px;
  645. }
  646. #myMap .amap-info-content{
  647. background: #00deff;
  648. border-radius: 8px;
  649. box-shadow: none;
  650. border: none;
  651. padding: 15px 25px 15px 15px;
  652. }
  653. #myChart1{
  654. height: 188px;
  655. }
  656. .total{
  657. padding: 8px 0;
  658. }
  659. .total .totalNum strong{
  660. font-size: 40px;
  661. line-height: 64px;
  662. }
  663. .total .totalNum span{
  664. font-size: 17px;
  665. line-height: 80px;
  666. }
  667. .infoPie ul li span{
  668. width: 60px;
  669. height: 60px;
  670. margin: 10px auto;
  671. border: 2px solid transparent;
  672. line-height: 64px;
  673. font-size: 22px;
  674. }
  675. .infoPie ul li p{
  676. font-size: 15px;
  677. padding-bottom: 8px;
  678. }
  679. .billState .StateTit{
  680. height: 37px;
  681. }
  682. .billState .StateBox span{
  683. height: 37px;
  684. line-height: 37px;
  685. }
  686. .billState .StateBox span:nth-child(1){
  687. width: 38%;
  688. }
  689. .billState .StateBox span:nth-child(2){
  690. width: 28%;
  691. }
  692. .billState .StateBox span:nth-child(3){
  693. width: 34%;
  694. }
  695. .billState .progress{
  696. margin-top: 15px;
  697. }
  698. .billState .progress h3{
  699. height: 20px;
  700. line-height: 20px;
  701. top: -7px;
  702. }
  703. #FontScroll{
  704. height: 190px;
  705. }
  706. .popup .popupClose{
  707. width: 36px;
  708. height: 36px;
  709. top: -18px;
  710. right: -18px;
  711. background-size: 100% 100%;
  712. }
  713. }
  714. @media screen and (max-width: 1439px) and (min-width: 1366px){
  715. #top .pageTit a{
  716. height: 30px;
  717. line-height: 30px;
  718. font-size: 14px;
  719. margin-top: -15px;
  720. width: 56%;
  721. }
  722. #top .topBar .topTime{
  723. padding-top: 4px;
  724. font-size: 12px;
  725. }
  726. #top .topBar .company h3{
  727. height: 22px;
  728. line-height: 22px;
  729. font-size: 14px;
  730. }
  731. #top .topBar .company h3:before{
  732. width: 18px;
  733. height: 18px;
  734. top: 2px;
  735. }
  736. #top .topBar .company .dropdown{
  737. top: 22px;
  738. }
  739. #main{
  740. padding-top: 14px;
  741. }
  742. .item{
  743. margin-bottom: 12px;
  744. }
  745. .itemTit{
  746. padding: 4px 22px;
  747. }
  748. .itemTit span{
  749. height: 18px;
  750. line-height: 18px;
  751. border-left: 4px solid transparent;
  752. font-size: 14px;
  753. }
  754. .itemCon{
  755. padding: 4px 20px;
  756. }
  757. .waybill .progress{
  758. margin-bottom: 2px;
  759. }
  760. .waybill .progress h3{
  761. line-height: 28px;
  762. }
  763. .waybill .progress h3 span{
  764. font-size: 14px;
  765. }
  766. .waybill .progress h4{
  767. line-height: 18px;
  768. }
  769. .listStyle li span{
  770. font-size: 12px;
  771. height: 22px;
  772. line-height: 22px;
  773. }
  774. #myMap{
  775. height: 288px;
  776. }
  777. #myMap .amap-info-content{
  778. background: #00deff;
  779. border-radius: 8px;
  780. box-shadow: none;
  781. border: none;
  782. padding: 15px 25px 15px 15px;
  783. }
  784. #myMap .amap-icon img{
  785. width: 24px;
  786. }
  787. #myChart1{
  788. height: 160px;
  789. }
  790. .total{
  791. padding: 8px 0;
  792. }
  793. .total .totalNum strong{
  794. font-size: 36px;
  795. line-height: 60px;
  796. }
  797. .total .totalNum span{
  798. font-size: 16px;
  799. line-height: 76px;
  800. }
  801. .infoPie ul li span{
  802. width: 56px;
  803. height: 56px;
  804. margin: 10px auto;
  805. border: 2px solid transparent;
  806. line-height: 60px;
  807. font-size: 20px;
  808. }
  809. .infoPie ul li p{
  810. font-size: 14px;
  811. padding-bottom: 8px;
  812. }
  813. .billState .StateTit{
  814. height: 31px;
  815. }
  816. .billState .StateBox span{
  817. height: 31px;
  818. line-height: 31px;
  819. font-size: 12px;
  820. }
  821. .billState .StateBox span:nth-child(1){
  822. width: 38%;
  823. }
  824. .billState .StateBox span:nth-child(2){
  825. width: 28%;
  826. }
  827. .billState .StateBox span:nth-child(3){
  828. width: 34%;
  829. }
  830. .billState .progress{
  831. margin-top: 12px;
  832. }
  833. .billState .progress h3{
  834. height: 20px;
  835. line-height: 20px;
  836. top: -7px;
  837. }
  838. #FontScroll{
  839. height: 128px;
  840. }
  841. .popup .popupClose{
  842. width: 32px;
  843. height: 32px;
  844. top: -16px;
  845. right: -16px;
  846. background-size: 100%
  847. }
  848. }
  849. @media screen and (max-width: 1365px) {
  850. .left{
  851. width: 24%;
  852. }
  853. .center{
  854. width: 48%;
  855. }
  856. .right{
  857. width: 28%;
  858. }
  859. #top .pageTit a{
  860. height: 30px;
  861. line-height: 30px;
  862. font-size: 12px;
  863. margin-top: -15px;
  864. width: 60%;
  865. }
  866. #top .topBar .topTime{
  867. padding-top: 4px;
  868. font-size: 12px;
  869. }
  870. #top .topBar .company h3{
  871. height: 22px;
  872. line-height: 22px;
  873. font-size: 14px;
  874. }
  875. #top .topBar .company h3:before{
  876. width: 18px;
  877. height: 18px;
  878. top: 2px;
  879. }
  880. #top .topBar .company .dropdown{
  881. top: 22px;
  882. }
  883. #main{
  884. padding-top: 14px;
  885. }
  886. .item{
  887. margin-bottom: 12px;
  888. }
  889. .itemTit{
  890. padding: 4px 22px;
  891. }
  892. .itemTit span{
  893. height: 18px;
  894. line-height: 18px;
  895. border-left: 4px solid transparent;
  896. font-size: 14px;
  897. }
  898. .itemCon{
  899. padding: 4px 20px;
  900. }
  901. .waybill .progress{
  902. margin-bottom: 2px;
  903. }
  904. .waybill .progress h3{
  905. line-height: 28px;
  906. }
  907. .waybill .progress h3 span{
  908. font-size: 14px;
  909. }
  910. .waybill .progress h4{
  911. line-height: 18px;
  912. }
  913. .listStyle li span{
  914. font-size: 12px;
  915. height: 22px;
  916. line-height: 22px;
  917. }
  918. #myMap{
  919. height: 288px;
  920. }
  921. #myMap .amap-info-content{
  922. background: #00deff;
  923. border-radius: 8px;
  924. box-shadow: none;
  925. border: none;
  926. padding: 15px 25px 15px 15px;
  927. }
  928. #myMap .amap-icon img{
  929. width: 24px;
  930. }
  931. #myChart1{
  932. height: 160px;
  933. }
  934. .total{
  935. padding: 8px 0;
  936. }
  937. .total .totalNum strong{
  938. font-size: 36px;
  939. line-height: 60px;
  940. }
  941. .total .totalNum span{
  942. font-size: 16px;
  943. line-height: 76px;
  944. }
  945. .infoPie ul li span{
  946. width: 56px;
  947. height: 56px;
  948. margin: 10px auto;
  949. border: 2px solid transparent;
  950. line-height: 60px;
  951. font-size: 20px;
  952. }
  953. .infoPie ul li p{
  954. font-size: 14px;
  955. padding-bottom: 8px;
  956. }
  957. .billState .StateTit{
  958. height: 31px;
  959. }
  960. .billState .StateBox span{
  961. height: 31px;
  962. line-height: 31px;
  963. font-size: 12px;
  964. }
  965. .billState .StateBox span:nth-child(1){
  966. width: 38%;
  967. }
  968. .billState .StateBox span:nth-child(2){
  969. width: 28%;
  970. }
  971. .billState .StateBox span:nth-child(3){
  972. width: 34%;
  973. }
  974. .billState .progress{
  975. margin-top: 12px;
  976. }
  977. .billState .progress h3{
  978. height: 20px;
  979. line-height: 20px;
  980. top: -7px;
  981. }
  982. #FontScroll{
  983. height: 128px;
  984. }
  985. .popup .popupClose{
  986. width: 32px;
  987. height: 32px;
  988. top: -16px;
  989. right: -16px;
  990. background-size: 100%
  991. }
  992. }
  993. /*************************************
  994. --2018-01-23增加样式--
  995. *************************************/
  996. .signOut{
  997. height: 22px;
  998. padding: 0 10px;
  999. border: 1px solid #02b6d4;
  1000. border-radius: 14px;
  1001. color: #02b6d4;
  1002. text-align: center;
  1003. line-height: 22px;
  1004. margin-left: 16px;
  1005. margin-top: 2px;
  1006. }
  1007. .signOut:hover{
  1008. background: #02b6d4;
  1009. color: #fff;
  1010. }
  1011. .mapContainer{
  1012. position: relative;
  1013. }
  1014. #myMap{
  1015. z-index: 11;
  1016. }
  1017. .btnLayer{
  1018. width: 48px;
  1019. height: 116px;
  1020. position: absolute;
  1021. top: 30px;
  1022. right: 22px;
  1023. z-index: 13;
  1024. }
  1025. .btnLayer a{
  1026. display: block;
  1027. width: 48px;
  1028. height: 48px;
  1029. }
  1030. .btnLayer .search{
  1031. width: 48px;
  1032. height: 48px;
  1033. position: relative;
  1034. margin-bottom: 20px;
  1035. }
  1036. .btnLayer .search .searchInner{
  1037. position: absolute;
  1038. width: 48px;
  1039. height: 48px;
  1040. border-radius: 24px;
  1041. background: rgba(0,222,255,0.2);
  1042. top: 0;
  1043. right:0;
  1044. -webkit-transition: 0.4s ease-in-out;
  1045. -moz-transition: 0.4s ease-in-out;
  1046. -ms-transition: 0.4s ease-in-out;
  1047. -o-transition: 0.4s ease-in-out;
  1048. transition: 0.4s ease-in-out;
  1049. }
  1050. .btnLayer .search .open{
  1051. width: 240px;
  1052. background: rgba(0,222,255,0.5);
  1053. -webkit-transition: 0.4s ease-in-out;
  1054. -moz-transition: 0.4s ease-in-out;
  1055. -ms-transition: 0.4s ease-in-out;
  1056. -o-transition: 0.4s ease-in-out;
  1057. transition: 0.4s ease-in-out;
  1058. }
  1059. .btnLayer .search .icoSearch{
  1060. display: block;
  1061. width: 24px;
  1062. height: 24px;
  1063. background: url(../images/s_ico8.png);
  1064. }
  1065. .btnLayer .search a.searchBtn .icoSearch{
  1066. position: relative;
  1067. top: 12px;
  1068. left: 12px;
  1069. }
  1070. .btnLayer .search form{
  1071. width: 200px;
  1072. height: 24px;
  1073. padding: 12px 20px;
  1074. display: none;
  1075. }
  1076. .btnLayer .search form button.icoSearch{
  1077. float: left;
  1078. margin-right: 10px;
  1079. cursor: pointer;
  1080. }
  1081. .btnLayer .search form input{
  1082. float: left;
  1083. width: 166px;
  1084. height: 24px;
  1085. line-height: 24px;
  1086. color: #fff;
  1087. }
  1088. .btnLayer .search form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  1089. color: #fff; opacity:1;
  1090. }
  1091. .btnLayer .search form input::-moz-placeholder { /* Mozilla Firefox 19+ */
  1092. color: #fff;opacity:1;
  1093. }
  1094. .btnLayer .search form input:-ms-input-placeholder{
  1095. color: #fff;opacity:1;
  1096. }
  1097. .btnLayer .search form input::-webkit-input-placeholder{
  1098. color: #fff;opacity:1;
  1099. }
  1100. .btnLayer a.infoBtn{
  1101. background: rgba(0,222,255,0.2);
  1102. border-radius: 100%;
  1103. }
  1104. .btnLayer .icoCar{
  1105. display: block;
  1106. width: 30px;
  1107. height: 18px;
  1108. background: url(../images/s_ico9.png);
  1109. position: relative;
  1110. top: 15px;
  1111. left: 9px;
  1112. }
  1113. .carInfo{
  1114. width: 0;
  1115. height: 0;
  1116. background: #061f3e;
  1117. position: absolute;
  1118. top: 50%;
  1119. left: 50%;
  1120. z-index: 999;
  1121. border-radius: 8px;
  1122. display: none;
  1123. -webkit-transform: translate(-50%,-50%);
  1124. -moz-transform: translate(-50%,-50%);
  1125. -ms-transform: translate(-50%,-50%);
  1126. -o-transform: translate(-50%,-50%);
  1127. transform: translate(-50%,-50%);
  1128. }
  1129. .carInfo .carClose{
  1130. display: block;
  1131. width: 44px;
  1132. height: 44px;
  1133. background: url(../images/s_ico3.png);
  1134. background-size: 100% 100%;
  1135. position: absolute;
  1136. top: -22px;
  1137. right: -22px;
  1138. display: none;
  1139. transition: 0.3s;
  1140. }
  1141. .carInfo .carClose:hover{
  1142. transform: rotate(180deg);
  1143. }
  1144. .infoBox{
  1145. height: 100%;
  1146. display: none;
  1147. }
  1148. .infoBox .infoTop{
  1149. height: 15.4%;
  1150. }
  1151. .infoBox .infoTop .infoTit{
  1152. height: 40%;
  1153. text-align: center;
  1154. position: relative;
  1155. top: 30%;
  1156. }
  1157. .infoBox .infoTop .infoTit img{
  1158. height: 100%;
  1159. max-height: 68px;
  1160. width: auto;
  1161. }
  1162. .infoBox .infoMain{
  1163. height: 76%;
  1164. width: 90%;
  1165. margin: 0 auto;
  1166. }
  1167. .infoBox .infoLeft{
  1168. width: 22.4%;
  1169. height: 100%;
  1170. box-sizing: border-box;
  1171. padding-top: 54px;
  1172. padding-right: 10px;
  1173. position: relative;
  1174. border-right: 1px solid #13284d;
  1175. }
  1176. .infoBox .infoLeft .topSearch{
  1177. width: 80%;
  1178. height: 36px;
  1179. position: absolute;
  1180. top: 0;
  1181. left: 0;
  1182. box-sizing: border-box;
  1183. padding: 0 18px;
  1184. background: rgba(0,222,255,0.2);
  1185. border-radius: 18px;
  1186. }
  1187. .infoBox .infoLeft .topSearch form{
  1188. height: 20px;
  1189. padding: 8px 10px 8px 30px;
  1190. position: relative;
  1191. }
  1192. .infoBox .infoLeft .topSearch button{
  1193. display: block;
  1194. width: 20px;
  1195. height: 20px;
  1196. background: url(../images/s_ico8.png);
  1197. background-size: 100%;
  1198. position: absolute;
  1199. top: 8px;
  1200. left: 0;
  1201. }
  1202. .infoBox .infoLeft .topSearch input{
  1203. display: block;
  1204. width: 100%;
  1205. height: 20px;
  1206. line-height: 20px;
  1207. color: #00ddfe;
  1208. }
  1209. .infoBox .infoLeft .topSearch input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  1210. color: #00ddfe; opacity:1;
  1211. }
  1212. .infoBox .infoLeft .topSearch input::-moz-placeholder { /* Mozilla Firefox 19+ */
  1213. color: #00ddfe;opacity:1;
  1214. }
  1215. .infoBox .infoLeft .topSearch input:-ms-input-placeholder{
  1216. color: #00ddfe;opacity:1;
  1217. }
  1218. .infoBox .infoLeft .topSearch input::-webkit-input-placeholder{
  1219. color: #00ddfe;opacity:1;
  1220. }
  1221. .infoBox .infoLeft .carState{
  1222. height: 100%;
  1223. padding-top: 36px;
  1224. box-sizing: border-box;
  1225. position: relative;
  1226. }
  1227. .infoBox .infoLeft .carState h3{
  1228. width: 80%;
  1229. height: 35px;
  1230. line-height: 35px;
  1231. border-bottom: 1px dashed #404040;
  1232. position: absolute;
  1233. top: 0;
  1234. left: 0;
  1235. box-sizing: border-box;
  1236. padding: 0 8px;
  1237. }
  1238. .infoBox .infoLeft .carState h3 span{
  1239. width: 50%;
  1240. height: 35px;
  1241. overflow: hidden;
  1242. text-overflow: ellipsis;
  1243. color: #808080;
  1244. }
  1245. .infoBox .infoLeft .carState h3 span:last-child{
  1246. text-align: right;
  1247. }
  1248. .infoBox .infoLeft .carState ul{
  1249. height: 100%;
  1250. overflow: hidden;
  1251. }
  1252. .infoBox .infoLeft .carState ul li{
  1253. width: 80%;
  1254. height: 35px;
  1255. line-height: 35px;
  1256. border-bottom: 1px dashed #404040;
  1257. box-sizing: border-box;
  1258. padding: 0 8px;
  1259. }
  1260. .infoBox .infoLeft .carState ul li p,.infoBox .infoLeft .carState ul li span{
  1261. float: left;
  1262. white-space: nowrap;
  1263. height: 35px;
  1264. overflow: hidden;
  1265. text-overflow: ellipsis;
  1266. color: #00deff;
  1267. }
  1268. .infoBox .infoLeft .carState ul li p{
  1269. width: 70%;
  1270. }
  1271. .infoBox .infoLeft .carState ul li span{
  1272. width: 30%;
  1273. text-align: right;
  1274. }
  1275. .infoBox .infoLeft .carState ul li span.work{
  1276. color: #32ffc7;
  1277. }
  1278. .infoBox .infoLeft .carState ul li span.nowork{
  1279. color: #ffd220;
  1280. }
  1281. .infoBox .infoRight{
  1282. width: 77.6%;
  1283. height: 100%;
  1284. box-sizing: border-box;
  1285. border-left: 1px solid #030303;
  1286. }
  1287. .infoBox .infoRight .rightWp{
  1288. width: 94%;
  1289. margin: 0 auto;
  1290. height: 100%;
  1291. }
  1292. .infoBox .infoRight .carIntro{
  1293. height: 30%;
  1294. box-sizing: border-box;
  1295. border-bottom: 1px solid #13284d;
  1296. }
  1297. .infoBox .infoRight .introBox{
  1298. width: 72%;
  1299. margin-left: 5%;
  1300. height: 90%;
  1301. background: url(../images/infoBg.png);
  1302. background-size: 100% 100%;
  1303. }
  1304. .infoBox .infoRight .introBox .carImg{
  1305. width: 12%;
  1306. height: 100%;
  1307. margin: 0 8%;
  1308. position: relative;
  1309. }
  1310. .infoBox .infoRight .introBox .carImg img{
  1311. max-width: : 100%;
  1312. max-height: 64%;
  1313. position: absolute;
  1314. top: 50%;
  1315. left: 50%;
  1316. border-radius: 6px;
  1317. -webkit-transform: translate(-50%,-50%);
  1318. -moz-transform: translate(-50%,-50%);
  1319. -ms-transform: translate(-50%,-50%);
  1320. -o-transform: translate(-50%,-50%);
  1321. transform: translate(-50%,-50%);
  1322. }
  1323. .infoBox .infoRight .introBox .carText{
  1324. width: 64%;
  1325. position: relative;
  1326. top: 50%;
  1327. -webkit-transform: translateY(-50%);
  1328. -moz-transform: translateY(-50%);
  1329. -ms-transform: translateY(-50%);
  1330. -o-transform: translateY(-50%);
  1331. transform: translateY(-50%);
  1332. }
  1333. .infoBox .infoRight .introBox .carText p{
  1334. float: left;
  1335. width: 50%;
  1336. height: 28px;
  1337. line-height: 28px;
  1338. overflow: hidden;
  1339. text-overflow: ellipsis;
  1340. color: #fff;
  1341. box-sizing: border-box;
  1342. padding: 0 10px;
  1343. }
  1344. .infoBox .infoRight .driver{
  1345. width: 18%;
  1346. padding-top: 10px;
  1347. }
  1348. .infoBox .infoRight .driver .photo{
  1349. width: 100px;
  1350. height: 100px;
  1351. margin: 0 auto;
  1352. border-radius: 100%;
  1353. overflow: hidden;
  1354. }
  1355. .infoBox .infoRight .driver .photo img{
  1356. width: 100%;
  1357. }
  1358. .infoBox .infoRight .driver p{
  1359. text-align: center;
  1360. color: #00deff;
  1361. font-size: 16px;
  1362. line-height: 40px;
  1363. }
  1364. .infoBox .infoRight .timetable{
  1365. height: 70%;
  1366. box-sizing: border-box;
  1367. padding-top:40px;
  1368. border-top: 1px solid #030303;
  1369. position: relative;
  1370. }
  1371. .infoBox .infoRight .timetable .topTool{
  1372. height: 28px;
  1373. padding-top: 12px;
  1374. position: absolute;
  1375. width: 100%;
  1376. left: 0;
  1377. top: 0;
  1378. }
  1379. .infoBox .infoRight .timetable .tableExplain{
  1380. height: 14px;
  1381. padding-top: 14px;
  1382. }
  1383. .infoBox .infoRight .timetable .tableExplain .itemExplain{
  1384. height: 14px;
  1385. margin-right: 40px;
  1386. }
  1387. .infoBox .infoRight .timetable .tableExplain .itemExplain span{
  1388. float: left;
  1389. width: 14px;
  1390. height: 14px;
  1391. margin-right: 6px;
  1392. }
  1393. .infoBox .infoRight .timetable .tableExplain .itemExplain p{
  1394. float: left;
  1395. color: #fff;
  1396. line-height: 14px;
  1397. }
  1398. .infoBox .infoRight .timetable .topBtns a{
  1399. float: left;
  1400. height: 26px;
  1401. padding: 0 14px;
  1402. border: 1px solid #00deff;
  1403. border-radius: 14px;
  1404. margin: 0 10px;
  1405. line-height: 26px;
  1406. color: #00deff;
  1407. font-size: 12px;
  1408. }
  1409. .infoBox .infoRight .timetable .topBtns a:hover{
  1410. background: #00deff;
  1411. color: #fff;
  1412. transition: 0.3s;
  1413. }
  1414. .infoBox .timetable .tiemWp{
  1415. height: 100%;
  1416. box-sizing: border-box;
  1417. padding: 30px 20% 0 0;
  1418. position: relative;
  1419. }
  1420. .infoBox .timetable .timeInner{
  1421. height: 100%;
  1422. box-sizing: border-box;
  1423. padding-left: 48px;
  1424. position: relative;
  1425. }
  1426. .infoBox .timetable .weekList{
  1427. position: absolute;
  1428. width: 48px;
  1429. height: 100%;
  1430. left: 0;
  1431. }
  1432. .infoBox .timetable .weekList .blank{
  1433. height: 30px;
  1434. }
  1435. .infoBox .timetable .weekList .weekItem{
  1436. height: 14%;
  1437. }
  1438. .infoBox .timetable .weekList .weekItem p{
  1439. color: #fff;
  1440. line-height: 1;
  1441. font-size: 12px;
  1442. }
  1443. .infoBox .timetable .timeBox{
  1444. height: 100%;
  1445. position: relative;
  1446. }
  1447. .infoBox .timetable .timeBox .dataContainer{
  1448. height: 100%;
  1449. box-sizing: border-box;
  1450. border-left: 1px solid #9ca6b3;
  1451. border-bottom: 1px solid #9ca6b3;
  1452. position: relative;
  1453. z-index: 5;
  1454. }
  1455. .infoBox .timetable .timeBox .timeLine{
  1456. width: 1px;
  1457. height: 100%;
  1458. position: absolute;
  1459. top: 0;
  1460. background: #1f3652;
  1461. z-index: 3;
  1462. }
  1463. .infoBox .timetable .timeBox .timeLine span{
  1464. height: 14px;
  1465. line-height: 14px;
  1466. color: #fff;
  1467. font-size: 12px;
  1468. display: block;
  1469. width: 40px;
  1470. position: absolute;
  1471. bottom: -20px;
  1472. left: 50%;
  1473. margin-left: -20px;
  1474. text-align: center;
  1475. }
  1476. .infoBox .timetable .timeBox .line1{
  1477. left: 0;
  1478. }
  1479. .infoBox .timetable .timeBox .line2{
  1480. left: 12.5%;
  1481. }
  1482. .infoBox .timetable .timeBox .line3{
  1483. left: 25%;
  1484. }
  1485. .infoBox .timetable .timeBox .line4{
  1486. left: 37.5%;
  1487. }
  1488. .infoBox .timetable .timeBox .line5{
  1489. left: 50%;
  1490. }
  1491. .infoBox .timetable .timeBox .line6{
  1492. left: 62.5%;
  1493. }
  1494. .infoBox .timetable .timeBox .line7{
  1495. left: 75%;
  1496. }
  1497. .infoBox .timetable .timeBox .line8{
  1498. left: 87.5%;
  1499. }
  1500. .infoBox .timetable .timeBox .line9{
  1501. left: 100%;
  1502. }
  1503. .infoBox .timetable .dataBox{
  1504. height: 14%;
  1505. }
  1506. .infoBox .timetable .space1{
  1507. height: 30%;
  1508. }
  1509. .infoBox .timetable .space2{
  1510. height: 15%;
  1511. }
  1512. .infoBox .timetable .space3{
  1513. height: 10%;
  1514. }
  1515. .infoBox .timetable .dataBox .workTime{
  1516. height: 26%;
  1517. background: #1f3652;
  1518. position: relative;
  1519. }
  1520. .infoBox .timetable .dataBox .workTime span{
  1521. position: absolute;
  1522. top: 0;
  1523. height: 100%;
  1524. background: #32ffc7;
  1525. cursor: pointer;
  1526. }
  1527. .infoBox .timetable .dataBox .standard{
  1528. height: 19%;
  1529. background: #1f3652;
  1530. position: relative;
  1531. }
  1532. .infoBox .timetable .dataBox .standard span{
  1533. position: absolute;
  1534. top: 0;
  1535. height: 100%;
  1536. background: #1dd0fd;
  1537. cursor: pointer;
  1538. }
  1539. .infoBox .timetable .totalTable{
  1540. box-sizing: border-box;
  1541. height: 100%;
  1542. width: 20%;
  1543. position: absolute;
  1544. top: 0;
  1545. right:0;
  1546. padding-top: 30px;
  1547. }
  1548. .infoBox .timetable .totalTable .totalTit{
  1549. height: 20px;
  1550. width: 100%;
  1551. position: absolute;
  1552. top: 16px;
  1553. right: 0;
  1554. }
  1555. .infoBox .timetable .totalTable span{
  1556. float: left;
  1557. width: 50%;
  1558. height: 100%;
  1559. color: #fff;
  1560. text-align: center;
  1561. font-size: 12px;
  1562. }
  1563. .infoBox .timetable .totalTable .totalTit span{
  1564. line-height: 20px;
  1565. }
  1566. .infoBox .timetable .totalTable .totalData{
  1567. height: 100%;
  1568. box-sizing: border-box;
  1569. padding-bottom: 1px;
  1570. }
  1571. .infoBox .timetable .totalTable .totalItem{
  1572. height: 14%;
  1573. }
  1574. .infoBox .timetable .totalTable .tatleWp{
  1575. height: 41%;
  1576. }
  1577. .infoBox .timetable .totalTable .tatleWp span{
  1578. line-height: 1;
  1579. }
  1580. .infoBox .timetable .totalTable .totalBar{
  1581. height: 19%;
  1582. background: #1f3652;
  1583. position: relative;
  1584. }
  1585. .workTimeInfo{
  1586. position: fixed;
  1587. padding: 10px 15px;
  1588. background: rgba(0,0,0,0.3);
  1589. border-radius: 4px;
  1590. z-index: 9999;
  1591. transform: translate(20px,-20%);
  1592. }
  1593. .workTimeInfo p{
  1594. line-height: 22px;
  1595. color: #fff;
  1596. }
  1597. @media screen and (max-width: 1919px) and (min-width: 1680px){
  1598. .signOut{
  1599. height: 22px;
  1600. padding: 0 10px;
  1601. border: 1px solid #02b6d4;
  1602. border-radius: 14px;
  1603. line-height: 22px;
  1604. margin-left: 16px;
  1605. margin-top: 1px;
  1606. }
  1607. .carInfo .carClose{
  1608. width: 40px;
  1609. height: 40px;
  1610. background-size: 100% 100%;
  1611. top: -20px;
  1612. right: -20px;
  1613. }
  1614. .infoBox .infoRight .introBox .carText p{
  1615. height: 26px;
  1616. line-height: 26px;
  1617. padding: 0 10px;
  1618. }
  1619. .infoBox .infoRight .driver .photo{
  1620. width: 92px;
  1621. height: 92px;
  1622. }
  1623. .infoBox .infoRight .driver p{
  1624. font-size: 16px;
  1625. line-height: 36px;
  1626. }
  1627. }
  1628. @media screen and (max-width: 1679px) and (min-width: 1440px){
  1629. .signOut{
  1630. height: 20px;
  1631. padding: 0 10px;
  1632. border: 1px solid #02b6d4;
  1633. border-radius: 11px;
  1634. line-height: 20px;
  1635. margin-left: 14px;
  1636. margin-top: 2px;
  1637. font-size: 12px;
  1638. }
  1639. .infoBox .infoTop .infoTit{
  1640. height: 44%;
  1641. top: 28%;
  1642. }
  1643. .carInfo .carClose{
  1644. width: 36px;
  1645. height: 36px;
  1646. background-size: 100% 100%;
  1647. top: -18px;
  1648. right: -18px;
  1649. }
  1650. .infoBox .infoRight .introBox .carText p{
  1651. height: 24px;
  1652. line-height: 24px;
  1653. padding: 0 8px;
  1654. }
  1655. .infoBox .infoRight .driver{
  1656. padding-top: 6px;
  1657. }
  1658. .infoBox .infoRight .driver .photo{
  1659. width: 72px;
  1660. height: 72px;
  1661. }
  1662. .infoBox .infoRight .driver p{
  1663. font-size: 14px;
  1664. line-height: 28px;
  1665. }
  1666. .infoBox .infoLeft{
  1667. padding-top: 48px;
  1668. }
  1669. .infoBox .infoLeft .topSearch{
  1670. height: 32px;
  1671. padding: 0 16px;
  1672. border-radius: 16px;
  1673. }
  1674. .infoBox .infoLeft .topSearch form{
  1675. padding: 6px 10px 6px 30px;
  1676. }
  1677. .infoBox .infoLeft .topSearch button{
  1678. width: 20px;
  1679. height: 20px;
  1680. background-size: 100%;
  1681. top: 6px;
  1682. }
  1683. .infoBox .infoLeft .carState{
  1684. padding-top: 36px;
  1685. }
  1686. .infoBox .infoLeft .carState h3{
  1687. height: 35px;
  1688. line-height: 35px;
  1689. padding: 0 8px;
  1690. }
  1691. .infoBox .infoLeft .carState h3 span{
  1692. height: 35px;
  1693. }
  1694. .infoBox .infoLeft .carState ul li{
  1695. height: 35px;
  1696. line-height: 35px;
  1697. padding: 0 8px;
  1698. }
  1699. .infoBox .infoLeft .carState ul li p,.infoBox .infoLeft .carState ul li span{
  1700. height: 35px;
  1701. }
  1702. .infoBox .infoRight .timetable{
  1703. padding-top:32px;
  1704. }
  1705. .infoBox .infoRight .timetable .topTool{
  1706. height: 28px;
  1707. padding-top: 4px;
  1708. }
  1709. .infoBox .infoRight .timetable .tableExplain{
  1710. padding-top: 14px;
  1711. }
  1712. .infoBox .infoRight .timetable .tableExplain .itemExplain{
  1713. margin-right: 40px;
  1714. }
  1715. .infoBox .infoRight .timetable .tableExplain .itemExplain p{
  1716. font-size: 12px;
  1717. }
  1718. .infoBox .infoRight .timetable .topBtns{
  1719. height: 22px;
  1720. padding-top: 4px;
  1721. }
  1722. .infoBox .infoRight .timetable .topBtns a{
  1723. height: 22px;
  1724. padding: 0 14px;
  1725. border-radius: 14px;
  1726. margin: 0 10px;
  1727. line-height: 22px;
  1728. }
  1729. .infoBox .timetable .tiemWp{
  1730. padding: 30px 20% 0 0;
  1731. }
  1732. .infoBox .timetable .totalTable .totalTit{
  1733. height: 20px;
  1734. top: 16px;
  1735. }
  1736. .infoBox .timetable .totalTable .totalTit span{
  1737. line-height: 20px;
  1738. }
  1739. .btnLayer{
  1740. width: 36px;
  1741. height: 86px;
  1742. top: 24px;
  1743. right: 20px;
  1744. }
  1745. .btnLayer a{
  1746. display: block;
  1747. width: 36px;
  1748. height: 36px;
  1749. }
  1750. .btnLayer .search{
  1751. width: 36px;
  1752. height: 36px;
  1753. margin-bottom: 14px;
  1754. }
  1755. .btnLayer .search .searchInner{
  1756. width: 36px;
  1757. height: 36px;
  1758. border-radius: 18px;
  1759. }
  1760. .btnLayer .search .open{
  1761. width: 240px;
  1762. }
  1763. .btnLayer .search .icoSearch{
  1764. display: block;
  1765. width: 20px;
  1766. height: 20px;
  1767. background: url(../images/s_ico8.png);
  1768. background-size: 100% 100%;
  1769. }
  1770. .btnLayer .search a.searchBtn .icoSearch{
  1771. position: relative;
  1772. top: 8px;
  1773. left: 8px;
  1774. }
  1775. .btnLayer .search form{
  1776. width: 200px;
  1777. height: 24px;
  1778. padding: 6px 15px;
  1779. }
  1780. .btnLayer .search form button.icoSearch{
  1781. margin-right: 10px;
  1782. margin-top: 2px;
  1783. }
  1784. .btnLayer .search form input{
  1785. width: 166px;
  1786. }
  1787. .btnLayer .icoCar{
  1788. display: block;
  1789. width: 24px;
  1790. height: 14.4px;
  1791. background: url(../images/s_ico9.png);
  1792. background-size: 100% 100%;
  1793. top: 10.8px;
  1794. left: 6px;
  1795. }
  1796. }
  1797. @media screen and (max-width: 1439px) and (min-width: 1366px){
  1798. .signOut{
  1799. height: 16px;
  1800. padding: 0 8px;
  1801. border: 1px solid #02b6d4;
  1802. border-radius: 9px;
  1803. line-height: 16px;
  1804. margin-left: 12px;
  1805. margin-top: 3px;
  1806. font-size: 12px;
  1807. }
  1808. .infoBox .infoTop .infoTit{
  1809. height: 50%;
  1810. top: 25%;
  1811. }
  1812. .carInfo .carClose{
  1813. width: 32px;
  1814. height: 32px;
  1815. background-size: 100% 100%;
  1816. top: -16px;
  1817. right: -16px;
  1818. }
  1819. .infoBox .infoRight .introBox .carText p{
  1820. height: 18px;
  1821. line-height: 18px;
  1822. padding: 0 6px;
  1823. }
  1824. .infoBox .infoRight .driver{
  1825. padding-top: 2px;
  1826. }
  1827. .infoBox .infoRight .driver .photo{
  1828. width: 60px;
  1829. height: 60px;
  1830. }
  1831. .infoBox .infoRight .driver p{
  1832. font-size: 12px;
  1833. line-height: 22px;
  1834. }
  1835. .infoBox .infoLeft{
  1836. padding-top: 40px;
  1837. }
  1838. .infoBox .infoLeft .topSearch{
  1839. height: 28px;
  1840. padding: 0 14px;
  1841. border-radius: 14px;
  1842. }
  1843. .infoBox .infoLeft .topSearch form{
  1844. padding: 4px 10px 4px 28px;
  1845. }
  1846. .infoBox .infoLeft .topSearch button{
  1847. width: 18px;
  1848. height: 18px;
  1849. background-size: 100%;
  1850. top: 4px;
  1851. }
  1852. .infoBox .infoLeft .carState{
  1853. padding-top: 32px;
  1854. }
  1855. .infoBox .infoLeft .carState h3{
  1856. height: 31px;
  1857. line-height: 31px;
  1858. padding: 0 6px;
  1859. }
  1860. .infoBox .infoLeft .carState h3 span{
  1861. height: 31px;
  1862. }
  1863. .infoBox .infoLeft .carState ul li{
  1864. height: 31px;
  1865. line-height: 31px;
  1866. padding: 0 6px;
  1867. }
  1868. .infoBox .infoLeft .carState ul li p,.infoBox .infoLeft .carState ul li span{
  1869. height: 31px;
  1870. }
  1871. .infoBox .infoRight .timetable{
  1872. padding-top:28px;
  1873. }
  1874. .infoBox .infoRight .timetable .topTool{
  1875. height: 24px;
  1876. padding-top: 4px;
  1877. }
  1878. .infoBox .infoRight .timetable .tableExplain{
  1879. padding-top: 14px;
  1880. }
  1881. .infoBox .infoRight .timetable .tableExplain .itemExplain{
  1882. margin-right: 40px;
  1883. }
  1884. .infoBox .infoRight .timetable .tableExplain .itemExplain p{
  1885. font-size: 12px;
  1886. }
  1887. .infoBox .infoRight .timetable .topBtns{
  1888. height: 20px;
  1889. padding-top: 4px;
  1890. }
  1891. .infoBox .infoRight .timetable .topBtns a{
  1892. height: 20px;
  1893. padding: 0 12px;
  1894. border-radius: 10px;
  1895. margin: 0 10px;
  1896. line-height: 20px;
  1897. }
  1898. .infoBox .timetable .tiemWp{
  1899. padding: 22px 20% 0 0;
  1900. }
  1901. .infoBox .timetable .totalTable .totalTit{
  1902. height: 20px;
  1903. top: 6px;
  1904. }
  1905. .infoBox .timetable .totalTable .totalTit span{
  1906. line-height: 20px;
  1907. }
  1908. .btnLayer{
  1909. width: 30px;
  1910. height: 72px;
  1911. top: 20px;
  1912. right: 18px;
  1913. }
  1914. .btnLayer a{
  1915. display: block;
  1916. width: 30px;
  1917. height: 30px;
  1918. }
  1919. .btnLayer .search{
  1920. width: 30px;
  1921. height: 30px;
  1922. position: relative;
  1923. margin-bottom: 12px;
  1924. }
  1925. .btnLayer .search .searchInner{
  1926. width: 30px;
  1927. height: 30px;
  1928. border-radius: 15px;
  1929. }
  1930. .btnLayer .search .open{
  1931. width: 240px;
  1932. }
  1933. .btnLayer .search .icoSearch{
  1934. display: block;
  1935. width: 18px;
  1936. height: 18px;
  1937. background: url(../images/s_ico8.png);
  1938. background-size: 100% 100%;
  1939. }
  1940. .btnLayer .search a.searchBtn .icoSearch{
  1941. position: relative;
  1942. top: 6px;
  1943. left: 6px;
  1944. }
  1945. .btnLayer .search form{
  1946. width: 200px;
  1947. height: 24px;
  1948. padding: 3px 15px;
  1949. }
  1950. .btnLayer .search form button.icoSearch{
  1951. margin-right: 10px;
  1952. margin-top: 3px;
  1953. }
  1954. .btnLayer .search form input{
  1955. width: 166px;
  1956. }
  1957. .btnLayer .icoCar{
  1958. display: block;
  1959. width: 20px;
  1960. height: 12px;
  1961. background: url(../images/s_ico9.png);
  1962. background-size: 100% 100%;
  1963. top: 9px;
  1964. left: 5px;
  1965. }
  1966. }
  1967. @media screen and (max-width: 1365px){
  1968. .signOut{
  1969. height: 16px;
  1970. padding: 0 8px;
  1971. border: 1px solid #02b6d4;
  1972. border-radius: 9px;
  1973. line-height: 16px;
  1974. margin-left: 12px;
  1975. margin-top: 3px;
  1976. font-size: 12px;
  1977. }
  1978. .infoBox .infoTop .infoTit{
  1979. height: 50%;
  1980. top: 25%;
  1981. }
  1982. .carInfo .carClose{
  1983. width: 32px;
  1984. height: 32px;
  1985. background-size: 100% 100%;
  1986. top: -16px;
  1987. right: -16px;
  1988. }
  1989. .infoBox .infoRight .introBox .carText p{
  1990. height: 18px;
  1991. line-height: 18px;
  1992. padding: 0 6px;
  1993. }
  1994. .infoBox .infoRight .driver{
  1995. padding-top: 2px;
  1996. }
  1997. .infoBox .infoRight .driver .photo{
  1998. width: 60px;
  1999. height: 60px;
  2000. }
  2001. .infoBox .infoRight .driver p{
  2002. font-size: 12px;
  2003. line-height: 22px;
  2004. }
  2005. .infoBox .infoLeft{
  2006. padding-top: 40px;
  2007. }
  2008. .infoBox .infoLeft .topSearch{
  2009. height: 28px;
  2010. padding: 0 14px;
  2011. border-radius: 14px;
  2012. }
  2013. .infoBox .infoLeft .topSearch form{
  2014. padding: 4px 10px 4px 28px;
  2015. }
  2016. .infoBox .infoLeft .topSearch button{
  2017. width: 18px;
  2018. height: 18px;
  2019. background-size: 100%;
  2020. top: 4px;
  2021. }
  2022. .infoBox .infoLeft .carState{
  2023. padding-top: 32px;
  2024. }
  2025. .infoBox .infoLeft .carState h3{
  2026. height: 31px;
  2027. line-height: 31px;
  2028. padding: 0 6px;
  2029. }
  2030. .infoBox .infoLeft .carState h3 span{
  2031. height: 31px;
  2032. }
  2033. .infoBox .infoLeft .carState ul li{
  2034. height: 31px;
  2035. line-height: 31px;
  2036. padding: 0 6px;
  2037. }
  2038. .infoBox .infoLeft .carState ul li p,.infoBox .infoLeft .carState ul li span{
  2039. height: 31px;
  2040. }
  2041. .infoBox .infoRight .timetable{
  2042. padding-top:28px;
  2043. }
  2044. .infoBox .infoRight .timetable .topTool{
  2045. height: 24px;
  2046. padding-top: 4px;
  2047. }
  2048. .infoBox .infoRight .timetable .tableExplain{
  2049. padding-top: 14px;
  2050. }
  2051. .infoBox .infoRight .timetable .tableExplain .itemExplain{
  2052. margin-right: 40px;
  2053. }
  2054. .infoBox .infoRight .timetable .tableExplain .itemExplain p{
  2055. font-size: 12px;
  2056. }
  2057. .infoBox .infoRight .timetable .topBtns{
  2058. height: 20px;
  2059. padding-top: 4px;
  2060. }
  2061. .infoBox .infoRight .timetable .topBtns a{
  2062. height: 20px;
  2063. padding: 0 12px;
  2064. border-radius: 10px;
  2065. margin: 0 10px;
  2066. line-height: 20px;
  2067. }
  2068. .infoBox .timetable .tiemWp{
  2069. padding: 22px 20% 0 0;
  2070. }
  2071. .infoBox .timetable .totalTable .totalTit{
  2072. height: 20px;
  2073. top: 6px;
  2074. }
  2075. .infoBox .timetable .totalTable .totalTit span{
  2076. line-height: 20px;
  2077. }
  2078. .btnLayer{
  2079. width: 30px;
  2080. height: 72px;
  2081. top: 20px;
  2082. right: 18px;
  2083. }
  2084. .btnLayer a{
  2085. display: block;
  2086. width: 30px;
  2087. height: 30px;
  2088. }
  2089. .btnLayer .search{
  2090. width: 30px;
  2091. height: 30px;
  2092. position: relative;
  2093. margin-bottom: 12px;
  2094. }
  2095. .btnLayer .search .searchInner{
  2096. width: 30px;
  2097. height: 30px;
  2098. border-radius: 15px;
  2099. }
  2100. .btnLayer .search .open{
  2101. width: 240px;
  2102. }
  2103. .btnLayer .search .icoSearch{
  2104. display: block;
  2105. width: 18px;
  2106. height: 18px;
  2107. background: url(../images/s_ico8.png);
  2108. background-size: 100% 100%;
  2109. }
  2110. .btnLayer .search a.searchBtn .icoSearch{
  2111. position: relative;
  2112. top: 6px;
  2113. left: 6px;
  2114. }
  2115. .btnLayer .search form{
  2116. width: 200px;
  2117. height: 24px;
  2118. padding: 3px 15px;
  2119. }
  2120. .btnLayer .search form button.icoSearch{
  2121. margin-right: 10px;
  2122. margin-top: 3px;
  2123. }
  2124. .btnLayer .search form input{
  2125. width: 166px;
  2126. }
  2127. .btnLayer .icoCar{
  2128. display: block;
  2129. width: 20px;
  2130. height: 12px;
  2131. background: url(../images/s_ico9.png);
  2132. background-size: 100% 100%;
  2133. top: 9px;
  2134. left: 5px;
  2135. }
  2136. }