Geen omschrijving

index.css 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892
  1. body {
  2. /*background-color: #010112;*/
  3. -webkit-text-size-adjust: none;
  4. /*overflow-x: hidden;*/
  5. background: -webkit-radial-gradient(circle, #020a42, #010112);
  6. /* Safari 5.1 - 6.0 */
  7. background: -o-radial-gradient(circle, #020a42, #010112);
  8. /* Opera 11.6 - 12.0 */
  9. background: -moz-radial-gradient(circle, #020a42, #010112s);
  10. /* Firefox 3.6 - 15 */
  11. background: radial-gradient(circle, #020a42, #010112);
  12. }
  13. div{
  14. box-sizing: border-box;
  15. }
  16. .chartWarp{
  17. padding: 0 15px;
  18. }
  19. .logOut{
  20. color: #48abff;
  21. font-size: 16px;
  22. width: 150px;
  23. height: 33px;
  24. line-height: 33px;
  25. background-color: #0d1940;
  26. text-align: center;
  27. cursor: pointer;
  28. }
  29. .logOut i{
  30. display: inline-block;
  31. width: 14px;
  32. height: 14px;
  33. background: url(../images/logOut.png) no-repeat;
  34. margin-right: 10px;
  35. }
  36. .contentTop_left,.contentTop_middle,.contentTop_right{
  37. box-sizing: border-box;
  38. }
  39. .header{
  40. margin-bottom: 10px;
  41. font-family: "DigifaceWide";
  42. color: #1591F9;
  43. }
  44. .header ul li {
  45. float: left;
  46. height: 78px;
  47. line-height: 78px;
  48. text-align: center;
  49. position: relative;
  50. }
  51. .header ul li>div{
  52. position: absolute;
  53. left: 0;
  54. right: 0;
  55. top: 0;
  56. }
  57. .header ul li img{
  58. vertical-align: middle;
  59. }
  60. .head_in{
  61. padding: 0 7%;
  62. line-height: initial;
  63. }
  64. .head_in .head_inConL,.head_in .head_inConR{
  65. width: 37%;
  66. height: 38px;
  67. display: inline-block;
  68. line-height: 38px;
  69. /*color: #1591F9;*/
  70. font-size: 16px;
  71. /*font-family: "DigifaceWide";*/
  72. vertical-align: middle;
  73. }
  74. .temperature{
  75. display: inline-block;
  76. width: 30%;
  77. text-align: left;
  78. }
  79. .head_in .head_inConL{
  80. background: url(../images/headInL.png) no-repeat;
  81. background-size: 100% 100%;
  82. text-align: right;
  83. }
  84. .head_in .head_inConR{
  85. background: url(../images/headInR.png) no-repeat;
  86. background-size: 100% 100%;
  87. }
  88. .head_inConM{
  89. display: inline-block;
  90. height: 70px;
  91. width: 70px;
  92. border: 1px solid #245fd5;
  93. border-radius: 50%;
  94. vertical-align: middle;
  95. background: url(../images/windNum.png) no-repeat center;
  96. font-size: 16px;
  97. }
  98. .head_inConM p{
  99. height: 38px;
  100. line-height: 40px;
  101. }
  102. /*.head_in>div {
  103. float: left;
  104. width: 25%;
  105. color: #48abff;
  106. font-size: 14px;
  107. }
  108. .head_in div p.head_count{
  109. text-align: center;
  110. font-family: "DigifaceWide";
  111. font-size: 18px;
  112. margin: 15px 0 5px 0;
  113. }*/
  114. .headerLeft{
  115. width: 26%;
  116. }
  117. .headerRight {
  118. width: 27%;
  119. }
  120. .headerLeftIn,.headerRightIn{
  121. height: 100%;
  122. width: 107%;
  123. background: url(../images/headSide.png) no-repeat center;
  124. background-size: 100% 100%;
  125. }
  126. .headerRightIn {
  127. left: -7%!important;
  128. transform:rotateY(180deg);
  129. -webkit-transform: rotateY(180deg); /* Safari 和 Chrome */
  130. -moz-transform: rotateY(180deg);
  131. }
  132. .headFourIn img{
  133. transform: rotateX(-180deg);
  134. -webkit-transform: rotateX(-180deg);
  135. -moz-transform: rotateX(-180deg);
  136. }
  137. .headerRightInCon{
  138. transform:rotateY(180deg);
  139. -webkit-transform: rotateY(180deg); /* Safari 和 Chrome */
  140. -moz-transform: rotateY(180deg);
  141. }
  142. .headerRightInCon .headerRightInCon_m{
  143. height: 63px;
  144. width: 63px;
  145. border: 1px solid #163887;
  146. background: #091c5c;
  147. border-radius: 50%;
  148. font-family: "DigifaceWide";
  149. color: #1591F9;
  150. line-height: 63px;
  151. }
  152. .headerRightInCon .headerRightInCon_l,.headerRightInCon .headerRightInCon_r{
  153. width: 37%;
  154. height: 42px;
  155. background: url(../images/rightInL.png) no-repeat;
  156. line-height: 42px;
  157. color: #1591F9;
  158. font-size: 18px;
  159. font-family: "DigifaceWide";
  160. background-size: 100% 100%;
  161. padding-left: 3%;
  162. }
  163. .headerRightInCon .headerRightInCon_r{
  164. background: url(../images/rightInR.png) no-repeat;
  165. font-family: "Microsoft YaHei";
  166. font-size: 14px;
  167. padding: 0;
  168. text-align: center;
  169. background-size: 100% 100%;
  170. }
  171. .headerRightInCon div{
  172. display: inline-block;
  173. vertical-align: middle;
  174. }
  175. .headTwo,
  176. .headFour {
  177. width: 6%;
  178. background: url(../images/headFour0.png) no-repeat center;
  179. }
  180. .headTwo{
  181. /*position: relative;
  182. right: -28px;*/
  183. }
  184. .headFour {
  185. background: url(../images/headFour0.png) no-repeat center;
  186. cursor: pointer;
  187. transform:rotateX(180deg);
  188. -webkit-transform: rotateX(180deg); /* Safari 和 Chrome */
  189. -moz-transform: rotateX(180deg);
  190. /*position: relative;
  191. left: -28px;*/
  192. }
  193. .headerLeft,.headerRight,.headTwo,.headFour{
  194. background-size: 100% 100%;
  195. }
  196. .headerTitle {
  197. width:35%;
  198. /*background: url(../images/headTitle.png) no-repeat center;
  199. background-size: 100% 100%;*/
  200. line-height: 67px;
  201. cursor: pointer;
  202. }
  203. .headerTitleIn{
  204. width: 108%;
  205. background: url(../images/headTitle.png) no-repeat center;
  206. background-size: 100% 100%;
  207. left: -4%!important;
  208. }
  209. .headerTitle img{
  210. max-width: 70%;
  211. }
  212. @font-face {
  213. font-family: DigifaceWide;
  214. src: url('../font/DIGIFAW.TTF');
  215. }
  216. .head_count {
  217. font-size: 22px;
  218. font-family: "DigifaceWide";
  219. color: #fff!important;
  220. }
  221. .world {
  222. color: #cfdef1;
  223. font-size: 18px;
  224. vertical-align: middle;
  225. margin: 0 15px 0 10px;
  226. font-weight: bold;
  227. }
  228. /*角边框开始*/
  229. /* 外层右上有左下 2 个角*/
  230. .outter {
  231. position: relative;
  232. padding: 5px;
  233. }
  234. .outter:before,
  235. .outter:after {
  236. content: "";
  237. position: absolute;
  238. width: 10px;
  239. height: 10px;
  240. }
  241. .outterBox:before,
  242. .outterBox:after{
  243. width: 20px;
  244. height: 20px;
  245. }
  246. .outter:before {
  247. right: -1px;
  248. top: -1px;
  249. border-right: 2px solid #507fdf;
  250. border-top: 2px solid #507fdf;
  251. }
  252. .outter:after {
  253. left: -1px;
  254. bottom: -1px;
  255. border-left: 2px solid #507fdf;
  256. border-bottom: 2px solid #507fdf;
  257. }
  258. /*内层左上和右下 2 个角*/
  259. .inner {
  260. position: relative;
  261. }
  262. .inner::before,
  263. .inner::after {
  264. position: absolute;
  265. content: '';
  266. height: 10px;
  267. width: 10px;
  268. }
  269. .outterBox .inner::before,
  270. .outterBox .inner::after{
  271. height: 20px;
  272. width: 20px;
  273. }
  274. .inner::before {
  275. left: -7px;
  276. top: -6px;
  277. border-left: 2px solid #507fdf;
  278. border-top: 2px solid #507fdf;
  279. }
  280. .inner::after {
  281. right: -6px;
  282. bottom: -6px;
  283. border-right: 2px solid #507fdf;
  284. border-bottom: 2px solid #507fdf;
  285. }
  286. .outterBox {
  287. border: 1px solid #0f3287;
  288. margin-top: 10px;
  289. }
  290. /*角边框结束*/
  291. .title_tips {
  292. width: 150px;
  293. height: 33px;
  294. line-height: 33px;
  295. background-color: #1b43b4;
  296. color: #cedbff;
  297. font-size: 16px;
  298. text-align: center;
  299. margin: 0 auto;
  300. }
  301. .wxTab .title_tips.active{
  302. background: #113589;
  303. }
  304. .title_outter {
  305. width: 160px;
  306. }
  307. .content {
  308. padding: 0 20px;
  309. }
  310. .contentTop_leftTop{
  311. padding: 0 5px;
  312. height: 224px;
  313. }
  314. .contentTop_leftTop>div {
  315. width: 50%;
  316. float: left;
  317. height: 100%;
  318. }
  319. .contentTop_leftTop ul li {
  320. background-color: #0d1940;
  321. color: #2d7bd3;
  322. font-size: 16px;
  323. height: 35px;
  324. line-height: 35px;
  325. margin-top: 7px;
  326. cursor: pointer;
  327. }
  328. .contentTop_leftTop ul li .numbers {
  329. display: inline-block;
  330. width: 35px;
  331. height: 100%;
  332. text-align: center;
  333. color: #fa9d33;
  334. margin-right: 10px;
  335. }
  336. .contentTop_leftTop ul li.active{
  337. background-color: #1a3ba6;
  338. color: #fff;
  339. border: 2px solid #416cf5;
  340. border-right: 0;
  341. position: relative;
  342. }
  343. /*.contentTop_leftTop ul li.active:before{
  344. content: "";
  345. position: absolute;
  346. height: 0;
  347. width:0;
  348. border-top: 19px solid transparent;
  349. border-left: 27px solid #406cf5;
  350. border-bottom: 21px solid transparent;
  351. right: -27px;
  352. top: -2px;
  353. }
  354. .contentTop_leftTop ul li.active:after{
  355. content: "";
  356. position: absolute;
  357. height: 0;
  358. width:0;
  359. border-top: 19px solid transparent;
  360. border-left: 27px solid #406cf5;
  361. border-bottom: 21px solid transparent;
  362. right: -27px;
  363. top: -2px;
  364. }*/
  365. .contentTop_leftTop ul li.active:before{
  366. display: block;
  367. content: "";
  368. width: 28px;
  369. height: 28px;
  370. border: 2px solid #406cf5;
  371. border-left: 0;
  372. border-top: 0;
  373. position: absolute;
  374. right: -15px;
  375. background-color: #1b3ba6;
  376. top: 3px;
  377. transform: rotate(7deg);
  378. -ms-transform: rotate(7deg);
  379. -moz-transform: rotate(7deg);
  380. -webkit-transform: rotate(-45deg);
  381. -o-transform: rotate(7deg);
  382. }
  383. .contentTop_leftTop ul li.active .numbers{
  384. color: #fff;
  385. }
  386. .htLate{
  387. /*background: url(../images/circle0.png) no-repeat;*/
  388. color: #fff;
  389. font-size: 13px;
  390. height: 150px;
  391. width: 150px;
  392. margin: 0 auto;
  393. line-height: 150px;
  394. text-align: center;
  395. display: inline-block;
  396. vertical-align: middle;
  397. position: relative;
  398. }
  399. /*.htLate.active{
  400. background: url(../images/circle1.png) no-repeat;
  401. }*/
  402. .htLate div{
  403. width: 100%;
  404. height: 100%;
  405. position: absolute;
  406. }
  407. .htLate .htLateIn_1{
  408. background: url(../images/htLateIn_01.png) no-repeat center;
  409. }
  410. .htLate .htLateIn_2{
  411. background: url(../images/htLateIn_02.png) no-repeat center;
  412. }
  413. .htLate .htLateIn_3{
  414. background: url(../images/htLateIn_03.png) no-repeat center;
  415. }
  416. .htLate.active .htLateIn_1{
  417. background: url(../images/htLateIn_11.png) no-repeat center;
  418. }
  419. .htLate.active .htLateIn_2{
  420. background: url(../images/htLateIn_12.png) no-repeat center;
  421. }
  422. .htLate.active .htLateIn_3{
  423. background: url(../images/htLateIn_13.png) no-repeat center;
  424. }
  425. .htLate .htLateIn_1,.htLate.active .htLateIn_1{
  426. animation: 20s infinite anticlockwise linear;
  427. -webkit-animation: 20s infinite anticlockwise linear;
  428. }
  429. .htLate .htLateIn_2,.htLate.active .htLateIn_2{
  430. animation: 20s infinite clockwise linear;
  431. -webkit-animation: 20s infinite clockwise linear;
  432. }
  433. .lateTime{
  434. font-family: "DigifaceWide";
  435. font-size: 18px;
  436. }
  437. .verticalBox{
  438. display: inline-block;
  439. width: 0;
  440. height: 100%;
  441. vertical-align: middle;
  442. }
  443. .htWorld{
  444. color: #fff;
  445. font-size: 16px;
  446. }
  447. .htWorld.active{
  448. color: #fa203a;
  449. }
  450. .content_nav{
  451. color: #48abff;
  452. font-size: 16px;
  453. padding: 8px 10px;
  454. }
  455. .content_navTitle{
  456. margin-left: 15px;
  457. }
  458. .btns{
  459. padding: 2px 17px;
  460. border-radius: 2px;
  461. background-color: #081337;
  462. color: #45599d;
  463. font-size: 12px;
  464. border-color: #081337;
  465. }
  466. .btn:hover {
  467. text-decoration: none;
  468. background-color: #081337;
  469. color: #45599d;
  470. }
  471. .btns.active,.btns.active:hover{
  472. color: #fff;
  473. background-color: #245fd5;
  474. }
  475. .btn:active:focus,.btn:focus{
  476. outline: none;
  477. outline: 0 auto -webkit-focus-ring-color;
  478. outline-offset: 0;
  479. color: #45599d;
  480. }
  481. .btn.active:active:focus{
  482. outline: none;
  483. outline: 0 auto -webkit-focus-ring-color;
  484. outline-offset: 0;
  485. }
  486. .btn.active:focus{
  487. color: #fff;
  488. outline: 0px auto -webkit-focus-ring-color;
  489. }
  490. .btn.btns.active, .btn:active{
  491. -webkit-box-shadow: none;
  492. box-shadow: none;
  493. }
  494. .contentTop_RightTop,.contentTop_RightBottom,.contentTop_leftBottom{
  495. border: 1px solid transparent;
  496. }
  497. .contentTop_RightTop ul{
  498. background: #06153e;
  499. font-size: 14px;
  500. }
  501. .contentTop_RightTop ul li{
  502. height: 32px;
  503. line-height: 32px;
  504. color: #48abff;
  505. padding: 0 5px;
  506. margin-top: 3px;
  507. }
  508. .contentTop_RightTop ul li span,.contentTop_RightBottom ul li span{
  509. display: inline-block;
  510. }
  511. .contentTop_RightTop ul li span{
  512. vertical-align: middle;
  513. }
  514. .contentTop_RightTop ul li .numbers,.contentTop_RightBottom ul li .numbers{
  515. height: 24px;
  516. width: 24px;
  517. background: #3491e6;
  518. text-align: center;
  519. line-height: 24px;
  520. color: #06153e;
  521. border-radius: 3px;
  522. margin-right: 12px;
  523. }
  524. .contentTop_RightTop ul li .numbers.importants,.contentTop_RightBottom ul li .numbers.importants{
  525. background: #fa9d33;
  526. }
  527. .contentTop_RightTop ul li span.messages{
  528. display: inline-block;
  529. width: calc(100% - 120px);
  530. overflow: hidden;
  531. white-space: nowrap;
  532. text-overflow: ellipsis;
  533. }
  534. .contentTop_RightTop ul li span.times{
  535. color: #48abff;
  536. }
  537. .contentTop_RightTop ul li.active{
  538. background: #16327c;
  539. }
  540. .contentTop_RightBottom ul li{
  541. height: 32px;
  542. color: #48abff;
  543. line-height: 32px;
  544. background-color: #091748;
  545. margin-top: 5px;
  546. padding: 0 10px;
  547. overflow: hidden;
  548. white-space: nowrap;
  549. text-overflow: ellipsis;
  550. }
  551. .byWord{
  552. color: #1591f9;
  553. font-size: 16px;
  554. display: inline-block;
  555. vertical-align: middle;
  556. }
  557. .progressBox{
  558. background: #0a2c6b;
  559. /*width: 87%;*/
  560. width: calc(100% - 55px);
  561. padding: 10px 10px;
  562. border-radius: 5px;
  563. position: relative;
  564. display: inline-block;
  565. vertical-align: middle;
  566. }
  567. .progress{
  568. margin: 3px 0;
  569. padding: 2px 0;
  570. border-radius: 20px;
  571. background-color: #010c33;
  572. }
  573. .progressIn{
  574. border-radius: 20px;
  575. background-color: #1591f9;
  576. }
  577. .progressInspect{
  578. background-color: #2db8ec;
  579. border-radius: 20px;
  580. }
  581. .progressInspectBox{
  582. border: 2px solid #27418b;
  583. padding: 1px 0;
  584. width: 90%;
  585. margin: 0 auto;
  586. }
  587. .progressInspectWord {
  588. color: #4f84ef;
  589. font-size: 14px;
  590. font-family: "DigifaceWide";
  591. width: 90%;
  592. margin: 0 auto;
  593. margin-bottom: 18px;
  594. }
  595. .progressInspectWord span{
  596. font-size: 18px;
  597. }
  598. .countNum{
  599. position: absolute;
  600. padding: 0;
  601. margin: -1px;
  602. border: 0;
  603. top: -35px;
  604. z-index: 9999;
  605. display: block;
  606. left: 15%;
  607. color: #148aef;
  608. background: #0b2c6b;
  609. border-radius: 5px;
  610. padding: 3px 10px;
  611. font-size: 12px;
  612. font-family: "DigifaceWide";
  613. }
  614. .countNum:before{
  615. content: "";
  616. display: block;
  617. position: absolute;
  618. width: 0;
  619. height: 0;
  620. border-right: 10px solid transparent;
  621. border-top: 10px solid #0a2c6a;
  622. border-left: 10px solid transparent;
  623. bottom: -10px;
  624. left: 27%;
  625. }
  626. .contentTop_leftBottom_b{
  627. margin: 24px 0 10px 0;
  628. }
  629. .InspectDatas,.Inspection{
  630. width: 33.3%;
  631. text-align: center;
  632. color: #fff;
  633. float: left;
  634. }
  635. .InspectDatas div,.Inspection div {
  636. font-family: "DigifaceWide";
  637. font-size: 18px;
  638. text-align: center;
  639. line-height: 100px;
  640. margin: 0 auto;
  641. margin-bottom: 20px;
  642. }
  643. .Inspection .InspectionInBox,.InspectDatas .InspectionInBox{
  644. width: 100px;
  645. height: 100px;
  646. position: relative;
  647. color: #fff;
  648. }
  649. .InspectDatas .InspectionInBox{
  650. color: #1591f9;
  651. }
  652. .Inspection .InspectionInBox div,.InspectDatas .InspectionInBox div{
  653. width: 100%;
  654. height: 100%;
  655. position: absolute;
  656. }
  657. .InspectDatas .InspectionInBox div.InspectionIn_1{
  658. background: url(../images/InspectDatas_1.png) no-repeat center;
  659. animation: 20s infinite anticlockwise linear;
  660. -webkit-animation: 20s infinite anticlockwise linear;
  661. }
  662. .InspectDatas .InspectionInBox div.InspectionIn_2{
  663. background: url(../images/InspectDatas_2.png) no-repeat center;
  664. animation: 20s infinite clockwise linear;
  665. -webkit-animation: 20s infinite clockwise linear;
  666. }
  667. .Inspection .InspectionInBox div.InspectionIn_1{
  668. background: url(../images/Inspection_1.png) no-repeat center;
  669. animation: 20s infinite clockwise linear;
  670. -webkit-animation: 20s infinite clockwise linear;
  671. }
  672. .Inspection .InspectionInBox div.InspectionIn_2{
  673. background: url(../images/Inspection_2.png) no-repeat center;
  674. animation: 20s infinite anticlockwise linear;
  675. -webkit-animation: 20s infinite anticlockwise linear;
  676. }
  677. .Inspection .InspectionInBox div.InspectCount,.Inspect_done,.Inspect_nodo{
  678. background: url(../images/Inspection_3.png) no-repeat center;
  679. }
  680. @keyframes anticlockwise {
  681. 0% {
  682. transform: rotate(0deg);
  683. -webkit-transform: rotate(0deg);
  684. }
  685. 100% {
  686. transform: rotate(-360deg);
  687. -webkit-transform: rotate(-360deg);
  688. }
  689. }
  690. @-webkit-keyframes anticlockwise {
  691. 0% {
  692. transform: rotate(0deg);
  693. -webkit-transform: rotate(0deg);
  694. }
  695. 100% {
  696. transform: rotate(-360deg);
  697. -webkit-transform: rotate(-360deg);
  698. }
  699. }
  700. @keyframes clockwise {
  701. 0% {
  702. transform: rotate(0deg);
  703. -webkit-transform: rotate(0deg);
  704. }
  705. 100% {
  706. transform: rotate(360deg);
  707. -webkit-transform: rotate(360deg);
  708. }
  709. }
  710. @-webkit-keyframes clockwise {
  711. 0% {
  712. transform: rotate(0deg);
  713. -webkit-transform: rotate(0deg);
  714. }
  715. 100% {
  716. transform: rotate(360deg);
  717. -webkit-transform: rotate(360deg);
  718. }
  719. }
  720. .contentTop_middle_top{
  721. width: 85%;
  722. margin: 0 auto;
  723. padding-top: 20px;
  724. }
  725. .contentTop_middle_top .contentTop_middle_top_pro{
  726. width: 33.3333%;
  727. text-align: center;
  728. float: left;
  729. }
  730. .contentTop_middle_top div span.contentTop_middle_top_pro_span{
  731. display: block;
  732. color: #fff;
  733. font-size: 18px;
  734. font-weight: bold;
  735. margin-bottom: 25px;
  736. }
  737. .dataNums .tt span{
  738. color: #fff;
  739. }
  740. .dataNums .dataOne{
  741. background: #155af6;
  742. height: 35px;
  743. }
  744. .mapBox {
  745. width: 100%;
  746. position: relative;
  747. }
  748. .mapBox img{
  749. display: block;
  750. min-width: 300px;
  751. width: 51%;
  752. max-width: 80%;
  753. margin: 0 auto;
  754. }
  755. .mapword{
  756. width: 295px;
  757. height: 158px;
  758. background: url(../images/mapKuang.png) no-repeat center;
  759. position: absolute;
  760. top: 13%;
  761. right: 2%;
  762. text-align: center;
  763. background-size: 100% 100%;
  764. }
  765. .mapword ul li{
  766. padding: 17px 30px;
  767. }
  768. .mapword p{
  769. text-align: left;
  770. color: #fff;
  771. font-size: 16px;
  772. margin-top: 15px;
  773. }
  774. .mapword .mapword_title{
  775. color: #fff;
  776. font-weight: bold;
  777. text-align: center;
  778. font-size: 16px;
  779. margin-top: 0;
  780. }
  781. /*@media(max-width: 1410px) {
  782. .headerRight{
  783. display: none;
  784. }
  785. .headFour{
  786. width: 17%;
  787. }
  788. .headerTitle{
  789. width: 50%;
  790. }
  791. }*/
  792. /*地图*/
  793. @media (min-width: 992px) and (max-width: 1520px) {
  794. .col-md-3{
  795. width: 100%;
  796. }
  797. /*.col-md-3 .outterBox{
  798. width: 50%;
  799. }*/
  800. .col-md-6{
  801. width: 100%;
  802. }
  803. }
  804. @media (min-width: 1667px)and (max-width: 1827px) {
  805. .mapBox img{
  806. width: 54%;
  807. }
  808. .mapword {
  809. width: 265px;
  810. height: 156px;
  811. }
  812. }
  813. @media (min-width: 1520px)and (max-width: 1660px) {
  814. .mapBox img{
  815. width: 60%;
  816. }
  817. .mapword{
  818. width: 240px;
  819. height: 155px;
  820. }
  821. }
  822. @media (min-width: 1300px) and (max-width: 1520px) {
  823. .mapBox img{
  824. width: 40%;
  825. }
  826. .mapword{
  827. top: 17%;
  828. right: 17%;
  829. }
  830. }
  831. @media (max-width: 992px) {
  832. .mapBox img{
  833. width: 50%;
  834. }
  835. }