暫無描述

index.css 32KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  1. /*
  2. 公共初始化样式
  3. * */
  4. body {
  5. margin: 0;
  6. padding: 0;
  7. height:100%;
  8. width:100%;
  9. font-size: 16px;
  10. -webkit-text-size-adjust: none;
  11. background: url(../img/waikuang.png) no-repeat;
  12. background-size:cover;
  13. /*overflow-x: hidden;*/
  14. /* background: -webkit-radial-gradient(circle, #12266a, #000221); */
  15. /* Safari 5.1 - 6.0 */
  16. /* background: -o-radial-gradient(circle, #12266a, #000221); */
  17. /* Opera 11.6 - 12.0 */
  18. /* background: -moz-radial-gradient(circle, #12266a, #000221); */
  19. /* Firefox 3.6 - 15 */
  20. /* background: radial-gradient(circle, #12266a, #000221); */
  21. /* 标准的语法(必须放在最后) */
  22. font-family: "微软雅黑";
  23. }
  24. ul,
  25. li {
  26. margin: 0;
  27. padding: 0;
  28. }
  29. li {
  30. list-style-type: none;
  31. }
  32. img {
  33. border: 0;
  34. }
  35. p {
  36. margin: 0;
  37. padding: 0;
  38. }
  39. .oneRog .tabItems li.active{
  40. background: url(../img/num_frame.png) no-repeat center;
  41. background-size: 100% 100%;
  42. }
  43. /* .orderTtype_Con div.active{
  44. border:2px solid red;
  45. } */
  46. .nav_middle{
  47. }
  48. /* .clearfix ul li.img_cente{
  49. width:100%;
  50. height:50px;
  51. line-height: 40px;
  52. font-size: 38px;
  53. font-weight: bold;
  54. color:#FFFFFF;
  55. text-align: center;
  56. } */
  57. .clearfix:after {
  58. content: " ";
  59. display: block;
  60. clear: both;
  61. height: 0;
  62. }
  63. a {
  64. text-decoration: none;
  65. }
  66. #save_ssss{
  67. margin-left: 10px;
  68. color:#00E9FF;
  69. font-size:12px;
  70. border:2px solid #00E9FF;
  71. }
  72. /*首页样式开始 */
  73. #nav {
  74. width:100%;
  75. height:50px;
  76. line-height: 50px;
  77. font-size: 38px;
  78. font-weight: bold;
  79. color:#FFFFFF;
  80. text-align: center;
  81. }
  82. #nav>div {
  83. float: left;
  84. }
  85. #nav .nav_left,
  86. .nav_right {
  87. width: calc((100% - 1200px) / 2);
  88. height: 84px;
  89. /*background: -webkit-linear-gradient(left, transparent, #104d9a);
  90. background: -o-linear-gradient(left, transparent, #104d9a);
  91. background: -moz-linear-gradient(left, transparent, #104d9a);
  92. background: linear-gradient(to right, transparent, #104d9a);*/
  93. /*border: 2px solid #0eb4ea;
  94. border-right: 0;
  95. border-left: 0;*/
  96. /*position: relative;*/
  97. }
  98. /*#nav .nav_left:before{
  99. position: absolute;
  100. right: 0;
  101. content: "";
  102. width: 13px;
  103. height: 84px;
  104. border-width: 32px 18px 52px 42px;
  105. border-style: solid;
  106. border-color: transparent #070f3a transparent transparent;
  107. }*/
  108. .nav_middle {
  109. width: 1200px;
  110. margin: 0 auto;
  111. background: url(../img/waihuan.png) no-repeat center;
  112. background-size:100% 100%;
  113. /*min-width: 1220px;*/
  114. }
  115. #nav>div>img {
  116. display: block;
  117. width: 100%;
  118. height: 84px;
  119. }
  120. .nav_middle>ul li {
  121. float: left;
  122. }
  123. .nav_middle>ul li {
  124. width: 13%;
  125. /*width: 160px;*/
  126. }
  127. .nav_middle>ul li:nth-of-type(3) {
  128. width: 48%;
  129. /*width: 560px;*/
  130. }
  131. .nav_middle>ul li img {
  132. display: block;
  133. width: 100%;
  134. }
  135. #wrap {
  136. /*width: 80%;*/
  137. margin: 0 auto;
  138. /*height: calc(100vh - 195px);*/
  139. width: 1500px;
  140. max-width: 1500px;
  141. margin: 0 auto;
  142. height: 900px;
  143. }
  144. .swiper-container {
  145. padding-bottom: 35px;
  146. }
  147. .swiper-container,
  148. .swiper-slide {
  149. height: 100%;
  150. width: 100%!important;
  151. margin-top: 30px;
  152. }
  153. .swiper-pagination-bullet {
  154. width: 48px!important;
  155. height: 48px!important;
  156. opacity: 1!important;
  157. background: url(../img/paginat.png) no-repeat;
  158. vertical-align: middle;
  159. }
  160. .swiper-pagination-bullet-active {
  161. height: 73px!important;
  162. width: 73px!important;
  163. background: url(../img/paginat_active.png) no-repeat;
  164. animation: 20s infinite radar_pagination linear;
  165. -webkit-animation: 5s infinite radar_pagination linear;
  166. }
  167. @keyframes radar_pagination {
  168. 0% {
  169. transform: rotate(0deg);
  170. -webkit-transform: rotate(0deg);
  171. }
  172. 100% {
  173. transform: rotate(360deg);
  174. -webkit-transform: rotate(360deg);
  175. }
  176. }
  177. @-webkit-keyframes radar_pagination {
  178. 0% {
  179. transform: rotate(0deg);
  180. -webkit-transform: rotate(0deg);
  181. }
  182. 100% {
  183. transform: rotate(360deg);
  184. -webkit-transform: rotate(360deg);
  185. }
  186. }
  187. .swiper-button-next,
  188. .swiper-button-prev {
  189. width: 51px;
  190. height: 20px;
  191. bottom: 35px!important;
  192. top: auto;
  193. }
  194. .swiper-button-prev {
  195. left: 35%;
  196. z-index: 999;
  197. background: url(../img/go_prev.png) no-repeat;
  198. }
  199. .swiper-button-next {
  200. right: 35%;
  201. background: url(../img/go_next.png) no-repeat;
  202. }
  203. .swiper-slide>div {
  204. width: 100%;
  205. position: relative;
  206. }
  207. .slideCon_bg {
  208. background: url(../img/slide_bg1.png) no-repeat;
  209. height: 100%;
  210. width: 100%;
  211. background-size: 100% 100%;
  212. }
  213. .slide_title {
  214. position: absolute;
  215. height: 2.8rem;
  216. width: 26rem;
  217. left: 39%;
  218. top: 8.8%;
  219. background-size: 100%;
  220. }
  221. .slide_title1 {
  222. background: url(../img/slide_title1.png) no-repeat;
  223. }
  224. .slide_title2 {
  225. background: url(../img/slide_title2.png) no-repeat;
  226. left: 42%;
  227. }
  228. .slide_title3 {
  229. background: url(../img/slide_title3.png) no-repeat;
  230. left: 45%;
  231. }
  232. .slide_title4 {
  233. background: url(../img/slide_title4.png) no-repeat;
  234. left: 43%;
  235. }
  236. .slide_title5 {
  237. background: url(../img/slide_title5.png) no-repeat;
  238. left: 46%;
  239. }
  240. /*首页第一屏*/
  241. .slideCon_bg>div{
  242. float: left;
  243. box-sizing: border-box;
  244. padding-top: 140px;
  245. }
  246. /* .slideCon_bg div.oneRog{
  247. box-sizing: border-box;
  248. } */
  249. .slideCon_bg .twotimeWarp {
  250. float: left;
  251. box-sizing: border-box;
  252. padding-top: 140px;
  253. margin-left: 130px;
  254. }
  255. /* .oneRog{
  256. padding-top: 260px;
  257. } */
  258. .slide_left,
  259. .slide_right {
  260. width: 25%;
  261. }
  262. .slide_middle {
  263. width: 50%;
  264. }
  265. .slide_middle_first{
  266. width: 75%;
  267. margin-left: -5%;
  268. }
  269. .orderStatistic>.orderCon_middle {
  270. padding-top: 180px;
  271. }
  272. .orderStatistic>.orderCon_left {
  273. box-sizing: border-box;
  274. padding-left: 137px;
  275. }
  276. .orderStatistic>div>ul li {
  277. height: 120px;
  278. width: 250px;
  279. margin-top: 27px;
  280. background: url(../img/num_frame.png) no-repeat center;
  281. background-size: 100%;
  282. position: relative;
  283. }
  284. .orderStatistic>div>ul li div {
  285. font-size:12px;
  286. color:#fff;
  287. margin-left: 27px;
  288. }
  289. .orderStatistic>div>ul li div.alert_link {
  290. font-size:12px;
  291. color:#fff;
  292. display: block;
  293. position: absolute;
  294. top:40px;
  295. right: -15px;
  296. width:150px;
  297. height:100px;
  298. }
  299. .slideCon_bg>div>ul li img {
  300. width: 50px;
  301. height: 50px;
  302. padding-left: 37px;
  303. padding-top: 25px;
  304. display: inline-block;
  305. vertical-align: middle;
  306. }
  307. .slideCon_bg>div>ul li .num_word {
  308. display: inline-block;
  309. vertical-align: middle;
  310. font-size: 14px;
  311. color: #02d0ee;
  312. margin-top: 20px;
  313. }
  314. .slideCon_bg>div>ul li .num_word span:nth-of-type(2) {
  315. color: #fff;
  316. margin-right: 10px;
  317. }
  318. .slideCon_bg>div>ul li .num_word span:nth-of-type(3) {
  319. color: #fdcf2f;
  320. font-size: 18px;
  321. }
  322. /*雷达样式开始*/
  323. .radar {
  324. /*background: -webkit-radial-gradient(center, rgba(32, 255, 77, 0.3) 0%, rgba(32, 255, 77, 0) 75%), -webkit-repeating-radial-gradient(rgba(32, 255, 77, 0) 5.8%, rgba(32, 255, 77, 0) 18%, #20ff4d 18.6%, rgba(32, 255, 77, 0) 18.9%), -webkit-linear-gradient(90deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%), -webkit-linear-gradient(0deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%);*/
  325. background: -webkit-radial-gradient(center, rgba(3, 248, 255, 0.5) 0%, rgba(32, 255, 77, 0) 5%), -webkit-repeating-radial-gradient(rgba(32, 255, 77, 0) 0%, rgba(32, 255, 77, 0) 23%, #00f9ff 23.6%, rgba(32, 255, 77, 0) 23.9%);
  326. ;
  327. /*background: radial-gradient(center, rgba(32, 255, 77, 0.3) 0%, rgba(32, 255, 77, 0) 75%), repeating-radial-gradient(rgba(32, 255, 77, 0) 5.8%, rgba(32, 255, 77, 0) 18%, #20ff4d 18.6%, rgba(32, 255, 77, 0) 18.9%), linear-gradient(90deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%), linear-gradient(0deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%);*/
  328. background: radial-gradient(center, rgba(3, 248, 255, 0.5) 0%, rgba(32, 255, 77, 0) 5%), repeating-radial-gradient(rgba(32, 255, 77, 0) 5.8%, rgba(32, 255, 77, 0) 23%, #20ff4d 23.6%, rgba(32, 255, 77, 0) 23.9%), linear-gradient(90deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%), linear-gradient(0deg, rgba(32, 255, 77, 0) 49.5%, #20ff4d 50%, #20ff4d 50%, rgba(32, 255, 77, 0) 50.2%);
  329. width: 500px;
  330. height: 500px;
  331. max-height: 500px;
  332. max-width: 500px;
  333. position: relative;
  334. left: 50%;
  335. top: 50%;
  336. transform: translate(-50%, -50%);
  337. border-radius: 50%;
  338. border: 0.2rem solid #01f8ff;
  339. box-shadow: 0 0 35px #01f8ff;
  340. overflow: hidden;
  341. }
  342. .radar_inner {
  343. width: 100%;
  344. height: 100%;
  345. }
  346. .radar_inner::before,
  347. .radar_inner::after {
  348. content: ' ';
  349. display: block;
  350. position: absolute;
  351. width: 100%;
  352. height: 4%;
  353. background: url(../img/heng_line.png) no-repeat center;
  354. top: 50%;
  355. left: 0;
  356. background-size: cover;
  357. margin-top: -2%;
  358. }
  359. .radar_inner::after {
  360. transform: rotate(90deg);
  361. }
  362. .radar:before {
  363. content: ' ';
  364. display: block;
  365. position: absolute;
  366. border-radius: 50%;
  367. /*animation: blips 5s infinite;*/
  368. width: 100%;
  369. height: 4%;
  370. animation-timing-function: linear;
  371. animation-delay: 1.4s;
  372. }
  373. .radar:after {
  374. content: ' ';
  375. display: block;
  376. background-image: linear-gradient(44deg, rgba(0, 255, 51, 0) 50%, #00f9ff 100%);
  377. width: 50%;
  378. height: 50%;
  379. position: absolute;
  380. top: 0;
  381. left: 0;
  382. animation: radar-beam 5s infinite;
  383. animation-timing-function: linear;
  384. transform-origin: bottom right;
  385. border-radius: 100% 0 0 0;
  386. }
  387. @keyframes radar-beam {
  388. 0% {
  389. transform: rotate(0deg);
  390. }
  391. 100% {
  392. transform: rotate(360deg);
  393. }
  394. }
  395. /*波点出现消失动画开始*/
  396. @keyframes blips {
  397. /*14% {
  398. background: linear-gradient(0deg, transparent 24%, rgba(140, 147, 166, 0.51) 25%, rgba(140, 147, 166, 0.51) 26%, transparent 27%, transparent 74%, rgba(140, 147, 166, 0.51) 75%, rgba(140, 147, 166, 0.51) 76%, transparent 77%, transparent);
  399. }
  400. 14.0002% {
  401. background: radial-gradient(2vmin circle at 75% 70%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 63% 72%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%);
  402. }
  403. 25% {
  404. background: radial-gradient(2vmin circle at 75% 70%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 63% 72%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 56% 86%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%);
  405. }
  406. 26% {
  407. background: radial-gradient(2vmin circle at 75% 70%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 63% 72%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 56% 86%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%);
  408. opacity: 1;
  409. }
  410. 100% {
  411. background: radial-gradient(2vmin circle at 75% 70%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 63% 72%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%), radial-gradient(2vmin circle at 56% 86%, #ffffff 10%, #20ff4d 30%, rgba(255, 255, 255, 0) 100%);
  412. opacity: 0;
  413. }*/
  414. 0% {
  415. box-shadow: 0px 0 3px 8px #1f6cb9;
  416. }
  417. 30% {
  418. box-shadow: 0 0 3px 4px #1f6cb9;
  419. }
  420. 70% {
  421. box-shadow: 0 0 3px 6px #1f6cb9;
  422. }
  423. 100% {
  424. /*box-shadow: 0 0 35px rgba(24, 61, 101, 0.81);*/
  425. box-shadow: 0px 0 3px 8px #1f6cb9;
  426. }
  427. }
  428. /*波点出现消失动画结束*/
  429. #radarBox {
  430. width: 550px;
  431. height: 550px;
  432. max-height: 550px;
  433. max-width: 550px;
  434. margin: 0 auto;
  435. border-radius: 50%;
  436. position: relative;
  437. background: url(../img/waihuan.png) no-repeat;
  438. background-size: contain;
  439. }
  440. /*雷达样式结束*/
  441. .map_bg {
  442. /*background: url(../img/map.png) no-repeat center;*/
  443. background-size: 66%;
  444. position: relative;
  445. }
  446. @keyframes OutOpcity {
  447. 0% {
  448. opacity: 1;
  449. }
  450. 20% {
  451. opacity: 0.8;
  452. }
  453. 40% {
  454. opacity: 0.5;
  455. }
  456. 65% {
  457. opacity: 0.2;
  458. }
  459. 100% {
  460. opacity: 0;
  461. }
  462. }
  463. @-webkit-keyframes OutOpcity {
  464. 0% {
  465. opacity: 1;
  466. }
  467. 20% {
  468. opacity: 0.8;
  469. }
  470. 40% {
  471. opacity: 0.5;
  472. }
  473. 65% {
  474. opacity: 0.2;
  475. }
  476. 100% {
  477. opacity: 0;
  478. }
  479. }
  480. .OutOpcity {
  481. -webkit-animation-name: OutOpcity;
  482. animation-name: OutOpcity
  483. /*animation: 10s infinite OutOpcity ease;
  484. -webkit-animation: 10s infinite OutOpcity ease;*/
  485. }
  486. @keyframes showTxt {
  487. 0% {
  488. opacity: 0;
  489. }
  490. 40% {
  491. opacity: 0.5;
  492. }
  493. 65% {
  494. opacity: 0.8;
  495. }
  496. 100% {
  497. opacity: 1;
  498. }
  499. }
  500. @-webkit-keyframes showTxt {
  501. 0% {
  502. opacity: 0;
  503. }
  504. 40% {
  505. opacity: 0.5;
  506. }
  507. 65% {
  508. opacity: 0.8;
  509. }
  510. 100% {
  511. opacity: 1;
  512. }
  513. }
  514. .showTxt {
  515. -webkit-animation-name: showTxt;
  516. animation-name: showTxt
  517. }
  518. .quanbg {
  519. width: 80px;
  520. height: 80px;
  521. border-radius: 50%;
  522. position: relative;
  523. cursor: pointer;
  524. }
  525. .quanbg .quan {
  526. width: 100%;
  527. height: 100%;
  528. position: absolute;
  529. left: 0;
  530. top: 0;
  531. border-radius: 50%;
  532. box-sizing: border-box;
  533. display: inline-block;
  534. }
  535. .quanbg .quan1 {
  536. border: 1px solid #eb972c;
  537. opacity: 0.08;
  538. margin: 0%;
  539. width: 100%;
  540. height: 100%;
  541. }
  542. .quanbg .quan2 {
  543. border: 1px solid #eb972c;
  544. opacity: 0.2;
  545. margin: 13%;
  546. width: 74%;
  547. height: 74%;
  548. }
  549. .quanbg .quan3 {
  550. border: 1px solid #eb972c;
  551. opacity: 0.5;
  552. margin: 28%;
  553. width: 44%;
  554. height: 44%;
  555. }
  556. .quanbg .quan4 {
  557. background: #eb972c;
  558. margin: 42%;
  559. width: 16%;
  560. height: 16%;
  561. box-shadow: 0 0 30px rgba(255, 255, 255, 0.83);
  562. }
  563. .quanbg .quan1b {
  564. opacity: 0;
  565. }
  566. .quanbg .quan2b {
  567. opacity: 0;
  568. }
  569. .quanbg .quan3b {
  570. opacity: 0;
  571. }
  572. .quanbg .quan1a {
  573. animation: 3s infinite animation2_quan1 ease;
  574. -webkit-animation: 3s infinite animation2_quan1 ease;
  575. }
  576. .quanbg .quan2a {
  577. animation: 3s infinite animation2_quan2 ease;
  578. -webkit-animation: 3s infinite animation2_quan2 ease;
  579. }
  580. .quanbg .quan3a {
  581. animation: 3s infinite animation2_quan3 ease;
  582. -webkit-animation: 3s infinite animation2_quan3 ease;
  583. }
  584. .quanbg .quan1b {
  585. animation: 3s 1.5s infinite animation2_quan1 ease;
  586. -webkit-animation: 3s 1.5s infinite animation2_quan1 ease;
  587. }
  588. .quanbg .quan2b {
  589. animation: 3s 1.5s infinite animation2_quan2 ease;
  590. -webkit-animation: 3s 1.5s infinite animation2_quan2 ease;
  591. }
  592. .quanbg .quan3b {
  593. animation: 3s 1.5s infinite animation2_quan3 ease;
  594. -webkit-animation: 3s 1.5s infinite animation2_quan3 ease;
  595. }
  596. .quanbg .quan4 {
  597. animation: 1.5s infinite animation2_quan4 ease-out;
  598. -webkit-animation: 1.5s infinite animation2_quan4 ease-out;
  599. }
  600. .quanbg:hover .quan1a {
  601. animation: 2s infinite animation2_quan1a ease;
  602. -webkit-animation: 2s infinite animation2_quan1a ease;
  603. }
  604. @keyframes animation2_quan1 {
  605. 0% {
  606. transform: scale(0.8);
  607. opacity: 0;
  608. -webkit-transform: scale(0.8);
  609. }
  610. 60% {
  611. opacity: 0.08;
  612. }
  613. 80% {
  614. transform: scale(1);
  615. opacity: 0;
  616. -webkit-transform: scale(1);
  617. }
  618. 100% {
  619. transform: scale(1);
  620. opacity: 0;
  621. -webkit-transform: scale(1);
  622. }
  623. }
  624. @-webkit-keyframes animation2_quan1 {
  625. 0% {
  626. transform: scale(0.8);
  627. opacity: 0;
  628. -webkit-transform: scale(0.8);
  629. }
  630. 60% {
  631. opacity: 0.08;
  632. }
  633. 80% {
  634. transform: scale(1);
  635. opacity: 0;
  636. -webkit-transform: scale(1);
  637. }
  638. 100% {
  639. transform: scale(1);
  640. opacity: 0;
  641. -webkit-transform: scale(1);
  642. }
  643. }
  644. @keyframes animation2_quan2 {
  645. 0% {
  646. transform: scale(0.8);
  647. opacity: 0;
  648. -webkit-transform: scale(0.8);
  649. }
  650. 40% {
  651. opacity: 0.2;
  652. }
  653. 80% {
  654. transform: scale(1);
  655. opacity: 0;
  656. -webkit-transform: scale(1);
  657. }
  658. 100% {
  659. transform: scale(1);
  660. opacity: 0;
  661. -webkit-transform: scale(1);
  662. }
  663. }
  664. @-webkit-keyframes animation2_quan2 {
  665. 0% {
  666. transform: scale(0.8);
  667. opacity: 0;
  668. -webkit-transform: scale(0.8);
  669. }
  670. 40% {
  671. opacity: 0.2;
  672. }
  673. 80% {
  674. transform: scale(1);
  675. opacity: 0;
  676. -webkit-transform: scale(1);
  677. }
  678. 100% {
  679. transform: scale(1);
  680. opacity: 0;
  681. -webkit-transform: scale(1);
  682. }
  683. }
  684. @keyframes animation2_quan3 {
  685. 0% {
  686. transform: scale(0.8);
  687. opacity: 0;
  688. -webkit-transform: scale(0.8);
  689. }
  690. 20% {
  691. opacity: 0.5;
  692. }
  693. 80% {
  694. transform: scale(1);
  695. opacity: 0;
  696. -webkit-transform: scale(1);
  697. }
  698. 100% {
  699. transform: scale(1);
  700. opacity: 0;
  701. -webkit-transform: scale(1);
  702. }
  703. }
  704. @-webkit-keyframes animation2_quan3 {
  705. 0% {
  706. transform: scale(0.8);
  707. opacity: 0;
  708. -webkit-transform: scale(0.8);
  709. }
  710. 20% {
  711. opacity: 0.5;
  712. }
  713. 80% {
  714. transform: scale(1);
  715. opacity: 0;
  716. -webkit-transform: scale(1);
  717. }
  718. 100% {
  719. transform: scale(1);
  720. opacity: 0;
  721. -webkit-transform: scale(1);
  722. }
  723. }
  724. @keyframes animation2_quan4 {
  725. 0% {
  726. box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  727. }
  728. 30% {
  729. box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  730. }
  731. 70% {
  732. box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  733. }
  734. 100% {
  735. box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  736. }
  737. }
  738. @-webkit-keyframes animation2_quan4 {
  739. 0% {
  740. box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  741. }
  742. 30% {
  743. box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  744. }
  745. 70% {
  746. box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  747. }
  748. 100% {
  749. box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  750. }
  751. }
  752. .quanbgBox {
  753. position: absolute;
  754. }
  755. .quan_SYQ {
  756. /* 睢阳区*/
  757. top: 40%;
  758. left: 41%;
  759. }
  760. .quan_MQ {
  761. /* 民权*/
  762. top: 5%;
  763. left: 26%;
  764. }
  765. .quan_SX {
  766. /* 睢县*/
  767. top: 27%;
  768. left: 21%;
  769. }
  770. .quan_NL {
  771. /* 宁陵*/
  772. top: 22%;
  773. left: 32%;
  774. }
  775. .quan_LYQ {
  776. /* 梁园区*/
  777. top: 22%;
  778. left: 40%;
  779. }
  780. .quan_KFQ {
  781. /* 开发区*/
  782. top: 33%;
  783. left: 46%;
  784. }
  785. .quan_ZC {
  786. /* 柘城*/
  787. top: 51%;
  788. left: 30%;
  789. }
  790. .quan_YCX {
  791. /* 虞城*/
  792. top: 24%;
  793. left: 52%;
  794. }
  795. .quan_XYX {
  796. /*夏邑县*/
  797. top: 42%;
  798. left: 60%;
  799. }
  800. .quan_YCS {
  801. /*永城市*/
  802. top: 57%;
  803. left: 69%;
  804. }
  805. .txt {
  806. color: #FFF;
  807. font-size: 16px;
  808. width: 100px;
  809. display: inline-block;
  810. text-align: right;
  811. position: absolute;
  812. right: 88%;
  813. }
  814. .txt_SYQ {
  815. /* 睢阳区*/
  816. right: 36%;
  817. bottom: -14%;
  818. }
  819. .txt_MQ {
  820. /* 民权*/
  821. top: 67%;
  822. right: 20%;
  823. }
  824. .txt_SX {
  825. /* 睢县*/
  826. top: 65%;
  827. right: 32%;
  828. }
  829. .txt_NL {
  830. /* 宁陵*/
  831. top: 68%;
  832. right: 32%;
  833. }
  834. .txt_LYQ {
  835. /* 梁园区*/
  836. top: 62%;
  837. right: 22%;
  838. }
  839. .txt_KFQ {
  840. /* 开发区*/
  841. top: 59%;
  842. right: 16%;
  843. }
  844. .txt_ZC {
  845. /* 柘城*/
  846. top: 64%;
  847. right: 19%;
  848. }
  849. .txt_YCX {
  850. /* 虞城*/
  851. top: 67%;
  852. right: 15%;
  853. }
  854. .txt_XYX {
  855. /* 夏邑县*/
  856. top: 73%;
  857. right: 15%;
  858. }
  859. .txt_YCS {
  860. /*永城市*/
  861. top: 30%;
  862. right: 77%;
  863. }
  864. /*第二屏开始*/
  865. .source_middle .map_bg {
  866. background: url(../img/source_tree.png) no-repeat center;
  867. height: 550px;
  868. background-size: contain;
  869. }
  870. .orderSource .source_middle {
  871. padding-top: 0;
  872. margin-top: 180px;
  873. }
  874. .orderSource>.source_left,
  875. .orderSource>.source_right {
  876. margin-top: 204px;
  877. padding-top: 0;
  878. }
  879. .orderSource>.source_left {
  880. padding-left: 150px;
  881. }
  882. .orderSource>.source_right {
  883. margin-left: -42px;
  884. }
  885. .source_right ul li,
  886. .source_left ul li {
  887. position: relative;
  888. }
  889. .source_left ul li>div,
  890. .source_right ul li>div {
  891. float: left;
  892. }
  893. .orderSource ul li {
  894. margin-bottom: 20px;
  895. }
  896. .source_kuang {
  897. background: url("../img/source1.png") no-repeat;
  898. width: 265px;
  899. height: 125px;
  900. background-size: 100% 100%;
  901. }
  902. .pbout {
  903. display: inline-block;
  904. vertical-align: middle;
  905. width: 72px;
  906. height: 86px;
  907. padding-top: 12px;
  908. margin-left: 15px;
  909. }
  910. .line_wrap {
  911. width: 160px;
  912. position: absolute;
  913. z-index: 0;
  914. background-color: transparent;
  915. left: 278px;
  916. }
  917. .source_right .line_wrap {
  918. left: -105px;
  919. top: 12px;
  920. }
  921. .source_left .line_wrap {
  922. transform: rotateY(180deg);
  923. }
  924. .line_wrap svg {
  925. width: 100%;
  926. background-color: transparent;
  927. }
  928. .one_line {
  929. width: 173px;
  930. height: 66px;
  931. background: url(../img/one_line.png) no-repeat left center;
  932. }
  933. .two_line {
  934. width: 88px;
  935. height: 48px;
  936. background: url(../img/two_line.png) no-repeat left center;
  937. }
  938. .three_line {
  939. width: 89px;
  940. height: 150px;
  941. background: url(../img/three_line.png) no-repeat left center;
  942. }
  943. .four_line {
  944. width: 149px;
  945. height: 281px;
  946. background: url(../img/four_line.png) no-repeat left center;
  947. background-size: contain;
  948. }
  949. .oneLeft_line {
  950. left: 273px;
  951. top: 14px;
  952. }
  953. .source_right .oneRight_line {
  954. left: -187px;
  955. }
  956. .twoLeft_line {
  957. left: 282px;
  958. top: 14px;
  959. }
  960. /*.twoRight_line{
  961. left: 282px;
  962. top: 14px;
  963. }*/
  964. .threeLeft_line {
  965. top: -88px;
  966. left: 275px;
  967. }
  968. .source_right .threeRight_line {
  969. top: -86px;
  970. left: -106px;
  971. }
  972. .fourLeft_line {
  973. top: -208px;
  974. left: 265px;
  975. }
  976. .source_right .fourRight_line {
  977. top: -214px;
  978. left: -150px;
  979. }
  980. .line:before,
  981. .line:after {
  982. content: ' ';
  983. display: block;
  984. position: absolute;
  985. background: #0478f6;
  986. border-radius: 50%;
  987. width: 10px;
  988. height: 10px;
  989. box-shadow: 0px 0 3px 6px #05529e;
  990. position: absolute;
  991. }
  992. .line:before {
  993. top: -2px;
  994. left: -15px;
  995. }
  996. .line:after {
  997. top: 43px;
  998. left: 90px;
  999. }
  1000. .line.oneLeft_line:before {
  1001. top: 8px;
  1002. left: -10px;
  1003. }
  1004. .line.oneLeft_line:after {
  1005. top: 47px;
  1006. left: 171px;
  1007. }
  1008. .line.oneRight_line:before {
  1009. top: 9px;
  1010. left: -9px;
  1011. }
  1012. .line.oneRight_line:after {
  1013. top: 46px;
  1014. left: 174px;
  1015. }
  1016. .line.threeLeft_line:after {
  1017. top: 143px;
  1018. left: 85px;
  1019. }
  1020. .line.fourLeft_line:after {
  1021. top: 274px;
  1022. left: 133px;
  1023. }
  1024. .line.threeRight_line:after {
  1025. top: 144px;
  1026. }
  1027. .line.fourRight_line:after {
  1028. top: 274px;
  1029. left: 133px;
  1030. }
  1031. @font-face {
  1032. font-family: DigifaceWide;
  1033. src: url('../font/DIGIFAW.TTF');
  1034. }
  1035. .percent_box {
  1036. color: #fff;
  1037. font-size: 12px;
  1038. text-align: center;
  1039. display: inline-block;
  1040. vertical-align: middle;
  1041. position: relative;
  1042. /*margin-top: 16px;
  1043. margin-left: 22px;
  1044. padding-top: 6px;
  1045. padding-left: 4px;*/
  1046. }
  1047. .percent_box>div {
  1048. height: 72px;
  1049. width: 70px;
  1050. position: absolute;
  1051. }
  1052. .percent_word {
  1053. color: #00e9ff;
  1054. top: 20px;
  1055. }
  1056. .percent_word p:first-child {
  1057. font-size: 18px;
  1058. font-family: "DigifaceWide";
  1059. color: #fff!important;
  1060. }
  1061. .percent_out {
  1062. background: url(../img/percent_out.png) no-repeat center;
  1063. /*margin-top: 16px;
  1064. margin-left: 22px;
  1065. padding-top: 6px;
  1066. padding-left: 4px;
  1067. background-size: 100%;*/
  1068. /*height: 72px;
  1069. width: 70px;*/
  1070. animation: 20s infinite earth_quan1 linear;
  1071. -webkit-animation: 20s infinite earth_quan1 linear;
  1072. }
  1073. .percent_in {
  1074. /*height: 65px;
  1075. width: 65px;*/
  1076. background: url(../img/percent_1.png) no-repeat center;
  1077. /*background-size: 100%;*/
  1078. /*color: #fff;*/
  1079. /*text-align: center;
  1080. font-size: 10px;
  1081. color: #00e9ff;*/
  1082. animation: 20s infinite earth_quan2 linear;
  1083. -webkit-animation: 20s infinite earth_quan2 linear;
  1084. }
  1085. .source_kuang .num_word {
  1086. padding-top: 25px;
  1087. color: #fff!important;
  1088. font-size: 18px!important;
  1089. margin-left: 15px;
  1090. }
  1091. .source_kuang .num_word span:first-child {
  1092. margin-right: 15px;
  1093. }
  1094. .source_kuang .num_word span:last-child,
  1095. .typeWord {
  1096. color: #ecbc16!important;
  1097. font-size: 22px;
  1098. }
  1099. /*第三屏开始*/
  1100. .slideCon_bg.orderType {
  1101. background: url(../img/orderType_bg.png) no-repeat;
  1102. height: 100%;
  1103. background-size: 100% 100%;
  1104. }
  1105. .orderType .orderTtype_Con {
  1106. width: 86%;
  1107. margin: 0 auto;
  1108. float:none;
  1109. }
  1110. .orderTtype_Con ul {
  1111. margin: 105px 20px 0 20px;
  1112. }
  1113. .orderTtype_Con ul li {
  1114. float: left;
  1115. background: url(../img/light_kuang1.png) no-repeat center;
  1116. height: 545px;
  1117. width: 14.8%;
  1118. background-size: 100% 100%;
  1119. padding-left: 10px;
  1120. box-sizing: border-box;
  1121. padding-top: 40px;
  1122. margin-left: 4.2%;
  1123. }
  1124. .orderTtype_Con ul li.active {
  1125. background: url(../img/light_kuang2.png) no-repeat center;
  1126. background-size: 100% 100%;
  1127. height: 545px;
  1128. /* padding-top: 85px; */
  1129. width:16%;
  1130. }
  1131. /* .orderTtype_Con .outibt div.active {
  1132. border:3px solid red;
  1133. } */
  1134. .orderType>.orderTtype_Con ul li img {
  1135. /*width: 110px;
  1136. padding: 0px;
  1137. margin: 30px -9px 10px -9px;*/
  1138. width: 90px;
  1139. padding: 0px;
  1140. margin: 25px -9px 7px 38px;
  1141. height: 70px;
  1142. }
  1143. .typeWord {
  1144. width:169px;
  1145. text-align: center;
  1146. position: relative;
  1147. margin-top:10px;
  1148. }
  1149. .typeWord:before {
  1150. position: absolute;
  1151. display: block;
  1152. content: "";
  1153. height: 4px;
  1154. width: 80%;
  1155. background: -webkit-linear-gradient(right, #45a6f3, transparent);
  1156. /* Safari 5.1 - 6.0 */
  1157. background: -o-linear-gradient(right, #45a6f3, transparent);
  1158. /* Opera 11.1 - 12.0 */
  1159. background: -moz-linear-gradient(right, #45a6f3, transparent);
  1160. /* Firefox 3.6 - 15 */
  1161. background: linear-gradient(to right, #45a6f3, transparent);
  1162. /* 标准的语法(必须放在最后) */
  1163. bottom: -13px;
  1164. left:10%;
  1165. }
  1166. .typeWord_line {
  1167. color: #c9d3ff;
  1168. font-size: 14px;
  1169. position: relative;
  1170. width: 166px;
  1171. text-align: center;
  1172. margin-bottom: 23px;
  1173. }
  1174. .typeWord_line:before {
  1175. position: absolute;
  1176. content: "";
  1177. height: 2px;
  1178. width: 100%;
  1179. background: -webkit-linear-gradient(left, transparent, #fff, transparent);
  1180. /* Safari 5.1 - 6.0 */
  1181. background: -o-linear-gradient(left, transparent, #fff, transparent);
  1182. /* Opera 11.1 - 12.0 */
  1183. background: -moz-linear-gradient(left, transparent, #fff, transparent);
  1184. /* Firefox 3.6 - 15 */
  1185. background: linear-gradient(to right, transparent, #fff, transparent);
  1186. /* 标准的语法(必须放在最后) */
  1187. border-radius: 20%;
  1188. left: 0;
  1189. bottom: -10px;
  1190. }
  1191. .order_count {
  1192. color: #00e9ff;
  1193. font-size: 16px;
  1194. font-weight: bold;
  1195. width: 166px;
  1196. text-align: center;
  1197. }
  1198. .persent_kuang {
  1199. /*width: 55px;
  1200. height: 56px;
  1201. color: #00E9FF;
  1202. font-size: 14px;
  1203. text-align: center;
  1204. line-height: 55px;
  1205. font-weight: bold;
  1206. background: url(../img/order_percent.png) no-repeat center;*/
  1207. width: 75px;
  1208. height: 75px;
  1209. color: #00E9FF;
  1210. font-size: 14px;
  1211. text-align: center;
  1212. margin-left: 32px;
  1213. line-height: 75px;
  1214. font-weight: bold;
  1215. background: url(../img/order_percent.png) no-repeat center;
  1216. background-size: 100% 100%;
  1217. }
  1218. .persent_box {
  1219. width: 85%;
  1220. margin: 0 auto;
  1221. }
  1222. .persent_word {
  1223. font-size: 14px;
  1224. color: #c9d3ff;
  1225. margin: 3px 0 0 40px;
  1226. }
  1227. /*第四屏开始*/
  1228. .orderState .orderCon_left {
  1229. padding-left: 140px;
  1230. }
  1231. .orderState .orderCon_right {
  1232. margin-left: -68px;
  1233. }
  1234. .orderState>div>ul li {
  1235. height: 90px;
  1236. width: 310px;
  1237. background: url(../img/stateNum_kuang.png) no-repeat center;
  1238. background-size: 100% 100%;
  1239. margin-top: 15px;
  1240. }
  1241. .orderState>div>ul li.active {
  1242. background: url(../img/stateNum_kuang1.png) no-repeat center;
  1243. background-size: 100% 100%;
  1244. }
  1245. .orderState>div>ul li .num_word {
  1246. font-size: 18px;
  1247. font-weight: bold;
  1248. color: #fff;
  1249. position: relative;
  1250. margin-left: 15px;
  1251. top: 0px;
  1252. }
  1253. .orderState>div>ul li img {
  1254. width: 50px;
  1255. height: 55px;
  1256. padding-left: 20px;
  1257. padding-top: 17px;
  1258. }
  1259. .orderState>div>ul li .num_word>p {
  1260. width: 75px;
  1261. }
  1262. .orderState>div>ul li .num_word p,
  1263. .orderState>div>ul li .num_word>div {
  1264. display: inline-block;
  1265. vertical-align: middle;
  1266. }
  1267. .earth_box {
  1268. width: 500px;
  1269. height: 500px;
  1270. position: relative;
  1271. margin: 0 auto;
  1272. margin-top: 65px;
  1273. }
  1274. .earth_box>div {
  1275. height: 100%;
  1276. width: 100%;
  1277. position: absolute;
  1278. }
  1279. .earth_box>div.earth_quan1 {
  1280. background: url(../img/earth_quan1.png) no-repeat center;
  1281. animation: 20s infinite earth_quan1 linear;
  1282. -webkit-animation: 20s infinite earth_quan1 linear;
  1283. }
  1284. .earth_box>div.earth_quan2 {
  1285. background: url(../img/earth_quan2.png) no-repeat center;
  1286. animation: 20s infinite earth_quan2 linear;
  1287. -webkit-animation: 20s infinite earth_quan2 linear;
  1288. }
  1289. .earth_box>div.earth_quan3 {
  1290. background: url(../img/earth_quan3.png) no-repeat center;
  1291. animation: 20s infinite earth_quan1 linear;
  1292. -webkit-animation: 20s infinite earth_quan1 linear;
  1293. }
  1294. .earth_box>div.earth {
  1295. background: url(../img/earth.png) no-repeat center;
  1296. animation: 50s infinite earth_quan2 linear;
  1297. -webkit-animation: 50s infinite earth_quan2 linear;
  1298. }
  1299. @keyframes earth_quan1 {
  1300. 0% {
  1301. transform: rotate(0deg);
  1302. -webkit-transform: rotate(0deg);
  1303. }
  1304. 100% {
  1305. transform: rotate(-360deg);
  1306. -webkit-transform: rotate(-360deg);
  1307. }
  1308. }
  1309. @-webkit-keyframes earth_quan1 {
  1310. 0% {
  1311. transform: rotate(0deg);
  1312. -webkit-transform: rotate(0deg);
  1313. }
  1314. 100% {
  1315. transform: rotate(-360deg);
  1316. -webkit-transform: rotate(-360deg);
  1317. }
  1318. }
  1319. @keyframes earth_quan2 {
  1320. 0% {
  1321. transform: rotate(0deg);
  1322. -webkit-transform: rotate(0deg);
  1323. }
  1324. 100% {
  1325. transform: rotate(360deg);
  1326. -webkit-transform: rotate(360deg);
  1327. }
  1328. }
  1329. @-webkit-keyframes earth_quan2 {
  1330. 0% {
  1331. transform: rotate(0deg);
  1332. -webkit-transform: rotate(0deg);
  1333. }
  1334. 100% {
  1335. transform: rotate(360deg);
  1336. -webkit-transform: rotate(360deg);
  1337. }
  1338. }
  1339. /*第五屏开始*/
  1340. .trafficVolume>div {
  1341. width: 35%!important;
  1342. padding-top: 170px;
  1343. }
  1344. .trafficVolume .orderCon_right {
  1345. width: 50%;
  1346. }
  1347. .trafficVolume .orderCon_right .right_top,.trafficVolume .orderCon_right .right_bottom{
  1348. width: 635px;
  1349. height: 300px;
  1350. background-size: 100% 100%;
  1351. }
  1352. .trafficVolume .orderCon_right>div.right_bottom {
  1353. height: 315px;
  1354. background-size: 100% 120%;
  1355. }
  1356. .right_bottom {
  1357. background: url(../img/huawu_bottom.png) no-repeat;
  1358. }
  1359. .tagBox {
  1360. width: 100%;
  1361. height: 600px;
  1362. margin: 0 auto;
  1363. padding-left: 12%;
  1364. margin-top: -60px;
  1365. margin-left: 35px;
  1366. }
  1367. .tagcloud {
  1368. /* overflow: hidden; */
  1369. margin-left: 50px;
  1370. margin-top: 30px;
  1371. /* height:666px; */
  1372. overflow: auto;
  1373. height: 666px;
  1374. overflow-x:hidden;
  1375. /* overflow-y: hidden; */
  1376. }
  1377. /* .aacdu{
  1378. margin-top: 12px;
  1379. } */
  1380. .tagcloud>div {
  1381. float: left;
  1382. display: block;
  1383. color: #333;
  1384. font-size: 13px;
  1385. text-decoration: none;
  1386. /* background: -webkit-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1387. background: -o-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1388. background: -moz-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1389. background: linear-gradient(to right, #0c54c917, #0b54c9, #0c54c917); */
  1390. background:#0057A7;
  1391. /* box-shadow:1px 1px 1px #0059AD; */
  1392. border:1px solid #0059AD;
  1393. width: 460px;
  1394. height: 267px;
  1395. margin: 10px;
  1396. }
  1397. .tagcloud_bj{
  1398. /* background: url(../img/kuang.png) no-repeat; */
  1399. background-size: 100% 100%;
  1400. }
  1401. .tagcloud_bjShine{
  1402. /* background:url(../img/kuang_Shine.png) no-repeat; */
  1403. background-size: 100% 100%;
  1404. }
  1405. .backg_cor{
  1406. background:#005499;
  1407. }
  1408. .backg_cor_bg{
  1409. background:#001C68;
  1410. }
  1411. .table_box table:first-child{
  1412. color: #FFFFFF;
  1413. margin-bottom: 0px;
  1414. }
  1415. .keyBottom_left{
  1416. margin-left: 129px;
  1417. margin-top: 50px;
  1418. }
  1419. .table_box_key{
  1420. width: 700px;
  1421. height: 510px;
  1422. background:url(../img/key_bj.png) no-repeat;
  1423. background-size: 100% 100%;
  1424. padding: 10px;
  1425. color: #00E9FF;
  1426. }
  1427. .table_box_key table thead tr td{
  1428. font-size: 14px;
  1429. line-height: 32px;
  1430. }
  1431. .table_box_key table tbody tr td{
  1432. color: #27B723;
  1433. }
  1434. .table_box_key table tbody tr td:first-child{
  1435. color: #00e9ff;
  1436. }
  1437. .table_box_key table tbody tr td:last-child{
  1438. color: #f05964;
  1439. }
  1440. .table>tbody>tr>td{
  1441. border-top: 1px solid #3160a2;
  1442. }
  1443. .tag_title {
  1444. /* text-align: center; */
  1445. font-size: 16px;
  1446. line-height: 23px;
  1447. height: 23px;
  1448. color: #fff;
  1449. width: 100%;
  1450. /* background: -webkit-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1451. background: -o-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1452. background: -moz-linear-gradient(left, #0c54c917, #0b54c9, #0c54c917);
  1453. background: linear-gradient(to right, #0c54c917, #0b54c9, #0c54c917); */
  1454. /* margin-top: 7px; */
  1455. }
  1456. .tag_title .danhao{
  1457. display:inline-block;
  1458. width:100px;
  1459. text-align: center;
  1460. /* background: red; */
  1461. }
  1462. .tag_title .Yichin{
  1463. color:#27B723;
  1464. margin-left: 130px;
  1465. }
  1466. .tag_title .Wentimo{
  1467. display: inline-block;
  1468. width:332px;
  1469. }
  1470. .tag_title .washpa{
  1471. padding-bottom: 30px;
  1472. }
  1473. .tagcloud>div .imgs {
  1474. width: 76px;
  1475. height: 76px;
  1476. /* line-height: 250px; */
  1477. /* background: url(../img/center_circle.png) no-repeat; */
  1478. overflow: hidden;
  1479. color: #cd9d0f;
  1480. font-size: 14px;
  1481. font-weight: bold;
  1482. text-align: center;
  1483. line-height: 76px;
  1484. margin: 20px auto 8px;
  1485. z-index: -1;
  1486. }
  1487. .tagcloud>div .ts_count {
  1488. text-align: center;
  1489. color: #86f5ff;
  1490. }
  1491. .keyW_t {
  1492. width: 210px;
  1493. height: 55px;
  1494. background: url(../img/side5_kuang.png) no-repeat center;
  1495. background-size: 100% 100%;
  1496. color: #fff;
  1497. font-size: 16px;
  1498. text-align: center;
  1499. line-height: 55px;
  1500. margin: 0 auto;
  1501. position: relative;
  1502. top: -34px;
  1503. left: 21px;
  1504. }
  1505. .keyW_t:before,
  1506. .keyW_t:after {
  1507. content: "";
  1508. background: url(../img/right_line.png) no-repeat;
  1509. width: 20px;
  1510. height: 58px;
  1511. position: absolute;
  1512. top: -27px;
  1513. }
  1514. .keyW_t:before {
  1515. right: -13px;
  1516. }
  1517. .keyW_t:after {
  1518. transform: rotateY(180deg);
  1519. left: -13px;
  1520. }
  1521. /*首页样式结束 */
  1522. /*话务量详情*/
  1523. .phone_top {
  1524. height: 420px;
  1525. background: url(../img/jd_bg1.png) no-repeat center;
  1526. background-size: 100% 100%;
  1527. position: relative;
  1528. }
  1529. .legend_bar {
  1530. position: relative;
  1531. position: relative;
  1532. top: 23px;
  1533. margin-left: 15px;
  1534. }
  1535. .legend_bar .col-line {
  1536. display: inline-block;
  1537. height: 20px;
  1538. width: 2px;
  1539. background: #00e9ff;
  1540. position: relative;
  1541. vertical-align: text-top;
  1542. margin-right: 14px;
  1543. }
  1544. .title_word {
  1545. color: #fff;
  1546. font-size: 16px;
  1547. }
  1548. .legend_bar .col-line:before,
  1549. .legend_bar .col-line:after {
  1550. content: "";
  1551. height: 12px;
  1552. width: 2px;
  1553. background: #00e9ff;
  1554. position: absolute;
  1555. top: 5px;
  1556. }
  1557. .legend_bar .col-line:before {
  1558. left: -4px;
  1559. }
  1560. .legend_bar .col-line:after {
  1561. left: 4px;
  1562. }
  1563. .times,
  1564. .selects {
  1565. z-index: 9999;
  1566. position: relative;
  1567. background: #114a97;
  1568. height: 21px;
  1569. color: #00e9ff;
  1570. border: 2px solid #00e9ff;
  1571. border-radius: 2px;
  1572. outline: none;
  1573. padding: 2px 11px;
  1574. vertical-align: middle;
  1575. margin-left: 16px;
  1576. }
  1577. #times3 {
  1578. z-index: 9999;
  1579. position: relative;
  1580. background: #114a97;
  1581. height: 16px;
  1582. color: #00e9ff;
  1583. border: 2px solid #00e9ff;
  1584. border-radius: 2px;
  1585. outline: none;
  1586. padding: 2px 35px;
  1587. vertical-align: middle;
  1588. margin-left: 16px;
  1589. }
  1590. .time_box {
  1591. color: #00e9ff;
  1592. font-size: 14px;
  1593. position: relative;
  1594. margin-right: 30px;
  1595. }
  1596. .time_box:before {
  1597. position: absolute;
  1598. right: 12px;
  1599. top: 7px;
  1600. z-index: 9999999;
  1601. content: "";
  1602. height: 0;
  1603. width: 0;
  1604. border-top: 10px solid #00e9ff;
  1605. border-right: 7px solid transparent;
  1606. border-left: 7px solid transparent;
  1607. }
  1608. .phone_top {
  1609. width: 100%;
  1610. margin-bottom: 16px;
  1611. }
  1612. .phone_bottom>div {
  1613. height: 400px;
  1614. padding: 0;
  1615. }