index.css 95 KB

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