style.css 74 KB

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