style.css 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736
  1. body,
  2. div,
  3. span,
  4. object,
  5. iframe,
  6. h1,
  7. h2,
  8. h3,
  9. h4,
  10. h5,
  11. h6,
  12. p,
  13. blockquote,
  14. a,
  15. big,
  16. em,
  17. font,
  18. img,
  19. strong,
  20. tt,
  21. b,
  22. u,
  23. i,
  24. center,
  25. dl,
  26. dt,
  27. dd,
  28. ol,
  29. ul,
  30. li,
  31. fieldset,
  32. form,
  33. label,
  34. table,
  35. caption,
  36. tbody,
  37. tfoot,
  38. thead,
  39. tr,
  40. th,
  41. td {
  42. padding: 0;
  43. margin: 0
  44. }
  45. table {
  46. border-collapse: collapse;
  47. border-spacing: 0
  48. }
  49. fieldset,
  50. img {
  51. border: 0
  52. }
  53. button,
  54. input,
  55. select,
  56. textarea {
  57. font-size: 12px
  58. }
  59. ol,
  60. ul,
  61. li {
  62. list-style: none
  63. }
  64. h1,
  65. h2,
  66. h3,
  67. h4,
  68. h5,
  69. h6 {
  70. font-size: 100%
  71. }
  72. body {
  73. margin: 0 auto;
  74. font-size: 12px;
  75. background: none;
  76. font-family: "Microsoft YaHei", "Simsun", Arial
  77. }
  78. td {
  79. font-size: 12px;
  80. line-height: 160%
  81. }
  82. a {
  83. outline: none;
  84. text-decoration: none
  85. }
  86. .wp {
  87. text-overflow: ellipsis;
  88. white-space: nowrap;
  89. overflow: hidden
  90. }
  91. .hide {
  92. display: none !important
  93. }
  94. .clearfix:before,
  95. .clearfix:after {
  96. content: "";
  97. display: table
  98. }
  99. .clearfix:after {
  100. clear: both
  101. }
  102. *.clearfix {
  103. zoom: 1
  104. }
  105. .fl {
  106. float: left
  107. }
  108. .fr {
  109. float: right
  110. }
  111. .scroll::-webkit-scrollbar {
  112. width: 7px !important;
  113. display: block !important
  114. }
  115. .scroll::-webkit-scrollbar-thumb {
  116. background-color: #ddd
  117. }
  118. .scroll::-webkit-scrollbar-thumb:vertical:hover {
  119. background-color: #eaeaea
  120. }
  121. .scroll::-webkit-scrollbar-thumb:vertical:active {
  122. background-color: #d0d0d0
  123. }
  124. body {
  125. font-size: 14px
  126. }
  127. h1,
  128. h2 {
  129. display: none
  130. }
  131. .header {
  132. width: 100%;
  133. height: 90px;
  134. box-shadow: 0 5px 10px rgba(0, 0, 0, .18)
  135. }
  136. .header .main {
  137. width: 1180px;
  138. margin: 0 auto;
  139. padding: 0 8px;
  140. box-sizing: border-box
  141. }
  142. .header .main .logo {
  143. width: 90px;
  144. float: left;
  145. background: url("../images/jh.png") no-repeat
  146. }
  147. .header .main .nav {
  148. float: right
  149. }
  150. .header .main .nav a {
  151. width: 110px;
  152. text-align: center;
  153. font-size: 24px;
  154. color: #434343;
  155. line-height: 90px;
  156. font-weight: bold;
  157. display: inline-block;
  158. margin: 0 18px;
  159. position: relative
  160. }
  161. .header .main .nav a::after {
  162. content: "";
  163. width: 100%;
  164. height: 7px;
  165. background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
  166. position: absolute;
  167. bottom: 5px;
  168. left: 0;
  169. display: none
  170. }
  171. .header .main .nav a.on::after,
  172. .header .main .nav a:hover::after {
  173. display: block
  174. }
  175. .menu-search {
  176. width: 1180px;
  177. margin: 15px auto 0;
  178. color: #a0a0a0
  179. }
  180. .menu-search .menu {
  181. line-height: 30px;
  182. float: left
  183. }
  184. .menu-search .menu a {
  185. color: #a0a0a0
  186. }
  187. .menu-search .search {
  188. float: right
  189. }
  190. .menu-search .search input {
  191. width: 280px;
  192. height: 28px;
  193. line-height: 28px;
  194. border: 1px solid #e7e7e7;
  195. border-radius: 18px;
  196. outline: none;
  197. padding: 0 50px 0 30px;
  198. background: #fff url("../images/search.png") no-repeat 325px 2px;
  199. float: left
  200. }
  201. .menu-search .search .hot-search {
  202. float: left;
  203. line-height: 30px;
  204. margin-left: 10px
  205. }
  206. .menu-search .search .hot-search a {
  207. color: #a0a0a0
  208. }
  209. .title {
  210. line-height: 36px;
  211. padding: 0 25px 0 13px
  212. }
  213. .title span {
  214. float: left;
  215. position: relative;
  216. font-size: 20px;
  217. font-weight: bold;
  218. padding-left: 38px
  219. }
  220. .title span::before {
  221. content: "";
  222. width: 30px;
  223. height: 36px;
  224. background: url("../images/hot.png") no-repeat;
  225. position: absolute;
  226. top: 0;
  227. left: 0
  228. }
  229. .title .more {
  230. float: right;
  231. color: #959595
  232. }
  233. .title.ranking-tit {
  234. line-height: 29px;
  235. padding: 0 0 0 5px
  236. }
  237. .title.ranking-tit span {
  238. padding-left: 42px
  239. }
  240. .title.ranking-tit span::before {
  241. width: 34px;
  242. height: 29px;
  243. background: url("../images/ranking.png") no-repeat
  244. }
  245. .title.ranking-tit i {
  246. float: right;
  247. color: #959595;
  248. font-style: normal;
  249. margin-right: 15px
  250. }
  251. .title.special-tit {
  252. line-height: 33px
  253. }
  254. .title.special-tit span {
  255. padding-left: 42px
  256. }
  257. .title.special-tit span::before {
  258. width: 37px;
  259. height: 33px;
  260. background: url("../images/special.png") no-repeat
  261. }
  262. .title.friend-tit {
  263. line-height: 28px;
  264. padding: 0 0 0 13px
  265. }
  266. .title.friend-tit span {
  267. padding-left: 35px
  268. }
  269. .title.friend-tit span::before {
  270. width: 28px;
  271. height: 28px;
  272. background: url("../images/friend-ship.png") no-repeat
  273. }
  274. .title.network-tit {
  275. line-height: 28px;
  276. padding: 0 0 0 5px
  277. }
  278. .title.network-tit span {
  279. padding-left: 41px
  280. }
  281. .title.network-tit span::before {
  282. width: 34px;
  283. height: 28px;
  284. background: url("../images/network.png") no-repeat
  285. }
  286. .title.stand-alone-tit {
  287. line-height: 28px;
  288. padding: 0 0 0 5px
  289. }
  290. .title.stand-alone-tit span {
  291. padding-left: 41px
  292. }
  293. .title.stand-alone-tit span::before {
  294. width: 35px;
  295. height: 25px;
  296. background: url("../images/stand-alone.png") no-repeat
  297. }
  298. .title.software-tit {
  299. line-height: 28px;
  300. padding: 0 0 0 5px
  301. }
  302. .title.software-tit span {
  303. padding-left: 41px
  304. }
  305. .title.software-tit span::before {
  306. width: 30px;
  307. height: 30px;
  308. background: url("../images/software.png") no-repeat
  309. }
  310. .hot-box {
  311. width: 800px
  312. }
  313. .hot-box .hot-list {
  314. background-color: #f8f8f8;
  315. margin-top: 13px;
  316. padding: 18px 0 30px
  317. }
  318. .hot-box .hot-list li {
  319. float: left;
  320. margin: 13px 7px
  321. }
  322. .hot-box .hot-list li a {
  323. display: block;
  324. text-align: center
  325. }
  326. .hot-box .hot-list li a img {
  327. width: 80px;
  328. height: 80px;
  329. display: block;
  330. border-radius: 18px;
  331. margin: 0 auto
  332. }
  333. .hot-box .hot-list li a span {
  334. width: 118px;
  335. font-size: 16px;
  336. overflow: hidden;
  337. text-overflow: ellipsis;
  338. white-space: nowrap;
  339. display: block;
  340. color: #000;
  341. line-height: 1.6
  342. }
  343. .hot-box .hot-list li a span+span {
  344. width: auto;
  345. font-size: 14px;
  346. color: #959595
  347. }
  348. .hot-box .hot-list li a:hover span {
  349. color: #009e96;
  350. font-weight: bold
  351. }
  352. .hot-box .hot-list li a:hover span+span {
  353. font-weight: normal
  354. }
  355. .ranking {
  356. width: 360px
  357. }
  358. .ranking .ranking-list {
  359. background-color: #f8f8f8;
  360. margin-top: 13px;
  361. padding: 5px 12px 10px
  362. }
  363. .ranking .ranking-list li {
  364. margin-top: 10px
  365. }
  366. .ranking .ranking-list li a {
  367. display: block;
  368. font-size: 16px
  369. }
  370. .ranking .ranking-list li a i {
  371. width: 25px;
  372. height: 25px;
  373. text-align: center;
  374. line-height: 25px;
  375. color: #fff;
  376. font-style: normal;
  377. background-color: #d2d2d2;
  378. float: left;
  379. margin-top: 7px
  380. }
  381. .ranking .ranking-list li a img {
  382. width: 40px;
  383. height: 40px;
  384. float: left;
  385. border-radius: 8px;
  386. margin: 0 10px
  387. }
  388. .ranking .ranking-list li a p {
  389. width: 160px;
  390. overflow: hidden;
  391. text-overflow: ellipsis;
  392. white-space: nowrap;
  393. color: #000;
  394. float: left;
  395. line-height: 40px
  396. }
  397. .ranking .ranking-list li a span {
  398. float: right;
  399. color: #959595;
  400. line-height: 40px
  401. }
  402. .ranking .ranking-list li a:hover p {
  403. color: #009e96;
  404. text-decoration: underline
  405. }
  406. .ranking .ranking-list li:first-child a i,
  407. .ranking .ranking-list li:nth-child(2) a i,
  408. .ranking .ranking-list li:nth-child(3) a i {
  409. background-color: #84ccc9
  410. }
  411. .friend-ship {
  412. width: 1180px;
  413. margin: 30px auto 0
  414. }
  415. .friend-ship .friend-list {
  416. background-color: #f8f8f8;
  417. margin-top: 13px;
  418. padding: 20px 0
  419. }
  420. .friend-ship .friend-list a {
  421. width: 90px;
  422. font-size: 16px;
  423. color: #000;
  424. line-height: 2.2;
  425. float: left;
  426. overflow: hidden;
  427. text-overflow: ellipsis;
  428. white-space: nowrap;
  429. text-align: center;
  430. margin: 0 52px
  431. }
  432. .special .special-list {
  433. padding-top: 15px
  434. }
  435. .special .special-list li {
  436. margin-bottom: 25px
  437. }
  438. .special .special-list li a {
  439. display: block;
  440. position: relative
  441. }
  442. .special .special-list li a img {
  443. width: 100%;
  444. display: block
  445. }
  446. .special .special-list li a p {
  447. width: 100%;
  448. text-align: center;
  449. background: rgba(0, 0, 0, .5);
  450. color: #84ccc9;
  451. font-weight: bold;
  452. position: absolute;
  453. bottom: 0;
  454. left: 0
  455. }
  456. .special.details-special {
  457. width: 800px;
  458. margin-top: 20px
  459. }
  460. .special.details-special .special-list {
  461. margin-right: -10px
  462. }
  463. .special.details-special .special-list li {
  464. float: left;
  465. margin-right: 10px
  466. }
  467. .special.details-special .special-list li a {
  468. width: 260px
  469. }
  470. .special.details-special .special-list li a img {
  471. height: 130px
  472. }
  473. .special.details-special .special-list li a p {
  474. font-size: 12px
  475. }
  476. .game {
  477. width: 280px;
  478. background-color: #f8f8f8;
  479. padding: 15px 40px;
  480. margin-bottom: 20px
  481. }
  482. .game .game-name {
  483. width: 100%;
  484. overflow: hidden;
  485. text-overflow: ellipsis;
  486. white-space: nowrap;
  487. font-size: 20px;
  488. font-weight: bold;
  489. display: block;
  490. text-align: center
  491. }
  492. .game>img {
  493. width: 119px;
  494. height: 119px;
  495. display: block;
  496. margin: 15px auto;
  497. border-radius: 18px
  498. }
  499. .game>i {
  500. width: 182px;
  501. height: 21px;
  502. background: url("../images/security.png") no-repeat;
  503. display: block;
  504. margin: 0 auto
  505. }
  506. .game>a {
  507. width: 180px;
  508. padding-left: 45px;
  509. height: 50px;
  510. text-align: center;
  511. line-height: 50px;
  512. color: #fff;
  513. font-size: 18px;
  514. position: relative;
  515. display: block;
  516. margin: 10px auto 0;
  517. border-radius: 8px
  518. }
  519. .game>a.android {
  520. background: linear-gradient(to right, #03a3f7 0%, #28ee9f 100%)
  521. }
  522. .game>a.android::before {
  523. content: "";
  524. position: absolute;
  525. top: 8px;
  526. left: 50px;
  527. width: 30px;
  528. height: 35px;
  529. background: url("../images/android.png") no-repeat
  530. }
  531. .game>a.ios {
  532. background: linear-gradient(to right, #000000 0%, #404040 100%)
  533. }
  534. .game>a.ios::before {
  535. content: "";
  536. position: absolute;
  537. top: 8px;
  538. left: 50px;
  539. width: 28px;
  540. height: 34px;
  541. background: url("../images/ios.png") no-repeat
  542. }
  543. .game>a.pc {
  544. background: linear-gradient(to right, #fc6a6f 0%, #ff9050 100%)
  545. }
  546. .game>a.pc::before {
  547. content: "";
  548. position: absolute;
  549. top: 10px;
  550. left: 50px;
  551. width: 32px;
  552. height: 30px;
  553. background: url("../images/pc.png") no-repeat
  554. }
  555. .game .code {
  556. width: 180px;
  557. margin: 25px auto 0;
  558. text-align: center
  559. }
  560. .game .code>img {
  561. width: 119px;
  562. height: 119px;
  563. display: inline-block
  564. }
  565. .game .code>span {
  566. display: block;
  567. line-height: 3
  568. }
  569. .game .code>p {
  570. width: 121px;
  571. text-align: left;
  572. color: #535353;
  573. margin: 0 auto;
  574. line-height: 1.8
  575. }
  576. .game .code>p a {
  577. color: #00a0e9
  578. }
  579. .game .label {
  580. color: #535353;
  581. font-size: 12px;
  582. line-height: 1.8;
  583. margin: 8px 0
  584. }
  585. .game .label a {
  586. color: #00a0e9;
  587. text-decoration: underline
  588. }
  589. .game .share {
  590. margin-left: 60px
  591. }
  592. .footer {
  593. background-color: #7d7d7d;
  594. padding: 38px 0;
  595. text-align: center;
  596. color: #fff;
  597. margin-top: 50px
  598. }
  599. .footer p {
  600. line-height: 2
  601. }
  602. .footer p a {
  603. color: #fff
  604. }
  605. .page {
  606. text-align: center;
  607. color: #959595
  608. }
  609. .page a {
  610. font-size: 16px;
  611. color: #959595;
  612. line-height: 30px;
  613. padding: 0 9px;
  614. display: inline-block;
  615. margin: 0 10px;
  616. cursor: pointer
  617. }
  618. .page a.last-child,
  619. .page a:first-child {
  620. background-color: #eaeaea
  621. }
  622. .page a.on,
  623. .page a:hover {
  624. background-color: #84ccc9;
  625. color: #fff
  626. }
  627. .share {
  628. margin-top: 8px
  629. }
  630. .share span {
  631. float: left;
  632. line-height: 30px;
  633. margin: 6px 0
  634. }
  635. .share .bdsharebuttonbox {
  636. float: left
  637. }
  638. .share .bdshare-button-style0-16 a {
  639. width: 30px;
  640. height: 30px;
  641. padding: 0
  642. }
  643. .share .bdshare-button-style0-16 a.bds_weixin {
  644. background: url("../images/wx.png") no-repeat !important
  645. }
  646. .share .bdshare-button-style0-16 a.bds_qzone {
  647. background: url("../images/qzone.png") no-repeat !important
  648. }
  649. .share .bdshare-button-style0-16 a.bds_tsina {
  650. background: url("../images/wb.png") no-repeat !important
  651. }
  652. .second-nav {
  653. width: 1180px;
  654. margin: 10px auto 0
  655. }
  656. .second-nav a {
  657. width: 280px;
  658. height: 110px;
  659. float: left;
  660. margin: 0 7px
  661. }
  662. .second-nav a.app {
  663. background: url("../images/nav.png") no-repeat
  664. }
  665. .second-nav a.phone {
  666. background: url("../images/nav.png") no-repeat -300px 0
  667. }
  668. .second-nav a.software {
  669. background: url("../images/nav.png") no-repeat -599px 0
  670. }
  671. .second-nav a.special {
  672. background: url("../images/nav.png") no-repeat -899px 0
  673. }
  674. .second-nav a.on.app,
  675. .second-nav a:hover.app {
  676. background-position: 0 -113px
  677. }
  678. .second-nav a.on.phone,
  679. .second-nav a:hover.phone {
  680. background-position: -300px -113px
  681. }
  682. .second-nav a.on.software,
  683. .second-nav a:hover.software {
  684. background-position: -599px -113px
  685. }
  686. .second-nav a.on.special,
  687. .second-nav a:hover.special {
  688. background-position: -899px -113px
  689. }
  690. .swiper-container {
  691. margin: 0 auto;
  692. position: relative;
  693. overflow: hidden;
  694. list-style: none;
  695. padding: 0;
  696. z-index: 1
  697. }
  698. .swiper-container-no-flexbox .swiper-slide {
  699. float: left
  700. }
  701. .swiper-container-vertical>.swiper-wrapper {
  702. -webkit-box-orient: vertical;
  703. -webkit-box-direction: normal;
  704. -webkit-flex-direction: column;
  705. -ms-flex-direction: column;
  706. flex-direction: column
  707. }
  708. .swiper-wrapper {
  709. position: relative;
  710. width: 100%;
  711. height: 100%;
  712. z-index: 1;
  713. display: -webkit-box;
  714. display: -webkit-flex;
  715. display: -ms-flexbox;
  716. display: flex;
  717. -webkit-transition-property: -webkit-transform;
  718. transition-property: -webkit-transform;
  719. -o-transition-property: transform;
  720. transition-property: transform;
  721. transition-property: transform, -webkit-transform;
  722. -webkit-box-sizing: content-box;
  723. box-sizing: content-box
  724. }
  725. .swiper-container-android .swiper-slide,
  726. .swiper-wrapper {
  727. -webkit-transform: translate3d(0, 0, 0);
  728. transform: translate3d(0, 0, 0)
  729. }
  730. .swiper-container-multirow>.swiper-wrapper {
  731. -webkit-flex-wrap: wrap;
  732. -ms-flex-wrap: wrap;
  733. flex-wrap: wrap
  734. }
  735. .swiper-container-free-mode>.swiper-wrapper {
  736. -webkit-transition-timing-function: ease-out;
  737. -o-transition-timing-function: ease-out;
  738. transition-timing-function: ease-out;
  739. margin: 0 auto
  740. }
  741. .swiper-slide {
  742. -webkit-flex-shrink: 0;
  743. -ms-flex-negative: 0;
  744. flex-shrink: 0;
  745. width: 100%;
  746. height: 100%;
  747. position: relative;
  748. -webkit-transition-property: -webkit-transform;
  749. transition-property: -webkit-transform;
  750. -o-transition-property: transform;
  751. transition-property: transform;
  752. transition-property: transform, -webkit-transform
  753. }
  754. .swiper-invisible-blank-slide {
  755. visibility: hidden
  756. }
  757. .swiper-container-autoheight,
  758. .swiper-container-autoheight .swiper-slide {
  759. height: auto
  760. }
  761. .swiper-container-autoheight .swiper-wrapper {
  762. -webkit-box-align: start;
  763. -webkit-align-items: flex-start;
  764. -ms-flex-align: start;
  765. align-items: flex-start;
  766. -webkit-transition-property: height, -webkit-transform;
  767. transition-property: height, -webkit-transform;
  768. -o-transition-property: transform, height;
  769. transition-property: transform, height;
  770. transition-property: transform, height, -webkit-transform
  771. }
  772. .swiper-container-3d {
  773. -webkit-perspective: 1200px;
  774. perspective: 1200px
  775. }
  776. .swiper-container-3d .swiper-cube-shadow,
  777. .swiper-container-3d .swiper-slide,
  778. .swiper-container-3d .swiper-slide-shadow-bottom,
  779. .swiper-container-3d .swiper-slide-shadow-left,
  780. .swiper-container-3d .swiper-slide-shadow-right,
  781. .swiper-container-3d .swiper-slide-shadow-top,
  782. .swiper-container-3d .swiper-wrapper {
  783. -webkit-transform-style: preserve-3d;
  784. transform-style: preserve-3d
  785. }
  786. .swiper-container-3d .swiper-slide-shadow-bottom,
  787. .swiper-container-3d .swiper-slide-shadow-left,
  788. .swiper-container-3d .swiper-slide-shadow-right,
  789. .swiper-container-3d .swiper-slide-shadow-top {
  790. position: absolute;
  791. left: 0;
  792. top: 0;
  793. width: 100%;
  794. height: 100%;
  795. pointer-events: none;
  796. z-index: 10
  797. }
  798. .swiper-container-3d .swiper-slide-shadow-left {
  799. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  800. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  801. background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  802. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
  803. }
  804. .swiper-container-3d .swiper-slide-shadow-right {
  805. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  806. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  807. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  808. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
  809. }
  810. .swiper-container-3d .swiper-slide-shadow-top {
  811. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  812. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  813. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  814. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
  815. }
  816. .swiper-container-3d .swiper-slide-shadow-bottom {
  817. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  818. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  819. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  820. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
  821. }
  822. .swiper-container-wp8-horizontal,
  823. .swiper-container-wp8-horizontal>.swiper-wrapper {
  824. -ms-touch-action: pan-y;
  825. touch-action: pan-y
  826. }
  827. .swiper-container-wp8-vertical,
  828. .swiper-container-wp8-vertical>.swiper-wrapper {
  829. -ms-touch-action: pan-x;
  830. touch-action: pan-x
  831. }
  832. .swiper-button-next,
  833. .swiper-button-prev {
  834. position: absolute;
  835. top: 50%;
  836. width: 27px;
  837. height: 44px;
  838. margin-top: -22px;
  839. z-index: 10;
  840. cursor: pointer;
  841. background-size: 27px 44px;
  842. background-position: center;
  843. background-repeat: no-repeat
  844. }
  845. .swiper-button-next.swiper-button-disabled,
  846. .swiper-button-prev.swiper-button-disabled {
  847. opacity: .35;
  848. cursor: auto;
  849. pointer-events: none
  850. }
  851. .swiper-button-prev,
  852. .swiper-container-rtl .swiper-button-next {
  853. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  854. left: 10px;
  855. right: auto
  856. }
  857. .swiper-button-next,
  858. .swiper-container-rtl .swiper-button-prev {
  859. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  860. right: 10px;
  861. left: auto
  862. }
  863. .swiper-button-prev.swiper-button-white,
  864. .swiper-container-rtl .swiper-button-next.swiper-button-white {
  865. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
  866. }
  867. .swiper-button-next.swiper-button-white,
  868. .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  869. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
  870. }
  871. .swiper-button-prev.swiper-button-black,
  872. .swiper-container-rtl .swiper-button-next.swiper-button-black {
  873. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
  874. }
  875. .swiper-button-next.swiper-button-black,
  876. .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  877. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
  878. }
  879. .swiper-button-lock {
  880. display: none
  881. }
  882. .swiper-pagination {
  883. position: absolute;
  884. text-align: center;
  885. -webkit-transition: .3s opacity;
  886. -o-transition: .3s opacity;
  887. transition: .3s opacity;
  888. -webkit-transform: translate3d(0, 0, 0);
  889. transform: translate3d(0, 0, 0);
  890. z-index: 10
  891. }
  892. .swiper-pagination.swiper-pagination-hidden {
  893. opacity: 0
  894. }
  895. .swiper-container-horizontal>.swiper-pagination-bullets,
  896. .swiper-pagination-custom,
  897. .swiper-pagination-fraction {
  898. bottom: 10px;
  899. left: 0;
  900. width: 100%
  901. }
  902. .swiper-pagination-bullets-dynamic {
  903. overflow: hidden;
  904. font-size: 0
  905. }
  906. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  907. -webkit-transform: scale(0.33);
  908. -ms-transform: scale(0.33);
  909. transform: scale(0.33);
  910. position: relative
  911. }
  912. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  913. -webkit-transform: scale(1);
  914. -ms-transform: scale(1);
  915. transform: scale(1)
  916. }
  917. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  918. -webkit-transform: scale(1);
  919. -ms-transform: scale(1);
  920. transform: scale(1)
  921. }
  922. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  923. -webkit-transform: scale(0.66);
  924. -ms-transform: scale(0.66);
  925. transform: scale(0.66)
  926. }
  927. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  928. -webkit-transform: scale(0.33);
  929. -ms-transform: scale(0.33);
  930. transform: scale(0.33)
  931. }
  932. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  933. -webkit-transform: scale(0.66);
  934. -ms-transform: scale(0.66);
  935. transform: scale(0.66)
  936. }
  937. .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  938. -webkit-transform: scale(0.33);
  939. -ms-transform: scale(0.33);
  940. transform: scale(0.33)
  941. }
  942. .swiper-pagination-bullet {
  943. width: 8px;
  944. height: 8px;
  945. display: inline-block;
  946. border-radius: 100%;
  947. background: #000;
  948. opacity: .2
  949. }
  950. button.swiper-pagination-bullet {
  951. border: none;
  952. margin: 0;
  953. padding: 0;
  954. -webkit-box-shadow: none;
  955. box-shadow: none;
  956. -webkit-appearance: none;
  957. -moz-appearance: none;
  958. appearance: none
  959. }
  960. .swiper-pagination-clickable .swiper-pagination-bullet {
  961. cursor: pointer
  962. }
  963. .swiper-pagination-bullet-active {
  964. opacity: 1;
  965. background: #007aff
  966. }
  967. .swiper-container-vertical>.swiper-pagination-bullets {
  968. right: 10px;
  969. top: 50%;
  970. -webkit-transform: translate3d(0, -50%, 0);
  971. transform: translate3d(0, -50%, 0)
  972. }
  973. .swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  974. margin: 6px 0;
  975. display: block
  976. }
  977. .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  978. top: 50%;
  979. -webkit-transform: translateY(-50%);
  980. -ms-transform: translateY(-50%);
  981. transform: translateY(-50%);
  982. width: 8px
  983. }
  984. .swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  985. display: inline-block;
  986. -webkit-transition: .2s top, .2s -webkit-transform;
  987. transition: .2s top, .2s -webkit-transform;
  988. -o-transition: .2s transform, .2s top;
  989. transition: .2s transform, .2s top;
  990. transition: .2s transform, .2s top, .2s -webkit-transform
  991. }
  992. .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  993. margin: 0 4px
  994. }
  995. .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  996. left: 50%;
  997. -webkit-transform: translateX(-50%);
  998. -ms-transform: translateX(-50%);
  999. transform: translateX(-50%);
  1000. white-space: nowrap
  1001. }
  1002. .swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  1003. -webkit-transition: .2s left, .2s -webkit-transform;
  1004. transition: .2s left, .2s -webkit-transform;
  1005. -o-transition: .2s transform, .2s left;
  1006. transition: .2s transform, .2s left;
  1007. transition: .2s transform, .2s left, .2s -webkit-transform
  1008. }
  1009. .swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  1010. -webkit-transition: .2s right, .2s -webkit-transform;
  1011. transition: .2s right, .2s -webkit-transform;
  1012. -o-transition: .2s transform, .2s right;
  1013. transition: .2s transform, .2s right;
  1014. transition: .2s transform, .2s right, .2s -webkit-transform
  1015. }
  1016. .swiper-pagination-progressbar {
  1017. background: rgba(0, 0, 0, .25);
  1018. position: absolute
  1019. }
  1020. .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  1021. background: #007aff;
  1022. position: absolute;
  1023. left: 0;
  1024. top: 0;
  1025. width: 100%;
  1026. height: 100%;
  1027. -webkit-transform: scale(0);
  1028. -ms-transform: scale(0);
  1029. transform: scale(0);
  1030. -webkit-transform-origin: left top;
  1031. -ms-transform-origin: left top;
  1032. transform-origin: left top
  1033. }
  1034. .swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  1035. -webkit-transform-origin: right top;
  1036. -ms-transform-origin: right top;
  1037. transform-origin: right top
  1038. }
  1039. .swiper-container-horizontal>.swiper-pagination-progressbar,
  1040. .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  1041. width: 100%;
  1042. height: 4px;
  1043. left: 0;
  1044. top: 0
  1045. }
  1046. .swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
  1047. .swiper-container-vertical>.swiper-pagination-progressbar {
  1048. width: 4px;
  1049. height: 100%;
  1050. left: 0;
  1051. top: 0
  1052. }
  1053. .swiper-pagination-white .swiper-pagination-bullet-active {
  1054. background: #fff
  1055. }
  1056. .swiper-pagination-progressbar.swiper-pagination-white {
  1057. background: rgba(255, 255, 255, .25)
  1058. }
  1059. .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  1060. background: #fff
  1061. }
  1062. .swiper-pagination-black .swiper-pagination-bullet-active {
  1063. background: #000
  1064. }
  1065. .swiper-pagination-progressbar.swiper-pagination-black {
  1066. background: rgba(0, 0, 0, .25)
  1067. }
  1068. .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  1069. background: #000
  1070. }
  1071. .swiper-pagination-lock {
  1072. display: none
  1073. }
  1074. .swiper-scrollbar {
  1075. border-radius: 10px;
  1076. position: relative;
  1077. -ms-touch-action: none;
  1078. background: rgba(0, 0, 0, .1)
  1079. }
  1080. .swiper-container-horizontal>.swiper-scrollbar {
  1081. position: absolute;
  1082. left: 1%;
  1083. bottom: 3px;
  1084. z-index: 50;
  1085. height: 5px;
  1086. width: 98%
  1087. }
  1088. .swiper-container-vertical>.swiper-scrollbar {
  1089. position: absolute;
  1090. right: 3px;
  1091. top: 1%;
  1092. z-index: 50;
  1093. width: 5px;
  1094. height: 98%
  1095. }
  1096. .swiper-scrollbar-drag {
  1097. height: 100%;
  1098. width: 100%;
  1099. position: relative;
  1100. background: rgba(0, 0, 0, .5);
  1101. border-radius: 10px;
  1102. left: 0;
  1103. top: 0
  1104. }
  1105. .swiper-scrollbar-cursor-drag {
  1106. cursor: move
  1107. }
  1108. .swiper-scrollbar-lock {
  1109. display: none
  1110. }
  1111. .swiper-zoom-container {
  1112. width: 100%;
  1113. height: 100%;
  1114. display: -webkit-box;
  1115. display: -webkit-flex;
  1116. display: -ms-flexbox;
  1117. display: flex;
  1118. -webkit-box-pack: center;
  1119. -webkit-justify-content: center;
  1120. -ms-flex-pack: center;
  1121. justify-content: center;
  1122. -webkit-box-align: center;
  1123. -webkit-align-items: center;
  1124. -ms-flex-align: center;
  1125. align-items: center;
  1126. text-align: center
  1127. }
  1128. .swiper-zoom-container>canvas,
  1129. .swiper-zoom-container>img,
  1130. .swiper-zoom-container>svg {
  1131. max-width: 100%;
  1132. max-height: 100%;
  1133. -o-object-fit: contain;
  1134. object-fit: contain
  1135. }
  1136. .swiper-slide-zoomed {
  1137. cursor: move
  1138. }
  1139. .swiper-lazy-preloader {
  1140. width: 42px;
  1141. height: 42px;
  1142. position: absolute;
  1143. left: 50%;
  1144. top: 50%;
  1145. margin-left: -21px;
  1146. margin-top: -21px;
  1147. z-index: 10;
  1148. -webkit-transform-origin: 50%;
  1149. -ms-transform-origin: 50%;
  1150. transform-origin: 50%;
  1151. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  1152. animation: swiper-preloader-spin 1s steps(12, end) infinite
  1153. }
  1154. .swiper-lazy-preloader:after {
  1155. display: block;
  1156. content: "";
  1157. width: 100%;
  1158. height: 100%;
  1159. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  1160. background-position: 50%;
  1161. background-size: 100%;
  1162. background-repeat: no-repeat
  1163. }
  1164. .swiper-lazy-preloader-white:after {
  1165. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
  1166. }
  1167. @-webkit-keyframes swiper-preloader-spin {
  1168. 100% {
  1169. -webkit-transform: rotate(360deg);
  1170. transform: rotate(360deg)
  1171. }
  1172. }
  1173. @keyframes swiper-preloader-spin {
  1174. 100% {
  1175. -webkit-transform: rotate(360deg);
  1176. transform: rotate(360deg)
  1177. }
  1178. }
  1179. .swiper-container .swiper-notification {
  1180. position: absolute;
  1181. left: 0;
  1182. top: 0;
  1183. pointer-events: none;
  1184. opacity: 0;
  1185. z-index: -1000
  1186. }
  1187. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  1188. -webkit-transition-timing-function: ease-out;
  1189. -o-transition-timing-function: ease-out;
  1190. transition-timing-function: ease-out
  1191. }
  1192. .swiper-container-fade .swiper-slide {
  1193. pointer-events: none;
  1194. -webkit-transition-property: opacity;
  1195. -o-transition-property: opacity;
  1196. transition-property: opacity
  1197. }
  1198. .swiper-container-fade .swiper-slide .swiper-slide {
  1199. pointer-events: none
  1200. }
  1201. .swiper-container-fade .swiper-slide-active,
  1202. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  1203. pointer-events: auto
  1204. }
  1205. .swiper-container-cube {
  1206. overflow: visible
  1207. }
  1208. .swiper-container-cube .swiper-slide {
  1209. pointer-events: none;
  1210. -webkit-backface-visibility: hidden;
  1211. backface-visibility: hidden;
  1212. z-index: 1;
  1213. visibility: hidden;
  1214. -webkit-transform-origin: 0 0;
  1215. -ms-transform-origin: 0 0;
  1216. transform-origin: 0 0;
  1217. width: 100%;
  1218. height: 100%
  1219. }
  1220. .swiper-container-cube .swiper-slide .swiper-slide {
  1221. pointer-events: none
  1222. }
  1223. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  1224. -webkit-transform-origin: 100% 0;
  1225. -ms-transform-origin: 100% 0;
  1226. transform-origin: 100% 0
  1227. }
  1228. .swiper-container-cube .swiper-slide-active,
  1229. .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  1230. pointer-events: auto
  1231. }
  1232. .swiper-container-cube .swiper-slide-active,
  1233. .swiper-container-cube .swiper-slide-next,
  1234. .swiper-container-cube .swiper-slide-next+.swiper-slide,
  1235. .swiper-container-cube .swiper-slide-prev {
  1236. pointer-events: auto;
  1237. visibility: visible
  1238. }
  1239. .swiper-container-cube .swiper-slide-shadow-bottom,
  1240. .swiper-container-cube .swiper-slide-shadow-left,
  1241. .swiper-container-cube .swiper-slide-shadow-right,
  1242. .swiper-container-cube .swiper-slide-shadow-top {
  1243. z-index: 0;
  1244. -webkit-backface-visibility: hidden;
  1245. backface-visibility: hidden
  1246. }
  1247. .swiper-container-cube .swiper-cube-shadow {
  1248. position: absolute;
  1249. left: 0;
  1250. bottom: 0;
  1251. width: 100%;
  1252. height: 100%;
  1253. background: #000;
  1254. opacity: .6;
  1255. -webkit-filter: blur(50px);
  1256. filter: blur(50px);
  1257. z-index: 0
  1258. }
  1259. .swiper-container-flip {
  1260. overflow: visible
  1261. }
  1262. .swiper-container-flip .swiper-slide {
  1263. pointer-events: none;
  1264. -webkit-backface-visibility: hidden;
  1265. backface-visibility: hidden;
  1266. z-index: 1
  1267. }
  1268. .swiper-container-flip .swiper-slide .swiper-slide {
  1269. pointer-events: none
  1270. }
  1271. .swiper-container-flip .swiper-slide-active,
  1272. .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  1273. pointer-events: auto
  1274. }
  1275. .swiper-container-flip .swiper-slide-shadow-bottom,
  1276. .swiper-container-flip .swiper-slide-shadow-left,
  1277. .swiper-container-flip .swiper-slide-shadow-right,
  1278. .swiper-container-flip .swiper-slide-shadow-top {
  1279. z-index: 0;
  1280. -webkit-backface-visibility: hidden;
  1281. backface-visibility: hidden
  1282. }
  1283. .swiper-container-coverflow .swiper-wrapper {
  1284. -ms-perspective: 1200px
  1285. }
  1286. .h-index .banner-box {
  1287. width: 1180px;
  1288. margin: 3px auto 0
  1289. }
  1290. .h-index .banner-box .swiper-container {
  1291. width: 800px;
  1292. height: 320px;
  1293. float: left
  1294. }
  1295. .h-index .banner-box .swiper-container .swiper-wrapper {
  1296. width: 100%;
  1297. height: 300px
  1298. }
  1299. .h-index .banner-box .swiper-container .swiper-wrapper .swiper-slide {
  1300. width: 100%;
  1301. height: 100%
  1302. }
  1303. .h-index .banner-box .swiper-container .swiper-wrapper .swiper-slide img {
  1304. width: 100%;
  1305. height: 100%
  1306. }
  1307. .h-index .banner-box .swiper-container .swiper-pagination {
  1308. text-align: left
  1309. }
  1310. .h-index .banner-box .swiper-container .swiper-pagination .swiper-pagination-bullet {
  1311. width: 80px;
  1312. height: 3px;
  1313. border-radius: 0;
  1314. margin: 0 8px 0 0
  1315. }
  1316. .h-index .banner-box .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  1317. background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%)
  1318. }
  1319. .h-index .banner-box .news-box {
  1320. width: 360px;
  1321. float: right
  1322. }
  1323. .h-index .banner-box .news-box .top-title {
  1324. width: 100%;
  1325. border-bottom: 1px solid #e5e5e5;
  1326. padding-bottom: 10px;
  1327. margin-top: 10px;
  1328. display: block
  1329. }
  1330. .h-index .banner-box .news-box .top-title p {
  1331. width: 280px;
  1332. overflow: hidden;
  1333. text-overflow: ellipsis;
  1334. white-space: nowrap;
  1335. padding-left: 38px;
  1336. font-weight: bold;
  1337. font-size: 20px;
  1338. color: #ff6d72;
  1339. position: relative;
  1340. line-height: 25px
  1341. }
  1342. .h-index .banner-box .news-box .top-title p::before {
  1343. content: "";
  1344. width: 30px;
  1345. height: 25px;
  1346. background: url("../images/new.png") no-repeat;
  1347. position: absolute;
  1348. top: 0;
  1349. left: 0
  1350. }
  1351. .h-index .banner-box .news-box .top-title p+p {
  1352. width: 320px;
  1353. color: #535353;
  1354. font-size: 16px;
  1355. margin-top: 8px;
  1356. padding-left: 7px
  1357. }
  1358. .h-index .banner-box .news-box .top-title p+p::before {
  1359. width: 0;
  1360. height: 0;
  1361. background: none
  1362. }
  1363. .h-index .banner-box .news-box .news-list {
  1364. padding-top: 10px
  1365. }
  1366. .h-index .banner-box .news-box .news-list li {
  1367. overflow: hidden
  1368. }
  1369. .h-index .banner-box .news-box .news-list li a {
  1370. display: block;
  1371. color: #434343;
  1372. line-height: 35px;
  1373. position: relative;
  1374. padding-left: 10px;
  1375. margin-left: 5px
  1376. }
  1377. .h-index .banner-box .news-box .news-list li a::before {
  1378. content: "";
  1379. width: 3px;
  1380. height: 3px;
  1381. background-color: #434343;
  1382. position: absolute;
  1383. top: 16px;
  1384. left: 0
  1385. }
  1386. .h-index .banner-box .news-box .news-list li a span {
  1387. width: 290px;
  1388. overflow: hidden;
  1389. text-overflow: ellipsis;
  1390. white-space: nowrap;
  1391. float: left
  1392. }
  1393. .h-index .banner-box .news-box .news-list li a span+span {
  1394. width: auto;
  1395. color: #a0a0a0;
  1396. float: right
  1397. }
  1398. .h-index .banner-box .news-box .news-list li a:hover span {
  1399. color: #009e96;
  1400. text-decoration: underline
  1401. }
  1402. .h-index .banner-box .news-box .news-list li a:hover span+span {
  1403. color: #a0a0a0;
  1404. text-decoration: none
  1405. }
  1406. .h-index .main-box {
  1407. width: 1180px;
  1408. margin: 5px auto 0
  1409. }
  1410. .h-index .main-box .left {
  1411. float: left
  1412. }
  1413. .h-index .main-box .left .hot-box+.hot-box {
  1414. margin-top: 35px
  1415. }
  1416. .h-index .main-box .left .hot-box .nav-box {
  1417. margin: 10px 0 5px;
  1418. border-bottom: 1px solid #f3f3f3
  1419. }
  1420. .h-index .main-box .left .hot-box .nav-box .nav {
  1421. float: left
  1422. }
  1423. .h-index .main-box .left .hot-box .nav-box .nav>a {
  1424. width: 80px;
  1425. color: #000;
  1426. font-size: 16px;
  1427. position: relative;
  1428. float: left;
  1429. text-align: center;
  1430. padding-bottom: 10px;
  1431. margin: 0 38px
  1432. }
  1433. .h-index .main-box .left .hot-box .nav-box .nav>a::before {
  1434. content: "";
  1435. width: 100%;
  1436. height: 3px;
  1437. background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
  1438. position: absolute;
  1439. bottom: 0;
  1440. left: 0;
  1441. display: none
  1442. }
  1443. .h-index .main-box .left .hot-box .nav-box .nav>a.on,
  1444. .h-index .main-box .left .hot-box .nav-box .nav>a:hover {
  1445. font-weight: bold
  1446. }
  1447. .h-index .main-box .left .hot-box .nav-box .nav>a.on::before,
  1448. .h-index .main-box .left .hot-box .nav-box .nav>a:hover::before {
  1449. display: block
  1450. }
  1451. .h-index .main-box .left .hot-box .nav-box .more {
  1452. float: right;
  1453. color: #959595;
  1454. margin-right: 25px
  1455. }
  1456. .h-index .main-box .left .hot-box .newest-list {
  1457. background-color: #f8f8f8;
  1458. padding: 9px 0
  1459. }
  1460. .h-index .main-box .left .hot-box .newest-list li {
  1461. float: left;
  1462. margin: 0 30px;
  1463. line-height: 2.7
  1464. }
  1465. .h-index .main-box .left .hot-box .newest-list li a {
  1466. display: block
  1467. }
  1468. .h-index .main-box .left .hot-box .newest-list li a span {
  1469. font-weight: bold;
  1470. color: #84ccc9;
  1471. float: left
  1472. }
  1473. .h-index .main-box .left .hot-box .newest-list li a p {
  1474. width: 260px;
  1475. color: #000;
  1476. overflow: hidden;
  1477. text-overflow: ellipsis;
  1478. white-space: nowrap;
  1479. float: left;
  1480. margin-left: 5px
  1481. }
  1482. .h-index .main-box .left .hot-box .newest-list li a:hover p {
  1483. color: #009e96;
  1484. text-decoration: underline
  1485. }
  1486. .h-index .main-box .right {
  1487. float: right
  1488. }
  1489. .h-index .main-box .right .special {
  1490. margin-top: 39px
  1491. }
  1492. .h-index .main-box .right .special .special-list li a {
  1493. width: 360px
  1494. }
  1495. .h-index .main-box .right .special .special-list li a img {
  1496. height: 180px
  1497. }
  1498. .h-index .main-box .right .special .special-list li a p {
  1499. height: 25px;
  1500. line-height: 25px;
  1501. font-size: 16px
  1502. }
  1503. .h-news .main-box {
  1504. width: 1180px;
  1505. margin: 10px auto 50px
  1506. }
  1507. .h-news .main-box .left {
  1508. float: left
  1509. }
  1510. .h-news .main-box .left .news-list {
  1511. width: 800px
  1512. }
  1513. .h-news .main-box .left .news-list li {
  1514. height: 150px;
  1515. background-color: #f8f8f8;
  1516. position: relative;
  1517. padding-left: 320px;
  1518. font-size: 12px;
  1519. color: gray;
  1520. margin-bottom: 25px
  1521. }
  1522. .h-news .main-box .left .news-list li .img {
  1523. width: 300px;
  1524. height: 150px;
  1525. position: absolute;
  1526. top: 0;
  1527. left: 0
  1528. }
  1529. .h-news .main-box .left .news-list li .img img {
  1530. width: 100%;
  1531. height: 100%
  1532. }
  1533. .h-news .main-box .left .news-list li .tit {
  1534. width: 460px;
  1535. height: 50px;
  1536. display: -webkit-box;
  1537. -webkit-line-clamp: 2;
  1538. -webkit-box-orient: vertical;
  1539. overflow: hidden;
  1540. text-overflow: ellipsis;
  1541. font-size: 18px;
  1542. color: #1b1b1b;
  1543. font-weight: bold;
  1544. padding-top: 19px
  1545. }
  1546. .h-news .main-box .left .news-list li>p {
  1547. width: 100%;
  1548. overflow: hidden;
  1549. text-overflow: ellipsis;
  1550. white-space: nowrap;
  1551. margin: 22px 0 8px
  1552. }
  1553. .h-news .main-box .left .news-list li .time-type p {
  1554. float: left;
  1555. margin-right: 30px
  1556. }
  1557. .h-news .main-box .left .news-list li .time-type p a {
  1558. color: #02a8e9
  1559. }
  1560. .h-news .main-box .left .content {
  1561. width: 800px
  1562. }
  1563. .h-news .main-box .left .content .con-title {
  1564. position: relative;
  1565. padding-left: 25px
  1566. }
  1567. .h-news .main-box .left .content .con-title::before {
  1568. content: "";
  1569. position: absolute;
  1570. top: 0;
  1571. left: 0;
  1572. width: 13px;
  1573. height: 50px;
  1574. background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
  1575. }
  1576. .h-news .main-box .left .content .con-title .tit {
  1577. float: left
  1578. }
  1579. .h-news .main-box .left .content .con-title .tit p {
  1580. width: 550px;
  1581. overflow: hidden;
  1582. text-overflow: ellipsis;
  1583. white-space: nowrap;
  1584. color: #1b1b1b;
  1585. font-weight: bold;
  1586. font-size: 18px;
  1587. padding-top: 3px
  1588. }
  1589. .h-news .main-box .left .content .con-title .tit p+p {
  1590. color: gray;
  1591. font-size: 12px;
  1592. font-weight: normal;
  1593. padding-top: 5px
  1594. }
  1595. .h-news .main-box .left .content .con-title .share {
  1596. float: right
  1597. }
  1598. .h-news .main-box .left .content .text {
  1599. background-color: #f8f8f8;
  1600. padding: 40px;
  1601. color: #000;
  1602. font-size: 16px;
  1603. margin-top: 20px
  1604. }
  1605. .h-news .main-box .left .content .text p {
  1606. line-height: 1.6
  1607. }
  1608. .h-news .main-box .left .content .text img {
  1609. max-width: 100%
  1610. }
  1611. .h-news .main-box .left .info-box {
  1612. position: relative;
  1613. margin: 18px 0
  1614. }
  1615. .h-news .main-box .left .info-box .more {
  1616. color: #959595;
  1617. position: absolute;
  1618. top: 0;
  1619. right: 10px
  1620. }
  1621. .h-news .main-box .left .info-box .info-list {
  1622. background-color: #f8f8f8;
  1623. padding: 10px 25px;
  1624. margin-top: 10px
  1625. }
  1626. .h-news .main-box .left .info-box .info-list li a {
  1627. display: block;
  1628. line-height: 2.4
  1629. }
  1630. .h-news .main-box .left .info-box .info-list li a span {
  1631. float: left;
  1632. color: #84ccc9
  1633. }
  1634. .h-news .main-box .left .info-box .info-list li a span:nth-child(2) {
  1635. width: 592px;
  1636. overflow: hidden;
  1637. text-overflow: ellipsis;
  1638. white-space: nowrap;
  1639. margin: 0 20px 0 8px;
  1640. color: #000
  1641. }
  1642. .h-news .main-box .left .info-box .info-list li a span:last-child {
  1643. color: #a0a0a0
  1644. }
  1645. .h-news .main-box .left .info-box .info-list li a:hover span:nth-child(2) {
  1646. color: #009e96;
  1647. text-decoration: underline
  1648. }
  1649. .h-news .main-box .right {
  1650. float: right
  1651. }
  1652. .h-news .main-box .right .info-box {
  1653. width: 360px
  1654. }
  1655. .h-news .main-box .right .info-box .info-list {
  1656. background-color: #f8f8f8;
  1657. padding: 20px 25px;
  1658. margin: 5px 0 20px
  1659. }
  1660. .h-news .main-box .right .info-box .info-list li a {
  1661. width: 292px;
  1662. overflow: hidden;
  1663. text-overflow: ellipsis;
  1664. white-space: nowrap;
  1665. display: block;
  1666. position: relative;
  1667. padding-left: 18px;
  1668. color: #000;
  1669. line-height: 2.4
  1670. }
  1671. .h-news .main-box .right .info-box .info-list li a::before {
  1672. content: "";
  1673. position: absolute;
  1674. top: 15px;
  1675. left: 0;
  1676. width: 3px;
  1677. height: 3px;
  1678. background-color: #000
  1679. }
  1680. .h-news .main-box .right .info-box .info-list li a:hover {
  1681. color: #009e96
  1682. }
  1683. .info-box .nav {
  1684. position: relative;
  1685. padding-left: 42px;
  1686. border-bottom: 1px solid #f3f3f3;
  1687. padding-bottom: 13px
  1688. }
  1689. .info-box .nav::before {
  1690. content: "";
  1691. position: absolute;
  1692. top: 0;
  1693. left: 2px;
  1694. width: 13px;
  1695. height: 30px;
  1696. background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
  1697. }
  1698. .info-box .nav a {
  1699. width: 80px;
  1700. text-align: center;
  1701. color: #000;
  1702. font-size: 16px;
  1703. position: relative;
  1704. float: left;
  1705. margin: 0 20px 0 5px
  1706. }
  1707. .info-box .nav a::before {
  1708. content: "";
  1709. width: 100%;
  1710. height: 3px;
  1711. position: absolute;
  1712. bottom: -14px;
  1713. left: 0;
  1714. background: linear-gradient(to right, #00a3e9 0%, #0ef5f4 50%, #a1ffb3 100%);
  1715. display: none
  1716. }
  1717. .info-box .nav a.on,
  1718. .info-box .nav a:hover {
  1719. font-weight: bold
  1720. }
  1721. .info-box .nav a.on::before,
  1722. .info-box .nav a:hover::before {
  1723. display: block
  1724. }
  1725. .h-center .main-box {
  1726. width: 1180px;
  1727. margin: 25px auto 0
  1728. }
  1729. .h-center .main-box .left {
  1730. float: left
  1731. }
  1732. .h-center .main-box .left .game-type-box {
  1733. width: 360px;
  1734. margin-bottom: 20px
  1735. }
  1736. .h-center .main-box .left .game-type-box .game-type {
  1737. padding: 10px 5px;
  1738. background-color: #f8f8f8;
  1739. margin-top: 13px
  1740. }
  1741. .h-center .main-box .left .game-type-box .game-type a {
  1742. font-size: 16px;
  1743. color: #000;
  1744. line-height: 2;
  1745. margin: 0 3px
  1746. }
  1747. .h-center .main-box .left .content {
  1748. width: 800px;
  1749. margin-bottom: 20px
  1750. }
  1751. .h-center .main-box .left .content .con-title {
  1752. position: relative;
  1753. padding-left: 20px
  1754. }
  1755. .h-center .main-box .left .content .con-title::before {
  1756. content: "";
  1757. position: absolute;
  1758. top: 0;
  1759. left: 0;
  1760. width: 13px;
  1761. height: 28px;
  1762. background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
  1763. }
  1764. .h-center .main-box .left .content .con-title>p {
  1765. color: #1b1b1b;
  1766. font-size: 18px;
  1767. font-weight: bold;
  1768. line-height: 28px
  1769. }
  1770. .h-center .main-box .left .content .con-title>p span {
  1771. color: #84ccc9
  1772. }
  1773. .h-center .main-box .left .content .con-title .btn {
  1774. position: relative;
  1775. float: right;
  1776. margin-right: 40px
  1777. }
  1778. .h-center .main-box .left .content .con-title .btn .swiper-button-next {
  1779. width: 25px;
  1780. height: 25px;
  1781. right: auto;
  1782. left: 0;
  1783. background: url("../images/info-next.png") no-repeat;
  1784. outline: none;
  1785. margin-top: -26px
  1786. }
  1787. .h-center .main-box .left .content .con-title .btn .swiper-button-prev {
  1788. width: 25px;
  1789. height: 25px;
  1790. left: auto;
  1791. right: 15px;
  1792. background: url("../images/info-prev.png") no-repeat;
  1793. outline: none;
  1794. margin-top: -26px
  1795. }
  1796. .h-center .main-box .left .content .con-box {
  1797. background-color: #f8f8f8;
  1798. padding: 20px 30px;
  1799. margin-top: 20px;
  1800. position: relative
  1801. }
  1802. .h-center .main-box .left .content .con-box p {
  1803. font-size: 16px;
  1804. line-height: 1.8;
  1805. margin-bottom: 20px
  1806. }
  1807. .h-center .main-box .left .content .con-box.screenshot .swiper-container {
  1808. width: 630px;
  1809. height: 360px
  1810. }
  1811. .h-center .main-box .left .content .con-box.screenshot .swiper-container .swiper-wrapper .swiper-slide {
  1812. width: 200px;
  1813. height: 360px
  1814. }
  1815. .h-center .main-box .left .content .con-box.screenshot .swiper-container .swiper-wrapper .swiper-slide img {
  1816. width: 100%;
  1817. height: 100%;
  1818. display: block
  1819. }
  1820. .h-center .main-box .left .content .con-box.screenshot .swiper-button-next {
  1821. width: 53px;
  1822. height: 52px;
  1823. right: 30px;
  1824. background: url("../images/pic-next.png") no-repeat;
  1825. outline: none
  1826. }
  1827. .h-center .main-box .left .content .con-box.screenshot .swiper-button-prev {
  1828. width: 53px;
  1829. height: 52px;
  1830. left: 30px;
  1831. background: url("../images/pic-prev.png") no-repeat;
  1832. outline: none
  1833. }
  1834. .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a {
  1835. display: block;
  1836. line-height: 2.2
  1837. }
  1838. .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span {
  1839. color: #84ccc9;
  1840. float: left
  1841. }
  1842. .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span:nth-child(2) {
  1843. width: 580px;
  1844. color: #000;
  1845. overflow: hidden;
  1846. text-overflow: ellipsis;
  1847. white-space: nowrap;
  1848. margin: 0 20px 0 5px
  1849. }
  1850. .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a span+span {
  1851. color: #a0a0a0
  1852. }
  1853. .h-center .main-box .left .content .con-box.info .swiper-container .swiper-wrapper .swiper-slide a:hover span:nth-child(2) {
  1854. color: #009e96;
  1855. text-decoration: underline
  1856. }
  1857. .h-center .main-box .right {
  1858. float: right;
  1859. position: relative
  1860. }
  1861. .h-center .main-box .right select {
  1862. border: none;
  1863. background-color: #f8f8f8;
  1864. outline: none;
  1865. position: absolute;
  1866. top: 0;
  1867. right: 0
  1868. }
  1869. .h-center .main-box .right .game-box {
  1870. width: 800px;
  1871. background-color: #f8f8f8;
  1872. margin-top: 30px;
  1873. padding-bottom: 40px
  1874. }
  1875. .h-center .main-box .right .game-box .game-list {
  1876. margin-bottom: 50px
  1877. }
  1878. .h-center .main-box .right .game-box .game-list li {
  1879. width: 215px;
  1880. height: 80px;
  1881. position: relative;
  1882. padding: 15px 15px 15px 110px;
  1883. float: left;
  1884. margin: 30px 30px 0
  1885. }
  1886. .h-center .main-box .right .game-box .game-list li a {
  1887. display: block
  1888. }
  1889. .h-center .main-box .right .game-box .game-list li a img {
  1890. width: 80px;
  1891. height: 80px;
  1892. position: absolute;
  1893. top: 15px;
  1894. left: 15px;
  1895. border-radius: 15px
  1896. }
  1897. .h-center .main-box .right .game-box .game-list li a .name {
  1898. color: #000;
  1899. font-size: 16px;
  1900. overflow: hidden;
  1901. text-overflow: ellipsis;
  1902. white-space: nowrap;
  1903. line-height: 2
  1904. }
  1905. .h-center .main-box .right .game-box .game-list li a .game-info {
  1906. color: #737373;
  1907. font-size: 12px;
  1908. padding-top: 5px;
  1909. line-height: 1.5
  1910. }
  1911. .h-center .main-box .right .game-box .game-list li a>span {
  1912. width: 100px;
  1913. height: 35px;
  1914. text-align: center;
  1915. line-height: 35px;
  1916. color: #009e96;
  1917. background-color: #fff;
  1918. border-radius: 5px;
  1919. margin-top: 8px;
  1920. display: none
  1921. }
  1922. .h-center .main-box .right .game-box .game-list li:hover {
  1923. background-color: #84ccc9
  1924. }
  1925. .h-center .main-box .right .game-box .game-list li:hover .name {
  1926. color: #fff
  1927. }
  1928. .h-center .main-box .right .game-box .game-list li:hover .game-info {
  1929. display: none
  1930. }
  1931. .h-center .main-box .right .game-box .game-list li:hover span {
  1932. display: block
  1933. }
  1934. .h-special .main-box {
  1935. width: 1180px;
  1936. margin: 30px auto 0
  1937. }
  1938. .h-special .main-box .content {
  1939. height: 230px;
  1940. position: relative;
  1941. padding-left: 490px
  1942. }
  1943. .h-special .main-box .content img {
  1944. width: 460px;
  1945. height: 230px;
  1946. position: absolute;
  1947. top: 0;
  1948. left: 0
  1949. }
  1950. .h-special .main-box .content .con-title {
  1951. position: relative;
  1952. padding-left: 20px;
  1953. margin-bottom: 15px
  1954. }
  1955. .h-special .main-box .content .con-title::before {
  1956. content: "";
  1957. position: absolute;
  1958. top: 0;
  1959. left: 0;
  1960. width: 13px;
  1961. height: 30px;
  1962. background: linear-gradient(to right, #10def1 0%, #03adeb 100%)
  1963. }
  1964. .h-special .main-box .content .con-title>p {
  1965. color: #1b1b1b;
  1966. font-size: 18px;
  1967. font-weight: bold;
  1968. line-height: 30px;
  1969. overflow: hidden;
  1970. text-overflow: ellipsis;
  1971. white-space: nowrap;
  1972. padding-right: 30px
  1973. }
  1974. .h-special .main-box .content p {
  1975. font-size: 16px;
  1976. line-height: 1.5
  1977. }
  1978. .h-special .main-box .content .share {
  1979. position: absolute;
  1980. top: 182px;
  1981. right: 0
  1982. }
  1983. .h-special .main-box .game-list {
  1984. background-color: #f8f8f8;
  1985. margin: 20px 0
  1986. }
  1987. .h-special .main-box .game-list li {
  1988. height: 80px;
  1989. float: left;
  1990. position: relative;
  1991. padding-left: 90px;
  1992. margin: 20px 50px
  1993. }
  1994. .h-special .main-box .game-list li img {
  1995. width: 80px;
  1996. height: 80px;
  1997. position: absolute;
  1998. top: 0;
  1999. left: 0;
  2000. border-radius: 10px
  2001. }
  2002. .h-special .main-box .game-list li .name {
  2003. width: 380px;
  2004. overflow: hidden;
  2005. text-overflow: ellipsis;
  2006. white-space: nowrap;
  2007. font-size: 16px;
  2008. font-weight: bold;
  2009. color: #000;
  2010. line-height: 2
  2011. }
  2012. .h-special .main-box .game-list li .text {
  2013. width: 400px;
  2014. display: -webkit-box;
  2015. -webkit-line-clamp: 2;
  2016. -webkit-box-orient: vertical;
  2017. overflow: hidden;
  2018. text-overflow: ellipsis;
  2019. color: #737373;
  2020. line-height: 1.4;
  2021. padding-top: 5px
  2022. }
  2023. .h-special .main-box .special .special-list {
  2024. margin-right: -50px
  2025. }
  2026. .h-special .main-box .special .special-list li {
  2027. float: left;
  2028. width: 360px;
  2029. height: 180px;
  2030. margin-right: 50px;
  2031. margin-bottom: 38px
  2032. }
  2033. .h-special .main-box .special .special-list li a img {
  2034. width: 100%;
  2035. height: 100%
  2036. }
  2037. .h-special .main-box .page {
  2038. margin-top: 10px;
  2039. margin-bottom: 50px
  2040. }
  2041. .h-result .main-box {
  2042. width: 1180px;
  2043. margin: 30px auto 0
  2044. }
  2045. .h-result .main-box .noFind {
  2046. width: 540px;
  2047. height: 166px;
  2048. margin: 50px auto;
  2049. position: relative
  2050. }
  2051. .h-result .main-box .noFind .pic {
  2052. float: left
  2053. }
  2054. .h-result .main-box .noFind .txt {
  2055. font-size: 34px;
  2056. color: #578ec6;
  2057. float: right;
  2058. display: inline;
  2059. margin: 10px 80px 0 0;
  2060. font-weight: normal
  2061. }
  2062. .h-result .main-box .noFind .error {
  2063. width: 55px;
  2064. height: 25px;
  2065. background-color: #d8d8d8;
  2066. float: right;
  2067. display: inline;
  2068. margin: 10px 250px 0 0;
  2069. font-size: 22px;
  2070. color: #fff;
  2071. text-align: center;
  2072. border-radius: 5px;
  2073. line-height: 20px;
  2074. padding-left: 5px
  2075. }
  2076. .h-result .main-box .noFind .error .error_Num {
  2077. margin: -17px 0 0 70px;
  2078. display: block;
  2079. color: #d1d1d1
  2080. }
  2081. .h-result .main-box .noFind .tips {
  2082. position: absolute;
  2083. bottom: 30px;
  2084. right: 130px
  2085. }
  2086. .h-result .main-box .noFind .tips span {
  2087. color: #e80000
  2088. }
  2089. .h-result .main-box .hot-box {
  2090. width: 1180px
  2091. }
  2092. .h-result .main-box .hot-box .hot-list li {
  2093. margin: 13px 14px
  2094. }
  2095. .h-result .main-box .left {
  2096. float: left
  2097. }
  2098. .h-result .main-box .left .game-list {
  2099. width: 800px
  2100. }
  2101. .h-result .main-box .left .game-list li {
  2102. width: 215px;
  2103. height: 80px;
  2104. position: relative;
  2105. padding: 15px 15px 15px 110px;
  2106. float: left;
  2107. margin: 30px 60px 0 0
  2108. }
  2109. .h-result .main-box .left .game-list li img {
  2110. width: 80px;
  2111. height: 80px;
  2112. position: absolute;
  2113. top: 15px;
  2114. left: 0;
  2115. border-radius: 15px
  2116. }
  2117. .h-result .main-box .left .game-list li .name {
  2118. font-size: 16px;
  2119. overflow: hidden;
  2120. text-overflow: ellipsis;
  2121. white-space: nowrap;
  2122. line-height: 2
  2123. }
  2124. .h-result .main-box .left .game-list li .game-info {
  2125. color: #737373;
  2126. font-size: 12px;
  2127. padding-top: 5px;
  2128. line-height: 1.5
  2129. }
  2130. .h-result .main-box .left .news-list {
  2131. width: 800px
  2132. }
  2133. .h-result .main-box .left .news-list li {
  2134. height: 150px;
  2135. background-color: #f8f8f8;
  2136. position: relative;
  2137. padding-left: 320px;
  2138. font-size: 12px;
  2139. color: gray;
  2140. margin-bottom: 25px
  2141. }
  2142. .h-result .main-box .left .news-list li .img {
  2143. width: 300px;
  2144. height: 150px;
  2145. position: absolute;
  2146. top: 0;
  2147. left: 0
  2148. }
  2149. .h-result .main-box .left .news-list li .img img {
  2150. width: 100%;
  2151. height: 100%
  2152. }
  2153. .h-result .main-box .left .news-list li .tit {
  2154. width: 460px;
  2155. height: 50px;
  2156. display: -webkit-box;
  2157. -webkit-line-clamp: 2;
  2158. -webkit-box-orient: vertical;
  2159. overflow: hidden;
  2160. text-overflow: ellipsis;
  2161. font-size: 18px;
  2162. color: #1b1b1b;
  2163. font-weight: bold;
  2164. padding-top: 19px
  2165. }
  2166. .h-result .main-box .left .news-list li>p {
  2167. margin: 25px 0 8px
  2168. }
  2169. .h-result .main-box .left .news-list li .time-type p {
  2170. float: left;
  2171. margin-right: 30px
  2172. }
  2173. .h-result .main-box .left .news-list li .time-type p a {
  2174. color: #02a8e9
  2175. }
  2176. .h-result .main-box .right {
  2177. float: right
  2178. }
  2179. .h-about {
  2180. width: 100%;
  2181. background: #fff url("../images/bg.png") no-repeat center top
  2182. }
  2183. .h-about .main {
  2184. width: 1280px;
  2185. margin: 0 auto
  2186. }
  2187. .h-about .main .header {
  2188. height: auto;
  2189. box-shadow: none;
  2190. margin-top: 70px
  2191. }
  2192. .h-about .main .header .logo {
  2193. width: 263px;
  2194. height: 68px;
  2195. float: left;
  2196. margin-left: 20px;
  2197. background: url("../images/jh.png") no-repeat;
  2198. background-size: cover;
  2199. }
  2200. .h-about .main .header .nav {
  2201. color: #fff;
  2202. float: right;
  2203. font-size: 18px;
  2204. font-weight: bold;
  2205. line-height: 108px
  2206. }
  2207. .h-about .main .header .nav a {
  2208. color: #fff
  2209. }
  2210. .h-about .main .text {
  2211. color: #fff;
  2212. margin-top: 150px;
  2213. position: relative
  2214. }
  2215. .h-about .main .text span {
  2216. font-size: 46px
  2217. }
  2218. .h-about .main .text p {
  2219. width: 730px;
  2220. line-height: 35px;
  2221. text-indent: 2em;
  2222. margin: 40px 0 0;
  2223. font-size: 16px
  2224. }
  2225. .h-about .main .text p+p {
  2226. width: 525px
  2227. }
  2228. .h-about .main .text img {
  2229. width: 576px;
  2230. height: 399px;
  2231. position: absolute;
  2232. top: 50%;
  2233. left: 50%;
  2234. margin: -50px 0 0
  2235. }
  2236. .h-about .main .kp {
  2237. margin-top: 380px
  2238. }
  2239. .h-about .main .kp i {
  2240. width: 195px;
  2241. height: 21px;
  2242. background: url("../images/bg-tit.png") no-repeat;
  2243. text-align: center;
  2244. font-size: 28px;
  2245. font-weight: bold;
  2246. color: #434343;
  2247. font-style: normal;
  2248. display: block;
  2249. line-height: 17px;
  2250. margin: 0 auto
  2251. }
  2252. .h-about .main .kp>span {
  2253. display: block;
  2254. text-align: center;
  2255. font-size: 50px;
  2256. font-weight: bold;
  2257. color: #2f74db;
  2258. padding: 15px 0 5px;
  2259. position: relative
  2260. }
  2261. .h-about .main .kp>span::after {
  2262. content: "";
  2263. width: 53px;
  2264. height: 2px;
  2265. background-color: #00acb5;
  2266. position: absolute;
  2267. bottom: 0;
  2268. left: 50%;
  2269. margin: 0 0 0 -26px
  2270. }
  2271. .h-about .main .kp ul {
  2272. text-align: center;
  2273. margin-top: 60px
  2274. }
  2275. .h-about .main .kp ul li {
  2276. display: inline-block
  2277. }
  2278. .h-about .main .kp ul li img {
  2279. width: 400px;
  2280. height: 250px;
  2281. display: block
  2282. }
  2283. .h-about .main .kp ul li span {
  2284. font-size: 30px;
  2285. color: #434343;
  2286. display: block;
  2287. line-height: 3
  2288. }
  2289. .h-about .main .kp ul li+li {
  2290. margin-left: 35px
  2291. }
  2292. .h-about .footer {
  2293. width: 100%;
  2294. height: 198px;
  2295. background: url("../images/footer.png") no-repeat center top;
  2296. padding: 0;
  2297. color: #919395;
  2298. overflow: hidden
  2299. }
  2300. .h-about .footer .main {
  2301. margin-top: 50px
  2302. }
  2303. .h-about .footer .main .footerUl {
  2304. text-align: center
  2305. }
  2306. .h-about .footer .main .footerUl li {
  2307. margin: 0 2px;
  2308. display: inline-block
  2309. }
  2310. .h-about .footer .main .footerUl li a {
  2311. color: #919395
  2312. }
  2313. .h-about .footer .main p a {
  2314. color: #919395
  2315. }