index.min.css 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061
  1. @charset "utf-8";
  2. body { font-family:Verdana,"微软雅黑";}
  3. .swiper-container {
  4. margin: 0 auto;
  5. position: relative;
  6. overflow: hidden;
  7. -webkit-backface-visibility: hidden;
  8. -moz-backface-visibility: hidden;
  9. -ms-backface-visibility: hidden;
  10. -o-backface-visibility: hidden;
  11. backface-visibility: hidden;
  12. z-index: 1
  13. }
  14. .swiper-wrapper {
  15. position: relative;
  16. width: 100%;
  17. -webkit-transition-property: -webkit-transform,left,top;
  18. -webkit-transition-duration: 0s;
  19. -webkit-transform: translate3d(0px,0,0);
  20. -webkit-transition-timing-function: ease;
  21. -moz-transition-property: -moz-transform,left,top;
  22. -moz-transition-duration: 0s;
  23. -moz-transform: translate3d(0px,0,0);
  24. -moz-transition-timing-function: ease;
  25. -o-transition-property: -o-transform,left,top;
  26. -o-transition-duration: 0s;
  27. -o-transform: translate3d(0px,0,0);
  28. -o-transition-timing-function: ease;
  29. -o-transform: translate(0px,0px);
  30. -ms-transition-property: -ms-transform,left,top;
  31. -ms-transition-duration: 0s;
  32. -ms-transform: translate3d(0px,0,0);
  33. -ms-transition-timing-function: ease;
  34. transition-property: transform,left,top;
  35. transition-duration: 0s;
  36. transform: translate3d(0px,0,0);
  37. transition-timing-function: ease;
  38. -webkit-box-sizing: content-box;
  39. -moz-box-sizing: content-box;
  40. box-sizing: content-box
  41. }
  42. .swiper-free-mode>.swiper-wrapper {
  43. -webkit-transition-timing-function: ease-out;
  44. -moz-transition-timing-function: ease-out;
  45. -ms-transition-timing-function: ease-out;
  46. -o-transition-timing-function: ease-out;
  47. transition-timing-function: ease-out;
  48. margin: 0 auto
  49. }
  50. .swiper-slide {
  51. float: left;
  52. -webkit-box-sizing: content-box;
  53. -moz-box-sizing: content-box;
  54. box-sizing: content-box
  55. }
  56. .swiper-wp8-horizontal {
  57. -ms-touch-action: pan-y
  58. }
  59. .swiper-wp8-vertical {
  60. -ms-touch-action: pan-x
  61. }
  62. .swiper-container {
  63. }
  64. .swiper-slide {
  65. }
  66. .swiper-slide-active {
  67. }
  68. .swiper-slide-visible {
  69. }
  70. .swiper-pagination-switch {
  71. }
  72. .swiper-active-switch {
  73. }
  74. .swiper-visible-switch {
  75. }
  76. body {
  77. width: 100%;
  78. height: 100%;
  79. font-family: "微软雅黑",Arial;
  80. }
  81. header,section {
  82. width: 100%;
  83. }
  84. table {
  85. border-collapse: collapse;
  86. }
  87. a:focus {
  88. outline: none;
  89. }
  90. header {
  91. position: fixed;
  92. height: 74px;
  93. color: #ccc;
  94. z-index: 999;
  95. }
  96. header.fixed {
  97. height: 70px;
  98. }
  99. header .logo {
  100. position: fixed;
  101. top: 24px;
  102. left: 50px;
  103. width: 180px;
  104. -webkit-transition: all .2s ease-in-out 0s;
  105. -moz-transition: all .2s ease-in-out 0s;
  106. -ms-transition: all .2s ease-in-out 0s;
  107. -o-transition: all .2s ease-in-out 0s;
  108. transition: all .2s ease-in-out 0s;
  109. }
  110. header.fixed .logo {
  111. width: 120px;
  112. top: 16px;
  113. }
  114. header .words {
  115. display: block;
  116. position: fixed;
  117. top: 40px;
  118. left: 250px;
  119. letter-spacing: 1px;
  120. font-weight: normal;
  121. -webkit-transition: all .2s ease-in-out 0s;
  122. -moz-transition: all .2s ease-in-out 0s;
  123. -ms-transition: all .2s ease-in-out 0s;
  124. -o-transition: all .2s ease-in-out 0s;
  125. transition: all .2s ease-in-out 0s;
  126. }
  127. header.fixed .words {
  128. top: 23px;
  129. left: 185px;
  130. }
  131. header nav.menu {
  132. margin: 36px 0 0 110px;
  133. text-align: center;
  134. -webkit-transition: all .2s ease-in-out 0s;
  135. -moz-transition: all .2s ease-in-out 0s;
  136. -ms-transition: all .2s ease-in-out 0s;
  137. -o-transition: all .2s ease-in-out 0s;
  138. transition: all .2s ease-in-out 0s;
  139. }
  140. header.fixed nav.menu {
  141. margin: 22px 0 0 85px;
  142. }
  143. header nav.menu ul li {
  144. margin: 0 12px;
  145. font-size: 20px;
  146. -webkit-transition: all .2s ease-in-out 0s;
  147. -moz-transition: all .2s ease-in-out 0s;
  148. -ms-transition: all .2s ease-in-out 0s;
  149. -o-transition: all .2s ease-in-out 0s;
  150. transition: all .2s ease-in-out 0s;
  151. }
  152. header.fixed nav.menu ul li {
  153. margin: 0 10px;
  154. font-size: 16px;
  155. }
  156. header nav.menu ul li a {
  157. color: #ccc;
  158. letter-spacing: 2px;
  159. cursor: pointer;
  160. }
  161. header nav.menu ul li a:hover,header nav.menu ul li.active a {
  162. color: #2fb8f7;
  163. text-decoration: none;
  164. }
  165. header nav.menu .line {
  166. position: absolute;
  167. top: 0px;
  168. width: 0px;
  169. height: 3px;
  170. font-size: 3px;
  171. background-color: #2fb8f7;
  172. display: none;
  173. }
  174. header .hotline {
  175. position: fixed;
  176. top: 32px;
  177. right: 215px;
  178. -webkit-transition: all .2s ease-in-out 0s;
  179. -moz-transition: all .2s ease-in-out 0s;
  180. -ms-transition: all .2s ease-in-out 0s;
  181. -o-transition: all .2s ease-in-out 0s;
  182. transition: all .2s ease-in-out 0s;
  183. }
  184. header.fixed .hotline {
  185. top: 20px;
  186. right: 185px;
  187. }
  188. header .hotline span {
  189. position: fixed;
  190. color: #2fb8f7;
  191. font-family: Arial;
  192. font-weight: bold;
  193. font-size: 26px;
  194. letter-spacing: 1px;
  195. -webkit-transition: all .2s ease-in-out 0s;
  196. -moz-transition: all .2s ease-in-out 0s;
  197. -ms-transition: all .2s ease-in-out 0s;
  198. -o-transition: all .2s ease-in-out 0s;
  199. transition: all .2s ease-in-out 0s;
  200. }
  201. header.fixed .hotline span {
  202. font-size: 20px;
  203. }
  204. header .hotline u {
  205. position: fixed;
  206. top: 35px;
  207. right: 230px;
  208. display: block;
  209. width: 30px;
  210. height: 30px;
  211. text-decoration: none;
  212. background: url(../images/icons.png) no-repeat;
  213. -webkit-transition: all .2s ease-in-out 0s;
  214. -moz-transition: all .2s ease-in-out 0s;
  215. -ms-transition: all .2s ease-in-out 0s;
  216. -o-transition: all .2s ease-in-out 0s;
  217. transition: all .2s ease-in-out 0s;
  218. }
  219. header.fixed .hotline u {
  220. top: 20px;
  221. right: 195px;
  222. }
  223. header .hotline a {
  224. color: #2fb8f7;
  225. }
  226. header .menu-icon {
  227. position: fixed;
  228. top: 34px;
  229. right: 48px;
  230. font-size: 24px;
  231. color: #2fb8f7;
  232. z-index: 99;
  233. display: none;
  234. }
  235. header.fixed .menu-icon {
  236. top: 18px;
  237. }
  238. header .menu-icon a {
  239. color: #2fb8f7;
  240. text-decoration: none;
  241. }
  242. header .menu-icon span {
  243. margin-left: 15px;
  244. -moz-opacity: 0.5;
  245. opacity: 0.5;
  246. cursor: pointer;
  247. -webkit-transition: all .3s ease-in-out 0s;
  248. -moz-transition: all .3s ease-in-out 0s;
  249. -ms-transition: all .3s ease-in-out 0s;
  250. -o-transition: all .3s ease-in-out 0s;
  251. transition: all .3s ease-in-out 0s;
  252. }
  253. header .menu-icon span.glyphicon-earphone {
  254. display: none;
  255. }
  256. header .menu-icon span:hover,header .menu-icon span.active {
  257. -moz-opacity: 1;
  258. opacity: 1;
  259. -webkit-transition: all .3s ease-in-out 0s;
  260. -moz-transition: all .3s ease-in-out 0s;
  261. -ms-transition: all .3s ease-in-out 0s;
  262. -o-transition: all .3s ease-in-out 0s;
  263. transition: all .3s ease-in-out 0s;
  264. }
  265. header .bg {
  266. position: absolute;
  267. top: 0px;
  268. width: 100%;
  269. height: 0px;
  270. background: #111;
  271. -moz-opacity: 0.6;
  272. opacity: 0.6;
  273. z-index: -1;
  274. -webkit-transition: all .2s ease-in-out 0s;
  275. -moz-transition: all .2s ease-in-out 0s;
  276. -ms-transition: all .2s ease-in-out 0s;
  277. -o-transition: all .2s ease-in-out 0s;
  278. transition: all .2s ease-in-out 0s;
  279. }
  280. header.fixed .bg {
  281. height: 70px;
  282. }
  283. div.welcome p {
  284. display: block;
  285. position: absolute;
  286. margin: 0px;
  287. padding: 0px;
  288. width: 370px;
  289. height: 30px;
  290. padding-top: 240px;
  291. top: 50%;
  292. left: 50%;
  293. margin-top: -135px;
  294. margin-left: -185px;
  295. color: #2fb8f7;
  296. font-size: 20px;
  297. text-align: center;
  298. background: url(../images/welcome_words.png) no-repeat;
  299. overflow: hidden;
  300. }
  301. div.welcome p u {
  302. text-decoration: none;
  303. }
  304. section {
  305. position: relative;
  306. overflow: hidden;
  307. }
  308. .video .swiper-container {
  309. width: 100%;
  310. }
  311. .in-login {
  312. width: 335px;
  313. height: 706px;
  314. -webkit-animation: flowleft 1000ms ease-out;
  315. -o-animation: flowleft 1000ms ease-out;
  316. animation: flowleft 1000ms ease-out;
  317. background-color:#fff;
  318. border:1px solid #ddd;
  319. padding:0 100px 50px 100px;
  320. margin: 0 auto;
  321. border-radius:3px;
  322. margin-top:5%;
  323. }
  324. .zhdl {
  325. line-height: 66px;
  326. color: #ffffff;
  327. font-size: 14px;
  328. color:#666;
  329. }
  330. .dlk-box {
  331. width: 100%;
  332. height: 35px;
  333. margin-bottom: 35px;
  334. margin-top: 5px;
  335. margin: 0 auto;
  336. position: relative;
  337. }
  338. .dlk {
  339. width: 223px;
  340. height: 30px;
  341. line-height: 30px;
  342. border: none;
  343. -webkit-border-radius: 5px;
  344. -moz-border-radius: 5px;
  345. border-radius: 5px;
  346. font-family: "Microsoft YaHei";
  347. outline: none;
  348. padding-left: 40px;
  349. }
  350. .dlk2 {
  351. width: 100%;
  352. height: 38px;
  353. line-height: 38px;
  354. border: none;
  355. -webkit-border-radius: 5px;
  356. -moz-border-radius: 5px;
  357. border-radius: 5px;
  358. color: #333;
  359. font-family: "Microsoft YaHei";
  360. outline: none;
  361. text-indent:15px;
  362. }
  363. .dlk3 {
  364. width: 50%;
  365. height: 38px;
  366. line-height: 38px;
  367. border: none;
  368. -webkit-border-radius: 5px;
  369. -moz-border-radius: 5px;
  370. border-radius: 5px;
  371. color: #333;
  372. font-family: "Microsoft YaHei";
  373. outline: none;
  374. text-indent:15px;
  375. }
  376. .dlk1 {
  377. width: 118px;
  378. margin-right: 7px;
  379. float: left;
  380. }
  381. .input-bg1 {
  382. border:1px solid #ddd;
  383. background:#f5f5f5;
  384. }
  385. .input-bg1:focus {
  386. background:#fff;
  387. }
  388. .input-bg2 {
  389. border:1px solid #ddd;
  390. background:#f5f5f5;
  391. }
  392. .input-bg2:focus {
  393. background:#fff;
  394. }
  395. .input-bg3 {
  396. background: rgba(118,255,237,0.3);
  397. }
  398. .input-bg3:focus {
  399. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d2a667;
  400. box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #d2a667;
  401. }
  402. .input-icon1 {
  403. display: block;
  404. width: 27px;
  405. height: 18px;
  406. border-right: solid 1px rgba(255,255,255,0.5);
  407. position: absolute;
  408. left: 8px;
  409. top: 6px;
  410. display:none;
  411. }
  412. .input-icon2 {
  413. display: block;
  414. width: 27px;
  415. height: 18px;
  416. border-right: solid 1px rgba(255,255,255,0.5);
  417. position: absolute;
  418. left: 8px;
  419. top: 6px;
  420. display:none;
  421. }
  422. .input-icon3 {
  423. display: block;
  424. width: 27px;
  425. height: 18px;
  426. border-right: solid 1px rgba(255,255,255,0.5);
  427. position: absolute;
  428. left: 8px;
  429. top: 6px;
  430. display:none;
  431. }
  432. .yzm {
  433. background: #abcedf none repeat scroll 0 0;
  434. display: block;
  435. float: right;
  436. margin-right: 190px;
  437. margin-top: 10px;
  438. }
  439. .yzm2 {
  440. margin-top: 5px;
  441. float: left;
  442. width: 65px;
  443. height: 21px;
  444. border: solid 1px #a92425;
  445. }
  446. .yzm3 {
  447. float: left;
  448. width: 65px;
  449. height: 32px;
  450. border: solid 1px #a92425;
  451. }
  452. .wjmi-zc {
  453. width: 80%;
  454. height: 30px;
  455. margin-top: 10px;
  456. margin-left: 40px;
  457. }
  458. .wjmi-zc div:nth-child(1) {
  459. float: left;
  460. }
  461. .wjmi-zc div:nth-child(1) a {
  462. color: #ffffff;
  463. }
  464. .wjmi-zc div:nth-child(2) {
  465. float: right;
  466. color: #ff940a;
  467. }
  468. .wjmi-zc div:nth-child(2) a {
  469. color: #ff940a;
  470. }
  471. .dlan2 {
  472. width: 100%;
  473. height: 32px;
  474. line-height: 32px;
  475. text-align: center;
  476. -webkit-border-radius: 5px;
  477. -moz-border-radius: 5px;
  478. border-radius: 5px;
  479. cursor: pointer;
  480. }
  481. .dlan {
  482. width: 100%;
  483. height: 40px;
  484. margin: 0 auto;
  485. line-height: 40px;
  486. text-align: center;
  487. background: #00a5de;
  488. -webkit-border-radius: 5px;
  489. -moz-border-radius: 5px;
  490. border-radius: 5px;
  491. cursor: pointer;
  492. }
  493. .dlan_reg {
  494. width: 100%;
  495. margin: 10px auto;
  496. line-height: 30px;
  497. text-align: center;
  498. background: #00a5de;
  499. -webkit-border-radius: 5px;
  500. -moz-border-radius: 5px;
  501. border-radius: 5px;
  502. cursor: pointer;
  503. }
  504. .dlan_reg a { background:#999;}
  505. .dlan_reg a:hover { color:#fff; text-decoration:none;}
  506. .dlan-input {
  507. width: 100%;
  508. height: 38px;
  509. line-height: 38px;
  510. -webkit-border-radius: 5px;
  511. -moz-border-radius: 5px;
  512. border-radius: 5px;
  513. font-family: "Microsoft YaHei";
  514. font-size: 16px;
  515. border: none;
  516. background: url("../images/login_line_bg.png") center repeat-x;
  517. color: #ffffff;
  518. display:block;
  519. }
  520. .video .swiper-container .swiper-slide {
  521. position: relative;
  522. overflow: hidden;
  523. }
  524. .video .swiper-container .nth1 {
  525. background: url(../images/wallpaper1_1.jpg) 50% 35%;
  526. -moz-background-size: cover;
  527. background-size: cover;
  528. }
  529. .video .swiper-container .nth1 .box {
  530. position: relative;
  531. margin: 0 auto;
  532. -webkit-transition: all .3s ease-in-out 0s;
  533. -moz-transition: all .3s ease-in-out 0s;
  534. -ms-transition: all .3s ease-in-out 0s;
  535. -o-transition: all .3s ease-in-out 0s;
  536. transition: all .3s ease-in-out 0s;
  537. z-index: 10;
  538. }
  539. .video .swiper-container .nth1 .box .left {
  540. position: absolute;
  541. left: -300px;
  542. width: 123px;
  543. height: 231px;
  544. background: url(../images/words.png) no-repeat top right;
  545. -moz-opacity: 0;
  546. opacity: 0;
  547. -webkit-transition: all .5s ease-in-out 0s;
  548. -moz-transition: all .5s ease-in-out 0s;
  549. -ms-transition: all .5s ease-in-out 0s;
  550. -o-transition: all .5s ease-in-out 0s;
  551. transition: all .5s ease-in-out 0s;
  552. }
  553. .video .swiper-container .nth1.active .box .left {
  554. left: 0px;
  555. -moz-opacity: 1;
  556. opacity: 1;
  557. }
  558. .video .swiper-container .nth1 .box .right {
  559. position: absolute;
  560. right: -500px;
  561. margin: 30px 0 0 120px;
  562. -moz-opacity: 0;
  563. opacity: 0;
  564. -webkit-transition: all .5s ease-in-out 0s;
  565. -moz-transition: all .5s ease-in-out 0s;
  566. -ms-transition: all .5s ease-in-out 0s;
  567. -o-transition: all .5s ease-in-out 0s;
  568. transition: all .5s ease-in-out 0s;
  569. }
  570. .video .swiper-container .nth1.active .box .right {
  571. right: 0px;
  572. -moz-opacity: 1;
  573. opacity: 1;
  574. }
  575. .video .swiper-container .nth1 .box .right span {
  576. font-size: 36px;
  577. color: White;
  578. }
  579. .video .swiper-container .nth1 .box .right i {
  580. display: block;
  581. width: 339px;
  582. height: 66px;
  583. margin-bottom: 5px;
  584. background: url(../images/words.png) no-repeat;
  585. }
  586. .video .swiper-container .nth1 .box .right p {
  587. font-size: 16px;
  588. line-height: 25px;
  589. color: #ccc;
  590. }
  591. .video .swiper-container .nth1 .shade {
  592. position: absolute;
  593. width: 400%;
  594. height: 1800px;
  595. background: url(../images/swiper_nth1_shade.png) no-repeat center top;
  596. -moz-background-size: cover;
  597. background-size: cover;
  598. -webkit-transition: width .8s ease-in-out .3s;
  599. -moz-transition: width .8s ease-in-out .3s;
  600. -ms-transition: width .8s ease-in-out .3s;
  601. -o-transition: width .8s ease-in-out .3s;
  602. transition: width .8s ease-in-out .3s;
  603. }
  604. .video .swiper-container .nth1.active .shade {
  605. width: 100%;
  606. }
  607. .video .swiper-container .nth1 .line {
  608. position: relative;
  609. margin: 0 auto;
  610. top: -91px;
  611. width: 602px;
  612. height: 413px;
  613. z-index: 20;
  614. }
  615. .video .swiper-container .nth1 .line u {
  616. display: block;
  617. width: 0px;
  618. height: 0px;
  619. border: 1px dashed #2fb8f7;
  620. text-decoration: none;
  621. -moz-opacity: 0;
  622. opacity: 0;
  623. -webkit-transition: all .8s ease-in .7s;
  624. -moz-transition: all .8s ease-in .7s;
  625. -ms-transition: all .8s ease-in .7s;
  626. -o-transition: all .8s ease-in .7s;
  627. transition: all .8s ease-in .7s;
  628. }
  629. .video .swiper-container .nth1.active .line u {
  630. width: 600px;
  631. height: 411px;
  632. -moz-opacity: 1;
  633. opacity: 1;
  634. }
  635. .video .swiper-container .nth2 {
  636. background: url(../images/wallpaper1_2.jpg) 50% 20%;
  637. -moz-background-size: cover;
  638. background-size: cover;
  639. }
  640. .video .swiper-container .nth2 .box {
  641. position: absolute;
  642. left: -350px;
  643. text-align: right;
  644. -webkit-transition: left .6s ease-in-out 0s;
  645. -moz-transition: left .6s ease-in-out 0s;
  646. -ms-transition: left .6s ease-in-out 0s;
  647. -o-transition: left .6s ease-in-out 0s;
  648. transition: left .6s ease-in-out 0s;
  649. z-index: 10;
  650. }
  651. .video .swiper-container .nth2 .box span {
  652. font-size: 36px;
  653. color: White;
  654. }
  655. .video .swiper-container .nth2 .box i {
  656. display: block;
  657. width: 320px;
  658. height: 65px;
  659. margin: 10px 0px 8px 0px;
  660. background: url(../images/words.png) no-repeat 0px -72px;
  661. }
  662. .video .swiper-container .nth2 .box p {
  663. margin: 0px;
  664. font-size: 16px;
  665. line-height: 25px;
  666. color: #ccc;
  667. }
  668. .video .swiper-container .nth2 .shade {
  669. width: 100%;
  670. height: 2000px;
  671. background: #0b151a;
  672. -moz-opacity: 0;
  673. opacity: 0;
  674. filter: alpha(opacity=0);
  675. -webkit-transition: all .5s ease-in-out 0s;
  676. -moz-transition: all .5s ease-in-out 0s;
  677. -ms-transition: all .5s ease-in-out 0s;
  678. -o-transition: all .5s ease-in-out 0s;
  679. transition: all .5s ease-in-out 0s;
  680. }
  681. .video .swiper-container .nth2.active .shade {
  682. width: 50%;
  683. -moz-opacity: 0.75;
  684. opacity: 0.75;
  685. filter: alpha(opacity=75);
  686. }
  687. .video .swiper-container .nth3 {
  688. background: url(../images/wallpaper1_3.jpg) 50% center;
  689. -moz-background-size: cover;
  690. background-size: cover;
  691. }
  692. .video .swiper-container .nth3 .box {
  693. position: relative;
  694. width: 100%;
  695. }
  696. .video .swiper-container .nth3 .box .top {
  697. font-size: 80px;
  698. color: White;
  699. text-align: center;
  700. -moz-opacity: 0;
  701. opacity: 0;
  702. -webkit-transition: all .5s ease-in-out 0s;
  703. -moz-transition: all .5s ease-in-out 0s;
  704. -ms-transition: all .5s ease-in-out 0s;
  705. -o-transition: all .5s ease-in-out 0s;
  706. transition: all .5s ease-in-out 0s;
  707. z-index: 10;
  708. }
  709. .video .swiper-container .nth3.active .box .top {
  710. font-size: 36px;
  711. -moz-opacity: 1;
  712. opacity: 1;
  713. }
  714. .video .swiper-container .nth3 .box .mid {
  715. width: 358px;
  716. height: 66px;
  717. margin: 0 auto;
  718. margin-top: 20px;
  719. margin-bottom: 10px;
  720. background: url(../images/words.png) no-repeat 0px -219px;
  721. -moz-opacity: 0;
  722. opacity: 0;
  723. -webkit-transition: all .3s ease-in-out 0s;
  724. -moz-transition: all .3s ease-in-out 0s;
  725. -ms-transition: all .3s ease-in-out 0s;
  726. -o-transition: all .3s ease-in-out 0s;
  727. transition: all .3s ease-in-out 0s;
  728. }
  729. .video .swiper-container .nth3.active .box .mid {
  730. -moz-opacity: 1;
  731. opacity: 1;
  732. }
  733. .video .swiper-container .nth3 .box .bottom {
  734. width: 100%;
  735. color: #ccc;
  736. font-size: 16px;
  737. line-height: 30px;
  738. text-align: center;
  739. -moz-opacity: 0;
  740. opacity: 0;
  741. -webkit-transition: all .6s ease-in-out .3s;
  742. -moz-transition: all .6s ease-in-out .3s;
  743. -ms-transition: all .6s ease-in-out .3s;
  744. -o-transition: all .6s ease-in-out .3s;
  745. transition: all .6s ease-in-out .3s;
  746. z-index: 10;
  747. }
  748. .video .swiper-container .nth3.active .box .bottom {
  749. -moz-opacity: 1;
  750. opacity: 1;
  751. }
  752. .video .swiper-container .nth4 {
  753. background: url(../images/wallpaper1_4.jpg) 50% top;
  754. -moz-background-size: cover;
  755. background-size: cover;
  756. }
  757. .video .swiper-container .nth4 .box {
  758. position: relative;
  759. width: 100%;
  760. }
  761. .video .swiper-container .nth4 .box .top {
  762. position: relative;
  763. top: -100px;
  764. width: 100%;
  765. text-align: center;
  766. -moz-opacity: 0;
  767. opacity: 0;
  768. -webkit-transition: all .3s linear 0s;
  769. -moz-transition: all .3s linear 0s;
  770. -ms-transition: all .3s linear 0s;
  771. -o-transition: all .3s linear 0s;
  772. transition: all .3s linear 0s;
  773. z-index: 10;
  774. }
  775. .video .swiper-container .nth4.active .box .top {
  776. top: 0px;
  777. -moz-opacity: 1;
  778. opacity: 1;
  779. }
  780. .video .swiper-container .nth4 .box .top span {
  781. font-size: 36px;
  782. color: White;
  783. }
  784. .video .swiper-container .nth4 .box .top i {
  785. display: block;
  786. width: 242px;
  787. height: 64px;
  788. margin: 0 auto;
  789. margin-top: 15px;
  790. background: url(../images/words.png) no-repeat 0px -147px;
  791. }
  792. .video .swiper-container .nth4 .box .bottom {
  793. position: relative;
  794. top: 100px;
  795. width: 100%;
  796. margin-top: 15px;
  797. font-size: 16px;
  798. line-height: 25px;
  799. color: #ccc;
  800. text-align: center;
  801. -moz-opacity: 0;
  802. opacity: 0;
  803. -webkit-transition: all .5s linear 0s;
  804. -moz-transition: all .5s linear 0s;
  805. -ms-transition: all .5s linear 0s;
  806. -o-transition: all .5s linear 0s;
  807. transition: all .5s linear 0s;
  808. z-index: 10;
  809. }
  810. .video .swiper-container .nth4.active .box .bottom {
  811. top: 0px;
  812. -moz-opacity: 1;
  813. opacity: 1;
  814. }
  815. .video .swiper-container .nth4 .box .bottom u {
  816. margin: 0 5px;
  817. color: #2fb8f7;
  818. text-decoration: none;
  819. }
  820. .video .innerBox {
  821. position: absolute;
  822. bottom: 40px;
  823. width: 100%;
  824. z-index: 10;
  825. }
  826. .video .innerBox .news {
  827. margin: 0 auto;
  828. margin-bottom: 30px;
  829. width: 400px;
  830. }
  831. .video .innerBox .news span {
  832. float: left;
  833. margin: 1px 15px 0px 0px;
  834. color: #2fb8f7;
  835. font-weight: bold;
  836. }
  837. .video .innerBox .news ul {
  838. float: left;
  839. }
  840. .video .innerBox .news ul li a {
  841. color: #ddd;
  842. }
  843. .video .innerBox .news a.more {
  844. float: right;
  845. color: #2fb8f7;
  846. margin-top: -3px;
  847. text-decoration: none;
  848. border-bottom: 1px dotted #2fb8f7;
  849. -webkit-transition: color .3s ease-in-out 0s;
  850. -moz-transition: color .3s ease-in-out 0s;
  851. -ms-transition: color .3s ease-in-out 0s;
  852. -o-transition: color .3s ease-in-out 0s;
  853. transition: color .3s ease-in-out 0s;
  854. }
  855. .video .innerBox .news a.more:hover {
  856. color: White;
  857. text-decoration: none;
  858. -webkit-transition: color .3s ease-in-out 0s;
  859. -moz-transition: color .3s ease-in-out 0s;
  860. -ms-transition: color .3s ease-in-out 0s;
  861. -o-transition: color .3s ease-in-out 0s;
  862. transition: color .3s ease-in-out 0s;
  863. }
  864. .video .innerBox .guide {
  865. margin: 0 auto;
  866. margin-bottom: 80px;
  867. width: 200px;
  868. }
  869. .video .innerBox .guide a {
  870. display: block;
  871. float: left;
  872. margin: 0 5px;
  873. width: 40px;
  874. height: 3px;
  875. font-size: 3px;
  876. background: White;
  877. cursor: pointer;
  878. }
  879. .video .innerBox .guide a.active {
  880. background: #2fb8f7;
  881. }
  882. .video .innerBox a.movedown {
  883. display: block;
  884. margin: 0 auto;
  885. width: 47px;
  886. height: 47px;
  887. background: url(../images/icons.png) no-repeat 0px -60px;
  888. cursor: pointer;
  889. z-index: 99;
  890. }
  891. .video .innerBox a.movedown:hover {
  892. background: url(../images/icons.png) no-repeat 0px -112px;
  893. }
  894. section.business {
  895. background: url(../images/wallpaper2.jpg) 50% bottom;
  896. }
  897. .business .box {
  898. position: relative;
  899. margin-top: -55px;
  900. -webkit-transition: all .3s ease-in-out 0s;
  901. -moz-transition: all .3s ease-in-out 0s;
  902. -ms-transition: all .3s ease-in-out 0s;
  903. -o-transition: all .3s ease-in-out 0s;
  904. transition: all .3s ease-in-out 0s;
  905. }
  906. .business .box .caption {
  907. width: 100%;
  908. text-align: center;
  909. -moz-opacity: 0;
  910. opacity: 0;
  911. -webkit-transition: all .5s ease-in-out 0s;
  912. -moz-transition: all .5s ease-in-out 0s;
  913. -ms-transition: all .5s ease-in-out 0s;
  914. -o-transition: all .5s ease-in-out 0s;
  915. transition: all .5s ease-in-out 0s;
  916. }
  917. .business.active .box .caption {
  918. -moz-opacity: 1;
  919. opacity: 1;
  920. }
  921. .business .box .caption i {
  922. display: block;
  923. margin: 0 auto;
  924. margin-bottom: 20px;
  925. width: 320px;
  926. height: 31px;
  927. background: url(../images/words.png) no-repeat 0px -294px;
  928. }
  929. .business .box .caption span {
  930. font-size: 24px;
  931. letter-spacing: 3px;
  932. }
  933. .business .box ul.items {
  934. margin: 0 auto;
  935. margin-top: 60px;
  936. }
  937. .business .box ul.items li {
  938. width: 200px;
  939. height: 300px;
  940. margin: 0 8px;
  941. background: url(../images/bg_green.png) no-repeat 0px 400px;
  942. overflow: hidden;
  943. }
  944. .business .box ul.items li i {
  945. display: block;
  946. position: relative;
  947. margin: 0 auto;
  948. margin-top: 43px;
  949. height: 69px;
  950. }
  951. .business .box ul.items li.pc i {
  952. width: 69px;
  953. background: url(../images/words.png) no-repeat -245px -357px;
  954. }
  955. .business .box ul.items li.mobi i {
  956. width: 64px;
  957. background: url(../images/words.png) no-repeat -416px -291px;
  958. }
  959. .business .box ul.items li.sys i {
  960. width: 76px;
  961. background: url(../images/words.png) no-repeat -415px -362px;
  962. }
  963. .business .box ul.items li.app i {
  964. width: 74px;
  965. background: url(../images/words.png) no-repeat -244px -439px;
  966. }
  967. .business .box ul.items li.host i {
  968. width: 79px;
  969. background: url(../images/words.png) no-repeat -420px -439px;
  970. }
  971. .business .box ul.items li u {
  972. display: block;
  973. position: absolute;
  974. width: 156px;
  975. height: 156px;
  976. margin-left: 22px;
  977. background: url(../images/words.png) no-repeat 0px -363px;
  978. -webkit-transition: all .5s ease-in-out 0s;
  979. -moz-transition: all .5s ease-in-out 0s;
  980. -ms-transition: all .5s ease-in-out 0s;
  981. -o-transition: all .5s ease-in-out 0s;
  982. transition: all .5s ease-in-out 0s;
  983. }
  984. .business .box ul.items li u.cl {
  985. clip: rect(0px,156px,-10px,78px);
  986. }
  987. .business.active .box ul.items li u.cl {
  988. clip: rect(0px,156px,156px,78px);
  989. }
  990. .business .box ul.items li u.cr {
  991. clip: rect(156px,78px,156px,0px);
  992. }
  993. .business.active .box ul.items li u.cr {
  994. clip: rect(0px,78px,156px,0px);
  995. }
  996. .business .box ul.items li strong {
  997. display: block;
  998. margin-top: 70px;
  999. font-size: 16px;
  1000. font-weight: normal;
  1001. text-align: center;
  1002. }
  1003. .business .box ul.items li p {
  1004. position: relative;
  1005. top: 200px;
  1006. color: White;
  1007. font-family:Verdana,"微软雅黑";
  1008. font-size: 12px;
  1009. line-height: 20px;
  1010. text-align: center;
  1011. }
  1012. .business .box ul.items li:hover {
  1013. background-position: 0px 0px;
  1014. -webkit-transition: all .5s ease-in-out .3s;
  1015. -moz-transition: all .5s ease-in-out .3s;
  1016. -ms-transition: all .5s ease-in-out .3s;
  1017. -o-transition: all .5s ease-in-out .3s;
  1018. transition: all .5s ease-in-out .3s;
  1019. }
  1020. .business .box ul.items li:hover i {
  1021. -webkit-transition: all .5s ease-in-out .4s;
  1022. -moz-transition: all .5s ease-in-out .4s;
  1023. -ms-transition: all .5s ease-in-out .4s;
  1024. -o-transition: all .5s ease-in-out .4s;
  1025. transition: all .5s ease-in-out .4s;
  1026. }
  1027. .business .box ul.items li.pc:hover i {
  1028. background: url(../images/words.png) no-repeat -168px -357px;
  1029. }
  1030. .business .box ul.items li.mobi:hover i {
  1031. background: url(../images/words.png) no-repeat -337px -291px;
  1032. }
  1033. .business .box ul.items li.sys:hover i {
  1034. background: url(../images/words.png) no-repeat -327px -362px;
  1035. }
  1036. .business .box ul.items li.app:hover i {
  1037. background: url(../images/words.png) no-repeat -164px -439px;
  1038. }
  1039. .business .box ul.items li.host:hover i {
  1040. background: url(../images/words.png) no-repeat -335px -439px;
  1041. }
  1042. .business .box ul.items li:hover u.cl {
  1043. clip: rect(0px,156px,-10px,78px);
  1044. }
  1045. .business .box ul.items li:hover u.cr {
  1046. clip: rect(156px,78px,156px,0px);
  1047. }
  1048. .business .box ul.items li:hover strong {
  1049. color: White;
  1050. -webkit-transition-delay: .4s;
  1051. -moz-transition-delay: .4s;
  1052. -ms-transition-delay: .4s;
  1053. -o-transition-delay: .4s;
  1054. transition-delay: .4s;
  1055. }
  1056. .business .box ul.items li:hover p {
  1057. top: 20px;
  1058. -webkit-transition: all .3s ease-in-out .5s;
  1059. -moz-transition: all .3s ease-in-out .5s;
  1060. -ms-transition: all .3s ease-in-out .5s;
  1061. -o-transition: all .3s ease-in-out .5s;
  1062. transition: all .3s ease-in-out .5s;
  1063. }
  1064. .business .box label {
  1065. display: block;
  1066. margin: 0 auto;
  1067. margin-top: 40px;
  1068. width: 297px;
  1069. height: 21px;
  1070. background: url(../images/words.png) no-repeat 0px -333px;
  1071. }
  1072. section.cases {
  1073. background: url(../images/wallpaper3.jpg);
  1074. }
  1075. .cases .box {
  1076. position: relative;
  1077. -webkit-transition: all .3s ease-in-out 0s;
  1078. -moz-transition: all .3s ease-in-out 0s;
  1079. -ms-transition: all .3s ease-in-out 0s;
  1080. -o-transition: all .3s ease-in-out 0s;
  1081. transition: all .3s ease-in-out 0s;
  1082. }
  1083. .cases .box .caption {
  1084. width: 100%;
  1085. text-align: center;
  1086. -moz-opacity: 0;
  1087. opacity: 0;
  1088. -webkit-transition: all .5s ease-in-out 0s;
  1089. -moz-transition: all .5s ease-in-out 0s;
  1090. -ms-transition: all .5s ease-in-out 0s;
  1091. -o-transition: all .5s ease-in-out 0s;
  1092. transition: all .5s ease-in-out 0s;
  1093. }
  1094. .cases.active .box .caption {
  1095. -moz-opacity: 1;
  1096. opacity: 1;
  1097. }
  1098. .cases .box .caption i {
  1099. display: block;
  1100. margin: 0 auto;
  1101. margin-bottom: 20px;
  1102. width: 110px;
  1103. height: 37px;
  1104. background: url(../images/words.png) no-repeat 0px -528px;
  1105. }
  1106. .cases .box .caption span {
  1107. font-size: 24px;
  1108. letter-spacing: 3px;
  1109. padding-left: 10px;
  1110. }
  1111. .cases .box .swiper-container.items {
  1112. position: relative;
  1113. margin: 0 auto;
  1114. margin-top: 60px;
  1115. top: 700px;
  1116. width: 1080px;
  1117. -webkit-transition: all .8s ease-in-out 0s;
  1118. -moz-transition: all .8s ease-in-out 0s;
  1119. -ms-transition: all .8s ease-in-out 0s;
  1120. -o-transition: all .8s ease-in-out 0s;
  1121. transition: all .8s ease-in-out 0s;
  1122. }
  1123. .cases.active .box .swiper-container.items {
  1124. top: 0px;
  1125. }
  1126. .cases .box .swiper-container.items .swiper-slide {
  1127. width: 340px;
  1128. margin: 0 10px;
  1129. border-bottom: 2px solid #2fb8f7;
  1130. cursor: pointer;
  1131. }
  1132. .cases .box .swiper-container.items .swiper-slide img {
  1133. width: 340px;
  1134. height: 200px;
  1135. }
  1136. .cases .box .swiper-container.items .swiper-slide .shade {
  1137. position: absolute;
  1138. width: 340px;
  1139. height: 200px;
  1140. margin-top: -200px;
  1141. background: Black;
  1142. -moz-opacity: 0.7;
  1143. opacity: 0.7;
  1144. filter: alpha(opacity=70);
  1145. -webkit-transition: all .3s ease-in-out 0s;
  1146. -moz-transition: all .3s ease-in-out 0s;
  1147. -ms-transition: all .3s ease-in-out 0s;
  1148. -o-transition: all .3s ease-in-out 0s;
  1149. transition: all .3s ease-in-out 0s;
  1150. z-index: 10;
  1151. }
  1152. .cases .box .swiper-container.items .swiper-slide .shade u {
  1153. display: block;
  1154. margin: 0 auto;
  1155. margin-top: 78px;
  1156. width: 44px;
  1157. height: 44px;
  1158. background: url(../images/icons.png) no-repeat 0px -168px;
  1159. }
  1160. .cases .box .swiper-container.items .swiper-slide p {
  1161. position: absolute;
  1162. margin: 10px 20px;
  1163. color: #999;
  1164. font-family: Arial,"宋体";
  1165. font-size: 12px;
  1166. line-height: 26px;
  1167. -webkit-transition: all .3s ease-in-out 0s;
  1168. -moz-transition: all .3s ease-in-out 0s;
  1169. -ms-transition: all .3s ease-in-out 0s;
  1170. -o-transition: all .3s ease-in-out 0s;
  1171. transition: all .3s ease-in-out 0s;
  1172. z-index: 10;
  1173. }
  1174. .cases .box .swiper-container.items .swiper-slide p strong {
  1175. color: #222;
  1176. font-family: Arial,"微软雅黑";
  1177. font-size: 16px;
  1178. font-weight: normal;
  1179. -webkit-transition: all .3s ease-in-out 0s;
  1180. -moz-transition: all .3s ease-in-out 0s;
  1181. -ms-transition: all .3s ease-in-out 0s;
  1182. -o-transition: all .3s ease-in-out 0s;
  1183. transition: all .3s ease-in-out 0s;
  1184. }
  1185. .cases .box .swiper-container.items .swiper-slide .bg {
  1186. width: 340px;
  1187. height: 100px;
  1188. background-color: #fff;
  1189. -moz-opacity: 0.5;
  1190. opacity: 0.5;
  1191. filter: alpha(opacity=50);
  1192. -webkit-transition: all .3s ease-in-out 0s;
  1193. -moz-transition: all .3s ease-in-out 0s;
  1194. -ms-transition: all .3s ease-in-out 0s;
  1195. -o-transition: all .3s ease-in-out 0s;
  1196. transition: all .3s ease-in-out 0s;
  1197. }
  1198. .cases .box .swiper-container.items .swiper-slide .bg u {
  1199. display: block;
  1200. position: absolute;
  1201. width: 340px;
  1202. height: 100px;
  1203. margin-top: 150px;
  1204. background-color: #2fb8f7;
  1205. -webkit-transition: all .3s ease-in-out 0s;
  1206. -moz-transition: all .3s ease-in-out 0s;
  1207. -ms-transition: all .3s ease-in-out 0s;
  1208. -o-transition: all .3s ease-in-out 0s;
  1209. transition: all .3s ease-in-out 0s;
  1210. }
  1211. .cases .box .swiper-container.items .swiper-slide:hover .shade {
  1212. margin-top: 0px;
  1213. -webkit-transition: all .3s ease-in-out 0s;
  1214. -moz-transition: all .3s ease-in-out 0s;
  1215. -ms-transition: all .3s ease-in-out 0s;
  1216. -o-transition: all .3s ease-in-out 0s;
  1217. transition: all .3s ease-in-out 0s;
  1218. }
  1219. .cases .box .swiper-container.items .swiper-slide:hover .bg {
  1220. -moz-opacity: 1;
  1221. opacity: 1;
  1222. filter: alpha(opacity=100);
  1223. -webkit-transition: all .3s ease-in-out 0s;
  1224. -moz-transition: all .3s ease-in-out 0s;
  1225. -ms-transition: all .3s ease-in-out 0s;
  1226. -o-transition: all .3s ease-in-out 0s;
  1227. transition: all .3s ease-in-out 0s;
  1228. }
  1229. .cases .box .swiper-container.items .swiper-slide:hover .bg u {
  1230. margin-top: 0px;
  1231. -webkit-transition: all .3s ease-in-out 0s;
  1232. -moz-transition: all .3s ease-in-out 0s;
  1233. -ms-transition: all .3s ease-in-out 0s;
  1234. -o-transition: all .3s ease-in-out 0s;
  1235. transition: all .3s ease-in-out 0s;
  1236. }
  1237. .cases .box .swiper-container.items .swiper-slide:hover p {
  1238. color: White;
  1239. -webkit-transition: all .3s ease-in-out 0s;
  1240. -moz-transition: all .3s ease-in-out 0s;
  1241. -ms-transition: all .3s ease-in-out 0s;
  1242. -o-transition: all .3s ease-in-out 0s;
  1243. transition: all .3s ease-in-out 0s;
  1244. }
  1245. .cases .box .swiper-container.items .swiper-slide:hover p strong {
  1246. color: White;
  1247. -webkit-transition: all .3s ease-in-out 0s;
  1248. -moz-transition: all .3s ease-in-out 0s;
  1249. -ms-transition: all .3s ease-in-out 0s;
  1250. -o-transition: all .3s ease-in-out 0s;
  1251. transition: all .3s ease-in-out 0s;
  1252. }
  1253. .cases .box .swiper-container.mini,.cases .box .swiper-container.xs,.cases .box a.prev,.cases .box a.next {
  1254. display: none;
  1255. }
  1256. .cases .box a.more {
  1257. display: block;
  1258. position: relative;
  1259. margin: 0 auto;
  1260. margin-top: 50px;
  1261. top: 700px;
  1262. width: 120px;
  1263. padding: 5px 0px;
  1264. color: #2fb8f7;
  1265. font-size: 26px;
  1266. text-align: center;
  1267. text-decoration: none;
  1268. border: 1px dotted #2fb8f7;
  1269. -webkit-transition: all .3s ease-in-out 0s,top .8s ease-in-out 0s;
  1270. -moz-transition: all .3s ease-in-out 0s,top .8s ease-in-out 0s;
  1271. -ms-transition: all .3s ease-in-out 0s,top .8s ease-in-out 0s;
  1272. -o-transition: all .3s ease-in-out 0s,top .8s ease-in-out 0s;
  1273. transition: all .3s ease-in-out 0s,top .8s ease-in-out 0s;
  1274. }
  1275. .cases.active .box a.more {
  1276. top: 0px;
  1277. }
  1278. .cases .box a.more:hover {
  1279. color: White;
  1280. background: #2fb8f7;
  1281. }
  1282. section.clients {
  1283. background: url(../images/wallpaper4.jpg) 50% 90%;
  1284. }
  1285. .clients .box {
  1286. position: relative;
  1287. -webkit-transition: all .3s ease-in-out 0s;
  1288. -moz-transition: all .3s ease-in-out 0s;
  1289. -ms-transition: all .3s ease-in-out 0s;
  1290. -o-transition: all .3s ease-in-out 0s;
  1291. transition: all .3s ease-in-out 0s;
  1292. }
  1293. .clients .box .caption {
  1294. width: 100%;
  1295. text-align: center;
  1296. -moz-opacity: 0;
  1297. opacity: 0;
  1298. -webkit-transition: all .5s ease-in-out 0s;
  1299. -moz-transition: all .5s ease-in-out 0s;
  1300. -ms-transition: all .5s ease-in-out 0s;
  1301. -o-transition: all .5s ease-in-out 0s;
  1302. transition: all .5s ease-in-out 0s;
  1303. }
  1304. .clients.active .box .caption {
  1305. -moz-opacity: 1;
  1306. opacity: 1;
  1307. }
  1308. .clients .box .caption i {
  1309. display: block;
  1310. margin: 0 auto;
  1311. margin-bottom: 20px;
  1312. width: 375px;
  1313. height: 37px;
  1314. background: url(../images/words.png) no-repeat -119px -528px;
  1315. }
  1316. .clients .box .caption span {
  1317. font-size: 24px;
  1318. padding-left: 10px;
  1319. }
  1320. .clients .box ul.items {
  1321. margin: 0 auto;
  1322. margin-top: 45px;
  1323. width: 1155px;
  1324. height: 450px;
  1325. font-size: 0;
  1326. overflow: hidden;
  1327. }
  1328. .clients .box ul.items li {
  1329. position: relative;
  1330. padding: 0;
  1331. width: 230px;
  1332. height: 150px;
  1333. overflow: hidden;
  1334. z-index: 10;
  1335. }
  1336. .clients .box ul.items li.cctv {
  1337. top: 600px;
  1338. background: url(../images/clients.png) no-repeat;
  1339. -webkit-transition: all .8s ease-in-out 0s;
  1340. -moz-transition: all .8s ease-in-out 0s;
  1341. -ms-transition: all .8s ease-in-out 0s;
  1342. -o-transition: all .8s ease-in-out 0s;
  1343. transition: all .8s ease-in-out 0s;
  1344. }
  1345. .clients .box ul.items li.cctv.active {
  1346. background: url(../images/clients.png) no-repeat 0px -150px;
  1347. }
  1348. .clients.active .box ul.items li.cctv {
  1349. top: 0px;
  1350. }
  1351. .clients .box ul.items li.unicom {
  1352. top: -400px;
  1353. background: url(../images/clients.png) no-repeat -230px 0px;
  1354. -webkit-transition: all .8s ease-in-out 0s;
  1355. -moz-transition: all .8s ease-in-out 0s;
  1356. -ms-transition: all .8s ease-in-out 0s;
  1357. -o-transition: all .8s ease-in-out 0s;
  1358. transition: all .8s ease-in-out 0s;
  1359. }
  1360. .clients .box ul.items li.unicom.active {
  1361. background: url(../images/clients.png) no-repeat -230px -150px;
  1362. }
  1363. .clients.active .box ul.items li.unicom {
  1364. top: 0px;
  1365. }
  1366. .clients .box ul.items li.tsinghua {
  1367. top: 600px;
  1368. background: url(../images/clients.png) no-repeat -460px 0px;
  1369. -webkit-transition: all .8s ease-in-out 0s;
  1370. -moz-transition: all .8s ease-in-out 0s;
  1371. -ms-transition: all .8s ease-in-out 0s;
  1372. -o-transition: all .8s ease-in-out 0s;
  1373. transition: all .8s ease-in-out 0s;
  1374. }
  1375. .clients .box ul.items li.tsinghua.active {
  1376. background: url(../images/clients.png) no-repeat -460px -150px;
  1377. }
  1378. .clients.active .box ul.items li.tsinghua {
  1379. top: 0px;
  1380. }
  1381. .clients .box ul.items li.cas {
  1382. top: -400px;
  1383. background: url(../images/clients.png) no-repeat -690px 0px;
  1384. -webkit-transition: all .8s ease-in-out 0s;
  1385. -moz-transition: all .8s ease-in-out 0s;
  1386. -ms-transition: all .8s ease-in-out 0s;
  1387. -o-transition: all .8s ease-in-out 0s;
  1388. transition: all .8s ease-in-out 0s;
  1389. }
  1390. .clients .box ul.items li.cas.active {
  1391. background: url(../images/clients.png) no-repeat -690px -150px;
  1392. }
  1393. .clients.active .box ul.items li.cas {
  1394. top: 0px;
  1395. }
  1396. .clients .box ul.items li.sipo {
  1397. top: 600px;
  1398. background: url(../images/clients.png) no-repeat -920px 0px;
  1399. -webkit-transition: all .8s ease-in-out 0s;
  1400. -moz-transition: all .8s ease-in-out 0s;
  1401. -ms-transition: all .8s ease-in-out 0s;
  1402. -o-transition: all .8s ease-in-out 0s;
  1403. transition: all .8s ease-in-out 0s;
  1404. }
  1405. .clients .box ul.items li.sipo.active {
  1406. background: url(../images/clients.png) no-repeat -920px -150px;
  1407. }
  1408. .clients.active .box ul.items li.sipo {
  1409. top: 0px;
  1410. }
  1411. .clients .box ul.items li.apple {
  1412. top: 450px;
  1413. background: url(../images/clients.png) no-repeat -1150px 0px;
  1414. -webkit-transition: all .8s ease-in-out 0s;
  1415. -moz-transition: all .8s ease-in-out 0s;
  1416. -ms-transition: all .8s ease-in-out 0s;
  1417. -o-transition: all .8s ease-in-out 0s;
  1418. transition: all .8s ease-in-out 0s;
  1419. }
  1420. .clients .box ul.items li.apple.active {
  1421. background: url(../images/clients.png) no-repeat -1150px -150px;
  1422. }
  1423. .clients.active .box ul.items li.apple {
  1424. top: 0px;
  1425. }
  1426. .clients .box ul.items li.das {
  1427. top: -550px;
  1428. background: url(../images/clients.png) no-repeat -1380px 0px;
  1429. -webkit-transition: all .8s ease-in-out 0s;
  1430. -moz-transition: all .8s ease-in-out 0s;
  1431. -ms-transition: all .8s ease-in-out 0s;
  1432. -o-transition: all .8s ease-in-out 0s;
  1433. transition: all .8s ease-in-out 0s;
  1434. }
  1435. .clients .box ul.items li.das.active {
  1436. background: url(../images/clients.png) no-repeat -1380px -150px;
  1437. }
  1438. .clients.active .box ul.items li.das {
  1439. top: 0px;
  1440. }
  1441. .clients .box ul.items li.hunantv {
  1442. top: 450px;
  1443. background: url(../images/clients.png) no-repeat -1610px 0px;
  1444. -webkit-transition: all .8s ease-in-out 0s;
  1445. -moz-transition: all .8s ease-in-out 0s;
  1446. -ms-transition: all .8s ease-in-out 0s;
  1447. -o-transition: all .8s ease-in-out 0s;
  1448. transition: all .8s ease-in-out 0s;
  1449. }
  1450. .clients .box ul.items li.hunantv.active {
  1451. background: url(../images/clients.png) no-repeat -1610px -150px;
  1452. }
  1453. .clients.active .box ul.items li.hunantv {
  1454. top: 0px;
  1455. }
  1456. .clients .box ul.items li.sino {
  1457. top: -550px;
  1458. background: url(../images/clients.png) no-repeat -1840px 0px;
  1459. -webkit-transition: all .8s ease-in-out 0s;
  1460. -moz-transition: all .8s ease-in-out 0s;
  1461. -ms-transition: all .8s ease-in-out 0s;
  1462. -o-transition: all .8s ease-in-out 0s;
  1463. transition: all .8s ease-in-out 0s;
  1464. }
  1465. .clients .box ul.items li.sino.active {
  1466. background: url(../images/clients.png) no-repeat -1840px -150px;
  1467. }
  1468. .clients.active .box ul.items li.sino {
  1469. top: 0px;
  1470. }
  1471. .clients .box ul.items li.report {
  1472. top: 450px;
  1473. background: url(../images/clients.png) no-repeat -2070px 0px;
  1474. -webkit-transition: all .8s ease-in-out 0s;
  1475. -moz-transition: all .8s ease-in-out 0s;
  1476. -ms-transition: all .8s ease-in-out 0s;
  1477. -o-transition: all .8s ease-in-out 0s;
  1478. transition: all .8s ease-in-out 0s;
  1479. }
  1480. .clients .box ul.items li.report.active {
  1481. background: url(../images/clients.png) no-repeat -2070px -150px;
  1482. }
  1483. .clients.active .box ul.items li.report {
  1484. top: 0px;
  1485. }
  1486. .clients .box ul.items li.gedu {
  1487. top: 300px;
  1488. background: url(../images/clients.png) no-repeat -2300px 0px;
  1489. -webkit-transition: all .8s ease-in-out 0s;
  1490. -moz-transition: all .8s ease-in-out 0s;
  1491. -ms-transition: all .8s ease-in-out 0s;
  1492. -o-transition: all .8s ease-in-out 0s;
  1493. transition: all .8s ease-in-out 0s;
  1494. }
  1495. .clients .box ul.items li.gedu.active {
  1496. background: url(../images/clients.png) no-repeat -2300px -150px;
  1497. }
  1498. .clients.active .box ul.items li.gedu {
  1499. top: 0px;
  1500. }
  1501. .clients .box ul.items li.bgg {
  1502. top: -700px;
  1503. background: url(../images/clients.png) no-repeat -2530px 0px;
  1504. -webkit-transition: all .8s ease-in-out 0s;
  1505. -moz-transition: all .8s ease-in-out 0s;
  1506. -ms-transition: all .8s ease-in-out 0s;
  1507. -o-transition: all .8s ease-in-out 0s;
  1508. transition: all .8s ease-in-out 0s;
  1509. }
  1510. .clients .box ul.items li.bgg.active {
  1511. background: url(../images/clients.png) no-repeat -2530px -150px;
  1512. }
  1513. .clients.active .box ul.items li.bgg {
  1514. top: 0px;
  1515. }
  1516. .clients .box ul.items li.bsec {
  1517. top: 300px;
  1518. background: url(../images/clients.png) no-repeat -2760px 0px;
  1519. -webkit-transition: all .8s ease-in-out 0s;
  1520. -moz-transition: all .8s ease-in-out 0s;
  1521. -ms-transition: all .8s ease-in-out 0s;
  1522. -o-transition: all .8s ease-in-out 0s;
  1523. transition: all .8s ease-in-out 0s;
  1524. }
  1525. .clients .box ul.items li.bsec.active {
  1526. background: url(../images/clients.png) no-repeat -2760px -150px;
  1527. }
  1528. .clients.active .box ul.items li.bsec {
  1529. top: 0px;
  1530. }
  1531. .clients .box ul.items li.huadan {
  1532. top: -700px;
  1533. background: url(../images/clients.png) no-repeat -2990px 0px;
  1534. -webkit-transition: all .8s ease-in-out 0s;
  1535. -moz-transition: all .8s ease-in-out 0s;
  1536. -ms-transition: all .8s ease-in-out 0s;
  1537. -o-transition: all .8s ease-in-out 0s;
  1538. transition: all .8s ease-in-out 0s;
  1539. }
  1540. .clients .box ul.items li.huadan.active {
  1541. background: url(../images/clients.png) no-repeat -2990px -150px;
  1542. }
  1543. .clients.active .box ul.items li.huadan {
  1544. top: 0px;
  1545. }
  1546. .clients .box ul.items li.zd {
  1547. top: 300px;
  1548. background: url(../images/clients.png) no-repeat -3220px 0px;
  1549. -webkit-transition: all .8s ease-in-out 0s;
  1550. -moz-transition: all .8s ease-in-out 0s;
  1551. -ms-transition: all .8s ease-in-out 0s;
  1552. -o-transition: all .8s ease-in-out 0s;
  1553. transition: all .8s ease-in-out 0s;
  1554. }
  1555. .clients .box ul.items li.zd.active {
  1556. background: url(../images/clients.png) no-repeat -3220px -150px;
  1557. }
  1558. .clients.active .box ul.items li.zd {
  1559. top: 0px;
  1560. }
  1561. .clients .box ul.items li.r {
  1562. border-right: 1px dotted #ddd;
  1563. }
  1564. .clients .box ul.items li.b {
  1565. border-bottom: 1px dotted #ddd;
  1566. }
  1567. .clients .box ul.items li span {
  1568. position: absolute;
  1569. bottom: -30px;
  1570. }
  1571. .clients .box ul.items li.bg.all {
  1572. position: absolute;
  1573. width: 1155px;
  1574. height: 450px;
  1575. background-color: White;
  1576. -moz-opacity: 0.3;
  1577. opacity: 0.3;
  1578. filter: alpha(opacity=30);
  1579. }
  1580. .clients .box ul.items li.bg.one {
  1581. position: absolute;
  1582. background: #eee;
  1583. -moz-opacity: 0.5;
  1584. opacity: 0.5;
  1585. filter: alpha(opacity=50);
  1586. -webkit-transition: all .3s ease-in-out 0s;
  1587. -moz-transition: all .3s ease-in-out 0s;
  1588. -ms-transition: all .3s ease-in-out 0s;
  1589. -o-transition: all .3s ease-in-out 0s;
  1590. transition: all .3s ease-in-out 0s;
  1591. display: none;
  1592. }
  1593. .clients .box ul.mini {
  1594. display: none;
  1595. }
  1596. section.quality {
  1597. background: url(../images/wallpaper5.jpg) 50% 10%;
  1598. }
  1599. .quality .box {
  1600. position: relative;
  1601. -webkit-transition: all .3s ease-in-out 0s;
  1602. -moz-transition: all .3s ease-in-out 0s;
  1603. -ms-transition: all .3s ease-in-out 0s;
  1604. -o-transition: all .3s ease-in-out 0s;
  1605. transition: all .3s ease-in-out 0s;
  1606. }
  1607. .quality .box .caption {
  1608. width: 100%;
  1609. text-align: center;
  1610. -moz-opacity: 0;
  1611. opacity: 0;
  1612. -webkit-transition: all .5s ease-in-out 0s;
  1613. -moz-transition: all .5s ease-in-out 0s;
  1614. -ms-transition: all .5s ease-in-out 0s;
  1615. -o-transition: all .5s ease-in-out 0s;
  1616. transition: all .5s ease-in-out 0s;
  1617. }
  1618. .quality.active .box .caption {
  1619. -moz-opacity: 1;
  1620. opacity: 1;
  1621. }
  1622. .quality .box .caption i {
  1623. display: block;
  1624. margin: 0 auto;
  1625. margin-bottom: 20px;
  1626. width: 240px;
  1627. height: 37px;
  1628. background: url(../images/words.png) no-repeat 0px -576px;
  1629. }
  1630. .quality .box .caption span {
  1631. padding-left: 5px;
  1632. color: White;
  1633. font-size: 24px;
  1634. }
  1635. .quality .box .items {
  1636. margin: 0 auto;
  1637. margin-top: 120px;
  1638. width: 960px;
  1639. }
  1640. .quality .box .swiper-slide {
  1641. position: relative;
  1642. width: 200px;
  1643. margin: 0 20px;
  1644. }
  1645. .quality .box .items .swiper-slide.nth1 {
  1646. left: -300px;
  1647. -webkit-transition: all .8s ease-in-out 0s;
  1648. -moz-transition: all .8s ease-in-out 0s;
  1649. -ms-transition: all .8s ease-in-out 0s;
  1650. -o-transition: all .8s ease-in-out 0s;
  1651. transition: all .8s ease-in-out 0s;
  1652. }
  1653. .quality.active .box .items .swiper-slide.nth1 {
  1654. left: 0px;
  1655. }
  1656. .quality .box .items .swiper-slide.nth2 {
  1657. bottom: -300px;
  1658. -webkit-transition: all .8s ease-in-out 0s;
  1659. -moz-transition: all .8s ease-in-out 0s;
  1660. -ms-transition: all .8s ease-in-out 0s;
  1661. -o-transition: all .8s ease-in-out 0s;
  1662. transition: all .8s ease-in-out 0s;
  1663. }
  1664. .quality.active .box .items .swiper-slide.nth2 {
  1665. bottom: 0px;
  1666. }
  1667. .quality .box .items .swiper-slide.nth3 {
  1668. right: -300px;
  1669. -webkit-transition: all .8s ease-in-out 0s;
  1670. -moz-transition: all .8s ease-in-out 0s;
  1671. -ms-transition: all .8s ease-in-out 0s;
  1672. -o-transition: all .8s ease-in-out 0s;
  1673. transition: all .8s ease-in-out 0s;
  1674. }
  1675. .quality.active .box .items .swiper-slide.nth3 {
  1676. right: 0px;
  1677. }
  1678. .quality .box .swiper-slide ul {
  1679. margin: 0 auto;
  1680. margin-bottom: 20px;
  1681. }
  1682. .quality .box .swiper-slide ul li {
  1683. position: relative;
  1684. margin: 0 15px;
  1685. padding: 0;
  1686. overflow: hidden;
  1687. }
  1688. .quality .box .swiper-slide ul li.mobi {
  1689. width: 60px;
  1690. height: 50px;
  1691. background: url(../images/icons.png) no-repeat 0px -264px;
  1692. }
  1693. .quality .box .swiper-slide ul li.windows {
  1694. width: 60px;
  1695. height: 50px;
  1696. background: url(../images/icons.png) no-repeat 0px -400px;
  1697. }
  1698. .quality .box .swiper-slide ul li.ie {
  1699. width: 60px;
  1700. height: 50px;
  1701. background: url(../images/icons.png) no-repeat -40px -329px;
  1702. }
  1703. .quality .box .swiper-slide ul li.wending {
  1704. width: 60px;
  1705. height: 50px;
  1706. background: url(../images/icons.png) no-repeat -50px -454px;
  1707. }
  1708. .
  1709. .quality .box .swiper-slide ul li.chrome {
  1710. width: 30px;
  1711. height: 30px;
  1712. background: url(../images/icons.png) no-repeat -71px -392px;
  1713. }
  1714. .quality .box .swiper-slide ul li.firefox {
  1715. width: 32px;
  1716. height: 30px;
  1717. background: url(../images/icons.png) no-repeat 0px -432px;
  1718. }
  1719. .quality .box .swiper-slide ul li.safari {
  1720. width: 30px;
  1721. height: 32px;
  1722. background: url(../images/icons.png) no-repeat -71px -432px;
  1723. }
  1724. .quality .box .swiper-slide ul li span {
  1725. position: absolute;
  1726. top: 30px;
  1727. }
  1728. .quality .box .swiper-slide p {
  1729. color: #e1e1e1;
  1730. text-align: center;
  1731. line-height: 36px;
  1732. }
  1733. .quality .box a.lookall {
  1734. display: block;
  1735. margin: 0 auto;
  1736. margin-top: 90px;
  1737. width: 300px;
  1738. padding: 12px 0px;
  1739. color: #00aa88;
  1740. font-size: 18px;
  1741. letter-spacing: 3px;
  1742. text-align: center;
  1743. text-decoration: none;
  1744. border: 1px solid #00aa88;
  1745. -moz-border-radius: 5px;
  1746. -webkit-border-radius: 5px;
  1747. border-radius: 5px;
  1748. -moz-opacity: 0;
  1749. opacity: 0;
  1750. -webkit-transition: all .3s ease-in-out 0s;
  1751. -moz-transition: all .3s ease-in-out 0s;
  1752. -ms-transition: all .3s ease-in-out 0s;
  1753. -o-transition: all .3s ease-in-out 0s;
  1754. transition: all .3s ease-in-out 0s;
  1755. }
  1756. .quality.active .box a.lookall {
  1757. -moz-opacity: 1;
  1758. opacity: 1;
  1759. }
  1760. .quality .box a.lookall:hover {
  1761. color: White;
  1762. background: #0f8773;
  1763. border: 1px solid #0f8773;
  1764. }
  1765. .quality .box .mini,.quality .box a.prev,.quality .box a.next {
  1766. display: none;
  1767. }
  1768. section.marketing {
  1769. background: url(../images/wallpaper6.jpg) 50% 45%;
  1770. }
  1771. .marketing .box {
  1772. position: relative;
  1773. margin-top: -80px;
  1774. -webkit-transition: all .3s ease-in-out 0s;
  1775. -moz-transition: all .3s ease-in-out 0s;
  1776. -ms-transition: all .3s ease-in-out 0s;
  1777. -o-transition: all .3s ease-in-out 0s;
  1778. transition: all .3s ease-in-out 0s;
  1779. }
  1780. .marketing .box .caption {
  1781. position: relative;
  1782. width: 100%;
  1783. text-align: center;
  1784. -moz-opacity: 0;
  1785. opacity: 0;
  1786. -webkit-transition: all .5s ease-in-out 0s;
  1787. -moz-transition: all .5s ease-in-out 0s;
  1788. -ms-transition: all .5s ease-in-out 0s;
  1789. -o-transition: all .5s ease-in-out 0s;
  1790. transition: all .5s ease-in-out 0s;
  1791. z-index: 10;
  1792. }
  1793. .marketing.active .box .caption {
  1794. -moz-opacity: 1;
  1795. opacity: 1;
  1796. }
  1797. .marketing .box .caption i {
  1798. display: block;
  1799. margin: 0 auto;
  1800. margin-bottom: 20px;
  1801. width: 240px;
  1802. height: 37px;
  1803. background: url(../images/words.png) no-repeat right -576px;
  1804. }
  1805. .marketing .box .caption span {
  1806. padding-left: 5px;
  1807. font-size: 24px;
  1808. }
  1809. .marketing .box ul.items {
  1810. margin: 0 auto;
  1811. margin-top: 30px;
  1812. position: relative;
  1813. z-index: 10;
  1814. }
  1815. .marketing .box ul.items li {
  1816. width: 128px;
  1817. height: 230px;
  1818. margin: 0 20px;
  1819. overflow: hidden;
  1820. }
  1821. .marketing .box ul.items li i {
  1822. display: block;
  1823. position: relative;
  1824. margin: 0 auto;
  1825. margin-top: 28px;
  1826. height: 70px;
  1827. }
  1828. .marketing .box ul.items li.se i {
  1829. width: 54px;
  1830. background: url(../images/words.png) no-repeat -144px -632px;
  1831. }
  1832. .marketing .box ul.items li.weixin i {
  1833. width: 74px;
  1834. background: url(../images/words.png) no-repeat -207px -630px;
  1835. }
  1836. .marketing .box ul.items li.weibo i {
  1837. width: 68px;
  1838. background: url(../images/words.png) no-repeat -288px -630px;
  1839. }
  1840. .marketing .box ul.items li.sms i {
  1841. width: 61px;
  1842. background: url(../images/words.png) no-repeat -366px -628px;
  1843. }
  1844. .marketing .box ul.items li.pay i {
  1845. width: 56px;
  1846. background: url(../images/words.png) no-repeat -438px -639px;
  1847. }
  1848. .marketing .box ul.items li.bbs i {
  1849. width: 51px;
  1850. background: url(../images/words.png) no-repeat -144px -705px;
  1851. }
  1852. .marketing .box ul.items li u {
  1853. display: block;
  1854. position: absolute;
  1855. width: 128px;
  1856. height: 128px;
  1857. background: url(../images/words.png) no-repeat 0px -624px;
  1858. -webkit-transition: all .5s ease-in-out 0s;
  1859. -moz-transition: all .5s ease-in-out 0s;
  1860. -ms-transition: all .5s ease-in-out 0s;
  1861. -o-transition: all .5s ease-in-out 0s;
  1862. transition: all .5s ease-in-out 0s;
  1863. }
  1864. .marketing .box ul.items li u.cl {
  1865. clip: rect(0px,128px,-10px,64px);
  1866. }
  1867. .marketing .box ul.items li:hover u.cl {
  1868. clip: rect(0px,128px,128px,64px);
  1869. }
  1870. .marketing .box ul.items li u.cr {
  1871. clip: rect(128px,64px,128px,0px);
  1872. }
  1873. .marketing .box ul.items li:hover u.cr {
  1874. clip: rect(0px,64px,128px,0px);
  1875. }
  1876. .marketing .box ul.items li strong {
  1877. display: block;
  1878. margin: 200px 0px 10px 0px;
  1879. font-size: 16px;
  1880. text-align: center;
  1881. -webkit-transition: all .5s ease-in-out 0s;
  1882. -moz-transition: all .5s ease-in-out 0s;
  1883. -ms-transition: all .5s ease-in-out 0s;
  1884. -o-transition: all .5s ease-in-out 0s;
  1885. transition: all .5s ease-in-out 0s;
  1886. }
  1887. .marketing.active .box ul.items li strong {
  1888. margin-top: 50px;
  1889. }
  1890. .marketing .box ul.items li p {
  1891. line-height: 20px;
  1892. text-align: center;
  1893. }
  1894. .marketing .shade {
  1895. display: none;
  1896. position: absolute;
  1897. top: 0px;
  1898. width: 100%;
  1899. background: White;
  1900. -moz-opacity: 0.4;
  1901. opacity: 0.4;
  1902. filter: alpha(opacity=40);
  1903. }
  1904. section.aboutus {
  1905. position: relative;
  1906. background: url(../images/wallpaper7.jpg) 50% 60%;
  1907. -moz-background-size: cover;
  1908. background-size: cover;
  1909. }
  1910. .aboutus ul.menu {
  1911. position: absolute;
  1912. list-style: none;
  1913. top: 150px;
  1914. left: 50px;
  1915. width: 80px;
  1916. padding: 0px;
  1917. }
  1918. .aboutus ul.menu li {
  1919. position: relative;
  1920. color: #888;
  1921. font-size: 16px;
  1922. text-align: center;
  1923. padding: 10px 0px;
  1924. cursor: pointer;
  1925. z-index: 30;
  1926. -webkit-transition: all .0s ease-in-out .2s;
  1927. -moz-transition: all .0s ease-in-out .2s;
  1928. -ms-transition: all .0s ease-in-out .2s;
  1929. -o-transition: all .0s ease-in-out .2s;
  1930. transition: all .0s ease-in-out .2s;
  1931. }
  1932. .aboutus ul.menu li.active {
  1933. color: White;
  1934. }
  1935. .aboutus ul.menu li.bg.all {
  1936. position: absolute;
  1937. padding: 0px;
  1938. top: 0px;
  1939. left: 0px;
  1940. width: 80px !important;
  1941. height: 84px !important;
  1942. background: #2fb8f7;
  1943. -moz-opacity: 0.15;
  1944. opacity: 0.15;
  1945. filter: alpha(opacity=15);
  1946. z-index: 10;
  1947. }
  1948. .aboutus ul.menu li.bg.one {
  1949. position: absolute;
  1950. top: 0px;
  1951. left: 0px;
  1952. width: 80px;
  1953. background: #2fb8f7;
  1954. -moz-opacity: 0.2;
  1955. opacity: 0.2;
  1956. filter: alpha(opacity=20);
  1957. -webkit-transition: all .3s ease-in-out 0s;
  1958. -moz-transition: all .3s ease-in-out 0s;
  1959. -ms-transition: all .3s ease-in-out 0s;
  1960. -o-transition: all .3s ease-in-out 0s;
  1961. transition: all .3s ease-in-out 0s;
  1962. z-index: 20;
  1963. }
  1964. .aboutus .items {
  1965. position: absolute;
  1966. left: -480px;
  1967. width: 480px;
  1968. height: 240px;
  1969. -moz-opacity: 0;
  1970. opacity: 0;
  1971. -webkit-transition: all .8s ease-in-out 0s;
  1972. -moz-transition: all .8s ease-in-out 0s;
  1973. -ms-transition: all .8s ease-in-out 0s;
  1974. -o-transition: all .8s ease-in-out 0s;
  1975. transition: all .8s ease-in-out 0s;
  1976. }
  1977. .aboutus.active .items {
  1978. left: 50%;
  1979. -moz-opacity: 1;
  1980. opacity: 1;
  1981. }
  1982. .aboutus .items .swiper-slide.nth1 strong {
  1983. display: block;
  1984. color: #ddd;
  1985. font-size: 40px;
  1986. font-weight: normal;
  1987. letter-spacing: 5px;
  1988. }
  1989. .aboutus .items .swiper-slide.nth1 p {
  1990. margin-top: 20px;
  1991. color: #999;
  1992. line-height: 35px;
  1993. }
  1994. .aboutus .items .swiper-slide.nth1 u {
  1995. display: block;
  1996. margin-top: 20px;
  1997. color: #999;
  1998. font-size: 24px;
  1999. text-decoration: none;
  2000. }
  2001. .aboutus .items .swiper-slide.nth2 strong {
  2002. display: block;
  2003. color: #2fb8f7;
  2004. font-size: 22px;
  2005. font-weight: normal;
  2006. text-indent: 28px;
  2007. }
  2008. .aboutus .items .swiper-slide.nth2 p {
  2009. margin-top: 20px;
  2010. color: #999;
  2011. line-height: 35px;
  2012. text-indent: 28px;
  2013. }
  2014. .aboutus .items .swiper-slide.nth3 strong {
  2015. display: block;
  2016. margin-bottom: 20px;
  2017. color: #2fb8f7;
  2018. font-size: 22px;
  2019. font-weight: normal;
  2020. }
  2021. .aboutus .items .swiper-slide.nth3 ul {
  2022. padding: 0px;
  2023. }
  2024. .aboutus .items .swiper-slide.nth3 ul li {
  2025. color: #999;
  2026. line-height: 35px;
  2027. padding-left: 30px;
  2028. list-style: none;
  2029. background: url(../images/point.png) no-repeat 0px 13px;
  2030. }
  2031. .aboutus .items .swiper-slide.nth3 ul li u {
  2032. margin: 0 15px;
  2033. text-decoration: none;
  2034. }
  2035. .aboutus table.exp {
  2036. position: absolute;
  2037. bottom: -80px;
  2038. width: 100%;
  2039. border-top: 1px solid #666;
  2040. -webkit-transition: all .5s ease-in-out 0s;
  2041. -moz-transition: all .5s ease-in-out 0s;
  2042. -ms-transition: all .5s ease-in-out 0s;
  2043. -o-transition: all .5s ease-in-out 0s;
  2044. transition: all .5s ease-in-out 0s;
  2045. z-index: 20;
  2046. }
  2047. .aboutus.active table.exp {
  2048. bottom: 0px;
  2049. }
  2050. .aboutus table.exp td {
  2051. width: 20%;
  2052. height: 70px;
  2053. color: #bbb;
  2054. text-align: center;
  2055. }
  2056. .aboutus table.exp u {
  2057. margin-right: 10px;
  2058. color: #2fb8f7;
  2059. font-family: Arial;
  2060. font-size: 26px;
  2061. text-decoration: none;
  2062. }
  2063. .aboutus .expBg {
  2064. position: absolute;
  2065. bottom: -80px;
  2066. width: 100%;
  2067. height: 70px;
  2068. background: White;
  2069. -moz-opacity: 0.2;
  2070. opacity: 0.2;
  2071. filter: alpha(opacity=20);
  2072. -webkit-transition: all .5s ease-in-out 0s;
  2073. -moz-transition: all .5s ease-in-out 0s;
  2074. -ms-transition: all .5s ease-in-out 0s;
  2075. -o-transition: all .5s ease-in-out 0s;
  2076. transition: all .5s ease-in-out 0s;
  2077. z-index: 10;
  2078. }
  2079. .aboutus.active .expBg {
  2080. bottom: 0px;
  2081. }
  2082. .aboutus .shade {
  2083. position: absolute;
  2084. width: 100%;
  2085. height: 100%;
  2086. background: Black;
  2087. -moz-opacity: 0.5;
  2088. opacity: 0.5;
  2089. -webkit-transition: all 1s ease-in-out 0s;
  2090. -moz-transition: all 1s ease-in-out 0s;
  2091. -ms-transition: all 1s ease-in-out 0s;
  2092. -o-transition: all 1s ease-in-out 0s;
  2093. transition: all 1s ease-in-out 0s;
  2094. z-index: 5;
  2095. }
  2096. .aboutus.active .shade {
  2097. -moz-opacity: 0;
  2098. opacity: 0;
  2099. z-index: -1;
  2100. }
  2101. section.contact {
  2102. position: relative;
  2103. background: url(../images/wallpaper8.jpg) 50% bottom;
  2104. -moz-background-size: cover;
  2105. background-size: cover;
  2106. }
  2107. .contact .box {
  2108. position: relative;
  2109. margin: 0 auto;
  2110. width: 810px;
  2111. height: 330px;
  2112. -webkit-transition: all .3s ease-in-out 0s;
  2113. -moz-transition: all .3s ease-in-out 0s;
  2114. -ms-transition: all .3s ease-in-out 0s;
  2115. -o-transition: all .3s ease-in-out 0s;
  2116. transition: all .3s ease-in-out 0s;
  2117. }
  2118. .contact .box .above {
  2119. position: relative;
  2120. top: -300px;
  2121. width: 100%;
  2122. height: 200px;
  2123. -moz-opacity: 0;
  2124. opacity: 0;
  2125. -webkit-transition: all .6s ease-in-out 0s;
  2126. -moz-transition: all .6s ease-in-out 0s;
  2127. -ms-transition: all .6s ease-in-out 0s;
  2128. -o-transition: all .6s ease-in-out 0s;
  2129. transition: all .6s ease-in-out 0s;
  2130. }
  2131. .contact.active .box .above {
  2132. top: 0px;
  2133. -moz-opacity: 1;
  2134. opacity: 1;
  2135. }
  2136. .contact .box .above .wechat {
  2137. float: left;
  2138. }
  2139. .contact .box .above .left {
  2140. float: left;
  2141. margin: -12px 0px 0px 70px;
  2142. }
  2143. .contact .box .above .left a.tel {
  2144. display: block;
  2145. margin: 10px 0px 15px 0px;
  2146. width: 243px;
  2147. height: 37px;
  2148. text-decoration: none;
  2149. background: url(../images/words.png) no-repeat 0px -877px;
  2150. }
  2151. .contact .box .above .left p {
  2152. margin-top: 8px;
  2153. color: #666;
  2154. line-height: 26px;
  2155. }
  2156. .contact .box .above .left a {
  2157. color: #666;
  2158. text-decoration: none;
  2159. }
  2160. .contact .box .above .left p u {
  2161. margin: 0 5px;
  2162. text-decoration: none;
  2163. }
  2164. .contact .box .above .left p a.job {
  2165. margin-left: 20px;
  2166. color: #d00000;
  2167. font-weight: bold;
  2168. }
  2169. .contact .box .above .left p a.job:hover {
  2170. border-bottom: 1px solid #d00000;
  2171. }
  2172. .contact .box .above .right {
  2173. float: right;
  2174. margin-top: -3px;
  2175. color: #666;
  2176. line-height: 32px;
  2177. }
  2178. .contact .box .above .right u {
  2179. margin: 0 5px;
  2180. text-decoration: none;
  2181. }
  2182. .contact .box .below {
  2183. position: relative;
  2184. padding-top: 50px;
  2185. width: 100%;
  2186. border-top: 1px dotted #ccc;
  2187. }
  2188. .contact .box .below i {
  2189. display: block;
  2190. position: relative;
  2191. top: 300px;
  2192. margin: 0 auto;
  2193. width: 424px;
  2194. height: 86px;
  2195. background: url(../images/words.png) no-repeat 0px -827px;
  2196. -moz-opacity: 0;
  2197. opacity: 0;
  2198. -webkit-transition: all .6s ease-in-out 0s;
  2199. -moz-transition: all .6s ease-in-out 0s;
  2200. -ms-transition: all .6s ease-in-out 0s;
  2201. -o-transition: all .6s ease-in-out 0s;
  2202. transition: all .6s ease-in-out 0s;
  2203. }
  2204. .contact.active .box .below i {
  2205. top: 0px;
  2206. -moz-opacity: 1;
  2207. opacity: 1;
  2208. }
  2209. .dock {
  2210. position: fixed;
  2211. right: 0px;
  2212. width: 50px;
  2213. -moz-opacity: 0.7;
  2214. opacity: 0.7;
  2215. z-index: 200;
  2216. }
  2217. .dock.close {
  2218. z-index: 50;
  2219. }
  2220. .dock ul.icons {
  2221. position: absolute;
  2222. list-style: none;
  2223. right: 0px;
  2224. padding: 0px;
  2225. width: 50px;
  2226. border: 1px solid #333;
  2227. border-right: none;
  2228. background: #111;
  2229. -moz-border-radius: 10px 0 0 10px;
  2230. -webkit-border-radius: 10px 0 0 10px;
  2231. border-radius: 10px 0 0 10px;
  2232. -webkit-transition: all .3s ease-in-out 0s;
  2233. -moz-transition: all .3s ease-in-out 0s;
  2234. -ms-transition: all .3s ease-in-out 0s;
  2235. -o-transition: all .3s ease-in-out 0s;
  2236. transition: all .3s ease-in-out 0s;
  2237. }
  2238. .dock.close ul.icons {
  2239. right: -70px;
  2240. }
  2241. .dock ul.icons li i {
  2242. display: block;
  2243. position: relative;
  2244. width: 50px;
  2245. height: 50px;
  2246. background: url(../images/icons.png) no-repeat;
  2247. cursor: pointer;
  2248. -webkit-transition: all .3s ease-in-out 0s;
  2249. -moz-transition: all .3s ease-in-out 0s;
  2250. -ms-transition: all .3s ease-in-out 0s;
  2251. -o-transition: all .3s ease-in-out 0s;
  2252. transition: all .3s ease-in-out 0s;
  2253. z-index: 210;
  2254. }
  2255. .dock ul.icons li.active i {
  2256. -moz-opacity: 0.4;
  2257. opacity: 0.4;
  2258. }
  2259. .dock ul.icons li.up i {
  2260. background-position: -63px -150px;
  2261. }
  2262. .dock ul.icons li.tel i {
  2263. background-position: -62px -108px;
  2264. }
  2265. .dock ul.icons li.im i {
  2266. background-position: -63px -20px;
  2267. }
  2268. .dock ul.icons li.wechat i {
  2269. background-position: -59px -66px;
  2270. }
  2271. .dock ul.icons li.down i {
  2272. background-position: -63px -190px;
  2273. }
  2274. .dock ul.icons li p {
  2275. display: block;
  2276. position: absolute;
  2277. top: 50px;
  2278. right: -260px;
  2279. padding: 15px 20px;
  2280. height: 120px;
  2281. color: White;
  2282. line-height: 30px;
  2283. border: 1px solid #333;
  2284. border-right: none;
  2285. background: #111;
  2286. -moz-border-radius: 10px 0 0 10px;
  2287. -webkit-border-radius: 10px 0 0 10px;
  2288. border-radius: 10px 0 0 10px;
  2289. -moz-opacity: 0;
  2290. opacity: 0;
  2291. filter: alpha(opacity=0);
  2292. -webkit-transition: all .4s ease-in-out .1s;
  2293. -moz-transition: all .4s ease-in-out .1s;
  2294. -ms-transition: all .4s ease-in-out .1s;
  2295. -o-transition: all .4s ease-in-out .1s;
  2296. transition: all .4s ease-in-out .1s;
  2297. overflow: hidden;
  2298. z-index: 201;
  2299. }
  2300. .dock ul.icons li.active p {
  2301. right: 50px;
  2302. -moz-opacity: 1;
  2303. opacity: 1;
  2304. filter: alpha(opacity=100);
  2305. }
  2306. .dock ul.icons li.tel p {
  2307. width: 100px;
  2308. }
  2309. .dock ul.icons li.im p {
  2310. width: 115px;
  2311. }
  2312. .dock ul.icons li.im p a {
  2313. display: block;
  2314. margin-top: 12px;
  2315. width: 100px;
  2316. height: 35px;
  2317. line-height: 32px;
  2318. color: #2fb8f7;
  2319. font-size: 16px;
  2320. text-align: center;
  2321. text-decoration: none;
  2322. border: 1px solid #2fb8f7;
  2323. -moz-border-radius: 5px;
  2324. -webkit-border-radius: 5px;
  2325. border-radius: 5px;
  2326. -webkit-transition: all .3s ease-in-out 0s;
  2327. -moz-transition: all .3s ease-in-out 0s;
  2328. -ms-transition: all .3s ease-in-out 0s;
  2329. -o-transition: all .3s ease-in-out 0s;
  2330. transition: all .3s ease-in-out 0s;
  2331. }
  2332. .dock ul.icons li.im p a:hover {
  2333. color: White;
  2334. background: #0f8773;
  2335. border: 1px solid #0f8773;
  2336. }
  2337. .dock ul.icons li.wechat p {
  2338. width: 118px;
  2339. }
  2340. .dock ul.icons li.wechat p img {
  2341. width: 115px;
  2342. border: 2px solid White;
  2343. }
  2344. .dock a.switch {
  2345. position: absolute;
  2346. display: block;
  2347. top: 270px;
  2348. right: 11px;
  2349. width: 26px;
  2350. height: 26px;
  2351. background: url(../images/icons.png) no-repeat 0px -640px;
  2352. cursor: pointer;
  2353. -webkit-transition-delay: .15s;
  2354. -moz-transition-delay: .15s;
  2355. -ms-transition-delay: .15s;
  2356. -o-transition-delay: .15s;
  2357. transition-delay: .15s;
  2358. }
  2359. .dock a.switch.off {
  2360. background-position: -32px -640px;
  2361. }
  2362. @media (max-width:1300px) {
  2363. header .logo {
  2364. top: 24px;
  2365. left: 35px;
  2366. width: 160px;
  2367. }
  2368. header .words {
  2369. display: none;
  2370. }
  2371. header nav.menu {
  2372. margin-left: -40px;
  2373. }
  2374. header.fixed nav.menu {
  2375. margin-left: -55px;
  2376. }
  2377. header nav.menu ul li {
  2378. margin: 0 8px;
  2379. }
  2380. header .hotline {
  2381. right: 200px;
  2382. }
  2383. header.fixed .hotline {
  2384. right: 170px;
  2385. }
  2386. header .hotline u {
  2387. right: 215px;
  2388. }
  2389. header.fixed .hotline u {
  2390. right: 180px;
  2391. }
  2392. }
  2393. @media (max-width:1080px) {
  2394. header .words {
  2395. display: block;
  2396. left: 220px;
  2397. }
  2398. header .hotline {
  2399. right: 285px;
  2400. }
  2401. header.fixed .hotline {
  2402. right: 255px;
  2403. }
  2404. header .hotline u {
  2405. right: 300px;
  2406. }
  2407. header.fixed .hotline u {
  2408. right: 265px;
  2409. }
  2410. header .menu-icon {
  2411. display: block;
  2412. }
  2413. header nav.menu {
  2414. position: fixed;
  2415. width: 72px;
  2416. top: 38px;
  2417. right: -100px;
  2418. margin: 0px;
  2419. padding-top: 30px;
  2420. border: 1px solid #000;
  2421. border-top: 1px solid #2fb8f7;
  2422. border-right: none;
  2423. background: #3a3a3a;
  2424. }
  2425. header.fixed nav.menu {
  2426. top: 22px;
  2427. margin: 0px;
  2428. }
  2429. header nav.menu.active {
  2430. display: block;
  2431. margin: 0px;
  2432. right: 0px;
  2433. }
  2434. header nav.menu ul li,header.fixed nav.menu ul li {
  2435. margin: 0px;
  2436. margin-left: 5px;
  2437. width: 73px;
  2438. padding: 8px 0px;
  2439. font-family: "宋体";
  2440. font-size: 14px;
  2441. text-align: center;
  2442. }
  2443. header nav.menu ul li.active {
  2444. background: #111;
  2445. }
  2446. header nav.menu .line {
  2447. -moz-opacity: 0;
  2448. opacity: 0;
  2449. }
  2450. }
  2451. @media (max-width:720px) {
  2452. header {
  2453. height: 54px;
  2454. }
  2455. header .logo,header.fixed .logo {
  2456. top: 17px;
  2457. left: 20px;
  2458. width: 120px;
  2459. }
  2460. header .words {
  2461. display: none;
  2462. }
  2463. header .menu-icon,header.fixed .menu-icon {
  2464. top: 18px;
  2465. right: 30px;
  2466. }
  2467. header nav.menu,header.fixed nav.menu {
  2468. width: 54px;
  2469. top: 22px;
  2470. padding-top: 30px;
  2471. }
  2472. header nav.menu ul li,header.fixed nav.menu ul li {
  2473. margin-left: 5px;
  2474. width: 55px;
  2475. padding: 5px 0px;
  2476. font-size: 12px;
  2477. }
  2478. header .hotline,header.fixed .hotline {
  2479. top: 21px;
  2480. right: 218px;
  2481. }
  2482. header .hotline span {
  2483. font-size: 20px;
  2484. }
  2485. header .hotline u,header.fixed .hotline u {
  2486. top: 24px;
  2487. right: 223px;
  2488. width: 15px;
  2489. height: 21px;
  2490. background: url(../images/icons.png) no-repeat 0px -34px;
  2491. }
  2492. }
  2493. @media (max-width:460px) {
  2494. header {
  2495. height: 42px;
  2496. }
  2497. header.fixed {
  2498. height: 60px;
  2499. }
  2500. header .logo,header.fixed .logo {
  2501. width: 80px;
  2502. }
  2503. header .menu-icon,header.fixed .menu-icon {
  2504. top: 13px;
  2505. }
  2506. header .menu-icon span.glyphicon-earphone {
  2507. display: inline;
  2508. }
  2509. header nav.menu,header.fixed nav.menu {
  2510. top: 17px;
  2511. }
  2512. header .hotline,header.fixed .hotline {
  2513. display: none;
  2514. }
  2515. header.fixed .bg {
  2516. height: 60px;
  2517. }
  2518. }
  2519. @media (max-height:310px) {
  2520. header,header.fixed {
  2521. display: none;
  2522. height: 0px;
  2523. }
  2524. }
  2525. @media (max-width:1280px) and (max-height:800px) {
  2526. div.welcome {
  2527. background: url(../images/welcome_h800.jpg) 30% 80%;
  2528. }
  2529. }
  2530. @media (max-width:960px) and (max-height:600px) {
  2531. div.welcome {
  2532. background: url(../images/welcome_h600.jpg) 30% 80%;
  2533. }
  2534. }
  2535. @media (max-width:800px),(max-height:480px) {
  2536. div.welcome p {
  2537. width: 218px;
  2538. padding-top: 190px;
  2539. top: 50%;
  2540. left: 50%;
  2541. margin-top: -110px;
  2542. margin-left: -109px;
  2543. background: url(../images/welcome_words_mini.png) no-repeat;
  2544. }
  2545. }
  2546. @media (max-height:260px) {
  2547. div.welcome p {
  2548. height: 158px;
  2549. padding: 0px;
  2550. margin-top: -79px;
  2551. }
  2552. div.welcome p u {
  2553. display: none;
  2554. }
  2555. }
  2556. @media (max-width:1280px) and (max-height:800px) {
  2557. .video .swiper-container .nth1 {
  2558. background: url(../images/wallpaper1_1_h800.jpg) 50% 35%;
  2559. }
  2560. }
  2561. @media (max-width:960px) and (max-height:600px) {
  2562. .video .swiper-container .nth1 {
  2563. background: url(../images/wallpaper1_1_h600.jpg) 50% 35%;
  2564. }
  2565. }
  2566. @media (max-height:750px) {
  2567. .video .swiper-container .nth1 .line {
  2568. display: none;
  2569. }
  2570. }
  2571. @media (max-width:900px),(min-height:1201px),(max-height:720px) {
  2572. .video .swiper-container .nth1 .shade {
  2573. display: none;
  2574. }
  2575. }
  2576. @media
  2577. (orientation:landscape) and (max-height:480px),(orientation:portrait) and (max-width:699px) {
  2578. .video .swiper-container .nth1 .box .left {
  2579. width: 74px;
  2580. height: 139px;
  2581. left: -150px;
  2582. background: url(../images/words_mini.png) no-repeat top right;
  2583. }
  2584. .video .swiper-container .nth1 .box .right {
  2585. margin-top: 8px;
  2586. right: -300px;
  2587. }
  2588. .video .swiper-container .nth1 .box .right span {
  2589. font-size: 24px;
  2590. }
  2591. .video .swiper-container .nth1 .box .right i {
  2592. width: 203px;
  2593. height: 40px;
  2594. margin: 3px 0px 5px 0px;
  2595. background: url(../images/words_mini.png) no-repeat;
  2596. }
  2597. .video .swiper-container .nth1 .box .right p {
  2598. font-size: 12px;
  2599. font-family: "宋体";
  2600. line-height: 20px;
  2601. }
  2602. }
  2603. @media (max-width:1280px) and (max-height:800px) {
  2604. .video .swiper-container .nth2 {
  2605. background: url(../images/wallpaper1_2_h800.jpg) 50% 20%;
  2606. }
  2607. }
  2608. @media (max-width:960px) and (max-height:600px) {
  2609. .video .swiper-container .nth2 {
  2610. background: url(../images/wallpaper1_2_h600.jpg) 50% 20%;
  2611. }
  2612. }
  2613. @media (max-width:799px) {
  2614. .video .swiper-container .nth2 .box {
  2615. left: -400px;
  2616. width: 100%;
  2617. text-align: center;
  2618. }
  2619. .video .swiper-container .nth2.active .box {
  2620. left: 0px;
  2621. }
  2622. .video .swiper-container .nth2 .box i {
  2623. margin: 0 auto;
  2624. margin-bottom: 10px;
  2625. }
  2626. }
  2627. @media
  2628. (orientation:landscape) and (max-height:480px),(orientation:portrait) and (max-width:699px) {
  2629. .video .swiper-container .nth2 .box span {
  2630. font-size: 24px;
  2631. }
  2632. .video .swiper-container .nth2 .box i {
  2633. width: 191px;
  2634. height: 40px;
  2635. margin-top: 8px;
  2636. margin-bottom: 5px;
  2637. background: url(../images/words_mini.png) no-repeat 0px -45px;
  2638. }
  2639. .video .swiper-container .nth2 .box p {
  2640. font-size: 12px;
  2641. font-family: "宋体";
  2642. line-height: 20px;
  2643. }
  2644. }
  2645. @media (max-width:1280px) and (max-height:800px) {
  2646. .video .swiper-container .nth3 {
  2647. background: url(../images/wallpaper1_3_h800.jpg) 50% center;
  2648. }
  2649. }
  2650. @media (max-width:960px) and (max-height:600px) {
  2651. .video .swiper-container .nth3 {
  2652. background: url(../images/wallpaper1_3_h600.jpg) 50% center;
  2653. }
  2654. }
  2655. @media
  2656. (orientation:landscape) and (max-height:480px),(orientation:portrait) and (max-width:699px) {
  2657. .video .swiper-container .nth3 .box .top {
  2658. font-size: 40px;
  2659. }
  2660. .video .swiper-container .nth3.active .box .top {
  2661. font-size: 24px;
  2662. }
  2663. .video .swiper-container .nth3 .box .mid {
  2664. width: 216px;
  2665. height: 40px;
  2666. margin-top: 10px;
  2667. background: url(../images/words_mini.png) no-repeat 0px -131px;
  2668. }
  2669. .video .swiper-container .nth3 .box .bottom {
  2670. font-size: 12px;
  2671. font-family: "宋体";
  2672. line-height: 20px;
  2673. }
  2674. }
  2675. @media (max-width:1280px) and (max-height:800px) {
  2676. .video .swiper-container .nth4 {
  2677. background: url(../images/wallpaper1_4_h800.jpg) 50% top;
  2678. }
  2679. }
  2680. @media (max-width:960px) and (max-height:600px) {
  2681. .video .swiper-container .nth4 {
  2682. background: url(../images/wallpaper1_4_h600.jpg) 50% top;
  2683. }
  2684. }
  2685. @media
  2686. (orientation:landscape) and (max-height:480px),(orientation:portrait) and (max-width:699px) {
  2687. .video .swiper-container .nth4 .box .top span {
  2688. font-size: 24px;
  2689. }
  2690. .video .swiper-container .nth4 .box .top i {
  2691. width: 143px;
  2692. height: 38px;
  2693. background: url(../images/words_mini.png) no-repeat 0px -88px;
  2694. }
  2695. .video .swiper-container .nth4 .box .bottom {
  2696. font-size: 12px;
  2697. font-family: "宋体";
  2698. line-height: 20px;
  2699. }
  2700. }
  2701. @media (orientation:landscape) and (max-height:300px) {
  2702. .video .swiper-container .swiper-slide {
  2703. padding-top: 10px;
  2704. }
  2705. .video .swiper-container .nth2 .shade {
  2706. margin-top: -10px;
  2707. height: 400px;
  2708. }
  2709. }
  2710. @media (orientation:landscape) and (max-height:650px) {
  2711. .video .innerBox {
  2712. bottom: 15px;
  2713. }
  2714. .video .innerBox .news {
  2715. margin-left: 100px;
  2716. margin-bottom: 10px;
  2717. }
  2718. .video .innerBox .guide {
  2719. position: absolute;
  2720. margin: 0px;
  2721. right: 15px;
  2722. bottom: 18px;
  2723. width: 110px;
  2724. }
  2725. .video .innerBox .guide a {
  2726. margin: 0px 3px;
  2727. width: 20px;
  2728. }
  2729. .video .innerBox a.movedown {
  2730. position: absolute;
  2731. margin: 0px;
  2732. left: 15px;
  2733. bottom: 0px;
  2734. }
  2735. }
  2736. @media (orientation:landscape) and (max-height:650px) and (max-width:660px) {
  2737. .video .innerBox .news a.more {
  2738. display: none;
  2739. }
  2740. .video .innerBox .news span {
  2741. display: none;
  2742. }
  2743. }
  2744. @media (orientation:landscape) and (max-height:650px) and (max-width:540px) {
  2745. .video .innerBox .news {
  2746. margin-left: 85px;
  2747. }
  2748. .video .innerBox .news ul li {
  2749. font-size: 12px;
  2750. font-family: "宋体";
  2751. }
  2752. }
  2753. @media
  2754. (orientation:landscape) and (max-height:650px) and (max-width:460px),(orientation:landscape) and (max-height:300px),(orientation:portrait) and (max-height:380px) {
  2755. .video .innerBox .news {
  2756. display: none;
  2757. }
  2758. }
  2759. @media (orientation:portrait) and (max-width:460px) {
  2760. .video .innerBox .news a.more {
  2761. display: none;
  2762. }
  2763. .video .innerBox .news span {
  2764. display: none;
  2765. }
  2766. .video .innerBox .news {
  2767. width: 100%;
  2768. }
  2769. .video .innerBox .news ul {
  2770. width: 100%;
  2771. text-align: center;
  2772. }
  2773. }
  2774. @media (orientation:portrait) and (max-width:360px) {
  2775. .video .innerBox .news {
  2776. margin: 0px;
  2777. margin-bottom: 10px;
  2778. }
  2779. .video .innerBox .news ul li {
  2780. font-size: 12px;
  2781. font-family: "宋体";
  2782. }
  2783. .video .innerBox .guide {
  2784. position: static;
  2785. margin: 0 auto;
  2786. padding-top: 10px;
  2787. margin-bottom: 25px;
  2788. right: inherit;
  2789. bottom: inherit;
  2790. width: 110px;
  2791. }
  2792. .video .innerBox .guide a {
  2793. margin: 0 3px;
  2794. width: 20px;
  2795. }
  2796. .video .innerBox a.movedown {
  2797. position: static;
  2798. margin: 0 auto;
  2799. left: 0px;
  2800. }
  2801. }
  2802. @media (min-width:1921px),(min-height:1201px) {
  2803. section.business {
  2804. -moz-background-size: cover;
  2805. background-size: cover;
  2806. }
  2807. }
  2808. @media (min-height:1201px) {
  2809. .business .box {
  2810. margin-top: -70px;
  2811. }
  2812. }
  2813. @media (min-width:1151px) and (max-height:700px) {
  2814. .business .box .caption i {
  2815. display: none;
  2816. }
  2817. .business .box ul.items {
  2818. margin-top: 50px;
  2819. }
  2820. }
  2821. @media (min-width:1151px) and (max-height:630px) {
  2822. .business .box {
  2823. margin-top: 0px;
  2824. }
  2825. }
  2826. @media (max-width:1150px) {
  2827. .business .box ul.items {
  2828. margin-top: 40px;
  2829. }
  2830. .business .box ul.items li {
  2831. width: 170px;
  2832. height: 270px;
  2833. margin: 0px;
  2834. }
  2835. .business .box ul.items li u {
  2836. background: none;
  2837. display: none;
  2838. }
  2839. .business .box ul.items li strong {
  2840. margin-top: 40px;
  2841. }
  2842. .business .box ul.items li:hover {
  2843. -webkit-transition-delay: 0s;
  2844. -moz-transition-delay: 0s;
  2845. -ms-transition-delay: 0s;
  2846. -o-transition-delay: 0s;
  2847. transition-delay: 0s;
  2848. }
  2849. }
  2850. @media (max-width:1150px) and (max-height:680px) {
  2851. .business .box .caption i {
  2852. display: none;
  2853. }
  2854. .business .box ul.items {
  2855. margin-top: 10px;
  2856. }
  2857. }
  2858. @media (max-width:1150px) and (max-height:580px) {
  2859. .business .box {
  2860. margin-top: 0px;
  2861. }
  2862. }
  2863. @media (max-width:1000px) {
  2864. .business .box {
  2865. margin-top: -55px;
  2866. }
  2867. .business .box ul.items li {
  2868. width: 270px;
  2869. height: 80px;
  2870. margin: 30px 0 0 21px;
  2871. padding: 10px 0 5px 15px;
  2872. }
  2873. .business .box ul.items li i {
  2874. margin-top: 0px;
  2875. float: left;
  2876. }
  2877. .business .box ul.items li strong {
  2878. float: left;
  2879. margin: 5px 0 0 20px;
  2880. }
  2881. .business .box ul.items li p {
  2882. float: left;
  2883. margin: 5px 0 0 20px;
  2884. color: #888;
  2885. text-align: inherit;
  2886. }
  2887. .business .box ul.items li:hover p {
  2888. margin: 5px 0 0 20px;
  2889. color: White;
  2890. -webkit-transition-delay: .2s;
  2891. -moz-transition-delay: .2s;
  2892. -ms-transition-delay: .2s;
  2893. -o-transition-delay: .2s;
  2894. transition-delay: .2s;
  2895. }
  2896. .business .box label {
  2897. margin-top: 50px;
  2898. }
  2899. }
  2900. @media (max-width:1000px) and (max-height:730px) {
  2901. .business .box .caption i {
  2902. display: none;
  2903. }
  2904. .business .box ul.items {
  2905. margin-top: 10px;
  2906. }
  2907. }
  2908. @media (max-width:1000px) and (max-height:650px) {
  2909. .business .box label {
  2910. display: none;
  2911. }
  2912. }
  2913. @media (max-width:1000px) and (max-height:560px) {
  2914. .business .box {
  2915. margin-top: 0px;
  2916. }
  2917. }
  2918. @media (max-width:929px) and (max-height:880px) {
  2919. .business .box .caption i {
  2920. display: none;
  2921. }
  2922. .business .box ul.items {
  2923. margin-top: 10px;
  2924. }
  2925. }
  2926. @media (max-width:929px) and (max-height:770px) {
  2927. .business .box label {
  2928. display: none;
  2929. }
  2930. }
  2931. @media (max-width:929px) and (max-height:680px) {
  2932. .business .box {
  2933. margin-top: 0px;
  2934. }
  2935. }
  2936. @media (max-width:929px) and (max-height:570px),(max-width:620px) {
  2937. .business .box {
  2938. margin-top: -55px;
  2939. }
  2940. .business .box ul.items {
  2941. margin-top: 30px;
  2942. }
  2943. .business .box ul.items li {
  2944. width: 173px;
  2945. height: 43px;
  2946. margin: 15px 10px 0px 10px;
  2947. }
  2948. .business .box ul.items li i {
  2949. margin-top: 0px;
  2950. }
  2951. .business .box ul.items li.pc i {
  2952. width: 46px;
  2953. height: 35px;
  2954. background: url(../images/words_mini.png) no-repeat -145px -217px;
  2955. }
  2956. .business .box ul.items li.mobi i {
  2957. width: 46px;
  2958. height: 39px;
  2959. background: url(../images/words_mini.png) no-repeat -245px -176px;
  2960. }
  2961. .business .box ul.items li.sys i {
  2962. width: 46px;
  2963. height: 35px;
  2964. background: url(../images/words_mini.png) no-repeat -249px -220px;
  2965. }
  2966. .business .box ul.items li.app i {
  2967. width: 46px;
  2968. height: 41px;
  2969. background: url(../images/words_mini.png) no-repeat -146px -264px;
  2970. }
  2971. .business .box ul.items li.host i {
  2972. width: 47px;
  2973. height: 38px;
  2974. background: url(../images/words_mini.png) no-repeat -253px -266px;
  2975. }
  2976. .business .box ul.items li p {
  2977. display: none;
  2978. }
  2979. .business .box ul.items li strong {
  2980. margin-left: 15px;
  2981. }
  2982. .business .box ul.items li.pc:hover i {
  2983. background: url(../images/words_mini.png) no-repeat -100px -217px;
  2984. }
  2985. .business .box ul.items li.mobi:hover i {
  2986. background: url(../images/words_mini.png) no-repeat -201px -176px;
  2987. }
  2988. .business .box ul.items li.sys:hover i {
  2989. background: url(../images/words_mini.png) no-repeat -196px -220px;
  2990. }
  2991. .business .box ul.items li.app:hover i {
  2992. background: url(../images/words_mini.png) no-repeat -100px -264px;
  2993. }
  2994. .business .box ul.items li.host:hover i {
  2995. background: url(../images/words_mini.png) no-repeat -201px -266px;
  2996. }
  2997. }
  2998. @media (max-width:929px) and (max-height:460px) {
  2999. .business .box ul.items {
  3000. margin-top: 15px;
  3001. }
  3002. .business .box ul.items li {
  3003. margin: 5px 10px 0px 10px;
  3004. }
  3005. }
  3006. @media (max-width:929px) and (max-height:420px) {
  3007. .business .box ul.items {
  3008. margin-top: 30px;
  3009. }
  3010. .business .box {
  3011. margin-top: 0px;
  3012. }
  3013. }
  3014. @media (max-width:929px) and (max-height:720px) {
  3015. .business .box label {
  3016. display: none;
  3017. }
  3018. }
  3019. @media (max-width:929px) and (max-height:660px) {
  3020. .business .box .caption i {
  3021. display: none;
  3022. }
  3023. .business .box ul.items {
  3024. margin-top: 30px;
  3025. }
  3026. }
  3027. @media (max-width:929px) and (max-height:550px) {
  3028. .business .box ul.items {
  3029. margin-top: 20px;
  3030. }
  3031. .business .box ul.items li {
  3032. margin: 5px 10px 0px 10px;
  3033. }
  3034. }
  3035. @media (max-width:929px) and (max-height:460px) {
  3036. .business .box {
  3037. margin-top: 0px;
  3038. }
  3039. }
  3040. @media (max-width:929px) and (max-height:320px) {
  3041. .business .box ul.items {
  3042. margin-top: 15px;
  3043. }
  3044. }
  3045. @media (max-width:929px) and (max-height:310px),(max-width:638px) and (max-height:390px),(max-width:425px) and (max-height:500px) {
  3046. .business .box ul.items {
  3047. margin-top: 40px;
  3048. }
  3049. .business .box ul.items li {
  3050. width: 120px;
  3051. height: 40px;
  3052. margin: 0px 10px 15px 10px;
  3053. padding: 0px;
  3054. background: none;
  3055. }
  3056. .business .box ul.items li strong {
  3057. position: relative;
  3058. margin: 0px;
  3059. width: 100%;
  3060. height: 40px;
  3061. font-size: 14px;
  3062. line-height: 40px;
  3063. text-align: center;
  3064. z-index: 10;
  3065. }
  3066. .business .box ul.items li:hover strong {
  3067. color: #333;
  3068. }
  3069. .business .box ul.items li i {
  3070. position: absolute;
  3071. display: block !important;
  3072. width: 120px !important;
  3073. height: 40px !important;
  3074. background: White !important;
  3075. border: 1px solid #bbb;
  3076. -moz-opacity: 0.5;
  3077. opacity: 0.5;
  3078. }
  3079. }
  3080. @media (max-width:929px) and (max-height:260px) {
  3081. .business .box {
  3082. margin-top: 8px;
  3083. }
  3084. .business .box ul.items {
  3085. margin-top: 18px;
  3086. }
  3087. }
  3088. @media (max-width:425px) and (max-height:880px) {
  3089. .business .box .caption i {
  3090. display: block;
  3091. }
  3092. .business .box label {
  3093. display: none;
  3094. }
  3095. }
  3096. @media (max-width:425px) and (max-height:770px) {
  3097. .business .box .caption i {
  3098. display: none;
  3099. }
  3100. .business .box ul.items {
  3101. margin-top: 20px;
  3102. }
  3103. }
  3104. @media (max-width:425px) and (max-height:670px) {
  3105. .business .box {
  3106. margin-top: 0px;
  3107. }
  3108. }
  3109. @media (max-width:425px) and (max-height:500px) {
  3110. .business .box ul.items {
  3111. margin-top: 40px;
  3112. }
  3113. }
  3114. @media (max-width:390px) {
  3115. .business .box .caption i {
  3116. display: none;
  3117. }
  3118. }
  3119. @media (min-width:1921px),(min-height:921px) {
  3120. section.cases {
  3121. -moz-background-size: cover;
  3122. background-size: cover;
  3123. }
  3124. }
  3125. @media (max-width:1280px) and (max-height:800px) {
  3126. section.cases {
  3127. background: url(../images/wallpaper3_h800.jpg);
  3128. }
  3129. }
  3130. @media (max-width:960px) and (max-height:600px) {
  3131. section.cases {
  3132. background: url(../images/wallpaper3_h600.jpg);
  3133. }
  3134. }
  3135. @media (min-width:1151px) and (max-height:700px) {
  3136. .cases .box .swiper-container.items {
  3137. margin-top: 40px;
  3138. }
  3139. .cases .box .caption i {
  3140. display: none;
  3141. }
  3142. }
  3143. @media (min-width:1151px) and (max-height:620px) {
  3144. .cases .box .swiper-container.items .swiper-slide {
  3145. border: none;
  3146. }
  3147. .cases .box .items .swiper-slide p,.cases .box .items .swiper-slide .bg {
  3148. display: none;
  3149. }
  3150. }
  3151. @media (max-width:1150px) {
  3152. .cases .box .swiper-container.items {
  3153. width: 840px;
  3154. }
  3155. .cases .box .swiper-container.items .swiper-slide {
  3156. width: 260px;
  3157. }
  3158. .cases .box .swiper-container.items .swiper-slide img {
  3159. width: 260px;
  3160. height: 153px;
  3161. }
  3162. .cases .box .swiper-container.items .swiper-slide .shade {
  3163. width: 260px;
  3164. height: 153px;
  3165. }
  3166. .cases .box .swiper-container.items .swiper-slide .shade u {
  3167. margin-top: 54px;
  3168. }
  3169. .cases .box .swiper-container.items .swiper-slide p strong {
  3170. font-size: 14px;
  3171. }
  3172. .cases .box .swiper-container.items .swiper-slide .bg {
  3173. width: 260px;
  3174. height: 100px;
  3175. }
  3176. .cases .box .swiper-container.items .swiper-slide .bg u {
  3177. width: 260px;
  3178. height: 100px;
  3179. }
  3180. }
  3181. @media (max-width:1150px) and (max-height:660px) {
  3182. .cases .box .swiper-container.items {
  3183. margin-top: 40px;
  3184. }
  3185. .cases .box .caption i {
  3186. display: none;
  3187. }
  3188. }
  3189. @media (max-width:1150px) and (max-height:580px) {
  3190. .cases .box .swiper-container.items .swiper-slide {
  3191. border: none;
  3192. }
  3193. .cases .box .items .swiper-slide p,.cases .box .items .swiper-slide .bg {
  3194. display: none;
  3195. }
  3196. }
  3197. @media (max-width:1150px) and (max-height:480px) {
  3198. .cases .box .swiper-container.items .swiper-slide {
  3199. border: none;
  3200. }
  3201. .cases .box .items .swiper-slide p,.cases .box .items .swiper-slide .bg {
  3202. display: none;
  3203. }
  3204. }
  3205. @media (orientation:landscape) and (max-width:900px) {
  3206. .cases .box .swiper-container.items {
  3207. display: none;
  3208. }
  3209. .cases .box .swiper-container.xs {
  3210. display: block;
  3211. margin: 0 auto;
  3212. margin-top: 40px;
  3213. width: 90%;
  3214. }
  3215. .cases .box .swiper-container.xs .swiper-slide {
  3216. width: 31.33%;
  3217. margin: 0 1%;
  3218. }
  3219. .cases .box .xs .swiper-slide p,.cases .xs .swiper-slide .bg {
  3220. display: none;
  3221. background: none;
  3222. }
  3223. }
  3224. @media (orientation:landscape) and (max-width:900px) and (max-height:450px) {
  3225. .cases .box .swiper-container.xs {
  3226. margin-top: 15px;
  3227. }
  3228. .cases .box a.more {
  3229. margin-top: 18px;
  3230. width: 66px;
  3231. padding: 3px 0px;
  3232. font-size: 16px;
  3233. }
  3234. }
  3235. @media (orientation:portrait) and (max-width:900px) {
  3236. .cases .box .swiper-container.items {
  3237. display: none;
  3238. }
  3239. .cases .box .swiper-container.mini {
  3240. display: block;
  3241. width: 340px;
  3242. margin-top: 60px;
  3243. }
  3244. .cases .box .swiper-container.mini .swiper-wrapper {
  3245. height: 300px !important;
  3246. }
  3247. .cases .box .swiper-container.mini .swiper-slide {
  3248. width: 340px;
  3249. height: 300px !important;
  3250. border-bottom: 2px solid #2fb8f7;
  3251. cursor: pointer;
  3252. }
  3253. .cases .box .swiper-container.mini .swiper-slide img {
  3254. width: 340px;
  3255. height: 200px;
  3256. }
  3257. .cases .box .swiper-container.mini .swiper-slide p {
  3258. position: absolute;
  3259. margin: 10px 20px;
  3260. color: #999;
  3261. font-family: Arial,"宋体";
  3262. font-size: 12px;
  3263. line-height: 26px;
  3264. z-index: 10;
  3265. }
  3266. .cases .box .swiper-container.mini .swiper-slide p strong {
  3267. color: #222;
  3268. font-family: Arial,"微软雅黑";
  3269. font-size: 16px;
  3270. font-weight: normal;
  3271. }
  3272. .cases .box .swiper-container.mini .swiper-slide .bg {
  3273. width: 340px;
  3274. height: 100px;
  3275. background-color: #fff;
  3276. -moz-opacity: 0.5;
  3277. opacity: 0.5;
  3278. filter: alpha(opacity=50);
  3279. }
  3280. .cases .box a.prev,.cases .box a.next {
  3281. display: block;
  3282. position: absolute;
  3283. top: -300px;
  3284. width: 16px;
  3285. height: 30px;
  3286. cursor: pointer;
  3287. -webkit-transition: all .3s ease-in-out 0s;
  3288. -moz-transition: all .3s ease-in-out 0s;
  3289. -ms-transition: all .3s ease-in-out 0s;
  3290. -o-transition: all .3s ease-in-out 0s;
  3291. transition: all .3s ease-in-out 0s;
  3292. z-index: 100;
  3293. }
  3294. .cases .box a.prev {
  3295. left: 30px;
  3296. background: url(../images/icons.png) no-repeat 0px -219px;
  3297. }
  3298. .cases .box a.next {
  3299. right: 30px;
  3300. background: url(../images/icons.png) no-repeat -25px -219px;
  3301. }
  3302. }
  3303. @media (orientation:portrait) and (max-width:900px) and (max-height:700px) {
  3304. .cases .box .swiper-container.mini {
  3305. margin-top: 40px;
  3306. }
  3307. .cases .box .caption i {
  3308. display: none;
  3309. }
  3310. }
  3311. @media (orientation:portrait) and (max-width:500px) {
  3312. .cases .box .caption i {
  3313. display: block;
  3314. }
  3315. .cases .box .swiper-container.mini {
  3316. width: 260px;
  3317. margin-top: 40px;
  3318. }
  3319. .cases .box .swiper-container.mini .swiper-wrapper {
  3320. height: 253px !important;
  3321. }
  3322. .cases .box .swiper-container.mini .swiper-slide {
  3323. width: 260px;
  3324. height: 253px !important;
  3325. }
  3326. .cases .box .swiper-container.mini .swiper-slide img {
  3327. width: 260px;
  3328. height: 153px;
  3329. }
  3330. .cases .box .swiper-container.mini .swiper-slide p strong {
  3331. font-size: 14px;
  3332. }
  3333. .cases .box .swiper-container.mini .swiper-slide .bg {
  3334. width: 260px;
  3335. height: 100px;
  3336. }
  3337. .cases .box a.prev {
  3338. left: 20px;
  3339. }
  3340. .cases .box a.next {
  3341. right: 20px;
  3342. }
  3343. }
  3344. @media (orientation:portrait) and (max-width:500px) and (max-height:640px) {
  3345. .cases .box .caption i {
  3346. display: none;
  3347. }
  3348. }
  3349. @media (orientation:portrait) and (max-width:500px) and (max-height:580px) {
  3350. .cases .box .swiper-container.mini {
  3351. margin-top: 30px;
  3352. }
  3353. .cases .box a.more {
  3354. display: block;
  3355. position: static;
  3356. margin: 0 auto;
  3357. margin-top: 30px;
  3358. width: 66px;
  3359. font-size: 16px;
  3360. padding: 3px 0px;
  3361. }
  3362. }
  3363. @media (orientation:portrait) and (max-width:370px) {
  3364. .cases .box a.prev,.cases .box a.next {
  3365. margin-top: 175px;
  3366. }
  3367. .cases .box a.prev {
  3368. left: 40px;
  3369. }
  3370. .cases .box a.next {
  3371. right: 40px;
  3372. }
  3373. }
  3374. @media (orientation:portrait) and (max-width:370px) and (max-height:500px) {
  3375. .cases .box .swiper-container.mini .swiper-wrapper {
  3376. height: 153px !important;
  3377. }
  3378. .cases .box .swiper-container.mini .swiper-slide {
  3379. height: 153px !important;
  3380. border: none;
  3381. }
  3382. .cases .box .mini .swiper-slide p,.cases .box .mini .swiper-slide .bg {
  3383. display: none;
  3384. }
  3385. .cases .box a.prev,.cases .box a.next {
  3386. margin-top: 73px;
  3387. }
  3388. }
  3389. @media (min-width:1921px),(min-height:1201px) {
  3390. section.clients {
  3391. -moz-background-size: cover;
  3392. background-size: cover;
  3393. }
  3394. }
  3395. @media (max-width:1280px) and (max-height:800px) {
  3396. section.clients {
  3397. background: url(../images/wallpaper4_h800.jpg) 50% 90%;
  3398. }
  3399. }
  3400. @media (max-width:960px) and (max-height:600px) {
  3401. section.clients {
  3402. background: url(../images/wallpaper4_h600.jpg) 50% 90%;
  3403. }
  3404. }
  3405. @media (max-width:1150px) {
  3406. .clients .box ul.items {
  3407. width: 924px;
  3408. }
  3409. .clients .box ul.items li.bg.all {
  3410. width: 924px;
  3411. }
  3412. }
  3413. @media (max-width:920px) {
  3414. .clients .box ul.items {
  3415. width: 693px;
  3416. }
  3417. .clients .box ul.items li.bg.all {
  3418. width: 693px;
  3419. }
  3420. }
  3421. @media (max-width:690px) {
  3422. .clients .box ul.items {
  3423. width: 462px;
  3424. }
  3425. .clients .box ul.items li.bg.all {
  3426. width: 462px;
  3427. }
  3428. }
  3429. @media (min-width:471px) and (max-height:720px) {
  3430. .clients .box ul.items {
  3431. height: 300px;
  3432. }
  3433. .clients .box ul.items li.bg.all {
  3434. height: 300px;
  3435. }
  3436. }
  3437. @media (min-width:471px) and (max-height:580px) {
  3438. .clients .box ul.items {
  3439. height: 150px;
  3440. }
  3441. .clients .box ul.items li.bg.all {
  3442. height: 150px;
  3443. }
  3444. }
  3445. @media (min-width:471px) and (max-height:450px) {
  3446. .clients .box .swiper-container.items {
  3447. margin-top: 40px;
  3448. }
  3449. .clients .box .caption i {
  3450. display: none;
  3451. }
  3452. }
  3453. @media (min-height:920px) {
  3454. .clients .box {
  3455. margin-top: -80px;
  3456. }
  3457. }
  3458. @media (max-width:690px) and (max-height:380px),(max-width:620px) and (max-height:480px),(max-width:470px) {
  3459. .clients .box ul.items {
  3460. display: block;
  3461. height: 260px;
  3462. }
  3463. .clients.active .box .caption {
  3464. margin-top: 120px;
  3465. }
  3466. .clients .box ul.mini {
  3467. display: block;
  3468. position: relative;
  3469. margin: 0 auto;
  3470. margin-top: 30px;
  3471. width: 500px;
  3472. height: 550px;
  3473. overflow: hidden;
  3474. }
  3475. .clients .box ul.mini li {
  3476. position: relative;
  3477. float: left;
  3478. width: 200px;
  3479. padding: 8px 0 8px 40px;
  3480. background: url(../images/point.png) no-repeat 20px 15px;
  3481. z-index: 20;
  3482. }
  3483. .clients .box ul.mini li.bg.all {
  3484. position: absolute;
  3485. width: 500px;
  3486. height: 560px;
  3487. list-style: none;
  3488. background-color: White;
  3489. -moz-opacity: 0.5;
  3490. opacity: 0.5;
  3491. filter: alpha(opacity=50);
  3492. }
  3493. .clients .box ul.mini li.bg.one {
  3494. display: none;
  3495. }
  3496. }
  3497. @media (max-width:560px) and (max-height:480px),(max-width:470px) {
  3498. .clients .box ul.mini {
  3499. width: 250px;
  3500. }
  3501. .clients .box ul.mini li.bg.all {
  3502. width: 250px;
  3503. }
  3504. }
  3505. @media (max-width:470px) and (max-height:800px) {
  3506. .clients .box ul.mini {
  3507. height: 440px;
  3508. }
  3509. .clients .box ul.mini li.bg.all {
  3510. height: 440px;
  3511. }
  3512. }
  3513. @media (max-width:470px) and (max-height:700px) {
  3514. .clients .box ul.mini {
  3515. height: 330px;
  3516. }
  3517. .clients .box ul.mini li.bg.all {
  3518. height: 330px;
  3519. }
  3520. }
  3521. @media (max-width:560px) and (max-height:600px) {
  3522. .clients .box ul.mini {
  3523. height: 260px;
  3524. }
  3525. .clients .box ul.mini li.bg.all {
  3526. height: 260px;
  3527. }
  3528. }
  3529. @media (max-width:690px) and (max-height:520px) {
  3530. .clients .box ul.mini {
  3531. margin-top: 15px;
  3532. }
  3533. .clients .box .caption i {
  3534. display: none;
  3535. }
  3536. }
  3537. @media (max-width:690px) and (max-height:430px) {
  3538. .clients .box ul.mini {
  3539. height: 150px;
  3540. }
  3541. .clients .box ul.mini li.bg.all {
  3542. height: 150px;
  3543. }
  3544. }
  3545. @media (max-width:690px) and (max-height:420px) {
  3546. .clients .box ul.mini {
  3547. height: 110px;
  3548. }
  3549. .clients .box ul.mini li.bg.all {
  3550. height: 110px;
  3551. }
  3552. }
  3553. @media (max-width:690px) and (max-height:300px) {
  3554. .clients .box ul.mini {
  3555. margin-top: 5px;
  3556. }
  3557. }
  3558. @media (max-width:400px) {
  3559. .clients .box .caption i {
  3560. display: none;
  3561. }
  3562. }
  3563. @media (min-width:1921px),(min-height:1201px) {
  3564. section.quality {
  3565. -moz-background-size: cover;
  3566. background-size: cover;
  3567. }
  3568. }
  3569. @media (max-width:1280px) and (max-height:800px) {
  3570. section.quality {
  3571. background: url(../images/wallpaper5_h800.jpg) 50% 10%;
  3572. }
  3573. }
  3574. @media (max-width:960px) and (max-height:600px) {
  3575. section.quality {
  3576. background: url(../images/wallpaper5_h600.jpg) 50% 10%;
  3577. }
  3578. }
  3579. @media (max-width:960px) {
  3580. .quality .box .items {
  3581. display: none;
  3582. }
  3583. .quality .box .mini {
  3584. display: block;
  3585. margin: 0 auto;
  3586. margin-top: 120px;
  3587. width: 240px;
  3588. height: 200px;
  3589. overflow: hidden;
  3590. }
  3591. .quality .box .mini .swiper-slide {
  3592. margin: 0px;
  3593. }
  3594. .quality .box a.prev,.quality .box a.next {
  3595. display: block;
  3596. position: absolute;
  3597. top: -300px;
  3598. width: 16px;
  3599. height: 30px;
  3600. cursor: pointer;
  3601. -webkit-transition: all .3s ease-in-out 0s;
  3602. -moz-transition: all .3s ease-in-out 0s;
  3603. -ms-transition: all .3s ease-in-out 0s;
  3604. -o-transition: all .3s ease-in-out 0s;
  3605. transition: all .3s ease-in-out 0s;
  3606. z-index: 100;
  3607. }
  3608. .quality .box a.prev {
  3609. left: 30px;
  3610. background: url(../images/icons.png) no-repeat 0px -219px;
  3611. }
  3612. .quality .box a.next {
  3613. right: 30px;
  3614. background: url(../images/icons.png) no-repeat -25px -219px;
  3615. }
  3616. }
  3617. @media (max-height:730px) {
  3618. .quality .box .items,.quality .box .mini {
  3619. margin-top: 80px;
  3620. }
  3621. }
  3622. @media (max-height:710px) {
  3623. .quality .box a.lookall {
  3624. display: none;
  3625. }
  3626. }
  3627. @media (max-height:530px) {
  3628. .quality .box .items,.quality .box .mini {
  3629. margin-top: 60px;
  3630. }
  3631. .quality .box .caption i {
  3632. display: none;
  3633. }
  3634. }
  3635. @media (max-height:420px) {
  3636. .quality .box .items,.quality .box .mini {
  3637. height: 120px;
  3638. margin-top: 40px;
  3639. }
  3640. .quality .box a.prev,.quality .box a.next {
  3641. margin-top: -40px;
  3642. }
  3643. }
  3644. @media (max-height:360px) {
  3645. .quality .box .items,.quality .box .mini {
  3646. height: 110px;
  3647. margin-top: 20px;
  3648. }
  3649. .quality .box .swiper-slide ul {
  3650. margin-bottom: 10px;
  3651. }
  3652. .quality .box a.prev,.quality .box a.next {
  3653. margin-top: -80px;
  3654. }
  3655. }
  3656. @media (min-width:1921px),(min-height:1201px) {
  3657. section.marketing {
  3658. -moz-background-size: cover;
  3659. background-size: cover;
  3660. }
  3661. }
  3662. @media (max-width:1280px) and (max-height:800px) {
  3663. section.marketing {
  3664. background: url(../images/wallpaper6_h800.jpg) 50% 45%;
  3665. }
  3666. }
  3667. @media (max-width:960px) and (max-height:600px) {
  3668. section.marketing {
  3669. background: url(../images/wallpaper6_h600.jpg) 50% 45%;
  3670. }
  3671. }
  3672. @media (max-width:1100px) {
  3673. .marketing .box ul.items li {
  3674. margin: 0 10px;
  3675. }
  3676. }
  3677. @media (min-width:1001px) and (min-height:951px) {
  3678. .marketing .box {
  3679. margin-top: -170px;
  3680. }
  3681. }
  3682. @media (min-width:1001px) and (max-height:950px) {
  3683. .marketing .box {
  3684. margin-top: -130px;
  3685. }
  3686. }
  3687. @media (min-width:1001px) and (max-height:850px) {
  3688. .marketing .box {
  3689. margin-top: -90px;
  3690. }
  3691. }
  3692. @media (min-width:1001px) and (max-height:750px) {
  3693. .marketing .box {
  3694. margin-top: -60px;
  3695. }
  3696. }
  3697. @media (min-width:1001px) and (max-height:700px) {
  3698. .marketing .box .caption i {
  3699. display: none;
  3700. }
  3701. }
  3702. @media (min-width:1001px) and (max-height:650px) {
  3703. .marketing .box {
  3704. margin-top: 0px;
  3705. }
  3706. }
  3707. @media (max-width:1000px) {
  3708. .marketing .box {
  3709. margin: 0px;
  3710. }
  3711. .marketing .box ul.items {
  3712. width: 550px !important;
  3713. }
  3714. .marketing .box ul.items li {
  3715. height: 190px;
  3716. margin: 0 20px;
  3717. }
  3718. .marketing .box ul.items li u {
  3719. display: none;
  3720. }
  3721. .marketing.active .box ul.items li strong {
  3722. margin-top: 20px;
  3723. }
  3724. .marketing .shade {
  3725. display: block;
  3726. }
  3727. }
  3728. @media (max-width:1000px) and (min-height:920px) {
  3729. .marketing .box {
  3730. margin-top: -100px;
  3731. }
  3732. }
  3733. @media (max-width:1000px) and (max-height:700px) {
  3734. .marketing .box ul.items li {
  3735. height: 140px;
  3736. }
  3737. }
  3738. @media (max-width:1000px) and (max-height:580px) {
  3739. .marketing .box .caption i {
  3740. display: none;
  3741. }
  3742. .marketing .box ul.items {
  3743. margin-top: 10px;
  3744. }
  3745. }
  3746. @media (max-width:1000px) and (max-height:470px),(max-width:600px) {
  3747. .marketing .box ul.items {
  3748. margin-top: 30px;
  3749. width: 600px !important;
  3750. }
  3751. .marketing .box ul.items li {
  3752. width: 160px;
  3753. height: 43px;
  3754. margin: 30px 0 0 25px;
  3755. }
  3756. .marketing .box ul.items li i {
  3757. float: left;
  3758. margin-top: 0px;
  3759. height: 43px;
  3760. }
  3761. .marketing .box ul.items li.se i {
  3762. width: 33px;
  3763. margin: 0 6px;
  3764. background: url(../images/words_mini.png) no-repeat -86px -380px;
  3765. }
  3766. .marketing .box ul.items li.weixin i {
  3767. width: 45px;
  3768. background: url(../images/words_mini.png) no-repeat -124px -377px;
  3769. }
  3770. .marketing .box ul.items li.weibo i {
  3771. width: 42px;
  3772. margin: 0 1px 0 2px;
  3773. background: url(../images/words_mini.png) no-repeat -172px -377px;
  3774. }
  3775. .marketing .box ul.items li.sms i {
  3776. width: 38px;
  3777. margin: 0 3px 0 4px;
  3778. background: url(../images/words_mini.png) no-repeat -219px -374px;
  3779. }
  3780. .marketing .box ul.items li.pay i {
  3781. width: 34px;
  3782. margin: 0 5px 0 6px;
  3783. background: url(../images/words_mini.png) no-repeat -263px -382px;
  3784. }
  3785. .marketing .box ul.items li.bbs i {
  3786. width: 31px;
  3787. margin: 0 7px;
  3788. background: url(../images/words_mini.png) no-repeat -86px -422px;
  3789. }
  3790. .marketing .box ul.items li strong,.marketing.active .box ul.items li strong {
  3791. float: left;
  3792. margin: 0px;
  3793. padding-left: 15px;
  3794. line-height: 43px;
  3795. }
  3796. .marketing .box ul.items li p {
  3797. display: none;
  3798. }
  3799. }
  3800. @media (max-width:1000px) and (max-height:430px) {
  3801. .marketing .box ul.items {
  3802. margin-top: 20px;
  3803. }
  3804. .marketing .box ul.items li {
  3805. margin-top: 20px;
  3806. }
  3807. }
  3808. @media (max-width:600px) {
  3809. .marketing .box ul.items {
  3810. margin-top: 50px;
  3811. width: 395px !important;
  3812. }
  3813. }
  3814. @media (max-width:600px) and (min-height:750px) {
  3815. .marketing .box {
  3816. margin-top: -70px;
  3817. }
  3818. }
  3819. @media (max-width:600px) and (max-height:520px) {
  3820. .marketing .box ul.items {
  3821. margin-top: 20px;
  3822. }
  3823. .marketing .box ul.items li {
  3824. margin-top: 15px;
  3825. }
  3826. }
  3827. @media (max-width:450px) {
  3828. .marketing .box {
  3829. margin-top: 0px;
  3830. }
  3831. .marketing .box ul.items {
  3832. margin-top: 20px;
  3833. width: 220px !important;
  3834. }
  3835. }
  3836. @media (max-width:450px) and (max-height:730px) {
  3837. .marketing .box ul.items {
  3838. margin-top: 30px;
  3839. }
  3840. .marketing .box ul.items li {
  3841. margin-top: 15px;
  3842. }
  3843. }
  3844. @media (max-width:450px) and (max-height:650px) {
  3845. .marketing .box .caption i {
  3846. display: none;
  3847. }
  3848. .marketing .box ul.items {
  3849. margin-top: 20px;
  3850. }
  3851. }
  3852. @media (max-width:600px) and (max-height:380px),(max-width:450px) and (max-height:550px) {
  3853. .marketing .box ul.items {
  3854. width: 222px !important;
  3855. }
  3856. .marketing .box ul.items li {
  3857. position: relative;
  3858. width: 102px;
  3859. margin: 0 3px;
  3860. padding: 0px;
  3861. text-align: center;
  3862. }
  3863. .marketing .box ul.items li strong,.marketing.active .box ul.items li strong {
  3864. display: block;
  3865. position: absolute;
  3866. float: none;
  3867. padding: 0px;
  3868. margin: 0 auto;
  3869. width: 100px;
  3870. font-size: 14px;
  3871. font-weight: normal;
  3872. line-height: 36px;
  3873. border: 1px solid #eee;
  3874. }
  3875. .marketing .box ul.items li i {
  3876. position: absolute;
  3877. width: 130px !important;
  3878. height: 36px !important;
  3879. margin: 0 !important;
  3880. padding: 1px 0 0 1px !important;
  3881. background: White !important;
  3882. -moz-opacity: 0.5;
  3883. opacity: 0.5;
  3884. filter: alpha(opacity=50);
  3885. }
  3886. }
  3887. @media (orientation:landscape) and (max-height:230px) {
  3888. .marketing .box ul.items {
  3889. width: 334px !important;
  3890. }
  3891. }
  3892. @media (max-width:1280px) and (max-height:800px) {
  3893. section.aboutus {
  3894. background: url(../images/wallpaper7_h800.jpg) 50% 60%;
  3895. }
  3896. }
  3897. @media (max-width:960px) and (max-height:600px) {
  3898. section.aboutus {
  3899. background: url(../images/wallpaper7_h600.jpg) 50% 60%;
  3900. }
  3901. }
  3902. @media (max-width:1200px) {
  3903. .aboutus table.exp td:nth-child(2) {
  3904. display: none;
  3905. }
  3906. .aboutus table.exp td {
  3907. width: 25%;
  3908. }
  3909. }
  3910. @media (max-width:1100px) {
  3911. .aboutus .items {
  3912. left: auto;
  3913. right: -480px;
  3914. }
  3915. .aboutus.active .items {
  3916. left: auto;
  3917. right: 70px;
  3918. }
  3919. }
  3920. @media (max-width:900px) {
  3921. .aboutus table.exp td:last-child {
  3922. display: none;
  3923. }
  3924. .aboutus table.exp td {
  3925. width: 33.333333%;
  3926. }
  3927. }
  3928. @media (max-width:780px) {
  3929. .aboutus.active .items {
  3930. left: auto;
  3931. right: 30px;
  3932. }
  3933. }
  3934. @media (max-width:780px) and (max-height:500px) {
  3935. .aboutus ul.menu {
  3936. top: 100px;
  3937. }
  3938. }
  3939. @media (max-width:780px) and (max-height:400px) {
  3940. .aboutus .items {
  3941. height: 220px;
  3942. }
  3943. .aboutus .items .swiper-slide.nth1 strong {
  3944. font-size: 30px;
  3945. }
  3946. .aboutus .items .swiper-slide.nth1 p {
  3947. margin-top: 15px;
  3948. }
  3949. .aboutus .items .swiper-slide.nth1 u {
  3950. margin-top: 15px;
  3951. font-size: 22px;
  3952. }
  3953. .aboutus .items .swiper-slide.nth2 p {
  3954. margin-top: 12px;
  3955. line-height: 32px;
  3956. }
  3957. .aboutus .items .swiper-slide.nth3 strong {
  3958. margin-bottom: 15px;
  3959. }
  3960. }
  3961. @media (max-width:780px) and (max-height:340px) {
  3962. .aboutus .items {
  3963. height: 190px;
  3964. }
  3965. .aboutus.active .items {
  3966. right: -50px;
  3967. }
  3968. .aboutus .items .swiper-slide.nth1 strong {
  3969. font-size: 26px;
  3970. }
  3971. .aboutus .items .swiper-slide.nth1 u {
  3972. margin-top: 0px;
  3973. font-size: 14px;
  3974. }
  3975. .aboutus .items .swiper-slide.nth2 p:last-child {
  3976. display: none;
  3977. }
  3978. .aboutus .items .swiper-slide.nth2 p {
  3979. display: block;
  3980. width: 350px;
  3981. line-height: 35px;
  3982. }
  3983. .aboutus .items .swiper-slide.nth3 ul li:last-child {
  3984. display: none;
  3985. }
  3986. }
  3987. @media (max-width:780px) and (max-height:310px) {
  3988. .aboutus ul.menu {
  3989. top: 40px;
  3990. }
  3991. .aboutus .items {
  3992. height: 140px;
  3993. }
  3994. .aboutus.active .items {
  3995. right: -100px;
  3996. }
  3997. .aboutus .items .swiper-slide.nth1 strong {
  3998. font-size: 22px;
  3999. }
  4000. .aboutus .items .swiper-slide.nth1 p {
  4001. font-family: "宋体";
  4002. font-size: 12px;
  4003. line-height: 25px;
  4004. }
  4005. .aboutus .items .swiper-slide.nth1 u {
  4006. margin-top: -6px;
  4007. font-family: "宋体";
  4008. font-size: 12px;
  4009. }
  4010. .aboutus .items .swiper-slide.nth2 p {
  4011. width: 330px;
  4012. font-family: "宋体";
  4013. font-size: 12px;
  4014. line-height: 25px;
  4015. }
  4016. .aboutus .items .swiper-slide.nth3 ul li {
  4017. font-family: "宋体";
  4018. font-size: 12px;
  4019. line-height: 25px;
  4020. background-position: 0px 7px;
  4021. }
  4022. }
  4023. @media (max-width:550px) {
  4024. .aboutus ul.menu {
  4025. top: 90px;
  4026. left: auto;
  4027. right: 30px;
  4028. width: 180px;
  4029. }
  4030. .aboutus ul.menu li {
  4031. float: left;
  4032. width: 60px;
  4033. padding: 6px 0px;
  4034. }
  4035. .aboutus ul.menu li.bg.all {
  4036. left: auto;
  4037. margin: 0px;
  4038. width: 180px !important;
  4039. height: 34px !important;
  4040. }
  4041. .aboutus ul.menu li.bg.one {
  4042. width: 60px;
  4043. }
  4044. .aboutus .items,.aboutus.active .items {
  4045. left: 30px;
  4046. right: auto;
  4047. }
  4048. }
  4049. @media (max-width:550px) and (max-height:310px) {
  4050. .aboutus ul.menu {
  4051. top: 25px;
  4052. }
  4053. }
  4054. @media (orientation:portrait) and (max-width:700px) {
  4055. .aboutus ul.menu {
  4056. top: 120px;
  4057. left: 50%;
  4058. width: 80px;
  4059. margin-left: -120px;
  4060. width: 240px;
  4061. }
  4062. .aboutus ul.menu li {
  4063. float: left;
  4064. width: 80px !important;
  4065. padding: 10px 0px;
  4066. }
  4067. .aboutus ul.menu li.bg.all {
  4068. left: 50%;
  4069. margin-left: -120px;
  4070. width: 240px !important;
  4071. height: 42px !important;
  4072. }
  4073. .aboutus .items,.aboutus.active .items {
  4074. left: 50%;
  4075. margin-left: -240px;
  4076. height: 280px;
  4077. }
  4078. .aboutus .items .swiper-slide.nth1 strong {
  4079. font-size: 32px;
  4080. text-align: center;
  4081. }
  4082. .aboutus .items .swiper-slide.nth1 p {
  4083. display: block;
  4084. width: 230px;
  4085. margin: 0 auto;
  4086. margin-top: 30px;
  4087. }
  4088. .aboutus .items .swiper-slide.nth1 u {
  4089. font-size: 14px;
  4090. width: 230px;
  4091. margin: 0 auto;
  4092. margin-top: 6px;
  4093. }
  4094. .aboutus .items .swiper-slide.nth2 strong {
  4095. text-align: center;
  4096. margin-left: -20px;
  4097. }
  4098. .aboutus .items .swiper-slide.nth2 p {
  4099. display: block;
  4100. width: 240px;
  4101. margin: 0 auto;
  4102. margin-top: 20px;
  4103. }
  4104. .aboutus .items .swiper-slide.nth3 strong {
  4105. text-align: center;
  4106. margin-left: 10px;
  4107. }
  4108. .aboutus .items .swiper-slide.nth3 ul {
  4109. width: 240px;
  4110. margin: 0 auto;
  4111. }
  4112. .aboutus .items .swiper-slide.nth3 ul li {
  4113. line-height: 32px;
  4114. }
  4115. .aboutus .items .swiper-slide.nth3 ul li:last-child {
  4116. display: none;
  4117. }
  4118. }
  4119. @media (orientation:portrait) and (max-width:700px) and (max-height:660px) {
  4120. .aboutus ul.menu {
  4121. top: 100px;
  4122. }
  4123. .aboutus .items,.aboutus.active .items {
  4124. margin-top: 20px;
  4125. }
  4126. }
  4127. @media (orientation:portrait) and (max-width:700px) and (max-height:500px) {
  4128. .aboutus ul.menu {
  4129. top: 90px;
  4130. }
  4131. .aboutus .items,.aboutus.active .items {
  4132. margin-top: 60px;
  4133. height: 260px;
  4134. }
  4135. .aboutus .items .swiper-slide.nth1 p {
  4136. margin-top: 15px;
  4137. }
  4138. .aboutus .items .swiper-slide.nth3 ul li {
  4139. line-height: 30px;
  4140. }
  4141. }
  4142. @media (orientation:portrait) and (max-width:700px) and (max-height:470px) {
  4143. .aboutus ul.menu {
  4144. top: 80px;
  4145. }
  4146. .aboutus .items .swiper-slide.nth1 strong {
  4147. font-size: 24px;
  4148. }
  4149. .aboutus .items .swiper-slide.nth1 p {
  4150. margin-top: 10px;
  4151. line-height: 27px;
  4152. }
  4153. .aboutus .items .swiper-slide.nth1 u {
  4154. margin-top: 4px;
  4155. }
  4156. .aboutus .items .swiper-slide.nth2 p {
  4157. margin-top: 10px;
  4158. line-height: 28px;
  4159. }
  4160. .aboutus .items .swiper-slide.nth2 p:last-child {
  4161. display: none;
  4162. }
  4163. .aboutus .items .swiper-slide.nth3 strong {
  4164. margin-bottom: 8px;
  4165. }
  4166. .aboutus .items .swiper-slide.nth3 ul li {
  4167. line-height: 25px;
  4168. }
  4169. }
  4170. @media (max-width:680px),(max-height:470px) {
  4171. .aboutus table.exp,.aboutus .expBg {
  4172. display: none;
  4173. height: 0px;
  4174. }
  4175. }
  4176. @media (max-width:1280px) and (max-height:800px) {
  4177. section.contact {
  4178. background: url(../images/wallpaper8_h800.jpg) 50% bottom;
  4179. }
  4180. }
  4181. @media (max-width:960px) and (max-height:600px) {
  4182. section.contact {
  4183. background: url(../images/wallpaper8_h600.jpg) 50% 10%;
  4184. }
  4185. }
  4186. @media (max-width:950px) {
  4187. .contact .box {
  4188. width: 470px;
  4189. }
  4190. .contact .box .above .left {
  4191. float: right;
  4192. margin-left: 0px;
  4193. }
  4194. .contact .box .above .right {
  4195. display: none;
  4196. }
  4197. }
  4198. @media (orientation:landscape) and (max-height:520px) {
  4199. .contact .box {
  4200. height: 150px;
  4201. }
  4202. .contact .box .below {
  4203. display: none;
  4204. }
  4205. }
  4206. @media (orientation:landscape) and (max-height:480px) and (max-width:570px) {
  4207. .contact .box {
  4208. width: 380px;
  4209. height: 140px;
  4210. }
  4211. .contact .box .above .wechat {
  4212. margin-top: 5px;
  4213. width: 100px;
  4214. }
  4215. .contact .box .above .left p {
  4216. margin-top: 0px;
  4217. }
  4218. }
  4219. @media (orientation:portrait) and (max-width:550px) {
  4220. .contact .box {
  4221. width: 430px;
  4222. height: 490px;
  4223. }
  4224. .contact .box .above .wechat {
  4225. position: absolute;
  4226. float: none;
  4227. margin: 0px;
  4228. top: 200px;
  4229. width: 100px;
  4230. left: 50%;
  4231. margin-left: -50px;
  4232. }
  4233. .contact .box .above .left {
  4234. position: absolute;
  4235. float: none;
  4236. margin: 0px;
  4237. top: 0px;
  4238. left: 50%;
  4239. margin-left: -125px;
  4240. }
  4241. .contact .box .below {
  4242. margin-top: 150px;
  4243. }
  4244. }
  4245. @media (orientation:portrait) and (max-width:550px) and (max-height:650px),(orientation:portrait) and (max-width:470px) {
  4246. .contact .box {
  4247. width: 260px;
  4248. height: 350px;
  4249. }
  4250. .contact .box .above .wechat {
  4251. width: 150px;
  4252. margin-left: -75px;
  4253. }
  4254. .contact .box .below {
  4255. display: none;
  4256. }
  4257. }
  4258. @media (orientation:portrait) and (max-height:450px) {
  4259. .contact .box {
  4260. height: 160px;
  4261. }
  4262. .contact .box .above .wechat {
  4263. display: none;
  4264. }
  4265. }
  4266. @media (max-width:700px),(max-height:600px) {
  4267. .dock {
  4268. display: none;
  4269. }
  4270. }
  4271. @media (max-width:319px),(max-height:210px) {
  4272. body {
  4273. display: none;
  4274. }
  4275. html {
  4276. background: url(../images/displaynone.png) no-repeat 50% top;
  4277. background-color: #333a32;
  4278. }
  4279. }
  4280. .clear {
  4281. clear: both;
  4282. }
  4283. #BDBridgeWrap {
  4284. display: none;
  4285. }