民权县12345_前端

index.css 31KB

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