sceen2.css 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020
  1. /*!
  2. * Bootstrap v3.2.0 (http://getbootstrap.com)
  3. * Copyright 2011-2014 Twitter, Inc.
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  5. */
  6. /*!
  7. * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=448f359db98ad28574a4)
  8. * Config saved to config.json and https://gist.github.com/448f359db98ad28574a4
  9. */
  10. /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
  11. *{
  12. -webkit-user-select: none;
  13. -user-select: none;
  14. }
  15. @font-face {
  16. font-family: 'FontAwesome';
  17. src: url(font/fontawesome-webfont.eot);
  18. src: url(font/fontawesome-webfont.eot?#iefix&v=4.5.0) format("embedded-opentype"), url(font/fontawesome-webfont.woff2) format("woff2"), url(font/awesome-webfont.woff) format("woff"), url(font/fontawesome-webfont.ttf) format("truetype"), url(font/fontawesome-webfont.svg#fontawesomeregular) format("svg");
  19. font-weight: normal;
  20. font-style: normal; }
  21. @font-face {
  22. font-family: "FZ_GBK";
  23. src:
  24. url("../fonts/FZ_GBK.ttf") format("truetype"),
  25. url("../fonts/FZ_GBK.eot") format("embedded-opentype"),
  26. url("../fonts/FZ_GBK.svg") format("svg");
  27. font-weight: normal;
  28. font-style: normal;
  29. }
  30. hr,img,legend {
  31. border: 0
  32. }
  33. legend,td,th {
  34. padding: 0
  35. }
  36. body,figure {
  37. margin: 0
  38. }
  39. .affix,.frame .slidee li .overlay {
  40. -webkit-transform: translate3d(0,0,0)
  41. }
  42. .btn,.tooltip-inner,.vr-popup .outer,.vr-popup-body .center {
  43. text-align: center
  44. }
  45. .back-btn{
  46. position: absolute;
  47. z-index: 1000000;
  48. top: 20px;
  49. left: 50px;
  50. width: 80px;
  51. height: 35px;
  52. line-height: 35px;
  53. text-align: center;
  54. font-size: 18px;
  55. text-decoration: none;
  56. cursor: pointer;
  57. color: rgb(235,211,155);
  58. background: url(http://space3d.4dage.com/SuperLY/images/img_LYbtn_bg@2x.png)top left no-repeat;
  59. background-size: 100% auto;
  60. }
  61. .back-btn:hover{
  62. color: rgb(235,211,155)!important;
  63. }
  64. *,.gui-floorplan-label,.tag-container {
  65. -webkit-touch-callout: none
  66. }
  67. #loaderCoBrand h2,#model-title,.model-title,.tag-container,.tooltip-inner {
  68. word-wrap: break-word
  69. }
  70. #quick-logo,.btn,.btn-deep-link,.message-inner,.vr-popup .outer,.webvr-popup .footer,img {
  71. vertical-align: middle
  72. }
  73. #gui-name,#share-link-wrapper,.address,.co-brand,.contact-info div,.frame .slidee li .overlay,.gui-floor-title,.gui-floor.open .container .floorChoice {
  74. text-overflow: ellipsis
  75. }
  76. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary {
  77. display: block
  78. }
  79. audio,canvas,progress,video {
  80. display: inline-block;
  81. vertical-align: baseline
  82. }
  83. audio:not([controls]) {
  84. display: none;
  85. height: 0
  86. }
  87. [hidden],template {
  88. display: none
  89. }
  90. a {
  91. background: 0 0;
  92. text-decoration: none
  93. }
  94. a:active,a:hover {
  95. outline: 0
  96. }
  97. abbr[title] {
  98. border-bottom: 1px dotted
  99. }
  100. b,optgroup,strong {
  101. font-weight: 700
  102. }
  103. dfn {
  104. font-style: italic
  105. }
  106. h1 {
  107. font-size: 2em;
  108. margin: .67em 0
  109. }
  110. mark {
  111. background: #ff0;
  112. color: #000
  113. }
  114. .btn-default,.img-thumbnail,body {
  115. background-color: #fff
  116. }
  117. .btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-danger,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-info,.open>.dropdown-toggle.btn-primary,.open>.dropdown-toggle.btn-success,.open>.dropdown-toggle.btn-warning {
  118. background-image: none
  119. }
  120. small {
  121. font-size: 80%
  122. }
  123. sub,sup {
  124. font-size: 75%;
  125. line-height: 0;
  126. position: relative;
  127. vertical-align: baseline
  128. }
  129. sup {
  130. top: -.5em
  131. }
  132. sub {
  133. bottom: -.25em
  134. }
  135. svg:not(:root) {
  136. overflow: hidden
  137. }
  138. hr {
  139. -moz-box-sizing: content-box;
  140. box-sizing: content-box;
  141. height: 0
  142. }
  143. .img-responsive,.img-thumbnail {
  144. width: 100%\9;
  145. max-width: 100%;
  146. height: auto
  147. }
  148. pre,textarea {
  149. overflow: auto
  150. }
  151. code,kbd,pre,samp {
  152. font-family: monospace,monospace;
  153. font-size: 1em
  154. }
  155. button,input,optgroup,select,textarea {
  156. color: inherit;
  157. font: inherit;
  158. margin: 0
  159. }
  160. .btn,.btn-link {
  161. font-weight: 400
  162. }
  163. button {
  164. overflow: visible;
  165. outline:none;
  166. }
  167. button,select {
  168. text-transform: none
  169. }
  170. button,html input[type=button],input[type=reset],input[type=submit] {
  171. -webkit-appearance: button;
  172. cursor: pointer
  173. }
  174. button[disabled],html input[disabled] {
  175. cursor: default
  176. }
  177. button::-moz-focus-inner,input::-moz-focus-inner {
  178. border: 0;
  179. padding: 0
  180. }
  181. input[type=checkbox],input[type=radio] {
  182. box-sizing: border-box;
  183. padding: 0
  184. }
  185. input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
  186. height: auto
  187. }
  188. input[type=search] {
  189. -webkit-appearance: textfield;
  190. -moz-box-sizing: content-box;
  191. -webkit-box-sizing: content-box;
  192. box-sizing: content-box
  193. }
  194. input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration {
  195. -webkit-appearance: none
  196. }
  197. fieldset {
  198. border: 1px solid silver;
  199. margin: 0 2px;
  200. padding: .35em .625em .75em
  201. }
  202. table {
  203. border-collapse: collapse;
  204. border-spacing: 0
  205. }
  206. *,:after,:before {
  207. -webkit-box-sizing: border-box;
  208. -moz-box-sizing: border-box;
  209. box-sizing: border-box;
  210. }
  211. .message-outer,.vr-popup,.webvr-popup {
  212. box-sizing: border-box
  213. }
  214. html {
  215. -ms-text-size-adjust: 100%;
  216. -webkit-text-size-adjust: 100%;
  217. font-size: 10px;
  218. -webkit-tap-highlight-color: transparent
  219. }
  220. body {
  221. font-size: 14px;
  222. color: rgb(235,211,155);
  223. }
  224. button,input,select,textarea {
  225. font-family: inherit;
  226. font-size: inherit;
  227. line-height: inherit
  228. }
  229. a:focus {
  230. outline: dotted thin;
  231. outline: -webkit-focus-ring-color auto 5px;
  232. outline-offset: -2px
  233. }
  234. .img-responsive {
  235. display: block
  236. }
  237. .btn,.img-thumbnail {
  238. display: inline-block;
  239. line-height: 1.42857143
  240. }
  241. .img-rounded {
  242. border-radius: 6px
  243. }
  244. .img-thumbnail {
  245. padding: 4px;
  246. border: 1px solid #ddd;
  247. border-radius: 4px;
  248. -webkit-transition: all .2s ease-in-out;
  249. -o-transition: all .2s ease-in-out;
  250. transition: all .2s ease-in-out
  251. }
  252. .img-circle {
  253. border-radius: 50%
  254. }
  255. hr {
  256. margin-top: 20px;
  257. margin-bottom: 20px;
  258. border-top: 1px solid #eee
  259. }
  260. .sr-only {
  261. position: absolute;
  262. width: 1px;
  263. height: 1px;
  264. margin: -1px;
  265. padding: 0;
  266. overflow: hidden;
  267. clip: rect(0,0,0,0);
  268. border: 0
  269. }
  270. .sr-only-focusable:active,.sr-only-focusable:focus {
  271. position: static;
  272. width: auto;
  273. height: auto;
  274. margin: 0;
  275. overflow: visible;
  276. clip: auto
  277. }
  278. .btn-block,input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block {
  279. width: 100%
  280. }
  281. .btn {
  282. margin-bottom: 0;
  283. cursor: pointer;
  284. border: 1px solid transparent;
  285. white-space: nowrap;
  286. padding: 6px 12px;
  287. font-size: 14px;
  288. -webkit-user-select: none;
  289. -moz-user-select: none;
  290. -ms-user-select: none;
  291. user-select: none
  292. }
  293. .btn.active:focus,.btn:active:focus,.btn:focus {
  294. outline: dotted thin;
  295. outline: -webkit-focus-ring-color auto 5px;
  296. outline-offset: -2px
  297. }
  298. .btn:focus,.btn:hover {
  299. color: #333;
  300. text-decoration: none
  301. }
  302. .btn.active,.btn:active {
  303. outline: 0;
  304. background-image: none;
  305. -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
  306. box-shadow: inset 0 3px 5px rgba(0,0,0,.125)
  307. }
  308. .btn.disabled,.btn[disabled],fieldset[disabled] .btn {
  309. cursor: not-allowed;
  310. pointer-events: none;
  311. opacity: .65;
  312. filter: alpha(opacity=65);
  313. -webkit-box-shadow: none;
  314. box-shadow: none
  315. }
  316. .btn-default {
  317. color: #333;
  318. border-color: #ccc
  319. }
  320. .btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default {
  321. color: #333;
  322. background-color: #e6e6e6;
  323. border-color: #adadad
  324. }
  325. .btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover {
  326. background-color: #fff;
  327. border-color: #ccc
  328. }
  329. .btn-default .badge {
  330. color: #fff;
  331. background-color: #333
  332. }
  333. .btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary {
  334. color: #fff;
  335. background-color: #3071a9;
  336. border-color: #285e8e
  337. }
  338. .btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover {
  339. background-color: #428bca;
  340. border-color: #357ebd
  341. }
  342. .btn-primary .badge {
  343. color: #428bca;
  344. background-color: #fff
  345. }
  346. .btn-success {
  347. color: #fff;
  348. background-color: #5cb85c;
  349. border-color: #4cae4c
  350. }
  351. .btn-success.active,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success {
  352. color: #fff;
  353. background-color: #449d44;
  354. border-color: #398439
  355. }
  356. .btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover {
  357. background-color: #5cb85c;
  358. border-color: #4cae4c
  359. }
  360. .btn-success .badge {
  361. color: #5cb85c;
  362. background-color: #fff
  363. }
  364. .btn-info {
  365. color: #fff;
  366. background-color: #5bc0de;
  367. border-color: #46b8da
  368. }
  369. .btn-info.active,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info {
  370. color: #fff;
  371. background-color: #31b0d5;
  372. border-color: #269abc
  373. }
  374. .btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover {
  375. background-color: #5bc0de;
  376. border-color: #46b8da
  377. }
  378. .btn-info .badge {
  379. color: #5bc0de;
  380. background-color: #fff
  381. }
  382. .btn-warning {
  383. color: #fff;
  384. background-color: #f0ad4e;
  385. border-color: #eea236
  386. }
  387. .btn-warning.active,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning {
  388. color: #fff;
  389. background-color: #ec971f;
  390. border-color: #d58512
  391. }
  392. .btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover {
  393. background-color: #f0ad4e;
  394. border-color: #eea236
  395. }
  396. .btn-warning .badge {
  397. color: #f0ad4e;
  398. background-color: #fff
  399. }
  400. .btn-danger {
  401. color: #fff;
  402. background-color: #d9534f;
  403. border-color: #d43f3a
  404. }
  405. .btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger {
  406. color: #fff;
  407. background-color: #c9302c;
  408. border-color: #ac2925
  409. }
  410. .btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover {
  411. background-color: #d9534f;
  412. border-color: #d43f3a
  413. }
  414. .btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover,.tooltip-arrow {
  415. border-color: transparent
  416. }
  417. .btn-danger .badge {
  418. color: #d9534f;
  419. background-color: #fff
  420. }
  421. .btn-link {
  422. color: #428bca;
  423. cursor: pointer;
  424. border-radius: 0
  425. }
  426. .btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link {
  427. background-color: transparent;
  428. -webkit-box-shadow: none;
  429. box-shadow: none
  430. }
  431. .btn-link:focus,.btn-link:hover {
  432. color: #2a6496;
  433. text-decoration: underline;
  434. background-color: transparent
  435. }
  436. .btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover {
  437. color: #777;
  438. text-decoration: none
  439. }
  440. .btn-lg {
  441. padding: 10px 16px;
  442. font-size: 18px;
  443. line-height: 1.33;
  444. border-radius: 6px
  445. }
  446. .btn-sm,.btn-xs {
  447. line-height: 1.5;
  448. border-radius: 3px;
  449. font-size: 12px
  450. }
  451. .btn-sm {
  452. padding: 5px 10px
  453. }
  454. .btn-xs {
  455. padding: 1px 5px
  456. }
  457. .btn-block {
  458. display: block
  459. }
  460. .btn-block+.btn-block {
  461. margin-top: 5px
  462. }
  463. .tooltip {
  464. position: absolute;
  465. z-index: 1070;
  466. display: block;
  467. visibility: visible;
  468. font-size: 12px;
  469. line-height: 1.4;
  470. opacity: 0;
  471. filter: alpha(opacity=0)
  472. }
  473. .tooltip.in {
  474. opacity: .9;
  475. filter: alpha(opacity=90)
  476. }
  477. .tooltip.top {
  478. margin-top: -5px;
  479. padding: 5px 0
  480. }
  481. #gui-fullscreen .tooltip.top{ margin-top: -5px; }
  482. .tooltip.right {
  483. margin-left: 3px;
  484. padding: 0 5px
  485. }
  486. .tooltip.bottom {
  487. margin-top: 3px;
  488. padding: 5px 0
  489. }
  490. .tooltip.left {
  491. margin-left: -3px;
  492. padding: 0 5px
  493. }
  494. .tooltip-inner {
  495. margin-top: -5px;
  496. white-space: nowrap;
  497. padding: 3px 8px;
  498. color: #fff;
  499. text-decoration: none;
  500. background-color: #000;
  501. border-radius: 4px
  502. }
  503. .tooltip-arrow {
  504. position: absolute;
  505. width: 0;
  506. height: 0;
  507. border-style: solid
  508. }
  509. .tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow {
  510. border-width: 5px 5px 0;
  511. border-top-color: #000;
  512. bottom: 0
  513. }
  514. .tooltip.top .tooltip-arrow {
  515. left: 50%;
  516. margin-left: -5px
  517. }
  518. .tooltip.top-left .tooltip-arrow {
  519. left: 5px
  520. }
  521. .tooltip.top-right .tooltip-arrow {
  522. right: 5px
  523. }
  524. .tooltip.right .tooltip-arrow {
  525. top: 50%;
  526. left: 0;
  527. margin-top: -5px;
  528. border-width: 5px 5px 5px 0;
  529. border-right-color: #000
  530. }
  531. .tooltip.left .tooltip-arrow {
  532. top: 50%;
  533. right: 0;
  534. margin-top: -5px;
  535. border-width: 5px 0 5px 5px;
  536. border-left-color: #000
  537. }
  538. .tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow {
  539. border-width: 0 5px 5px;
  540. border-bottom-color: #000;
  541. top: 0
  542. }
  543. .tooltip.bottom .tooltip-arrow {
  544. left: 50%;
  545. margin-left: -5px
  546. }
  547. .tooltip.bottom-left .tooltip-arrow {
  548. left: 5px
  549. }
  550. .tooltip.bottom-right .tooltip-arrow {
  551. right: 5px
  552. }
  553. .clearfix:after,.clearfix:before {
  554. content: " ";
  555. display: table
  556. }
  557. .clearfix:after {
  558. clear: both
  559. }
  560. .center-block {
  561. display: block;
  562. margin-left: auto;
  563. margin-right: auto
  564. }
  565. .pull-right {
  566. float: right!important
  567. }
  568. .pull-left {
  569. float: left!important
  570. }
  571. .hide {
  572. display: none!important
  573. }
  574. .show {
  575. display: block!important
  576. }
  577. .text-hide {
  578. font: 0/0 a;
  579. color: transparent;
  580. text-shadow: none;
  581. background-color: transparent;
  582. border: 0
  583. }
  584. .hidden {
  585. display: none!important;
  586. visibility: hidden!important
  587. }
  588. .affix {
  589. position: fixed;
  590. transform: translate3d(0,0,0)
  591. }
  592. @font-face {
  593. font-family: OpenSans;
  594. src: url(font/open-sans/OpenSansRegular.eot);
  595. src: url(font/open-sans/OpenSansRegular.eot) format('embedded-opentype'),url(font/open-sans/OpenSansRegular.woff2) format('woff2'),url(font/open-sans/OpenSansRegular.woff) format('woff'),url(font/open-sans/OpenSansRegular.ttf) format('truetype'),url(font/open-sans/OpenSansRegular.svg#OpenSansRegular) format('svg');
  596. font-weight: 400
  597. }
  598. @font-face {
  599. font-family: OpenSans;
  600. src: url(font/open-sans-light/OpenSansLight.eot);
  601. src: url(font/open-sans-light/OpenSansLight.eot) format('embedded-opentype'),url(font/open-sans-light/OpenSansLight.woff2) format('woff2'),url(font/open-sans-light/OpenSansLight.woff) format('woff'),url(font/open-sans-light/OpenSansLight.ttf) format('truetype'),url(font/open-sans-light/OpenSansLight.svg#OpenSansLight) format('svg');
  602. font-weight: 100
  603. }
  604. @font-face {
  605. font-family: OpenSans;
  606. src: url(font/open-sans-semibold/OpenSansSemibold.eot);
  607. src: url(font/open-sans-semibold/OpenSansSemibold.eot) format('embedded-opentype'),url(font/open-sans-semibold/OpenSansSemibold.woff2) format('woff2'),url(font/open-sans-semibold/OpenSansSemibold.woff) format('woff'),url(font/open-sans-semibold/OpenSansSemibold.ttf) format('truetype'),url(font/open-sans-semibold/OpenSansSemibold.svg#OpenSansSemibold) format('svg');
  608. font-weight: 700
  609. }
  610. @font-face {
  611. font-family: mp-font;
  612. src: url(font/mp-font.eot?sn95o4);
  613. src: url(font/mp-font.eot?#iefixsn95o4) format('embedded-opentype'),url(font/mp-font.ttf?sn95o4) format('truetype'),url(font/mp-font.woff?sn95o4) format('woff'),url(font/mp-font.svg?sn95o4#mp-font) format('svg');
  614. font-weight: 400;
  615. font-style: normal
  616. }
  617. [class*=" icon-"],[class^=icon-] {
  618. font-family: mp-font;
  619. speak: none;
  620. font-style: normal;
  621. font-weight: 500;
  622. font-variant: normal;
  623. text-transform: none;
  624. line-height: 1;
  625. -webkit-font-smoothing: antialiased;
  626. -moz-osx-font-smoothing: grayscale;
  627. }
  628. .icon-floorplan:before {
  629. content: "\e623"
  630. }
  631. .icon-link:before {
  632. content: "\31"
  633. }
  634. .icon-powered-by-matterport:before {
  635. content: "\e620"
  636. }
  637. .icon-mp-glyph:before {
  638. content: "\41"
  639. }
  640. .icon-twitter:before {
  641. content: "\66"
  642. }
  643. .icon-facebook:before {
  644. content: "\67"
  645. }
  646. .icon-close:before {
  647. content: "\48"
  648. }
  649. .icon-twitter2:before {
  650. content: "\68"
  651. }
  652. .icon-facebook2:before {
  653. content: "\69"
  654. }
  655. .icon-dollhouse:before {
  656. content: "\e600"
  657. }
  658. .icon-dpad-up {
  659. display: block;
  660. width: 0;
  661. height: 0;
  662. border-width: 0px 6px 8px;
  663. border-style: solid;
  664. border-color: transparent transparent rgb(235,211,155);
  665. /* margin: 40px 0; */
  666. transition: all 0.2s;
  667. position: relative;
  668. }
  669. .icon-dpad-down {
  670. display: block;
  671. width: 0;
  672. height: 0;
  673. border-width: 8px 6px 0;
  674. border-style: solid;
  675. border-color: rgb(235,211,155) transparent transparent;
  676. /* margin: 40px 0; */
  677. transition: all 0.2s;
  678. position: relative;
  679. }
  680. .icon-dpad-left:before {
  681. content: "\e60e";
  682. }
  683. .icon-dpad-right:before {
  684. content: "\e602"
  685. }
  686. .icon-fullscreen-exit:before {
  687. content:"";background: url("http://space3d.4dage.com/SuperLY/images/narrow_off.png") center top no-repeat; background-size: 100%; display: inline-block; width: 50px; height: 50px;
  688. }
  689. .icon-fullscreen:before {
  690. content:""; background: url("http://space3d.4dage.com/SuperLY/images/enlarge_on.png")center top no-repeat; background-size: 100%; display: inline-block; width: 50px; height: 50px;
  691. }
  692. .icon-help:before {
  693. content: "\e605"
  694. }
  695. .icon-inside:before {
  696. content: "\e606"
  697. }
  698. .icon-more:before {
  699. content: "\e607"
  700. }
  701. #play.active a i:before,.icon-pause:before {
  702. content: "\e608"
  703. }
  704. .icon-pin:before {
  705. content: "\e609"
  706. }
  707. .icon-play:before {
  708. content: "\e60a"
  709. }
  710. .icon-user:before {
  711. content: "\e60c"
  712. }
  713. .icon-share:before {
  714. content: "\e900"
  715. }
  716. .icon-webvr:before {
  717. content: "\e901"
  718. }
  719. .icon-gallery:before {
  720. content: "\e902"
  721. }
  722. .icon-ext-link:before {
  723. content: "\e903"
  724. }
  725. .icon-close-thin:before {
  726. content: "\e904"
  727. }
  728. .icon-plus:before {
  729. content: "\e905"
  730. }
  731. .icon-minus:before {
  732. content: "\e906"
  733. }
  734. .icon-email:before {
  735. content: "\e907"
  736. }
  737. .icon-find:before {
  738. content: "\e908"
  739. }
  740. #nprogress {
  741. pointer-events: none;
  742. -webkit-pointer-events: none
  743. }
  744. #nprogress .bar {
  745. background: #EDA110;
  746. border-top: 7px solid #FAAC17;
  747. position: fixed;
  748. z-index: 100;
  749. bottom: 0;
  750. left: 0;
  751. border-radius: 1px;
  752. width: 100%;
  753. height: 9px
  754. }
  755. #nprogress .peg,.track {
  756. display: block;
  757. position: absolute;
  758. right: 0
  759. }
  760. #nprogress .peg {
  761. width: 100px;
  762. height: 100%;
  763. opacity: 1;
  764. -webkit-transform: rotate(-3deg) translate(0,4px);
  765. -moz-transform: rotate(-3deg) translate(0,4px);
  766. -ms-transform: rotate(-3deg) translate(0,4px);
  767. -o-transform: rotate(-3deg) translate(0,4px);
  768. transform: rotate(-3deg) translate(0,4px)
  769. }
  770. .track {
  771. bottom: 0;
  772. width: 100%;
  773. height: 8px;
  774. background: rgba(15,16,17,.5)
  775. }
  776. .vr-popup {
  777. position: fixed;
  778. height: 100%;
  779. width: 100%;
  780. top: 0;
  781. left: 0;
  782. display: table;
  783. background-color: rgba(0,0,0,.75);
  784. z-index: 101;
  785. font-weight: lighter;
  786. -webkit-transition: all 250ms ease-in-out;
  787. transition: all 250ms ease-in-out;
  788. opacity: 0;
  789. pointer-events: none
  790. }
  791. .vr-popup.fadeIn {
  792. opacity: 1;
  793. pointer-events: all
  794. }
  795. .vr-popup.fadeIn .logo-button,.vr-popup.fadeIn .next-button,.vr-popup.fadeIn .prev-button {
  796. pointer-events: auto
  797. }
  798. .vr-popup .close {
  799. position: absolute;
  800. right: 5%;
  801. top: 3%;
  802. font-size: 16px
  803. }
  804. .vr-popup.closeByFooter .title {
  805. width: auto;
  806. white-space: nowrap;
  807. left: 50%;
  808. transform: translate(-50%,0)
  809. }
  810. .vr-popup.closeByFooter .close {
  811. display: none
  812. }
  813. .vr-popup .outer {
  814. height: 100%;
  815. position: relative;
  816. left: 10%;
  817. display: table-cell
  818. }
  819. .vr-popup .inner {
  820. width: 80%
  821. }
  822. .vr-popup .vr-images,.vr-popup .vr-popup-title {
  823. display: inline-block;
  824. width: 100%;
  825. font-weight: lighter
  826. }
  827. .vr-popup-body {
  828. font-size: 12px;
  829. font-size: 4vw;
  830. clear: both
  831. }
  832. .vr-popup .inner a {
  833. text-decoration: underline
  834. }
  835. .vr-popup .title {
  836. font-weight: lighter;
  837. position: absolute;
  838. left: 5%;
  839. top: 3%;
  840. font-size: 20px
  841. }
  842. .vr-popup .vr-page {
  843. display: block;
  844. position: absolute;
  845. bottom: 5%;
  846. padding-bottom: 8px;
  847. left: 5%;
  848. font-size: 14px
  849. }
  850. .vr-popup .vr-buttons .vr-arrows,.vr-popup .vr-images .front-close,.vr-popup.ios.front-page .img-container.second,.vr-popup.ios.front-page .vr-sub-title {
  851. display: none
  852. }
  853. @media only screen and (max-height: 400px) {
  854. .vr-popup .vr-page {
  855. bottom:25px
  856. }
  857. }
  858. .vr-popup .vr-buttons .prev-button {
  859. position: static
  860. }
  861. .vr-popup .logo-button {
  862. background-color: rgba(0,0,0,.4);
  863. border: 1px solid gray;
  864. padding: 5%;
  865. margin: 1.5% 0 0 1.5%;
  866. height: 130px;
  867. -webkit-user-select: all;
  868. -khtml-user-select: all;
  869. -moz-user-select: all;
  870. -ms-user-select: text;
  871. user-select: all
  872. }
  873. #gui-parent,.vr-popup.desktop.front-page .img-container.same-line {
  874. -webkit-user-select: none;
  875. -khtml-user-select: none;
  876. -moz-user-select: none;
  877. -ms-user-select: none
  878. }
  879. .vr-popup.portrait .logo-button {
  880. margin-top: 5%;
  881. margin-bottom: 5%;
  882. height: 130px
  883. }
  884. .vr-popup .vr-img-caption.second,.vr-popup .vr-img-caption.third {
  885. font-size: 14px;
  886. margin-left: 15%;
  887. text-align: left
  888. }
  889. .vr-popup.portrait .img-container.logo-button .vr-img-caption {
  890. margin-top: 5%
  891. }
  892. .vr-popup .img-container.same-line,.vr-popup .vr-sm-image.same-line {
  893. float: left;
  894. max-width: 48.5%
  895. }
  896. .vr-popup .img-container.same-line img {
  897. max-width: 85%;
  898. max-height: 60px
  899. }
  900. .vr-popup .img-container.logo-button img {
  901. width: auto;
  902. height: 80%;
  903. object-fit: contain;
  904. margin-bottom: 2%
  905. }
  906. .vr-popup .vr-buttons {
  907. position: absolute;
  908. bottom: 5%;
  909. width: 100%;
  910. float: right;
  911. right: 5%
  912. }
  913. .vr-popup .vr-buttons .next-button,.vr-popup .vr-buttons .prev-button {
  914. width: 130px;
  915. padding: 7px 0;
  916. border: 1px solid gray
  917. }
  918. .vr-popup .next-button,.vr-popup .prev-button {
  919. float: right;
  920. background-color: rgba(0,0,0,.4);
  921. border: 1px solid #fff;
  922. width: 25%;
  923. padding: 1.5%;
  924. margin: 0 0 0 1.5%;
  925. cursor: pointer
  926. }
  927. .vr-popup .img-container.logo-button:active,.vr-popup .next-button.hasHover:hover,.vr-popup .next-button:active,.vr-popup .prev-button.hasHover:hover,.vr-popup .prev-button:active {
  928. background-color: rgba(0,0,0,.25);
  929. color: rgba(75,205,252,1);
  930. border-color: rgba(75,205,252,1)
  931. }
  932. @media only screen and (max-width: 350px) {
  933. .vr-popup.desktop .vr-buttons .next-button,.vr-popup.desktop .vr-buttons .prev-button,.vr-popup.mobile .vr-buttons .next-button,.vr-popup.mobile .vr-buttons .prev-button {
  934. width:110px
  935. }
  936. }
  937. @media only screen and (max-height: 400px) {
  938. .vr-popup .vr-buttons {
  939. bottom:25px
  940. }
  941. }
  942. .vr-popup.mobile .vr-popup-body {
  943. text-align: left
  944. }
  945. .vr-popup.mobile .vr-img-caption.first,.vr-popup.mobile .vr-popup-title {
  946. font-size: 5vw
  947. }
  948. .vr-popup.mobile.details-page .img-container {
  949. margin-bottom: 10%
  950. }
  951. .vr-popup.mobile.portrait.supported.details-page .inner,.vr-popup.mobile.portrait.unsupported.details-page .inner {
  952. margin-bottom: 20%
  953. }
  954. .vr-popup.ios.details-page .vr-img-caption.first,.vr-popup.mobile.details-page .vr-img-caption.second,.vr-popup.mobile.details-page .vr-img-caption.third,.vr-popup.unsupported.front-page .vr-img-caption.second {
  955. text-align: left;
  956. font-size: 4vw;
  957. margin-left: 25%
  958. }
  959. .vr-popup.mobile.details-page .vr-sm-image.first {
  960. max-width: 30%;
  961. margin-bottom: 3%
  962. }
  963. .vr-popup.ios.details-page .vr-sm-image.first,.vr-popup.mobile.details-page .vr-sm-image.second,.vr-popup.mobile.details-page .vr-sm-image.third,.vr-popup.mobile.unsupported.front-page .vr-sm-image.second {
  964. float: left;
  965. width: 15%
  966. }
  967. .vr-popup.mobile.portrait.details-page .vr-img-caption.first {
  968. width: 80%;
  969. margin-left: 10%
  970. }
  971. .vr-popup.supported.front-page .vr-img-caption {
  972. font-size: 2.4vw;
  973. width: 100%;
  974. margin-left: 0;
  975. text-align: center;
  976. white-space: nowrap
  977. }
  978. .vr-popup.landscape.supported.front-page .vr-popup-body {
  979. font-size: 2.2vw;
  980. width: 90%;
  981. position: relative;
  982. left: 5%
  983. }
  984. .vr-popup.portrait.supported.front-page .inner {
  985. position: fixed;
  986. width: 94%;
  987. left: 3%;
  988. top: 17%
  989. }
  990. .vr-popup.landscape.supported.front-page .vr-popup-title,.vr-popup.landscape.unsupported.front-page .vr-popup-title {
  991. font-size: 3vw
  992. }
  993. .vr-popup.portrait.supported.front-page .vr-img-caption {
  994. margin-top: 8%;
  995. font-size: 3.5vw
  996. }
  997. .vr-popup.supported .img-container.same-line {
  998. width: 47%
  999. }
  1000. .vr-popup.mobile.supported.front-page .logo-button.same-line img {
  1001. height: auto
  1002. }
  1003. .vr-popup.portrait.supported.front-page .img-container.second {
  1004. margin-left: 3%
  1005. }
  1006. .vr-popup.portrait.supported.front-page .vr-popup-body {
  1007. margin-left: 2%;
  1008. width: 95%
  1009. }
  1010. .vr-popup.landscape.supported.front-page .same-line img {
  1011. max-height: 40px
  1012. }
  1013. .vr-popup.landscape.supported .logo-button {
  1014. height: auto;
  1015. padding: 3%
  1016. }
  1017. .vr-popup.portrait.unsupported.front-page .inner {
  1018. margin-bottom: 20%
  1019. }
  1020. .vr-popup.portrait.unsupported.front-page .vr-img-caption {
  1021. margin-bottom: 10%
  1022. }
  1023. .vr-popup.landscape.unsupported.front-page .vr-img-caption {
  1024. margin-bottom: 5%;
  1025. font-size: 2.5vw
  1026. }
  1027. .vr-popup.landscape.mobile.front-page.unsupported .vr-img-caption.second {
  1028. margin-left: 15%
  1029. }
  1030. .vr-popup.unsupported.front-page .vr-sm-image.second {
  1031. float: left
  1032. }
  1033. .vr-popup.unsupported.front-page.landscape .vr-sm-image.second {
  1034. width: 10%
  1035. }
  1036. .vr-popup.landscape .outer {
  1037. left: 5%
  1038. }
  1039. .vr-popup.mobile.landscape.front-page .inner {
  1040. margin-left: 5%
  1041. }
  1042. .vr-popup.landscape.supported.front-page .vr-images {
  1043. width: 80%
  1044. }
  1045. .vr-popup.landscape.details-page .img-container {
  1046. margin-bottom: 3%;
  1047. margin-top: 2%
  1048. }
  1049. .vr-popup.landscape.supported.details-page .inner,.vr-popup.landscape.unsupported.details-page .inner {
  1050. width: 90%
  1051. }
  1052. .vr-popup.landscape.supported.details-page .vr-sm-image.first,.vr-popup.landscape.unsupported.details-page .vr-sm-image.first {
  1053. float: left;
  1054. max-width: 25%;
  1055. margin-top: 2%;
  1056. margin-bottom: 15%
  1057. }
  1058. .vr-popup.ios.portrait.details-page .img-container,.vr-popup.ios.portrait.details-page .vr-popup-title {
  1059. margin-bottom: 7%
  1060. }
  1061. .vr-popup.mobile.landscape.details-page .vr-img-caption.first {
  1062. font-size: 3vw;
  1063. margin-left: 20%
  1064. }
  1065. .vr-popup.landscape.details-page.supported .vr-sm-image.second,.vr-popup.landscape.details-page.supported .vr-sm-image.third,.vr-popup.landscape.details-page.unsupported .vr-sm-image.second,.vr-popup.landscape.details-page.unsupported .vr-sm-image.third {
  1066. margin-left: 7%;
  1067. margin-right: 3%;
  1068. width: 7%
  1069. }
  1070. .vr-popup.landscape.details-page.supported .vr-img-caption.second,.vr-popup.landscape.details-page.supported .vr-img-caption.third,.vr-popup.landscape.details-page.unsupported .vr-img-caption.second,.vr-popup.landscape.details-page.unsupported .vr-img-caption.third {
  1071. margin-left: 45%;
  1072. font-size: 2vw
  1073. }
  1074. .vr-popup.ios.portrait .title {
  1075. font-size: 19px
  1076. }
  1077. .vr-popup.ios.portrait.front-page .vr-images {
  1078. width: 50%;
  1079. position: relative;
  1080. bottom: 1em
  1081. }
  1082. .vr-popup.ios.portrait.front-page .vr-images img {
  1083. max-width: 60%
  1084. }
  1085. .vr-popup.ios.portrait.front-page .vr-popup-body {
  1086. text-align: center;
  1087. width: 50%;
  1088. margin-left: 25%;
  1089. font-size: 3.5vw
  1090. }
  1091. .vr-popup.ios.portrait .img-container.logo-button .vr-img-caption {
  1092. margin-top: 0;
  1093. font-size: 4vw
  1094. }
  1095. .vr-popup.ios.landscape.front-page .outer,.vr-popup.ios.portrait .outer {
  1096. bottom: 0;
  1097. left: 0
  1098. }
  1099. .vr-popup.ios.portrait .outer {
  1100. position: relative;
  1101. bottom: 3%
  1102. }
  1103. .vr-popup.ios.landscape.front-page .inner,.vr-popup.ios.portrait .inner {
  1104. width: 100%
  1105. }
  1106. .vr-popup.ios.portrait.details-page .vr-images img {
  1107. position: relative;
  1108. left: 6%;
  1109. max-width: 96%
  1110. }
  1111. .vr-popup.ios.portrait.front-page .vr-popup-title {
  1112. width: 80%;
  1113. font-size: 6vw
  1114. }
  1115. .vr-popup.ios.portrait.details-page .vr-img-caption {
  1116. margin-right: 5%
  1117. }
  1118. .vr-popup.ios.portrait.details-page .vr-img-caption.first {
  1119. margin-left: 25%
  1120. }
  1121. .vr-popup.mobile.ios.portrait.details-page .vr-sm-image {
  1122. width: 12%
  1123. }
  1124. .vr-popup.mobile.ios.portrait.details-page .vr-sm-image.first {
  1125. width: 15%;
  1126. margin-bottom: 0
  1127. }
  1128. .vr-popup.ios.landscape.front-page .vr-images {
  1129. width: 35%;
  1130. height: 30%;
  1131. position: relative;
  1132. bottom: .75em
  1133. }
  1134. .vr-popup.ios.landscape.front-page .img-container.logo-button img {
  1135. height: 60%;
  1136. margin-top: 5%
  1137. }
  1138. .vr-popup.ios.landscape.front-page .vr-popup-body {
  1139. text-align: center;
  1140. width: 30%;
  1141. margin-left: 35%;
  1142. font-size: 2vw
  1143. }
  1144. .vr-popup.ios.landscape.front-page .vr-img-caption.first {
  1145. font-size: 2.5vw
  1146. }
  1147. .vr-popup.ios.landscape.front-page .inner {
  1148. margin-left: 0
  1149. }
  1150. .vr-popup.ios.landscape.front-page .vr-images {
  1151. margin: auto
  1152. }
  1153. .vr-popup.ios.landscape.front-page .vr-popup-title {
  1154. font-size: 4vw;
  1155. height: 0
  1156. }
  1157. .vr-popup.mobile.ios.landscape.details-page .vr-img-caption,.vr-popup.mobile.ios.landscape.details-page .vr-img-caption.first {
  1158. font-size: 2.5vw
  1159. }
  1160. .vr-popup.ios.landscape.details-page .vr-popup-title {
  1161. font-size: 4vw
  1162. }
  1163. .vr-popup.landscape.ios.details-page .inner {
  1164. margin-left: 5%
  1165. }
  1166. .vr-popup.landscape.ios.details-page .vr-sm-image {
  1167. width: 10%
  1168. }
  1169. .vr-popup.landscape.ios.details-page .vr-sm-image.first {
  1170. position: relative;
  1171. top: 1em;
  1172. width: 12%
  1173. }
  1174. .vr-popup.landscape.ios.details-page .vr-img-caption {
  1175. margin-left: 18%
  1176. }
  1177. .vr-popup.landscape.ios.details-page .vr-img-caption.first {
  1178. margin-bottom: 8%;
  1179. margin-left: 18%;
  1180. position: relative;
  1181. top: 1em
  1182. }
  1183. .vr-popup.desktop {
  1184. width: 480px;
  1185. height: 450px;
  1186. padding: 40px 65px;
  1187. color: #fff;
  1188. position: absolute;
  1189. left: 50%;
  1190. top: 50%;
  1191. transform: translate(-50%,-50%);
  1192. border-radius: 10px
  1193. }
  1194. .vr-popup.desktop .outer {
  1195. left: 0;
  1196. width: 100%
  1197. }
  1198. .vr-popup.desktop .inner {
  1199. margin-bottom: 10%;
  1200. width: 100%;
  1201. font-size: 15px
  1202. }
  1203. .vr-popup.desktop .title {
  1204. font-size: 20px
  1205. }
  1206. .vr-popup.desktop .vr-buttons .next-button,.vr-popup.desktop .vr-buttons .prev-button {
  1207. width: 123px
  1208. }
  1209. .vr-popup.desktop .inner p.logo-button {
  1210. height: auto;
  1211. width: 100%;
  1212. margin: 0;
  1213. padding: 3%;
  1214. font-size: 12px;
  1215. text-align: left
  1216. }
  1217. .vr-popup.desktop.front-page .logo-button .vr-img-caption {
  1218. font-size: 13px;
  1219. text-align: center;
  1220. margin-left: 0;
  1221. margin-top: 8%
  1222. }
  1223. .vr-popup.desktop.front-page .inner {
  1224. line-height: 1;
  1225. margin-top: 15px
  1226. }
  1227. .vr-popup.desktop.front-page .inner h3 {
  1228. font-size: 16px;
  1229. font-weight: lighter
  1230. }
  1231. .vr-popup.desktop.front-page .img-container.same-line {
  1232. width: 48.5%;
  1233. cursor: pointer;
  1234. user-select: none
  1235. }
  1236. .vr-popup.desktop.front-page .img-container.logo-button {
  1237. border: none;
  1238. background-color: inherit
  1239. }
  1240. .vr-popup.desktop.front-page .img-container.logo-button:hover {
  1241. color: rgba(75,205,252,1);
  1242. background-color: inherit
  1243. }
  1244. .vr-popup.desktop.front-page .logo-button {
  1245. margin-left: 0
  1246. }
  1247. .vr-popup.desktop.front-page .logo-button.first {
  1248. margin-right: 3%
  1249. }
  1250. .vr-popup.desktop.front-page .inner .vr-popup-body {
  1251. font-size: 12px
  1252. }
  1253. .vr-popup.desktop.details-page .inner {
  1254. position: absolute;
  1255. top: 18px
  1256. }
  1257. .vr-popup.desktop.details-page .vr-img-caption {
  1258. font-size: 14px;
  1259. margin-top: 3%
  1260. }
  1261. .vr-popup.desktop.details-page .vr-img-caption.first {
  1262. font-size: 18px
  1263. }
  1264. .vr-popup.desktop.details-page .img-container {
  1265. margin-bottom: 7%
  1266. }
  1267. .vr-popup.desktop.details-page .img-container.first {
  1268. padding-bottom: 7%
  1269. }
  1270. .vr-popup.desktop.details-page .vr-sm-image.first {
  1271. height: 70px;
  1272. float: left;
  1273. margin-left: 7%
  1274. }
  1275. .vr-popup.desktop.details-page .vr-sm-image.second,.vr-popup.desktop.details-page .vr-sm-image.third {
  1276. cursor: pointer;
  1277. float: right;
  1278. height: 40px;
  1279. position: relative;
  1280. left: 15px
  1281. }
  1282. .vr-popup.desktop.details-page .vr-img-caption.second,.vr-popup.desktop.details-page .vr-img-caption.third {
  1283. margin-left: 0;
  1284. margin-right: 15%
  1285. }
  1286. .vr-popup.desktop.front-page .vr-images.headsetOptions .front-close {
  1287. display: block;
  1288. position: relative;
  1289. top: 15px;
  1290. height: 19px;
  1291. width: 19px;
  1292. font-size: 18px;
  1293. float: right;
  1294. background-color: #fff;
  1295. color: #000;
  1296. border-radius: 10px;
  1297. cursor: pointer
  1298. }
  1299. .vr-popup.desktop.front-page .vr-images.headsetOptions .front-close:hover {
  1300. background-color: rgba(75,205,252,1)
  1301. }
  1302. .vr-popup.desktop.front-page .vr-images.headsetOptions .front-close .front-close-x {
  1303. padding-top: 10px
  1304. }
  1305. .vr-popup.desktop.front-page .headsetOptions .img-container.logo-button.first {
  1306. position: relative;
  1307. right: 10px
  1308. }
  1309. .vr-popup.desktop.front-page .headsetOptions .img-container.logo-button {
  1310. margin-bottom: 0
  1311. }
  1312. .vr-popup.desktop.front-page .headsetOptions .img-container.logo-button.second img {
  1313. height: auto;
  1314. max-width: 110%;
  1315. position: relative;
  1316. bottom: 25px;
  1317. right: 30px;
  1318. margin-bottom: 15px
  1319. }
  1320. .vr-popup.desktop.front-page .headsetOptions .img-container.logo-button.second img.gear {
  1321. bottom: 0;
  1322. cursor: pointer
  1323. }
  1324. .vr-popup.desktop.front-page .headsetOptions .img-container.logo-button.second img.link,.vr-popup.desktop.front-page .headsetOptions .img-container.logo-button.third img.link {
  1325. cursor: pointer
  1326. }
  1327. .vr-popup.desktop.front-page .headsetOptions .vr-img-caption.second span {
  1328. color: transparent;
  1329. display: none
  1330. }
  1331. .vr-popup.tiny.ios.landscape .inner {
  1332. position: fixed;
  1333. left: 0;
  1334. top: 25%;
  1335. bottom: 0
  1336. }
  1337. .vr-popup.tiny.ios.landscape.details-page .inner {
  1338. top: 18%;
  1339. margin-bottom: 3%;
  1340. left: 5%
  1341. }
  1342. .vr-popup.tiny.ios.landscape.front-page .vr-popup-title {
  1343. font-size: 16px
  1344. }
  1345. .vr-popup.tiny.ios.landscape.front-page .img-container {
  1346. height: 70px
  1347. }
  1348. .vr-popup.tiny.landscape.ios.front-page .img-container.logo-button img {
  1349. margin-top: 0
  1350. }
  1351. .vr-popup.tiny.ios.mobile.details-page .vr-sm-image.first {
  1352. margin-bottom: 0
  1353. }
  1354. .vr-popup.tiny.ios.landscape.details-page .img-container,.vr-popup.tiny.ios.landscape.details-page .vr-img-caption.first {
  1355. margin-bottom: 0;
  1356. margin-top: 0
  1357. }
  1358. .vr-popup.tiny.ios.landscape.details-page .vr-sm-image,.vr-popup.tiny.ios.landscape.details-page .vr-sm-image.first {
  1359. width: 5%
  1360. }
  1361. .vr-popup.tiny.ios.landscape.details-page .vr-popup-title {
  1362. font-size: 16px;
  1363. margin-bottom: 5px
  1364. }
  1365. .vr-popup.tiny.mobile.ios.landscape.details-page .vr-img-caption,.vr-popup.tiny.mobile.ios.landscape.details-page .vr-img-caption.first {
  1366. font-size: 12px
  1367. }
  1368. .vr-popup.tinier.landscape .vr-buttons .next-button,.vr-popup.tinier.landscape .vr-buttons .prev-button {
  1369. width: 65px;
  1370. height: 40px;
  1371. color: transparent;
  1372. font-size: 0;
  1373. margin: 0
  1374. }
  1375. .vr-popup.tinier.landscape .vr-buttons .vr-arrows {
  1376. display: inline-block;
  1377. float: right;
  1378. bottom: 5%;
  1379. right: 8%;
  1380. pointer-events: none
  1381. }
  1382. .vr-popup.tinier.landscape.front-page .vr-buttons .prev-arrow,.vr-popup.tinier.supported.landscape.front-page .vr-popup-body br,.vr-popup.tinier.unsupported.landscape.front-page .vr-img-caption.first {
  1383. display: none
  1384. }
  1385. .vr-popup.tinier.landscape .vr-arrows .next-arrow,.vr-popup.tinier.landscape .vr-arrows .prev-arrow {
  1386. position: relative;
  1387. height: 30px;
  1388. top: 5px;
  1389. border: 1px solid #000
  1390. }
  1391. .vr-popup.tinier.landscape .vr-buttons .prev-button {
  1392. border-right-color: transparent
  1393. }
  1394. .vr-popup.tinier.landscape .vr-buttons .prev-button:active {
  1395. border-color: rgba(75,205,252,1)
  1396. }
  1397. .vr-popup.tinier.landscape .vr-buttons .prev-arrow {
  1398. -webkit-transform: rotate(180deg);
  1399. -moz-transform: rotate(180deg);
  1400. -o-transform: rotate(180deg);
  1401. -ms-transform: rotate(180deg);
  1402. transform: rotate(180deg)
  1403. }
  1404. .vr-popup.tinier.landscape.front-page .vr-buttons .next-arrow {
  1405. left: 43px
  1406. }
  1407. .vr-popup.tinier.landscape.details-page .vr-buttons .prev-arrow {
  1408. left: 39px
  1409. }
  1410. .vr-popup.tinier.details-page .vr-buttons .next-arrow {
  1411. left: 125px
  1412. }
  1413. .vr-popup.tinier.supported,.vr-popup.tinier.unsupported {
  1414. background-color: rgba(0,0,0,.8)
  1415. }
  1416. .vr-popup.tinier.supported .title,.vr-popup.tinier.unsupported .title {
  1417. font-size: 9vh
  1418. }
  1419. .vr-popup.tinier.supported.landscape .inner,.vr-popup.tinier.unsupported.landscape .inner {
  1420. position: fixed;
  1421. left: 2%;
  1422. top: 7%
  1423. }
  1424. .vr-popup.tinier.supported.landscape.front-page .inner {
  1425. width: 85%;
  1426. margin-left: 2%
  1427. }
  1428. .vr-popup.tinier.supported.landscape.front-page .vr-popup-title {
  1429. font-size: 9vh;
  1430. float: right;
  1431. width: 30%;
  1432. margin-top: 5%
  1433. }
  1434. .vr-popup.tinier.supported.landscape.front-page .vr-popup-body {
  1435. font-size: 7vh;
  1436. width: 100%
  1437. }
  1438. .vr-popup.tinier.supported.landscape.front-page .vr-img-caption,.vr-popup.tinier.supported.landscape.front-page .vr-sub-title {
  1439. font-size: 6vh
  1440. }
  1441. .vr-popup.tinier.supported.landscape.front-page h4.vr-sub-title {
  1442. margin-bottom: 1%
  1443. }
  1444. .vr-popup.tinier.supported.landscape.front-page .vr-images {
  1445. margin-top: 3%;
  1446. width: 65%
  1447. }
  1448. .vr-popup.tinier.mobile.supported.landscape.front-page .logo-button.same-line {
  1449. padding: 2%
  1450. }
  1451. .vr-popup.tinier.unsupported.landscape.front-page .inner {
  1452. margin-top: 4%
  1453. }
  1454. .vr-popup.tinier.unsupported.landscape.front-page .vr-popup-title {
  1455. font-size: 8vh;
  1456. width: 90%
  1457. }
  1458. .vr-popup.tinier.unsupported.front-page.landscape .vr-sm-image.second {
  1459. margin-top: 1%;
  1460. margin-left: 6%;
  1461. width: 5%
  1462. }
  1463. .vr-popup.tinier.unsupported.front-page.landscape .vr-img-caption.second {
  1464. margin-top: 1%;
  1465. font-size: 7vh
  1466. }
  1467. .vr-popup.tinier.unsupported.landscape.details-page .inner,j .vr-popup.tinier.supported.landscape.details-page .inner {
  1468. left: 5%
  1469. }
  1470. .vr-popup.tinier.supported.landscape.details-page .inner,.vr-popup.tinier.unsupported.landscape.details-page .inner {
  1471. margin-bottom: 3%;
  1472. left: 5%;
  1473. height: 70%
  1474. }
  1475. .vr-popup.tinier.supported.landscape.details-page .img-container,.vr-popup.tinier.supported.landscape.details-page .vr-img-caption.first,.vr-popup.tinier.unsupported.landscape.details-page .img-container,.vr-popup.tinier.unsupported.landscape.details-page .vr-img-caption.first {
  1476. margin-bottom: .5%;
  1477. margin-top: .5%;
  1478. margin-left: 0
  1479. }
  1480. .vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.second,.vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.third,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.second,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.third {
  1481. margin-left: 35%
  1482. }
  1483. .vr-popup.tinier.supported.landscape.details-page .vr-sm-image,.vr-popup.tinier.unsupported.landscape.details-page .vr-sm-image {
  1484. width: auto;
  1485. max-height: 30px;
  1486. max-width: 30px
  1487. }
  1488. .vr-popup.tinier.supported.landscape.details-page .vr-sm-image.first,.vr-popup.tinier.unsupported.landscape.details-page .vr-sm-image.first {
  1489. max-height: 70px;
  1490. max-width: 110px
  1491. }
  1492. .vr-popup.tinier.supported.landscape.details-page .vr-popup-title,.vr-popup.tinier.unsupported.landscape.details-page .vr-popup-title {
  1493. font-size: 16px;
  1494. margin-bottom: 5px
  1495. }
  1496. .vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.first,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.first {
  1497. font-size: 7.5vh
  1498. }
  1499. .vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption {
  1500. font-size: 7vh
  1501. }
  1502. @media only screen and (min-width: 488px) and (min-height:451px) {
  1503. .vr-popup.desktop .vr-page {
  1504. position:absolute;
  1505. bottom: -5%;
  1506. left: -12%
  1507. }
  1508. .vr-popup.desktop .vr-buttons {
  1509. position: absolute;
  1510. bottom: -5%;
  1511. right: -12%
  1512. }
  1513. .vr-popup.desktop .vr-buttons .next-button {
  1514. margin-left: 8px
  1515. }
  1516. .vr-popup.desktop .close {
  1517. position: absolute;
  1518. top: -7%;
  1519. right: -11.5%
  1520. }
  1521. .vr-popup.desktop .title {
  1522. position: absolute
  1523. }
  1524. }
  1525. @media only screen and (max-width: 487px),(max-height:450px) {
  1526. .vr-popup.desktop {
  1527. width:100%;
  1528. height: 100%;
  1529. border-radius: 0;
  1530. padding: 40px
  1531. }
  1532. .vr-popup.desktop .inner,.vr-popup.desktop.front-page .inner {
  1533. margin: auto;
  1534. width: 100%;
  1535. max-width: 400px
  1536. }
  1537. .vr-popup.mobile.desktop.portrait .inner {
  1538. margin-bottom: 20%
  1539. }
  1540. .vr-popup.desktop.landscape.details-page .vr-img-caption.first {
  1541. margin-left: 0
  1542. }
  1543. .vr-popup.desktop.landscape.details-page .vr-sm-image.second,.vr-popup.desktop.landscape.details-page .vr-sm-image.third {
  1544. width: 10%
  1545. }
  1546. .vr-popup.desktop.landscape.details-page .vr-img-caption.second,.vr-popup.desktop.landscape.details-page .vr-img-caption.third {
  1547. margin-left: 20%
  1548. }
  1549. }
  1550. @media only screen and (max-width: 360px) and (min-height:500px) {
  1551. .vr-popup.desktop.portrait.details-page .vr-sm-image.first {
  1552. margin:auto;
  1553. float: none
  1554. }
  1555. .vr-popup.desktop.portrait.details-page .vr-img-caption.first {
  1556. float: right;
  1557. margin-bottom: 10%
  1558. }
  1559. .vr-popup.desktop.portrait.details-page .vr-sm-image.second,.vr-popup.desktop.portrait.details-page .vr-sm-image.third {
  1560. width: 40%;
  1561. height: auto
  1562. }
  1563. .vr-popup.desktop.portrait.details-page .vr-img-caption.second,.vr-popup.desktop.portrait.details-page .vr-img-caption.third {
  1564. margin-right: 40%
  1565. }
  1566. }
  1567. @media only screen and (min-width: 500px) and (min-height:500px) {
  1568. .vr-popup.mobile {
  1569. width:480px;
  1570. height: 460px;
  1571. padding: 45px;
  1572. position: absolute;
  1573. left: 50%;
  1574. top: 50%;
  1575. transform: translate(-50%,-50%);
  1576. border-radius: 10px
  1577. }
  1578. .vr-popup.ios.portrait .outer {
  1579. bottom: 0
  1580. }
  1581. .vr-popup.portrait.ios.details-page .outer,.vr-popup.portrait.unsupported .outer {
  1582. left: 5%
  1583. }
  1584. .vr-popup.landscape.ios.details-page .inner,.vr-popup.landscape.unsupported.details-page .inner,.vr-popup.landscape.unsupported.front-page .inner,.vr-popup.mobile.portrait.unsupported.details-page .inner,.vr-popup.portrait.ios.details-page .inner,.vr-popup.portrait.unsupported.front-page .inner {
  1585. margin-bottom: 20px;
  1586. margin-left: 0;
  1587. width: 90%
  1588. }
  1589. .vr-popup.ios.landscape.front-page .vr-popup-title,.vr-popup.ios.portrait.front-page .vr-popup-title {
  1590. width: 80%;
  1591. font-size: 24px
  1592. }
  1593. .vr-popup.ios.landscape.front-page .vr-images,.vr-popup.ios.portrait.front-page .vr-images {
  1594. width: 170px
  1595. }
  1596. .vr-popup.ios.landscape.front-page .img-container.logo-button .vr-img-caption,.vr-popup.ios.portrait.front-page .img-container.logo-button .vr-img-caption {
  1597. font-size: 14px
  1598. }
  1599. .vr-popup.ios.landscape.front-page .vr-popup-body,.vr-popup.ios.portrait.front-page .vr-popup-body {
  1600. font-size: 16px;
  1601. width: 80%;
  1602. margin-left: 10%
  1603. }
  1604. .vr-popup.ios.mobile.details-page .vr-popup-title {
  1605. font-size: 20px
  1606. }
  1607. .vr-popup.ios.portrait.details-page .vr-img-caption.first,.vr-popup.ios.portrait.details-page .vr-sm-image.first,.vr-popup.mobile.ios.landscape.details-page .vr-img-caption.first,.vr-popup.mobile.ios.landscape.details-page .vr-sm-image.first {
  1608. top: 0
  1609. }
  1610. .vr-popup.ios.details-page .vr-img-caption.first,.vr-popup.ios.details-page .vr-img-caption.second,.vr-popup.ios.details-page .vr-img-caption.third,.vr-popup.mobile.ios.landscape.details-page .vr-img-caption,.vr-popup.mobile.ios.landscape.details-page .vr-img-caption.first {
  1611. font-size: 15px;
  1612. margin-left: 25%;
  1613. margin-bottom: 12px
  1614. }
  1615. .vr-popup.ios.landscape.details-page .vr-popup-title,.vr-popup.ios.portrait.details-page .vr-popup-title {
  1616. margin-bottom: 20px
  1617. }
  1618. .vr-popup.ios.landscape.details-page .img-container,.vr-popup.ios.portrait.details-page .img-container {
  1619. margin-bottom: 18px
  1620. }
  1621. .vr-popup.landscape.ios.details-page .vr-sm-image {
  1622. margin-left: 10px;
  1623. width: 50px
  1624. }
  1625. .vr-popup.landscape.ios.details-page .vr-sm-image.first {
  1626. width: 60px
  1627. }
  1628. .vr-popup.landscape.unsupported.front-page .vr-popup-title,.vr-popup.portrait.unsupported.front-page .vr-popup-title {
  1629. font-size: 20px;
  1630. margin-bottom: 20px
  1631. }
  1632. .vr-popup.landscape.unsupported.front-page .vr-img-caption,.vr-popup.portrait.unsupported.front-page .vr-img-caption {
  1633. margin-bottom: 20px
  1634. }
  1635. .vr-popup.landscape.unsupported.front-page .vr-sm-image.second,.vr-popup.portrait.unsupported.front-page .vr-sm-image.second {
  1636. margin-left: 5%
  1637. }
  1638. .vr-popup.unsupported.details-page.landscape .vr-sm-image.second,.vr-popup.unsupported.details-page.landscape .vr-sm-image.third,.vr-popup.unsupported.details-page.portrait .vr-sm-image.second,.vr-popup.unsupported.details-page.portrait .vr-sm-image.third,.vr-popup.unsupported.front-page.landscape .vr-sm-image.second,.vr-popup.unsupported.front-page.portrait .vr-sm-image.second {
  1639. width: 45px;
  1640. margin-left: 0
  1641. }
  1642. .vr-popup.landscape.details-page.unsupported .vr-img-caption.second,.vr-popup.landscape.details-page.unsupported .vr-img-caption.third,.vr-popup.landscape.mobile.front-page.unsupported .vr-img-caption.second,.vr-popup.portrait.details-page.unsupported .vr-img-caption.second,.vr-popup.portrait.details-page.unsupported .vr-img-caption.third,.vr-popup.portrait.mobile.front-page.unsupported .vr-img-caption.second {
  1643. margin-left: 75px;
  1644. font-size: 14px
  1645. }
  1646. .vr-popup.landscape.details-page .img-container,.vr-popup.mobile.details-page .img-container {
  1647. margin-bottom: 25px
  1648. }
  1649. .vr-popup.landscape.unsupported.details-page .vr-sm-image.first,.vr-popup.portrait.unsupported.details-page .vr-sm-image.first {
  1650. margin-bottom: 0;
  1651. float: none;
  1652. height: 70px
  1653. }
  1654. .vr-popup.mobile.unsupported.details-page .vr-img-caption.first {
  1655. margin-left: 0
  1656. }
  1657. .vr-popup.unsupported.landscape.details-page .vr-img-caption.first,.vr-popup.unsupported.portrait.details-page .vr-img-caption.first {
  1658. width: 100%;
  1659. font-size: 18px;
  1660. margin-top: 10px
  1661. }
  1662. }
  1663. @media only screen and (max-width: 640px) {
  1664. .vr-popup.tinier.supported.landscape .title,.vr-popup.tinier.unsupported.landscape .title {
  1665. font-size:3vw
  1666. }
  1667. .vr-popup.tinier.supported.landscape .inner,.vr-popup.tinier.unsupported.landscape .inner {
  1668. top: 25%;
  1669. margin-top: .5%;
  1670. height: auto;
  1671. transform: translate(0,-25%)
  1672. }
  1673. .vr-popup.tinier.supported.landscape.front-page .vr-img-caption.first,.vr-popup.tinier.supported.landscape.front-page .vr-img-caption.second,.vr-popup.tinier.unsupported.landscape.front-page .vr-img-caption.first,.vr-popup.tinier.unsupported.landscape.front-page .vr-img-caption.second {
  1674. font-size: 2vw
  1675. }
  1676. .vr-popup.tinier.supported.landscape.front-page .vr-popup-title,.vr-popup.tinier.unsupported.landscape.front-page .vr-popup-title {
  1677. font-size: 2.5vw
  1678. }
  1679. .vr-popup.tinier.unsupported.landscape.front-page .vr-popup-title {
  1680. width: 80%
  1681. }
  1682. .vr-popup.tinier.supported.landscape.front-page .vr-popup-body,.vr-popup.tinier.unsupported.landscape.front-page .vr-popup-body {
  1683. font-size: 2vw
  1684. }
  1685. .vr-popup.tinier.supported.landscape.details-page .inner,.vr-popup.tinier.unsupported.landscape.details-page .inner {
  1686. height: 60%
  1687. }
  1688. .vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.first,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.first {
  1689. font-size: 2.5vw
  1690. }
  1691. .vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.second,.vr-popup.tinier.mobile.supported.landscape.details-page .vr-img-caption.third,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.second,.vr-popup.tinier.mobile.unsupported.landscape.details-page .vr-img-caption.third {
  1692. font-size: 2vw
  1693. }
  1694. .vr-popup.tinier.supported.landscape.details-page .vr-sm-image,.vr-popup.tinier.unsupported.landscape.details-page .vr-sm-image {
  1695. width: auto;
  1696. max-height: 25px;
  1697. max-width: 25px
  1698. }
  1699. .vr-popup.tinier.supported.landscape.details-page .vr-sm-image.first,.vr-popup.tinier.unsupported.landscape.details-page .vr-sm-image.first {
  1700. max-height: 48px;
  1701. max-width: 100px
  1702. }
  1703. }
  1704. .webvr-canvas,.webvr-popup,.webvr-popup .messaging {
  1705. position: absolute;
  1706. width: 100%;
  1707. height: 100%
  1708. }
  1709. .webvr-canvas {
  1710. top: 0;
  1711. left: 0;
  1712. background-color: rgba(0,0,0,1);
  1713. z-index: 50006
  1714. }
  1715. .webvr-popup {
  1716. top: 0;
  1717. left: 0;
  1718. display: none;
  1719. background-color: rgba(0,0,0,.75);
  1720. z-index: 50005;
  1721. font-weight: lighter
  1722. }
  1723. .webvr-popup .messaging {
  1724. vertical-align: middle;
  1725. font-weight: lighter;
  1726. text-align: center
  1727. }
  1728. .webvr-popup .title {
  1729. height: 27px;
  1730. font-family: OpenSans;
  1731. color: #fff;
  1732. position: fixed;
  1733. left: 3%;
  1734. width: 80%;
  1735. top: 3%;
  1736. font-size: 24px
  1737. }
  1738. .webvr-popup.landscape .title {
  1739. left: 3%;
  1740. top: 5%;
  1741. font-size: 22px
  1742. }
  1743. .webvr-popup .close {
  1744. position: fixed;
  1745. right: 5%;
  1746. top: 4%;
  1747. font-size: 18px
  1748. }
  1749. .webvr-popup.landscape .close {
  1750. right: 3%;
  1751. top: 5%
  1752. }
  1753. .webvr-popup .page.p1 {
  1754. font-size: 4vw
  1755. }
  1756. .webvr-popup.landscape .page.p1 {
  1757. font-size: 2.5vw
  1758. }
  1759. .webvr-popup .device-headset-side {
  1760. position: absolute;
  1761. display: inline-block;
  1762. top: 20%;
  1763. width: 60%;
  1764. left: 50%;
  1765. transform: translate(-50%)
  1766. }
  1767. .webvr-popup .enter-button {
  1768. position: absolute;
  1769. width: 100px;
  1770. top: 55%;
  1771. left: 50%;
  1772. transform: translate(-50%);
  1773. text-align: center;
  1774. padding: 7px 0;
  1775. border: 1px solid #fff
  1776. }
  1777. .webvr-popup.landscape .device-headset-side {
  1778. top: 25%;
  1779. left: 25%;
  1780. width: 25%;
  1781. transform: translate(-50%)
  1782. }
  1783. .webvr-popup.landscape .enter-button {
  1784. top: 75%;
  1785. left: 25%;
  1786. transform: translate(-50%)
  1787. }
  1788. .webvr-popup.landscape .alt-help {
  1789. position: absolute;
  1790. width: 90%;
  1791. top: 43%;
  1792. text-align: center
  1793. }
  1794. .webvr-popup.portrait .alt-help {
  1795. position: absolute;
  1796. width: 100%;
  1797. top: 80%;
  1798. text-align: center
  1799. }
  1800. .webvr-popup .open-with-app,.webvr-popup.landscape .open-with-app {
  1801. top: 45%;
  1802. transform: translate(-50%);
  1803. position: absolute;
  1804. text-decoration: underline
  1805. }
  1806. .webvr-popup.landscape .open-with-app {
  1807. left: 82%
  1808. }
  1809. .webvr-popup .open-with-app {
  1810. font-family: OpenSans;
  1811. font-size: 16px;
  1812. width: 235px;
  1813. left: 50%
  1814. }
  1815. .webvr-popup .page.p2 {
  1816. font-size: 4.5vw
  1817. }
  1818. .webvr-popup.landscape .page.p2 {
  1819. font-size: 2.5vw
  1820. }
  1821. .webvr-popup .heading-top {
  1822. position: absolute;
  1823. display: inline-block;
  1824. top: 13%;
  1825. left: 37%
  1826. }
  1827. .webvr-popup.landscape .heading-top {
  1828. top: 20%;
  1829. left: 17%
  1830. }
  1831. .webvr-popup.landscape .device-headset {
  1832. top: 38%;
  1833. width: 20%;
  1834. right: 77%;
  1835. max-width: 28vh
  1836. }
  1837. .webvr-popup.landscape .detail.headset {
  1838. top: 45%;
  1839. left: 24%;
  1840. font-family: OpenSans;
  1841. font-size: 14px;
  1842. font-weight: 600;
  1843. width: 25%
  1844. }
  1845. .webvr-popup.landscape .device-phone {
  1846. top: 35%;
  1847. width: 15%;
  1848. right: 36%;
  1849. max-width: 26vh
  1850. }
  1851. .webvr-popup.landscape .detail.phone {
  1852. top: 45%;
  1853. left: 65%;
  1854. width: 34%
  1855. }
  1856. .webvr-popup .detail.headset,.webvr-popup .detail.phone {
  1857. font-size: 14px;
  1858. font-weight: 500;
  1859. left: 35%;
  1860. text-align: left;
  1861. position: absolute;
  1862. display: inline-block;
  1863. font-family: OpenSans
  1864. }
  1865. .webvr-popup .device-headset {
  1866. position: absolute;
  1867. display: inline-block;
  1868. top: 33%;
  1869. width: 20%;
  1870. right: 73%;
  1871. max-width: 30vh
  1872. }
  1873. .webvr-popup .detail.headset {
  1874. top: 34%;
  1875. text-decoration: underline
  1876. }
  1877. .webvr-popup .device-phone {
  1878. position: absolute;
  1879. display: inline-block;
  1880. top: 56%;
  1881. width: 18%;
  1882. right: 73%;
  1883. max-width: 25vh
  1884. }
  1885. .webvr-popup .detail.phone {
  1886. top: 57%;
  1887. width: 205px
  1888. }
  1889. .webvr-popup .detail.daydream-label {
  1890. position: absolute;
  1891. font-family: OpenSans;
  1892. font-size: 16px;
  1893. font-weight: 600;
  1894. top: 80%;
  1895. left: 15%;
  1896. width: 70%;
  1897. text-align: center
  1898. }
  1899. .webvr-popup .page.p1 .hrule {
  1900. position: absolute;
  1901. top: 68%;
  1902. width: 80%;
  1903. left: 10%;
  1904. border-bottom: 2px solid #fff
  1905. }
  1906. .webvr-popup.landscape .page.p1 .hrule {
  1907. position: absolute;
  1908. top: 20%;
  1909. bottom: 20%;
  1910. width: 2px;
  1911. left: 50%;
  1912. border-left: 2px solid #fff
  1913. }
  1914. .webvr-popup .heading-bottom {
  1915. position: absolute;
  1916. display: inline-block;
  1917. top: 73%;
  1918. left: 20%
  1919. }
  1920. .webvr-popup.landscape .heading-bottom {
  1921. top: 20%;
  1922. left: 58%
  1923. }
  1924. .webvr-popup .badge-cardboard,.webvr-popup .badge-oculus {
  1925. top: 48%;
  1926. width: 40%;
  1927. position: absolute;
  1928. display: inline-block
  1929. }
  1930. .webvr-popup .badge-cardboard {
  1931. left: 9%
  1932. }
  1933. .webvr-popup .badge-oculus {
  1934. left: 51%
  1935. }
  1936. .webvr-popup .badge-label {
  1937. position: absolute;
  1938. left: 0;
  1939. top: 35%;
  1940. width: 100%;
  1941. text-align: center;
  1942. font-size: 22px
  1943. }
  1944. .webvr-popup.landscape .badge-label {
  1945. top: 40%
  1946. }
  1947. .webvr-popup.landscape .badge-cardboard {
  1948. top: 60%;
  1949. width: 25%;
  1950. left: 20%
  1951. }
  1952. .webvr-popup.landscape .badge-oculus {
  1953. top: 60%;
  1954. width: 25%;
  1955. left: 55%
  1956. }
  1957. .webvr-popup .tabs {
  1958. position: absolute;
  1959. top: 17%;
  1960. width: 100%;
  1961. height: 40px
  1962. }
  1963. .webvr-popup .tabs-underlined {
  1964. border-bottom: medium solid #fff;
  1965. border-bottom-width: 2px
  1966. }
  1967. .webvr-popup .tabbutton {
  1968. height: 30px;
  1969. margin-left: 3%;
  1970. margin-right: 3%;
  1971. font-family: OpenSans;
  1972. font-size: 14px;
  1973. font-weight: 600;
  1974. line-height: 1.43;
  1975. text-align: center;
  1976. color: #fff;
  1977. display: inline-block
  1978. }
  1979. .webvr-popup.portrait .tabbutton {
  1980. width: 80px;
  1981. height: 50px
  1982. }
  1983. .webvr-popup .tabs-selections {
  1984. position: absolute;
  1985. top: 21%;
  1986. width: 100%;
  1987. height: 2px
  1988. }
  1989. .webvr-popup.landscape .tabs-selections {
  1990. position: absolute;
  1991. top: 24%;
  1992. width: 100%;
  1993. height: 2px
  1994. }
  1995. .webvr-popup .selected {
  1996. width: 80px;
  1997. margin-left: 3%;
  1998. margin-right: 3%;
  1999. height: 2px;
  2000. display: inline-block
  2001. }
  2002. .webvr-popup .footer {
  2003. height: 25px;
  2004. width: 100%;
  2005. position: fixed;
  2006. padding: 3px;
  2007. right: 0;
  2008. bottom: 0;
  2009. display: inline-block;
  2010. font-size: 14px;
  2011. background-color: rgba(0,0,0,.3);
  2012. -webkit-transition: all .5s;
  2013. transition: all .5s;
  2014. text-shadow: 0 0 5px rgba(0,0,0,.9)
  2015. }
  2016. #button-play,#loaderCoBrand.quick-brand,.model-title {
  2017. text-shadow: 0 0 10px rgba(15,16,17,1)
  2018. }
  2019. .webvr-popup .footer.open {
  2020. background-color: rgba(0,0,0,.45)
  2021. }
  2022. .webvr-popup .footer div {
  2023. float: right;
  2024. margin-right: 8px
  2025. }
  2026. .webvr-popup .footer img {
  2027. float: right;
  2028. margin-right: 3px;
  2029. height: 20px;
  2030. width: auto;
  2031. position: relative
  2032. }
  2033. * {
  2034. margin: 0;
  2035. padding: 0;
  2036. text-rendering: optimizeLegibility!important;
  2037. -webkit-font-smoothing: antialiased!important
  2038. }
  2039. body,html {
  2040. height: 100%;
  2041. width: 100%;
  2042. overflow: hidden;
  2043. line-height: normal;
  2044. color: rgb(235,211,155);
  2045. -webkit-font-smoothing: subpixel-antialiased;
  2046. background: #373737;
  2047. /*background: -moz-radial-gradient(at 50% bottom,ellipse cover,rgba(71,77,83,1) 0,rgba(35,38,40,1) 53%,rgba(17,18,19,1) 100%);
  2048. background: -webkit-gradient(radial,at 50% bottom,0,center center,100%,color-stop(0,rgba(71,77,83,1)),color-stop(53%,rgba(35,38,40,1)),color-stop(100%,rgba(17,18,19,1)));
  2049. background: -webkit-radial-gradient(at 50% bottom,ellipse cover,rgba(71,77,83,1) 0,rgba(35,38,40,1) 53%,rgba(17,18,19,1) 100%);
  2050. background: -o-radial-gradient(at 50% bottom,ellipse cover,rgba(71,77,83,1) 0,rgba(35,38,40,1) 53%,rgba(17,18,19,1) 100%);
  2051. background: -ms-radial-gradient(at 50% bottom,ellipse cover,rgba(71,77,83,1) 0,rgba(35,38,40,1) 53%,rgba(17,18,19,1) 100%);
  2052. background: radial-gradient(ellipse at 50% bottom,rgba(71,77,83,1) 0,rgba(35,38,40,1) 53%,rgba(17,18,19,1) 100%);*/
  2053. /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474d53', endColorstr='#111213', GradientType=1 )*/
  2054. }
  2055. #player {
  2056. left: 0;
  2057. bottom: 0;
  2058. width: 100%;
  2059. height: 100%;
  2060. position: absolute;
  2061. }
  2062. #player canvas {
  2063. position: relative;
  2064. left: 0;
  2065. top: 0;
  2066. /* width: 100vw;
  2067. height: 100vh; */
  2068. width:100%;
  2069. height:100%;
  2070. display: block
  2071. }
  2072. #gui-spinner {
  2073. display: block;
  2074. position: absolute;
  2075. z-index: 100;
  2076. top: 50%;
  2077. left: 50%;
  2078. width: 40px;
  2079. height: 40px;
  2080. margin-top: -20px;
  2081. margin-left: -20px
  2082. }
  2083. #gui-parent {
  2084. user-select: none;
  2085. width:100%; height:100%; /* 不加这个退出全屏时带font的图标可能消失 */
  2086. }
  2087. .gui-floorplan-label,.menu-radios input~label {
  2088. -webkit-user-select: none;
  2089. -moz-user-select: none;
  2090. -ms-user-select: none;
  2091. -khtml-user-select: none
  2092. }
  2093. .gui-spinner-icon {
  2094. width: 40px;
  2095. height: 40px;
  2096. border: 3px solid transparent;
  2097. border-top-color:#00b4ed;
  2098. border-left-color:#00b4ed;
  2099. border-radius: 40px;
  2100. -webkit-animation: gui-spinner .5s linear infinite;
  2101. -moz-animation: gui-spinner .5s linear infinite;
  2102. -ms-animation: gui-spinner .5s linear infinite;
  2103. -o-animation: gui-spinner .5s linear infinite;
  2104. animation: gui-spinner .5s linear infinite
  2105. }
  2106. .gui-floorplan-label {
  2107. position: absolute;
  2108. background: rgba(50,50,50,.8);
  2109. border: none;
  2110. padding: 3px 8px;
  2111. margin: 0;
  2112. color: #FFF;
  2113. font-size: 70%;
  2114. white-space: nowrap;
  2115. border-radius: 2px;
  2116. cursor: default;
  2117. user-select: none
  2118. }
  2119. .gui-floorplan-label-text {
  2120. font-weight: none;
  2121. font-family: OpenSans,'Helvetica Neue',sans-serif;
  2122. font-size: 100%
  2123. }
  2124. .gui-floorplan-label-mobile {
  2125. padding: 2px 4px;
  2126. border-radius: 2px
  2127. }
  2128. @media only screen and (-webkit-min-device-pixel-ratio: 2.0),only screen and (-o-min-device-pixel-ratio:2.0) {
  2129. .gui-floorplan-label-mobile {
  2130. font-size:65%;
  2131. border-radius: 1px
  2132. }
  2133. }
  2134. @media only screen and (-webkit-min-device-pixel-ratio: 3.0),only screen and (-o-min-device-pixel-ratio:3.0) {
  2135. .gui-floorplan-label-mobile {
  2136. font-size:65%;
  2137. border-radius: 1px
  2138. }
  2139. }
  2140. @-webkit-keyframes gui-spinner {
  2141. 0% {
  2142. -webkit-transform: rotate(0);
  2143. transform: rotate(0)
  2144. }
  2145. 100% {
  2146. -webkit-transform: rotate(360deg);
  2147. transform: rotate(360deg)
  2148. }
  2149. }
  2150. @-moz-keyframes gui-spinner {
  2151. 0% {
  2152. -moz-transform: rotate(0);
  2153. transform: rotate(0)
  2154. }
  2155. 100% {
  2156. -moz-transform: rotate(360deg);
  2157. transform: rotate(360deg)
  2158. }
  2159. }
  2160. @-o-keyframes gui-spinner {
  2161. 0% {
  2162. -o-transform: rotate(0);
  2163. transform: rotate(0)
  2164. }
  2165. 100% {
  2166. -o-transform: rotate(360deg);
  2167. transform: rotate(360deg)
  2168. }
  2169. }
  2170. @-ms-keyframes gui-spinner {
  2171. 0% {
  2172. -ms-transform: rotate(0);
  2173. transform: rotate(0)
  2174. }
  2175. 100% {
  2176. -ms-transform: rotate(360deg);
  2177. transform: rotate(360deg)
  2178. }
  2179. }
  2180. @keyframes gui-spinner {
  2181. 0% {
  2182. transform: rotate(0)
  2183. }
  2184. 100% {
  2185. transform: rotate(360deg)
  2186. }
  2187. }
  2188. .blur {
  2189. -webkit-filter: blur(5px);
  2190. -moz-filter: blur(5px);
  2191. -o-filter: blur(5px);
  2192. -ms-filter: blur(5px);
  2193. filter: blur(5px)
  2194. }
  2195. .btn {
  2196. border-radius: 1px
  2197. }
  2198. .btn-primary {
  2199. color: #fff;
  2200. background-color: #FAAC17;
  2201. border-color: transparent;
  2202. font-family: OpenSans,'Helvetica Neue',Arial,sans-serif;
  2203. letter-spacing: 1px;
  2204. font-size: 18px;
  2205. display: block;
  2206. padding: 6px;
  2207. -webkit-box-shadow: 0 3px 0 rgba(251,205,0,1),0 6px 12px rgba(15,16,17,.7);
  2208. -moz-box-shadow: 0 3px 0 rgba(251,205,0,1),0 6px 12px rgba(15,16,17,.7);
  2209. box-shadow: 0 3px 0 rgba(251,205,0,1),0 6px 12px rgba(15,16,17,.7);
  2210. margin: 12px auto;
  2211. width: 200px;
  2212. text-align: center;
  2213. cursor: pointer;
  2214. -webkit-transition: all .15s ease-in-out;
  2215. -moz-transition: all .15s ease-in-out;
  2216. -o-transition: all .15s ease-in-out;
  2217. transition: all .15s ease-in-out
  2218. }
  2219. .gui-text,.model-title {
  2220. font-family: OpenSans,'Helvetica Neue',sans-serif
  2221. }
  2222. #debug-console,#gui-thumb {
  2223. width: 100%;
  2224. position: absolute
  2225. }
  2226. .btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary {
  2227. color: #fff;
  2228. background-color: #FAAC17;
  2229. border-color: rgba(15,16,17,0);
  2230. -webkit-box-shadow: 0 3px 0 rgba(250,172,23,1),0 6px 12px rgba(15,16,17,.7);
  2231. -moz-box-shadow: 0 3px 0 rgba(250,172,23,1),0 6px 12px rgba(15,16,17,.7);
  2232. box-shadow: 0 3px 0 rgba(250,172,23,1),0 6px 12px rgba(15,16,17,.7);
  2233. outline: 0!important;
  2234. -webkit-transition: all .15s ease-in-out;
  2235. -moz-transition: all .15s ease-in-out;
  2236. -o-transition: all .15s ease-in-out;
  2237. transition: all .15s ease-in-out
  2238. }
  2239. .btn-primary:active {
  2240. -webkit-box-shadow: 0 2px 0 rgba(237,161,16,1),0 3px 6px rgba(15,16,17,.9);
  2241. -moz-box-shadow: 0 2px 0 rgba(237,161,16,1),0 3px 6px rgba(15,16,17,.9);
  2242. box-shadow: 0 2px 0 rgba(237,161,16,1),0 3px 6px rgba(15,16,17,.9)
  2243. }
  2244. .btn-primary .icon-mp-glyph {
  2245. font-size: 20px;
  2246. padding-right: 4px
  2247. }
  2248. .btn-primary .icon-mp-glyph:before {
  2249. position: absolute;
  2250. margin-top: 3px
  2251. }
  2252. .btn-primary .button-text {
  2253. padding-left: 28px
  2254. }
  2255. .btn-primary .icon-caret-right {
  2256. font-size: 12px
  2257. }
  2258. .btn-deep-link {
  2259. color: #666;
  2260. float: left;
  2261. padding: 0 5px;
  2262. margin-left: 10px
  2263. }
  2264. #gui-thumb {
  2265. height: 100%;
  2266. background-size: auto 100%;
  2267. background-position: 50% 50%;
  2268. background-repeat: no-repeat;
  2269. z-index: 0;
  2270. color: #000
  2271. }
  2272. #debug-console {
  2273. height: 35%;
  2274. overflow: scroll;
  2275. bottom: 0;
  2276. left: 0;
  2277. background-color: rgba(0,0,0,.3);
  2278. color: #fff
  2279. }
  2280. #button-play {
  2281. width: 86px;
  2282. height: 86px;
  2283. display: block;
  2284. margin: 8px auto;
  2285. padding: 18px 0;
  2286. border-radius: 100%;
  2287. border: 3px solid #fff;
  2288. box-shadow: 0 0 10px rgba(15,16,17,1),inset 0 0 10px rgba(15,16,17,1);
  2289. color: #fff;
  2290. text-align: center;
  2291. font-size: 34px;
  2292. letter-spacing: -8px
  2293. }
  2294. #loaderCoBrand,.model-title {
  2295. width: 100%;
  2296. font-weight: 100;
  2297. position: absolute;
  2298. text-align: center
  2299. }
  2300. .gui-text {
  2301. font-size: 24px;
  2302. color: #fff
  2303. }
  2304. .model-title {
  2305. top: 19%;
  2306. display: block;
  2307. padding: 0 4px;
  2308. font-size: 38px;
  2309. letter-spacing: .75px;
  2310. color: rgba(255,255,255,1);
  2311. margin: 0;
  2312. hyphens: auto;
  2313. line-height: 45px
  2314. }
  2315. #loaderCoBrand {
  2316. bottom: 5px;
  2317. left: 0;
  2318. color: #fff;
  2319. font-size: 14px;
  2320. }
  2321. #loaderCoBrand h2 {
  2322. font-size: 14px;
  2323. -webkit-margin-before: 0;
  2324. -webkit-margin-after: 0
  2325. }
  2326. @media only screen and (max-width: 555px) {
  2327. .model-title {
  2328. font-size:22px;
  2329. line-height: 26px
  2330. }
  2331. }
  2332. @media only screen and (max-height: 600px) {
  2333. .model-title {
  2334. top:10%;
  2335. bottom: auto
  2336. }
  2337. }
  2338. @media only screen and (max-height: 370px) {
  2339. #loaderCoBrand,#loaderCoBrand h2,.model-title,.vert-align {
  2340. white-space:nowrap;
  2341. overflow: hidden;
  2342. text-overflow: ellipsis
  2343. }
  2344. #button-play {
  2345. margin: 5px auto;
  2346. width: 50px;
  2347. height: 50px;
  2348. font-size: 24px;
  2349. padding: 6px 0
  2350. }
  2351. .model-title {
  2352. top: 10px;
  2353. bottom: auto;
  2354. font-size: 14px;
  2355. line-height: 20px
  2356. }
  2357. .vert-align {
  2358. padding: 0 10px
  2359. }
  2360. }
  2361. #gui,body,html {
  2362. -webkit-overflow-scrolling: touch
  2363. }
  2364. #gui-message.clearBackground {
  2365. background-color: rgba(0,0,0,0)
  2366. }
  2367. .message-outer {
  2368. position: absolute;
  2369. height: 100%;
  2370. width: 100%;
  2371. display: table
  2372. }
  2373. .message-outer * {
  2374. transition: all .3s
  2375. }
  2376. .message-inner {
  2377. height: 100%;
  2378. display: table-cell;
  2379. text-align: center
  2380. }
  2381. .message-content {
  2382. width: 100%;
  2383. font-size: 16pt;
  2384. font-weight: 100;
  2385. display: inline-block
  2386. }
  2387. #terms-modal.closeByFooter .close,.hover-row.mobile {
  2388. display: none
  2389. }
  2390. @media only screen and (min-width : 1824px) {
  2391. .message-content {
  2392. width:26%
  2393. }
  2394. }
  2395. @media only screen and (min-width : 1200px) and (max-width :1823px) {
  2396. .message-content {
  2397. width:90%
  2398. }
  2399. }
  2400. @media only screen and (max-width : 992px) {
  2401. .message-content {
  2402. width:90%
  2403. }
  2404. }
  2405. @media only screen and (max-width : 768px) {
  2406. .message-content {
  2407. width:90%
  2408. }
  2409. }
  2410. .gui-error {
  2411. color: #fff;
  2412. font-family: OpenSans,'Helvetica Neue',sans-serif;
  2413. font-size: 16px;
  2414. text-align: center
  2415. }
  2416. .error-problem-text {
  2417. font-size: 170%;
  2418. margin: 1% 0
  2419. }
  2420. .error-solution-text {
  2421. font-size: 130%;
  2422. margin: 1% 0
  2423. }
  2424. .error-actions,.error-explanation {
  2425. margin: 1% 0
  2426. }
  2427. .error-actions .link {
  2428. color: #fff;
  2429. text-decoration: underline;
  2430. cursor: pointer
  2431. }
  2432. .browser-tiles {
  2433. margin: 0;
  2434. width: 100%
  2435. }
  2436. .browser-tiles .tile {
  2437. float: left;
  2438. margin: 2%;
  2439. padding: 2%;
  2440. width: 21%;
  2441. background-color: #555;
  2442. border-radius: 10px;
  2443. cursor: pointer;
  2444. -webkit-transition: all .1s ease-in-out;
  2445. -moz-transition: all .1s ease-in-out;
  2446. -o-transition: all .1s ease-in-out;
  2447. transition: all .1s ease-in-out
  2448. }
  2449. .browser-tiles .tile:hover {
  2450. transform: scale(1.1);
  2451. -webkit-transform: scale(1.1)
  2452. }
  2453. .browser-tiles .tile .icon {
  2454. width: 100%
  2455. }
  2456. @media only screen and (min-width : 520px) and (max-width :768px) {
  2457. .browser-tiles {
  2458. margin:0 10%;
  2459. width: 80%
  2460. }
  2461. }
  2462. @media only screen and (min-width : 1000px) and (max-width :1199px) {
  2463. .browser-tiles {
  2464. margin:0 10%;
  2465. width: 80%
  2466. }
  2467. }
  2468. @media only screen and (min-width : 1520px) and (max-width :1823px) {
  2469. .browser-tiles {
  2470. margin:0 10%;
  2471. width: 80%
  2472. }
  2473. }
  2474. @media only screen and (min-width : 2100px) {
  2475. .browser-tiles {
  2476. margin:0 10%;
  2477. width: 80%
  2478. }
  2479. }
  2480. #terms-modal {
  2481. position: absolute;
  2482. z-index: 100;
  2483. left: 10%;
  2484. top: 10%;
  2485. bottom: 10%;
  2486. right: 10%;
  2487. background-color: rgba(0,0,0,.75);
  2488. padding: 50px;
  2489. border-radius: 10px;
  2490. opacity: 0;
  2491. pointer-events: none;
  2492. -webkit-transition: all 250ms ease-in-out;
  2493. transition: all 250ms ease-in-out
  2494. }
  2495. #terms-modal.fadeIn {
  2496. opacity: 1;
  2497. pointer-events: auto
  2498. }
  2499. #terms-modal .close {
  2500. position: absolute;
  2501. top: 0;
  2502. right: 5px;
  2503. padding: 16px;
  2504. font-size: 13px
  2505. }
  2506. @media only screen and (max-width: 487px),(max-height:487px) {
  2507. #terms-modal {
  2508. z-index:100;
  2509. left: 0;
  2510. top: 0;
  2511. bottom: 0;
  2512. right: 0;
  2513. border-radius: 0
  2514. }
  2515. }
  2516. #terms-text {
  2517. position: absolute;
  2518. top: 50px;
  2519. left: 25px;
  2520. bottom: 50px;
  2521. right: 25px;
  2522. padding: 0 25px;
  2523. overflow-x: hidden;
  2524. overflow-y: scroll;
  2525. color: #ccc
  2526. }
  2527. #terms-modal.closeByFooter #terms-text {
  2528. top: 70px
  2529. }
  2530. #terms-text ul {
  2531. margin: 5px
  2532. }
  2533. #terms-text li {
  2534. margin: 5px 5px 5px 20px
  2535. }
  2536. #terms-text h2,.pinBottom.right.mobile-only {
  2537. margin-bottom: 10px
  2538. }
  2539. #terms-text h1 {
  2540. font-size: 24px;
  2541. margin-top: 0
  2542. }
  2543. #terms-text h2 {
  2544. font-size: 16px;
  2545. margin-top: 10px
  2546. }
  2547. .hover-row {
  2548. position: fixed;
  2549. width: 100%;
  2550. height: 15%;
  2551. z-index: 50003;
  2552. pointer-events: none
  2553. }
  2554. .hover-row.detectHover {
  2555. pointer-events: auto
  2556. }
  2557. #hover-top {
  2558. top: 0
  2559. }
  2560. #hover-bottom {
  2561. bottom: 0
  2562. }
  2563. #quick-blackout {
  2564. position: absolute;
  2565. height: 100%;
  2566. width: 100%;
  2567. background-color: #000;
  2568. z-index: 50002;
  2569. visibility: visible;
  2570. opacity: 1;
  2571. pointer-events: none
  2572. }
  2573. #quick-blackout.hidden,.quick-brand {
  2574. visibility: hidden;
  2575. opacity: 0
  2576. }
  2577. /*#quick-blackout.fadeOut,.quick-brand.fadeIn.fadeOut {
  2578. visibility: hidden;
  2579. opacity: 0;
  2580. transition: visibility 2s,opacity .5s linear
  2581. }*/
  2582. .quick-brand.fadeIn {
  2583. visibility: visible;
  2584. opacity: 1;
  2585. transition: visibility 2s,opacity .5s linear
  2586. }
  2587. .invisible,.menuOverlay {
  2588. visibility: hidden
  2589. }
  2590. #loaderCoBrand.quick-brand {
  2591. position: fixed;
  2592. top: 25%
  2593. }
  2594. .pinTop.right,.ui-icon {
  2595. text-shadow: 0 0 5px rgba(0,0,0,.9)
  2596. }
  2597. #quick-logo {
  2598. position: fixed;
  2599. bottom: 20%;
  2600. left: 0;
  2601. width: 100%;
  2602. height: 10%;
  2603. z-index: 50002;
  2604. display: inline-block;
  2605. text-align: center
  2606. }
  2607. #quick-logo img {
  2608. max-width: 200px;
  2609. width: 20%;
  2610. height: auto
  2611. }
  2612. @media only screen and (max-width: 600px),(max-height:600px) {
  2613. #quick-logo img {
  2614. width:150px;
  2615. height: auto
  2616. }
  2617. }
  2618. .tooltip-inner {
  2619. font-family: OpenSans,'Helvetica Neue',sans-serif;
  2620. font-weight: 400;
  2621. background-color: rgba(9,10,11,.8)
  2622. }
  2623. .tooltip.top .tooltip-arrow {
  2624. border-top-color: rgba(9,10,11,.8)
  2625. }
  2626. .tooltip.bottom .tooltip-arrow {
  2627. border-bottom-color: rgba(9,10,11,.8)
  2628. }
  2629. body,html {
  2630. font-family: "FZ_GBK","Arial", "Microsoft YaHei";
  2631. }
  2632. a {
  2633. color: #fff;
  2634. cursor: pointer;
  2635. transition: all .3s
  2636. }
  2637. a:focus,a:hover,a:visited {
  2638. color: #fff;
  2639. text-decoration: none
  2640. }
  2641. a.hasHover:hover,a:active {
  2642. color: rgba(75,205,252,1);
  2643. text-decoration: none
  2644. }
  2645. #meta-info a,a.hasHover.tag-link:hover,a.tag-link {
  2646. text-decoration: underline
  2647. }
  2648. #gui {
  2649. width: 100%;
  2650. height: 100%
  2651. }
  2652. /*loading*/
  2653. .progressbar{
  2654. position:relative;
  2655. display:block;
  2656. width:24%;
  2657. height:10px;
  2658. padding:0px 20px;
  2659. margin:40px auto;
  2660. background: #fff;
  2661. border-radius: 5px;
  2662. }
  2663. .bar {
  2664. position:absolute;
  2665. display:block;
  2666. width:0px;
  2667. height:10px;
  2668. top:0px;
  2669. left:0px;
  2670. background:#00b4ed;
  2671. border-radius: 5px;
  2672. overflow:hidden;
  2673. }
  2674. .bar span {
  2675. position:absolute;
  2676. display:block;
  2677. width:100%;
  2678. height:64px;
  2679. -webkit-border-radius:16px;
  2680. border-radius:16px;
  2681. background:#00b4ed;
  2682. -webkit-animation:sparkle 1500ms linear infinite;
  2683. -moz-animation:sparkle 1500ms linear infinite;
  2684. -o-animation:sparkle 1500ms linear infinite;
  2685. animation:sparkle 1500ms linear infinite;
  2686. opacity:0.2;
  2687. }
  2688. .label {
  2689. font-family:'Aldrich', sans-serif;
  2690. position:absolute;
  2691. margin-left: -20px;
  2692. display:block;
  2693. width:40px;
  2694. height:22px;
  2695. line-height:20px;
  2696. left:0px;
  2697. filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#262626',GradientType=0 );
  2698. font-size:16px;
  2699. text-align:center;
  2700. -webkit-border-radius:6px;
  2701. border-radius:6px;
  2702. border:1px solid rgba(0,0,0,0.2);
  2703. -webkit-box-shadow:0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  2704. box-shadow:0px 1px 4px 0px rgba(0, 0, 0, 0.3);
  2705. filter:dropshadow(color=#000000, offx=0, offy=-1);
  2706. top: -30px;
  2707. color: #fff;
  2708. }
  2709. .transparent {
  2710. opacity: 0
  2711. }
  2712. .darkGlass {
  2713. /* background-color: rgba(0,0,0,.5); */
  2714. }
  2715. .ui-icon {
  2716. font-size: 26px;
  2717. }
  2718. .left .ui-icon.wide {
  2719. padding-right: 30px
  2720. }
  2721. .right .ui-icon.wide {
  2722. padding-left: 30px
  2723. }
  2724. .mobile-only {
  2725. display: none
  2726. }
  2727. .pinRight {
  2728. position: fixed;
  2729. right: 0;
  2730. -webkit-transition: all .5s;
  2731. transition: all .5s
  2732. }
  2733. .pinBottom-container,.pinTop {
  2734. position: fixed;
  2735. -webkit-transition: all .5s;
  2736. opacity: 1
  2737. }
  2738. .pinRight.middle {
  2739. top: 50%;
  2740. z-index: 100
  2741. }
  2742. .pinTop {
  2743. top: 16px;
  2744. transition: all .5s;
  2745. line-height: 1;
  2746. z-index: 50004;
  2747. }
  2748. .pinTop.left {
  2749. left: 50%;
  2750. z-index: 100;
  2751. display: flex;
  2752. flex-direction: column;
  2753. align-items: center;
  2754. transform: translateX(-50%);
  2755. }
  2756. .pinTop.right {
  2757. right: 10px;
  2758. z-index: 50
  2759. }
  2760. .pinBottom-container {
  2761. bottom: 0px;
  2762. width: 100%;
  2763. transition: all .5s;
  2764. z-index: 3;
  2765. position:absolute;
  2766. }
  2767. /*.pinBottom-container.fadeOut {
  2768. z-index: 1;
  2769. -webkit-transition: all .5s;
  2770. transition: all .5s;
  2771. opacity: 0;
  2772. pointer-events: none
  2773. }*/
  2774. .pinBottom-container.drawerOpen {
  2775. bottom: 6px
  2776. }
  2777. .pinBottom-container.duringTour {
  2778. bottom: 0
  2779. }
  2780. .pinBottom {
  2781. position: absolute;
  2782. bottom: 0;
  2783. -webkit-transition: all .5s;
  2784. transition: all .5s;
  2785. line-height: 1
  2786. }
  2787. .footer,.menuOverlay {
  2788. -webkit-transition: all .5s
  2789. }
  2790. .pinBottom.center {
  2791. left: 50%;
  2792. width: 0;
  2793. z-index: 50
  2794. }
  2795. .pinBottom.right {
  2796. float: right;
  2797. right: 0;
  2798. text-shadow: 0 0 1px rgba(0,0,0,.6);
  2799. z-index: 50;
  2800. bottom: 10px;
  2801. }
  2802. .pinBottom.left{z-index:50;/* background:rgba(0,0,0,0.2); */border-radius: 10px;left: 10px;bottom: 10px;}
  2803. .pinBottom.left .icon{float:left}
  2804. .viewContainer{float:left;position:relative}.viewContainer>div{float:left}
  2805. #gui-modes-map >div[rel]{float: left;display: flex;justify-content: center;align-items: center;cursor: pointer;margin-right: 30px; background: url(http://space3d.4dage.com/SuperLY/images/img_icon_bg@2x.png)top left no-repeat; background-size: 100% auto; opacity: 0.3; flex-direction: column; }
  2806. /* #gui-modes-map >div[rel]:hover,.pinBottom.right .rightViewContainer > div:hover,#play:hover{ background:rgba(0,0,0,0.25); } */
  2807. /*#gui-modes-map > div:hidden{ border-top-right-radius: 10px; border-bottom-right-radius:10px; }*/
  2808. .zoomPanel {
  2809. margin-bottom: 60px;
  2810. width: 36px;
  2811. right: 4px
  2812. }
  2813. .buttonZoom {
  2814. font-weight: 700;
  2815. font-size: 170%;
  2816. width: 36px;
  2817. height: 36px;
  2818. margin-top: 2px;
  2819. text-align: center;
  2820. vertical-align: center
  2821. }
  2822. .buttonZoomEnabled {
  2823. opacity: 1;
  2824. text-shadow: 0 0 5px rgba(0,0,0,.9)
  2825. }
  2826. .buttonZoomDisabled {
  2827. color: #aaa;
  2828. opacity: .5;
  2829. text-shadow: 0 0 4px rgba(0,0,0,.9)
  2830. }
  2831. .buttonZoomIn {
  2832. border-top-left-radius: 3px
  2833. }
  2834. .buttonZoomOut {
  2835. border-bottom-left-radius: 3px
  2836. }
  2837. .buttonZoomContent {
  2838. padding-top: 10px
  2839. }
  2840. .menuIcon {
  2841. position: relative;
  2842. padding-left: 1em
  2843. }
  2844. .menuIcon:before {
  2845. content: "";
  2846. position: fixed;
  2847. left: 0;
  2848. top: .25em;
  2849. width: 1em;
  2850. height: .15em;
  2851. background: #fff;
  2852. box-shadow: 0 .25em 0 0 #fff,0 .5em 0 0 #fff
  2853. }
  2854. #more-menu-button {
  2855. float: right;
  2856. width: 26px
  2857. }
  2858. #more-menu-button .ui-icon {
  2859. padding: 0 10px 0 0;
  2860. line-height: 26px
  2861. }
  2862. .menuOverlay {
  2863. opacity: 0;
  2864. width: 0;
  2865. min-height: 40px;
  2866. color: #fff;
  2867. position: fixed;
  2868. right: 25px;
  2869. top: 0;
  2870. transition: all .5s;
  2871. overflow: hidden;
  2872. z-index: 20000
  2873. }
  2874. .menuOverlay.open {
  2875. opacity: 1;
  2876. visibility: visible;
  2877. width: 170px
  2878. }
  2879. .menuOverlay .icon {
  2880. font-size: 30px;
  2881. padding: 0 6px 0 0
  2882. }
  2883. .menuOverlay ul {
  2884. list-style: none;
  2885. width: 170px
  2886. }
  2887. .menuOverlay ul li {
  2888. -webkit-transition: all .25s;
  2889. transition: all .25s;
  2890. cursor: pointer;
  2891. background-color: rgba(0,0,0,.45);
  2892. font-size: 14px;
  2893. letter-spacing: .1em;
  2894. color: #fff;
  2895. padding: 16px 12px;
  2896. white-space: nowrap;
  2897. margin-bottom: 1px
  2898. }
  2899. .menuOverlay ul li:hover {
  2900. background-color: rgba(0,0,0,.75);
  2901. color: #fff
  2902. }
  2903. #gui .shareContainer a i.icon:hover,.ui-icon.socialButton.active::before {
  2904. color:#00b4ed
  2905. }
  2906. .menuOverlay ul li:last-child {
  2907. border-bottom: none
  2908. }
  2909. .pinTop.right i.icon-help {
  2910. font-size: 26px;
  2911. cursor: pointer
  2912. }
  2913. .pinTop.right .pull-right.terms {
  2914. font-size: 11px;
  2915. font-weight: 400;
  2916. margin: 8px 28px 0 0;
  2917. cursor: pointer
  2918. }
  2919. #gui-fullscreen,#gui-fullscreen-exit,.socialButton {
  2920. float: left
  2921. }
  2922. .pinBottom.right .icon {
  2923. cursor: pointer;
  2924. font-size: 0;
  2925. }
  2926. .shareContainer {
  2927. width: 100%;
  2928. height: 27px
  2929. }
  2930. .shareContainer a,.shareContainer a i.icon {
  2931. display: inline-block;
  2932. width: 25px;
  2933. height: 27px
  2934. }
  2935. .shareContainer .icoContainer {
  2936. float: left;
  2937. width: 33.33%;
  2938. text-align: center
  2939. }
  2940. .bottomShare {
  2941. position: absolute;
  2942. right: 16px;
  2943. bottom: 55px;
  2944. width: 160px;
  2945. height: 51px;
  2946. -webkit-transition: all .25s;
  2947. transition: all .25s;
  2948. background-color: rgba(0,0,0,.45);
  2949. font-size: 27px;
  2950. text-align: center;
  2951. padding: 10px
  2952. }
  2953. .gui-floor,.viewContainer {
  2954. float: left;
  2955. position: relative
  2956. }
  2957. .bottomShare.shareContainer .icoContainer {
  2958. width: 30.33%
  2959. }
  2960. #gui .shareContainer i.icon {
  2961. font-size: 27px;
  2962. cursor: pointer;
  2963. transition: all .3s
  2964. }
  2965. #gui-modes-inside,#gui-modes-outside {
  2966. transition: all .5s
  2967. }
  2968. #gui-modes-inside a i:before {
  2969. content: '\e606'
  2970. }
  2971. #gui-modes-outside a i:before {
  2972. content: '\e600'
  2973. }
  2974. .viewContainer>div {
  2975. float: left
  2976. }
  2977. .gui-floor {
  2978. width: 48px;
  2979. margin-right: 10px;
  2980. display: flex;
  2981. align-items: center;
  2982. justify-content: center;
  2983. height: 48px;
  2984. color: #fff;
  2985. font-size: 11px;
  2986. border-radius:10px;
  2987. background: rgba(0,0,0,0.2);
  2988. cursor: pointer;
  2989. position: relative;
  2990. }
  2991. .gui-floor-title {
  2992. display: none;
  2993. overflow: hidden;
  2994. white-space: nowrap
  2995. }
  2996. .gui-floor-icon {
  2997. width: 32px;
  2998. height: 29px;
  2999. background: url("http://space3d.4dage.com/SuperLY/images/floor-icon.png") left top no-repeat;
  3000. background-size: 98%;
  3001. }
  3002. .gui-floor.hasHover:hover {
  3003. border-color: #00b4ed;
  3004. }
  3005. .gui-floor .container {
  3006. display: none;
  3007. width: 86px;
  3008. position: absolute;
  3009. bottom: 50px;
  3010. transition: all .3s;
  3011. z-index: 100;
  3012. left: -19px;
  3013. }
  3014. #drawer,#drawer-container.drawerOpen,#drawer-container.duringTour {
  3015. bottom: 0
  3016. }
  3017. .gui-floor.open .container .floorChoice {
  3018. /* padding: 7px 5px; */
  3019. border: 1px solid transparent;
  3020. width: 86px;
  3021. height: 30px;
  3022. margin-bottom: 1px;
  3023. line-height: 18px;
  3024. font-size: 14px;
  3025. cursor: pointer;
  3026. overflow: hidden;
  3027. white-space: nowrap;
  3028. background-color: rgba(0,0,0,0.5);
  3029. text-align: center;
  3030. line-height: 30px;
  3031. color: #fff;
  3032. }
  3033. .gui-floor.open .container .floorChoice:hover {
  3034. border: 1px solid #19bbed;
  3035. /* color:#19bbed */
  3036. }
  3037. .gui-floor.open .container .floorChoice.active {
  3038. background-color: rgba(0,0,0,0.5);
  3039. text-decoration: underline;
  3040. font-weight: 700;
  3041. cursor: default
  3042. }
  3043. .gui-floor.open {
  3044. border-color:#00b4ed;
  3045. /* color:#00b4ed */
  3046. }
  3047. .gui-floor.open .container {
  3048. display: block
  3049. }
  3050. .gui-floor-number,.tourSpinner {
  3051. display: block;
  3052. width: 100%;
  3053. text-align: center;
  3054. font-weight: bold;
  3055. position: relative;
  3056. top: -3px;
  3057. left: -1px;
  3058. }
  3059. .pinBottom.left .gui-floor i.icon,.pinBottom.right .gui-floor i.icon {
  3060. float: right
  3061. }
  3062. .pinBottom.right .ui-icon {
  3063. padding: 0;
  3064. margin-right: 0px;
  3065. float: left;
  3066. background: url(http://space3d.4dage.com/SuperLY/images/img_icon_bg@2x.png)top left no-repeat;
  3067. background-size: 100% auto;
  3068. border-radius: 10px;
  3069. margin-right: 10px;
  3070. }
  3071. #volume > a, #gui-fullscreen > a, #gui-fullscreen-exit > a{display: flex;width: 50px;height: 50px;justify-content: center;align-items: center;}
  3072. #volume{display: none;}
  3073. #view-controllers {
  3074. color: rgba(255,255,255,.5);
  3075. font-size: 11px;
  3076. font-weight: 400;
  3077. letter-spacing: .1em;
  3078. display: none;
  3079. position: absolute;
  3080. bottom: 56px;
  3081. left: -90px;
  3082. width: 180px
  3083. }
  3084. #view-controllers .darkGlass {
  3085. background-color: rgba(0,0,0,.45)
  3086. }
  3087. #view-controllers .darkGlass.active {
  3088. background-color: rgba(0,0,0,.75)
  3089. }
  3090. #view-controllers>div {
  3091. cursor: pointer;
  3092. float: left;
  3093. width: 85px;
  3094. text-align: center;
  3095. padding: 5px;
  3096. margin-bottom: 4px
  3097. }
  3098. #view-controllers>div:hover {
  3099. color: rgba(255,255,255,.75);
  3100. background-color: rgba(0,0,0,.45)
  3101. }
  3102. #view-controllers span {
  3103. padding-bottom: 3px
  3104. }
  3105. #view-controllers .active {
  3106. padding: 4px;
  3107. color:#00b4ed;
  3108. border: 1px solid#00b4ed
  3109. }
  3110. #view-controllers>div.active:hover {
  3111. color:#00b4ed
  3112. }
  3113. #view-controllers.wide {
  3114. left: -130px;
  3115. width: 260px
  3116. }
  3117. #view-controllers.wide>div {
  3118. width: 125px
  3119. }
  3120. .tourSpinner,.tourSpinner:before {
  3121. width: 45px;
  3122. height: 45px;
  3123. z-index: 1;
  3124. position: absolute
  3125. }
  3126. #play > a,#pause > a {
  3127. position: relative;
  3128. width: 50px;
  3129. height: 50px;
  3130. display: flex;
  3131. justify-content: center;
  3132. align-items: center;
  3133. cursor: pointer;
  3134. margin-right: 30px;
  3135. background:url(http://space3d.4dage.com/SuperLY/images/img_icon_bg@2x.png)top left no-repeat;
  3136. background-size: 100% auto;
  3137. }
  3138. #play > span, #pause > span {
  3139. position: relative;
  3140. top: -8px;
  3141. left: -2px;
  3142. }
  3143. .tourSpinner {
  3144. border-radius: 45px;
  3145. top: -10px;
  3146. left: -10px;
  3147. border: 5px solid rgba(255,255,255,.4);
  3148. text-shadow: 0 0 5px rgba(0,0,0,.9)
  3149. }
  3150. .tourSpinner:before {
  3151. content: '';
  3152. display: block;
  3153. top: -5px;
  3154. left: -5px;
  3155. border: 5px solid transparent;
  3156. border-top-color: rgba(75,205,252,1);
  3157. border-radius: 40px;
  3158. -webkit-animation: gui-spinner 2s linear infinite;
  3159. -moz-animation: gui-spinner 2s linear infinite;
  3160. -ms-animation: gui-spinner 2s linear infinite;
  3161. -o-animation: gui-spinner 2s linear infinite;
  3162. animation: gui-spinner 2s linear infinite
  3163. }
  3164. #pullTab {
  3165. display: block;
  3166. position: relative;
  3167. border-top-left-radius: 2px;
  3168. border-top-right-radius: 2px;
  3169. text-align: center
  3170. }
  3171. #play img,#pause img{
  3172. width:100%;
  3173. height:100%;
  3174. }
  3175. #gui-modes-map div img
  3176. {
  3177. width: 50px;
  3178. height: 50px;
  3179. }
  3180. #pullTab i {
  3181. line-height: 40px;
  3182. width: 48px;
  3183. margin: auto
  3184. }
  3185. #pullTab a {
  3186. position: absolute;
  3187. left: 50%;
  3188. top: 50%;
  3189. transform: translate(-50%,-50%);
  3190. width: 100%
  3191. }
  3192. #gui-parent #pullTab.opened, #gui-parent #gui-modes-map > div.active {
  3193. opacity: 1;
  3194. }
  3195. #pullTab.opened .icon-dpad-up:before {
  3196. content: "\e601"
  3197. }
  3198. #drawer-container {
  3199. width: 100%;
  3200. height: 200px;
  3201. position: fixed;
  3202. bottom: 0px;
  3203. overflow: hidden;
  3204. pointer-events: none;
  3205. -webkit-transition-property: bottom,opacity;
  3206. -webkit-transition-duration: .5s;
  3207. transition-property: bottom,opacity;
  3208. transition-duration: .5s;
  3209. opacity: 1;
  3210. z-index: 3;
  3211. position:absolute;
  3212. }
  3213. /*#drawer-container.fadeOut {
  3214. opacity: 0
  3215. }*/
  3216. #drawer {
  3217. color: #fff;
  3218. position: absolute;
  3219. left: 0;
  3220. width: 100%;
  3221. height: 0;
  3222. transition-property: height,bottom;
  3223. transition-duration: .5s;
  3224. pointer-events: all;
  3225. z-index: 50
  3226. }
  3227. #drawer.open {
  3228. height: 130px
  3229. }
  3230. #drawer-container.drawerOpen #drawer.open {
  3231. height: 136px
  3232. }
  3233. #drawer.open.fadeOut {
  3234. pointer-events: none
  3235. }
  3236. #drawer.open.noScroll {
  3237. height: 107px
  3238. }
  3239. #drawer-container.drawerOpen #drawer.open.noScroll,#drawer.open.noScroll.playing {
  3240. height: 113px
  3241. }
  3242. #gui .pinBottom.open {
  3243. bottom: 140px
  3244. }
  3245. #gui .pinBottom.open.noScroll {
  3246. bottom: 117px
  3247. }
  3248. #gui .pinBottom.open.playing {
  3249. bottom: 150px
  3250. }
  3251. #gui .pinBottom-container.drawerOpen .pinBottom.open.noScroll.playing {
  3252. bottom: 127px;
  3253. }
  3254. #gui .pinBottom.open.noScroll.playing {
  3255. bottom: 135px;
  3256. }
  3257. #gui #drawer.playing, #gui .pinBottom.playing {
  3258. bottom: 20px
  3259. }
  3260. #thumb-container .thumbImg {
  3261. cursor: pointer
  3262. }
  3263. .playing #thumb-container .thumbImg {
  3264. cursor: default
  3265. }
  3266. #thumb-container .thumbImg img {
  3267. height: 97px
  3268. }
  3269. .frame-container {
  3270. float: left;
  3271. width: calc(100% - 58px);
  3272. height: 100%
  3273. }
  3274. .fullWidth .frame-container {
  3275. width: 100%
  3276. }
  3277. .frame {
  3278. width: calc(100% - 20px);
  3279. height: 97px;
  3280. margin: 9px 10px;
  3281. float: left
  3282. }
  3283. .frame.noScroll {
  3284. margin: 17px 10px
  3285. }
  3286. .frame .slidee {
  3287. margin: 0;
  3288. padding: 0;
  3289. height: 100%;
  3290. list-style: none
  3291. }
  3292. .frame .slidee li {
  3293. float: left;
  3294. width: 136px;
  3295. margin: 0 12px 0 0;
  3296. position: relative
  3297. }
  3298. .frame .slidee li .overlay {
  3299. position: absolute;
  3300. bottom: 2px;
  3301. left: 2px;
  3302. width: 130px;
  3303. height: 20px;
  3304. padding: 6px;
  3305. color: #fff;
  3306. background-color: rgba(0,0,0,.7);
  3307. overflow: hidden;
  3308. white-space: nowrap;
  3309. font-weight: 100;
  3310. text-align: center;
  3311. line-height: 4px;
  3312. z-index: 100;
  3313. -moz-transform: translate3d(0,0,0);
  3314. -ms-transform: translate3d(0,0,0);
  3315. -o-transform: translate3d(0,0,0);
  3316. transform: translate3d(0,0,0)
  3317. }
  3318. .frame .slidee li .mark360View,.frame .slidee li .markInsideView {
  3319. position: absolute;
  3320. top: 2px;
  3321. left: 2px;
  3322. width: 50px;
  3323. max-height: 25px;
  3324. color: #fff;
  3325. background-color: rgba(0,0,0,1);
  3326. z-index: 100;
  3327. -webkit-transform: translate3d(0,0,0);
  3328. -moz-transform: translate3d(0,0,0);
  3329. -ms-transform: translate3d(0,0,0);
  3330. -o-transform: translate3d(0,0,0);
  3331. transform: translate3d(0,0,0)
  3332. }
  3333. .frame .slidee li img {
  3334. border: 2px solid transparent;
  3335. transition: all .5s
  3336. }
  3337. .frame .slidee li.thumbImg.hasHover>img:hover {
  3338. opacity: 1;
  3339. border-color: #fff
  3340. }
  3341. .playing .frame .slidee li.thumbImg.hasHover>img:hover {
  3342. opacity: .6;
  3343. border-color: transparent
  3344. }
  3345. .frame .slidee li.thumbImg.hasHover.recent>img:hover,.frame .slidee li.thumbImg.recent>img {
  3346. opacity: .6;
  3347. border-color: #A0A0A0
  3348. }
  3349. .frame .slidee li.thumbImg.hasHover.upcoming>img:hover,.frame .slidee li.thumbImg.upcoming>img {
  3350. opacity: 1;
  3351. border-color: #BFAF1E
  3352. }
  3353. .frame .slidee li.thumbImg.active>img,.frame .slidee li.thumbImg.hasHover.active>img:hover {
  3354. opacity: 1;
  3355. border-color:#00b4ed
  3356. }
  3357. .scrollbar {
  3358. width: calc(100% - 10px);
  3359. margin: 0 5px;
  3360. height: 8px;
  3361. float: left;
  3362. border-radius: 5px;
  3363. background: rgba(0,0,0,.75)
  3364. }
  3365. .scrollbar .handle {
  3366. width: 100px;
  3367. height: 100%;
  3368. background: rgba(255,255,255,.75);
  3369. border-radius: 5px
  3370. }
  3371. #progressBar,#status {
  3372. display: table-cell;
  3373. height: 0;
  3374. vertical-align: middle
  3375. }
  3376. #loader-cont,#loader-cont:after {
  3377. display: block;
  3378. border-radius: 100%
  3379. }
  3380. #playHead {
  3381. display: table;
  3382. height: 20px;
  3383. width: 100%;
  3384. position: absolute;
  3385. bottom: -20px;
  3386. left: 0;
  3387. transition-property: bottom;
  3388. transition-duration: .5s;
  3389. background-color: #000;
  3390. z-index: 50
  3391. }
  3392. #playHead.playing {
  3393. bottom: 0
  3394. }
  3395. #status {
  3396. width: 65px;
  3397. color: #fff;
  3398. font-family: OpenSans,'Helvetica Neue',Arial,sans-serif;
  3399. font-weight: 700;
  3400. font-size: 11px;
  3401. padding-left: 10px
  3402. }
  3403. #progressBar {
  3404. padding: 0 10px;
  3405. pointer-events: all
  3406. }
  3407. #progressBar .step {
  3408. height: 6px;
  3409. float: left
  3410. }
  3411. #progressBar .step:last-of-type {
  3412. padding: 0
  3413. }
  3414. #progressBar .step::before {
  3415. content: '';
  3416. background-color: #575757;
  3417. width: 100%;
  3418. height: 100%;
  3419. display: block
  3420. }
  3421. #progressBar .step.active::before,#progressBar .step.recent::before {
  3422. background-color:#00b4ed
  3423. }
  3424. #progressBar .step.upcoming::before {
  3425. background-color: #BFAF1E
  3426. }
  3427. .terms2 {
  3428. display: none;
  3429. padding-top: 7px
  3430. }
  3431. .specialPower {
  3432. width: 100%;
  3433. font-size: 16px;
  3434. bottom: 11px;
  3435. left: 0;
  3436. display: none
  3437. }
  3438. .specialEdition .specialPower {
  3439. display: block
  3440. }
  3441. .specialEdition .specialPower .img {
  3442. display: inline-block;
  3443. width: 120px;
  3444. height: 20px;
  3445. background: url(http://space3d.4dage.com/SuperLY/images/specialEdLogo1.png) no-repeat;
  3446. background-size: contain
  3447. }
  3448. .specialEdition #gui-fullscreen,.specialEdition #gui-modes-inside,.specialEdition #gui-modes-outside,.specialEdition #playHead,.specialEdition #pullTab,.specialEdition .frame-container,.specialEdition .gui-floor,.specialEdition .model-title,.specialEdition .pinBottom.center,.specialEdition .pinTop.right,.specialEdition .title-row {
  3449. display: none
  3450. }
  3451. .specialEdition .terms2 {
  3452. display: block
  3453. }
  3454. .specialEdition .pinBottom.right,.specialEdition .pinTop.right {
  3455. right: 20px
  3456. }
  3457. .specialEdition .pinBottom.open.playing {
  3458. bottom: 130px
  3459. }
  3460. .specialEdition #drawer.playing,.specialEdition .pinBottom.playing {
  3461. bottom: 0
  3462. }
  3463. .specialEdition #playHead.playing {
  3464. bottom: -20px
  3465. }
  3466. .powered-by {
  3467. width: 105px;
  3468. height: 23px;
  3469. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  3470. font-size: 12px;
  3471. letter-spacing: -.1px;
  3472. color: #fff
  3473. }
  3474. @media only screen and (max-height: 370px) {
  3475. #loader-cont {
  3476. width:50px;
  3477. height: 50px;
  3478. font-size: 24px;
  3479. padding: 6px 0
  3480. }
  3481. #loader-cont:after {
  3482. width: 42px;
  3483. height: 42px;
  3484. top: 4px;
  3485. left: 4px;
  3486. line-height: 42px;
  3487. font-size: 10px
  3488. }
  3489. #gui-loading {
  3490. z-index: 5000
  3491. }
  3492. #gui-loading img {
  3493. width: 88px;
  3494. height: auto
  3495. }
  3496. }
  3497. @media only screen and (max-width: 320px) {
  3498. .pinBottom.left .ui-icon.wide,.ui-icon {
  3499. font-size: 22px;
  3500. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3501. }
  3502. }
  3503. @media only screen and (max-width: 487px) and (min-width: 321px) {
  3504. .pinBottom.left .ui-icon.wide,.ui-icon {
  3505. font-size:22px;
  3506. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3507. }
  3508. .pinBottom.right {
  3509. right: 0;
  3510. padding-right: 0
  3511. }
  3512. }
  3513. @media only screen and (max-width: 487px) {
  3514. .mobile-only {
  3515. display: block
  3516. }
  3517. #gui-fullscreen {
  3518. padding-left: 20px
  3519. }
  3520. .pinTop.right {
  3521. top: 60px;
  3522. font-size: 27px
  3523. }
  3524. .pinTop.right.reposition {
  3525. top: 10px;
  3526. z-index: 20
  3527. }
  3528. #model-title.closed {
  3529. width: 20px
  3530. }
  3531. .tourSpinner {
  3532. top: -10px;
  3533. left: -10px
  3534. }
  3535. #gui.jp-JP .gui-floor-number {
  3536. padding-right: 3px
  3537. }
  3538. }
  3539. @media only screen and (max-width: 487px),(max-height:487px) {
  3540. #thumb-container .thumbImg img,.frame {
  3541. height:77px
  3542. }
  3543. .frame .slidee li,.frame .slidee li .overlay {
  3544. width: 103px
  3545. }
  3546. #drawer-container.drawerOpen #drawer.open.noScroll {
  3547. height: 94px
  3548. }
  3549. #drawer.open.noScroll,#drawer.open.noScroll.playing {
  3550. height: 88px
  3551. }
  3552. .pinBottom-container.drawerOpen.duringTour {
  3553. bottom: 6px
  3554. }
  3555. #gui .pinBottom.open.noScroll {
  3556. bottom: 93px
  3557. }
  3558. .pinBottom.open.noScroll.playing {
  3559. bottom: 108px
  3560. }
  3561. }
  3562. @media only screen and (max-width: 350px) {
  3563. .pinBottom-container.embed .pinBottom.left {
  3564. left:10px
  3565. }
  3566. .pinBottom-container.embed #pullTab {
  3567. margin-right: 16px
  3568. }
  3569. .pinBottom-container.embed .ui-icon {
  3570. padding-right: 16px
  3571. }
  3572. .pinBottom-container.embed .pinBottom.right .ui-icon,.pinBottom-container.embed .pinBottom.right .ui-icon.wide {
  3573. padding: 0 8px
  3574. }
  3575. .pinBottom-container.embed .gui-floor {
  3576. margin-right: 8px
  3577. }
  3578. .pinBottom-container.embed #gui-fullscreen {
  3579. padding-left: 8px
  3580. }
  3581. }
  3582. .pinTop.right.mobile-only {
  3583. top: 60px;
  3584. font-size: 27px;
  3585. right: 0
  3586. }
  3587. .pinTop.right.mobile-only.reposition {
  3588. top: 10px;
  3589. z-index: 20
  3590. }
  3591. .pinTop.right.mobile-only #more-menu-button.icon {
  3592. padding-right: 0
  3593. }
  3594. .menu-toggles {
  3595. font-size: 14px;
  3596. padding-top: 10px
  3597. }
  3598. .menu-radios {
  3599. font-size: 12px;
  3600. padding-top: 5px
  3601. }
  3602. .menu-radios::after {
  3603. content: '';
  3604. display: block;
  3605. height: 0;
  3606. clear: both
  3607. }
  3608. .menu-radios>div {
  3609. background-color: rgba(255,255,255,.15);
  3610. width: calc(50% - 1px);
  3611. height: 25px;
  3612. line-height: 25px;
  3613. float: left
  3614. }
  3615. .menu-radios * {
  3616. cursor: pointer
  3617. }
  3618. .menu-radios>div:hover {
  3619. background-color: rgba(255,255,255,.25)
  3620. }
  3621. .menu-radios input {
  3622. display: none
  3623. }
  3624. .menu-radios input~label {
  3625. position: relative;
  3626. display: block;
  3627. width: 100%;
  3628. padding-left: 10px;
  3629. padding-right: 10px;
  3630. user-select: none
  3631. }
  3632. .menu-radios input~label::after {
  3633. content: '';
  3634. position: absolute;
  3635. top: 6px;
  3636. right: 10px;
  3637. width: 13px;
  3638. height: 13px;
  3639. border-radius: 8px;
  3640. border: 1px solid #fff;
  3641. line-height: 20px
  3642. }
  3643. .menu-radios input:checked~label::after {
  3644. content: url(http://space3d.4dage.com/SuperLY/images/icon-checkmark.svg);
  3645. position: absolute;
  3646. top: 5px;
  3647. width: 15px;
  3648. height: 15px;
  3649. border: 0
  3650. }
  3651. #lightbox,.menu-mattertag-hide,.menu-mattertag-show {
  3652. width: 100%
  3653. }
  3654. .menu-radio-hide {
  3655. margin-left: 1px
  3656. }
  3657. #lightbox {
  3658. position: fixed;
  3659. height: 100%;
  3660. background-color: rgba(0,0,0,.6);
  3661. z-index: 200;
  3662. -webkit-transition: opacity 250ms;
  3663. transition: opacity 250ms
  3664. }
  3665. #lightbox-close {
  3666. position: absolute;
  3667. font-weight: 700;
  3668. top: 1%;
  3669. right: 1%;
  3670. width: 5%;
  3671. height: 5%;
  3672. line-height: 1.5em;
  3673. text-align: center
  3674. }
  3675. @media only screen and (orientation: landscape) {
  3676. #lightbox {
  3677. font-size:3vw
  3678. }
  3679. }
  3680. @media only screen and (orientation: portrait) {
  3681. #lightbox {
  3682. font-size:3vh
  3683. }
  3684. }
  3685. #lightbox-contents {
  3686. position: relative;
  3687. left: 10%;
  3688. top: 10%;
  3689. width: 80%;
  3690. height: 80%;
  3691. border: 0;
  3692. background-color: rgba(255,255,255,.8)
  3693. }
  3694. #datLinks {
  3695. width: 60%
  3696. }
  3697. #datLinks .property-name {
  3698. width: 10%
  3699. }
  3700. #datLinks .property-name~div {
  3701. width: 90%;
  3702. float: left;
  3703. padding: 0;
  3704. margin: 0
  3705. }
  3706. #datLinks .property-name~div>input {
  3707. height: 20px;
  3708. width: 85%;
  3709. float: left;
  3710. line-height: 20px
  3711. }
  3712. .footer {
  3713. height: 25px;
  3714. width: 100%;
  3715. position: fixed;
  3716. padding: 3px;
  3717. right: 0;
  3718. bottom: 0;
  3719. display: inline-block;
  3720. font-size: 14px;
  3721. z-index: 103;
  3722. background-color: rgba(0,0,0,.3);
  3723. transition: all .5s;
  3724. vertical-align: middle;
  3725. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3726. opacity: 1;
  3727. position:absolute;
  3728. }
  3729. /*.footer.fadeOut {
  3730. opacity: 0;
  3731. pointer-events: none
  3732. }*/
  3733. .footer.drawerOpen,.footer.duringTour {
  3734. bottom: -25px
  3735. }
  3736. .footer.open {
  3737. background-color: rgba(0,0,0,.45)
  3738. }
  3739. .footer .standard,.footer.closeByFooter .close {
  3740. -webkit-transition: all .5s;
  3741. transition: all .5s;
  3742. opacity: 1;
  3743. width: auto;
  3744. pointer-events: auto
  3745. }
  3746. .footer .close,.footer.closeByFooter .standard {
  3747. opacity: 0;
  3748. width: 0;
  3749. pointer-events: none
  3750. }
  3751. .footer div {
  3752. float: right;
  3753. margin-right: 8px
  3754. }
  3755. .footer div.standard {
  3756. margin-right: 0
  3757. }
  3758. .footer img {
  3759. float: right;
  3760. margin-right: 3px;
  3761. height: 20px;
  3762. width: auto;
  3763. position: relative
  3764. }
  3765. .footer-help.open a {
  3766. color:#00b4ed
  3767. }
  3768. .footer.mobile .footer-help a.hasHover:hover {
  3769. color: #fff
  3770. }
  3771. .footer.mobile .footer-help.open a.hasHover:hover {
  3772. color:#00b4ed
  3773. }
  3774. #tag-billboards {
  3775. z-index: 100;
  3776. position: absolute;
  3777. top: 0;
  3778. left: 0;
  3779. width: 100%;
  3780. height: 100%;
  3781. pointer-events: none
  3782. }
  3783. .tag-container {
  3784. white-space: pre-wrap;
  3785. pointer-events: auto;
  3786. position: absolute;
  3787. color: #fff;
  3788. font-family: OpenSans,'Helvetica Neue',sans-serif;
  3789. visibility: hidden;
  3790. background-color: rgba(0,0,0,.85);
  3791. -webkit-user-select: none;
  3792. -khtml-user-select: none;
  3793. -moz-user-select: none;
  3794. -ms-user-select: none;
  3795. user-select: none;
  3796. -webkit-border-radius: 3px;
  3797. border-radius: 3px;
  3798. box-shadow: 0 1px 1px rgba(0,0,0,.5);
  3799. padding: 12px
  3800. }
  3801. .tag-label {
  3802. font-size: 12pt;
  3803. font-weight: 700;
  3804. padding-bottom: 5px;
  3805. padding-left: 10px
  3806. }
  3807. .tag-desc {
  3808. font-size: 11pt;
  3809. font-weight: 600;
  3810. color: #c8c8c8;
  3811. max-height: 8.2em;
  3812. padding-left: 10px;
  3813. padding-right: 10px
  3814. }
  3815. .tag-content {
  3816. top: 10px;
  3817. left: 10px
  3818. }
  3819. .overlay .tag-content {
  3820. overflow: hidden
  3821. }
  3822. .overlay .tag-body .tag-content {
  3823. max-height: calc(100% - 20px);
  3824. background-color: transparent
  3825. }
  3826. .overlay .tag-body .tag-desc {
  3827. overflow-y: auto;
  3828. max-height: unset;
  3829. transition: height .5s ease-in;
  3830. background-color: rgba(0,0,0,.85)
  3831. }
  3832. .overlay .tag-body:not(.show-info) .tag-desc {
  3833. height: 0!important
  3834. }
  3835. .overlay .tag-body.show-info .tag-desc {
  3836. height: calc(100% - 27px)
  3837. }
  3838. .tag-container:not(.overlay) .tag-text-content {
  3839. overflow-y: auto
  3840. }
  3841. .tag-container .loading-spinner {
  3842. background-color: #626262;
  3843. margin-top: 15px;
  3844. padding: 15px
  3845. }
  3846. .tag-container .gui-spinner-icon {
  3847. display: block;
  3848. margin: 0 auto
  3849. }
  3850. .tag-container .tag-body {
  3851. max-width: 250px;
  3852. overflow: hidden
  3853. }
  3854. .tag-container.has-image {
  3855. padding: 0;
  3856. text-shadow: 0 1px 1px #000
  3857. }
  3858. .tag-container.has-image .tag-body {
  3859. max-width: none;
  3860. position: relative;
  3861. width: auto
  3862. }
  3863. .tag-container.has-image .tag-content {
  3864. position: absolute;
  3865. width: calc(100% - 19px);
  3866. left: 10px;
  3867. top: 10px;
  3868. padding-bottom: 10px
  3869. }
  3870. .tag-container.has-image:not(.has-text) .tag-text-content .tag-label,.tag-container.overlay .tag-content {
  3871. padding-bottom: 0
  3872. }
  3873. .tag-container.has-image:not(.overlay) .tag-content {
  3874. background-color: rgba(0,0,0,.7)
  3875. }
  3876. .tag-container.has-embed:not(.overlay) .tag-desc,.tag-container.has-image:not(.overlay) .tag-desc,.tag-container.has-video:not(.overlay) .tag-desc {
  3877. max-height: 4em
  3878. }
  3879. .tag-container:not(.overlay) .view-image {
  3880. cursor: -webkit-zoom-in;
  3881. cursor: url(http://space3d.4dage.com/SuperLY/images/cursor/zoom-in.svg),auto;
  3882. cursor: zoom-in
  3883. }
  3884. .tag-container .tag-image {
  3885. background-size: cover;
  3886. background-repeat: no-repeat;
  3887. background-position: 50% 50%
  3888. }
  3889. .tag-container.has-image .tag-media-content {
  3890. padding: 10px
  3891. }
  3892. .tag-container.has-image.image-portrait:not(.overlay) .tag-media-content .tag-image {
  3893. height: 400px!important;
  3894. min-width: 225px;
  3895. max-width: 300px
  3896. }
  3897. .tag-container.has-image.image-landscape:not(.overlay) .tag-media-content .tag-image {
  3898. width: 400px!important;
  3899. min-height: 225px;
  3900. max-height: 300px
  3901. }
  3902. .tag-container.has-video .tag-body {
  3903. max-width: none;
  3904. width: 350px
  3905. }
  3906. .tag-container .tag-video {
  3907. position: relative;
  3908. width: 100%;
  3909. padding-top: 56.25%
  3910. }
  3911. .tag-container.has-embed .tag-body {
  3912. max-width: none;
  3913. width: 350px
  3914. }
  3915. .tag-container .tag-embed {
  3916. position: relative
  3917. }
  3918. .tag-container.has-embed .tag-content,.tag-container.has-video .tag-content {
  3919. padding-bottom: 12px
  3920. }
  3921. .tag-container iframe {
  3922. position: absolute;
  3923. top: 0;
  3924. left: 0;
  3925. border: 0;
  3926. width: 100%;
  3927. height: 100%
  3928. }
  3929. .tag-container-right-down::before,.tag-container-right-up::before,.tag-container-right::before {
  3930. content: "";
  3931. position: absolute;
  3932. border-right: 30px solid rgba(0,0,0,.85);
  3933. right: 100%
  3934. }
  3935. .tag-container-left-down::before,.tag-container-left-up::before,.tag-container-left::before {
  3936. border-left: 30px solid rgba(0,0,0,.85);
  3937. left: 100%
  3938. }
  3939. .tag-container-right-down {
  3940. -webkit-transform: translateX(30px);
  3941. transform: translateX(30px)
  3942. }
  3943. .tag-container-right-down::before {
  3944. top: 0;
  3945. border-bottom: 20px solid transparent;
  3946. -webkit-transform-origin: 0 0;
  3947. transform-origin: 0 0;
  3948. -webkit-transform: skewY(30deg);
  3949. transform: skewY(30deg)
  3950. }
  3951. .tag-container-right {
  3952. -webkit-transform: translate(30px,calc(-50% - 20px / 2 - 30px * .57735));
  3953. transform: translate(30px,-50%) translateY(-27px)
  3954. }
  3955. .tag-container-right::before {
  3956. top: calc(50% - 20px / 2);
  3957. border-top: 20px solid transparent;
  3958. -webkit-transform-origin: 100% 50%;
  3959. transform-origin: 100% 50%;
  3960. -webkit-transform: skewY(-30deg);
  3961. transform: skewY(-30deg)
  3962. }
  3963. .tag-container-right-up {
  3964. -webkit-transform: translate(30px,-100%);
  3965. transform: translate(30px,-100%)
  3966. }
  3967. .tag-container-right-up::before {
  3968. bottom: 0;
  3969. border-top: 20px solid transparent;
  3970. -webkit-transform-origin: 0 100%;
  3971. transform-origin: 0 100%;
  3972. -webkit-transform: skewY(-30deg);
  3973. transform: skewY(-30deg)
  3974. }
  3975. .tag-container-bottom::before,.tag-container-top::before {
  3976. border-right: 20px solid transparent;
  3977. position: absolute;
  3978. content: ""
  3979. }
  3980. .tag-container-right-down::after,.tag-container-right-up::after,.tag-container-right::after {
  3981. position: absolute;
  3982. height: 100%;
  3983. width: 30px;
  3984. right: 100%;
  3985. top: 0
  3986. }
  3987. .tag-container-left-down {
  3988. -webkit-transform: translateX(calc(-100% - 30px));
  3989. transform: translateX(-100%) translateX(-30px)
  3990. }
  3991. .tag-container-left-down::before {
  3992. content: "";
  3993. position: absolute;
  3994. top: 0;
  3995. border-bottom: 20px solid transparent;
  3996. -webkit-transform-origin: 100% 0;
  3997. transform-origin: 100% 0;
  3998. -webkit-transform: skewY(-30deg);
  3999. transform: skewY(-30deg)
  4000. }
  4001. .tag-container-left {
  4002. -webkit-transform: translate(calc(-100% - 30px),calc(-50% - 20px / 2 - 30px * .57735));
  4003. transform: translate(-100%,-50%) translate(-30px,-27px)
  4004. }
  4005. .tag-container-left::before {
  4006. content: "";
  4007. position: absolute;
  4008. top: calc(50% - 20px / 2);
  4009. border-top: 20px solid transparent;
  4010. -webkit-transform-origin: 0 50%;
  4011. transform-origin: 0 50%;
  4012. -webkit-transform: skewY(30deg);
  4013. transform: skewY(30deg)
  4014. }
  4015. .tag-container-left-up {
  4016. -webkit-transform: translate(calc(-100% - 30px),-100%);
  4017. transform: translate(-100%,-100%) translateX(-30px)
  4018. }
  4019. .tag-container-left-up::before {
  4020. content: "";
  4021. position: absolute;
  4022. bottom: 0;
  4023. border-top: 20px solid transparent;
  4024. -webkit-transform-origin: 100% 100%;
  4025. transform-origin: 100% 100%;
  4026. -webkit-transform: skewY(30deg);
  4027. transform: skewY(30deg)
  4028. }
  4029. .tag-container-left-down::after,.tag-container-left-up::after,.tag-container-left::after {
  4030. position: absolute;
  4031. height: 100%;
  4032. width: 30px;
  4033. left: 100%;
  4034. top: 0
  4035. }
  4036. .tag-container-top {
  4037. -webkit-transform: translate(calc(-50% + 20px / 2 + 30px * .57735),calc(-100% - 30px));
  4038. transform: translate(-50%,-100%) translate(27px,-30px)
  4039. }
  4040. .tag-container-top::before {
  4041. right: calc(50% - 20px / 2);
  4042. top: 100%;
  4043. border-top: 30px solid rgba(0,0,0,.85);
  4044. -webkit-transform-origin: 50% 0;
  4045. transform-origin: 50% 0;
  4046. -webkit-transform: skewX(-30deg);
  4047. transform: skewX(-30deg)
  4048. }
  4049. .tag-container-top::after {
  4050. position: absolute;
  4051. height: 30px;
  4052. width: 100%;
  4053. left: 0;
  4054. top: 100%
  4055. }
  4056. .tag-container-bottom {
  4057. -webkit-transform: translate(calc(-50% + 20px / 2 + 30px * .57735),30px);
  4058. transform: translate(-50%,30px) translateX(27px)
  4059. }
  4060. .tag-container-bottom::before {
  4061. left: calc(50% - 20px / 2);
  4062. bottom: 100%;
  4063. border-bottom: 30px solid rgba(0,0,0,.85);
  4064. -webkit-transform-origin: 50% 100%;
  4065. transform-origin: 50% 100%;
  4066. -webkit-transform: skewX(30deg);
  4067. transform: skewX(30deg)
  4068. }
  4069. .tag-container-bottom::after {
  4070. position: absolute;
  4071. height: 30px;
  4072. width: 100%;
  4073. left: 0;
  4074. bottom: 100%
  4075. }
  4076. .has-hotzone::after {
  4077. content: ""
  4078. }
  4079. a.tag-link {
  4080. color: rgba(154,222,238,1)
  4081. }
  4082. a.hasHover.tag-link:hover {
  4083. color: rgba(75,205,252,1)
  4084. }
  4085. .tag-container.overlay {
  4086. pointer-events: all;
  4087. position: absolute;
  4088. top: 0;
  4089. left: 0;
  4090. max-width: none;
  4091. width: 100%;
  4092. height: calc(100% - 25px);
  4093. transform: none!important;
  4094. background-color: rgba(0,0,0,.3)
  4095. }
  4096. .tag-container.overlay .tag-body {
  4097. margin: 0 auto;
  4098. top: 50%;
  4099. transform: translateY(-50%)
  4100. }
  4101. .tag-container.overlay .tag-media-content {
  4102. height: 100%;
  4103. width: 100%;
  4104. background-color: rgba(0,0,0,.85)
  4105. }
  4106. .tag-container.overlay .tag-label {
  4107. background-color: rgba(0,0,0,.85)
  4108. }
  4109. .tag-container.overlay .tag-image {
  4110. height: 100%!important;
  4111. width: 100%!important;
  4112. background-size: contain
  4113. }
  4114. .tag-container.overlay .tag-body .tag-text-content {
  4115. left: 0;
  4116. top: 0;
  4117. width: 100%;
  4118. transform: translateZ(0);
  4119. height: 100%
  4120. }
  4121. .tag-container.overlay .tag-body .tag-text-content .tag-label {
  4122. line-height: 22px
  4123. }
  4124. .tag-container.overlay .tag-body .tag-content.collapsible .tag-label {
  4125. width: 100%;
  4126. padding-right: 55px
  4127. }
  4128. .tag-container.overlay .tag-body:not(.show-info) .tag-content.collapsible .tag-label {
  4129. text-overflow: ellipsis;
  4130. white-space: nowrap;
  4131. overflow: hidden
  4132. }
  4133. .tag-container:not(.overlay) .close {
  4134. display: none
  4135. }
  4136. .tag-container.overlay .close {
  4137. cursor: pointer;
  4138. position: absolute;
  4139. font-size: 18px;
  4140. top: 5px;
  4141. right: 5px;
  4142. padding: 5px
  4143. }
  4144. .tag-container.overlay .tag-text-content.collapsible {
  4145. cursor: pointer;
  4146. height: 100%
  4147. }
  4148. .tag-container.overlay.has-text .tag-body .tag-content.collapsible .tag-label::after {
  4149. font-family: mp-font;
  4150. font-size: 18px;
  4151. font-weight: 400;
  4152. content: '\e601';
  4153. position: absolute;
  4154. top: 0;
  4155. right: 35px;
  4156. transform: none;
  4157. transition: transform .5s
  4158. }
  4159. .tag-container.overlay.has-text .tag-body.show-info .tag-content.collapsible .tag-label::after {
  4160. transform: scale(1,-1)
  4161. }
  4162. #help-dialog {
  4163. position: absolute;
  4164. width: 100%;
  4165. height: 100%;
  4166. left: 0;
  4167. top: 0;
  4168. bottom: 0;
  4169. right: 0;
  4170. text-align: center;
  4171. font-weight: lighter;
  4172. visibility: visible;
  4173. z-index: 102;
  4174. background-color: rgba(0,0,0,.8);
  4175. -webkit-transition: all .5s;
  4176. transition: all .5s;
  4177. pointer-events: none;
  4178. opacity: 0
  4179. }
  4180. #help-dialog.fadeIn {
  4181. opacity: 1;
  4182. pointer-events: all
  4183. }
  4184. #help-dialog .close {
  4185. position: absolute;
  4186. right: 0;
  4187. top: 0;
  4188. padding: 15px;
  4189. font-size: 16px
  4190. }
  4191. #help-dialog .help-tabs div {
  4192. padding: 16px 55px 15px 20px;
  4193. display: inline-block;
  4194. font-weight: 700;
  4195. font-size: 18px;
  4196. height: 100%
  4197. }
  4198. #help-dialog #more-help,#help-dialog.desktop.dollhouse .interactions.middle .keyboard,#help-dialog.desktop.dollhouse .interactions.middle hr,#help-dialog.desktop.dollhouse .interactions.right .keyboard,#help-dialog.desktop.dollhouse .interactions.right hr,#help-dialog.desktop.floorplan .interactions.left .keyboard,#help-dialog.desktop.floorplan .interactions.left hr,#help-dialog.mobile hr {
  4199. display: none
  4200. }
  4201. #help-dialog .help-tabs {
  4202. position: absolute;
  4203. width: 80%;
  4204. left: 10%;
  4205. transition: all .3s;
  4206. cursor: pointer;
  4207. z-index: 100
  4208. }
  4209. #help-dialog .help-tabs div:hover * {
  4210. color: rgba(75,205,252,1)
  4211. }
  4212. #help-dialog .help-tabs span {
  4213. padding-bottom: 3px;
  4214. transition: all .3s
  4215. }
  4216. #help-dialog .help-tabs div span {
  4217. border-bottom: 0 solid #000
  4218. }
  4219. #help-dialog .help-tabs div.underline-tab span {
  4220. border-bottom: 1px solid #fff
  4221. }
  4222. #help-dialog .help-tabs div.underline-tab:hover span {
  4223. border-bottom: 1px solid rgba(75,205,252,1)
  4224. }
  4225. #help-dialog.mobile .help-tabs div {
  4226. font-size: 12px;
  4227. padding: 17px 17px 17px 12px
  4228. }
  4229. #help-dialog.mobile .close {
  4230. font-size: 12px
  4231. }
  4232. @media only screen and (min-aspect-ratio: 1/1) {
  4233. #help-dialog.mobile .help-tabs div {
  4234. padding:15px 15px 15px 20px
  4235. }
  4236. #help-dialog.mobile .close {
  4237. font-size: 12px
  4238. }
  4239. }
  4240. #help-dialog #more-help-wrapper {
  4241. z-index: -1
  4242. }
  4243. #help-dialog #navigation-help-wrapper,#help-dialog.more-help #more-help-wrapper {
  4244. z-index: -2
  4245. }
  4246. #help-dialog .interactions {
  4247. position: absolute;
  4248. width: 30%;
  4249. height: 60%;
  4250. margin: 0 auto;
  4251. top: 20%;
  4252. left: 0;
  4253. right: 0;
  4254. font-size: 1.15vw
  4255. }
  4256. #help-dialog .interactions.left {
  4257. right: 65%
  4258. }
  4259. #help-dialog .interactions.right {
  4260. left: 65%
  4261. }
  4262. #help-dialog .interactions .big-image,#help-dialog .interactions .keyboard,#help-dialog .interactions hr {
  4263. position: absolute;
  4264. left: 50%;
  4265. transform: translate(-50%,0)
  4266. }
  4267. #help-dialog.desktop .interactions hr {
  4268. bottom: 16vh;
  4269. width: 7.8vh
  4270. }
  4271. #help-dialog.desktop .interactions .big-image {
  4272. bottom: 24vh;
  4273. width: 8.4vh
  4274. }
  4275. #help-dialog.desktop.floorplan .interactions.middle .big-image {
  4276. width: 8.8vh
  4277. }
  4278. #help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4279. width: 10.3vh
  4280. }
  4281. #help-dialog.desktop.dollhouse .interactions.middle .big-image {
  4282. width: 10.4vh
  4283. }
  4284. #help-dialog.desktop .interactions .top-info {
  4285. font-weight: 500;
  4286. margin-left: 7%;
  4287. margin-right: 7%;
  4288. line-height: 1.25
  4289. }
  4290. #help-dialog.desktop .interactions .keyboard {
  4291. bottom: 0;
  4292. width: 8.66vh
  4293. }
  4294. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4295. width: 14vh
  4296. }
  4297. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4298. width: 4.33vh;
  4299. transform: translate(-50%,25%)
  4300. }
  4301. #help-dialog.desktop.outdoor .interactions.middle .keyboard {
  4302. width: 4.33vh
  4303. }
  4304. #help-dialog.desktop .interactions .bottom-info {
  4305. position: absolute;
  4306. font-size: 1.46vw;
  4307. font-weight: 400;
  4308. top: 45vh;
  4309. margin-left: 15%;
  4310. margin-right: 15%;
  4311. line-height: 1.3
  4312. }
  4313. #help-dialog.desktop.dollhouse .interactions.left .bottom-info,#help-dialog.desktop.es-MX.dollhouse .interactions .bottom-info,#help-dialog.desktop.fr-FR.dollhouse .interactions .bottom-info {
  4314. top: 75%
  4315. }
  4316. #help-dialog.desktop.dollhouse.es-MX.desktop .interactions {
  4317. height: 65%
  4318. }
  4319. @media only screen and (max-width: 700px) and (max-height:600px) {
  4320. #help-dialog.desktop .help-tabs div {
  4321. font-size:12px
  4322. }
  4323. #help-dialog.desktop .interactions .top-info {
  4324. position: absolute;
  4325. top: 0;
  4326. width: 100%;
  4327. margin-left: 0;
  4328. font-size: 2.15vw;
  4329. font-weight: 500;
  4330. line-height: 1.3
  4331. }
  4332. #help-dialog.desktop.panorama .interactions .top-info {
  4333. top: 3%
  4334. }
  4335. #help-dialog.desktop.floorplan .interactions .top-info {
  4336. top: -2%
  4337. }
  4338. #help-dialog.desktop.es-MX.panorama .interactions .top-info {
  4339. top: 0
  4340. }
  4341. #help-dialog.desktop .interactions .bottom-info {
  4342. margin-left: 5%;
  4343. margin-right: 5%;
  4344. font-size: 2.15vw;
  4345. line-height: 1.14;
  4346. top: 40vh
  4347. }
  4348. #help-dialog.desktop.es-MX .interactions .bottom-info,#help-dialog.desktop.es-MX .interactions .top-info,#help-dialog.desktop.fr-FR .interactions .bottom-info,#help-dialog.desktop.fr-FR .interactions .top-info,#help-dialog.desktop.jp-JP .interactions .bottom-info,#help-dialog.desktop.jp-JP .interactions .top-info,#help-dialog.desktop.ru-RU .interactions .bottom-info {
  4349. font-size: 2vw
  4350. }
  4351. #help-dialog.desktop .interactions .big-image {
  4352. width: 7.15vh;
  4353. bottom: 28.75vh
  4354. }
  4355. #help-dialog.desktop.dollhouse .interactions.left .big-image,#help-dialog.desktop.floorplan .interactions.middle .big-image {
  4356. width: 7.5vh
  4357. }
  4358. #help-dialog.desktop.dollhouse .interactions.middle .big-image,#help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4359. width: 9vh
  4360. }
  4361. #help-dialog.desktop .interactions hr {
  4362. width: 6.55vh;
  4363. bottom: 19.8vh
  4364. }
  4365. #help-dialog.desktop .interactions .keyboard {
  4366. width: 10.4vh;
  4367. bottom: 0
  4368. }
  4369. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.outdoor .interactions.middle .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4370. width: 5.2vh
  4371. }
  4372. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4373. bottom: 0
  4374. }
  4375. #help-dialog.desktop.es-MX.floorplan .interactions {
  4376. top: 23%
  4377. }
  4378. #help-dialog.desktop.dollhouse .interactions.left .bottom-info,#help-dialog.desktop.es-MX .interactions .bottom-info,#help-dialog.desktop.es-MX.dollhouse .interactions .bottom-info,#help-dialog.desktop.fr-FR.dollhouse .interactions .bottom-info,#help-dialog.desktop.fr-FR.floorplan .interactions .bottom-info #help-dialog.desktop.fr-FR .interactions .bottom-info {
  4379. top: 65%
  4380. }
  4381. #help-dialog.desktop.es-MX.dollhouse .interactions .bottom-info,#help-dialog.desktop.es-MX.floorplan .interactions .bottom-info {
  4382. top: 68%
  4383. }
  4384. #help-dialog.desktop.de-DE.dollhouse .interactions .keyboard,#help-dialog.desktop.de-DE.outdoor .interactions .keyboard,#help-dialog.desktop.es-MX.dollhouse .interactions .keyboard,#help-dialog.desktop.es-MX.floorplan .interactions .keyboard,#help-dialog.desktop.es-MX.panorama .interactions .keyboard,#help-dialog.desktop.fr-FR.dollhouse .interactions .keyboard,#help-dialog.desktop.fr-FR.floorplan .interactions .keyboard,#help-dialog.desktop.jp-JP .interactions .keyboard,#help-dialog.desktop.ru-RU.dollhouse .interactions .keyboard,#help-dialog.desktop.ru-RU.floorplan .interactions .keyboard {
  4385. bottom: -5%
  4386. }
  4387. #help-dialog.desktop.de-DE.floorplan .interactions .keyboard,#help-dialog.desktop.de-DE.panorama .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4388. bottom: -10%
  4389. }
  4390. #help-dialog.desktop.es-MX.dollhouse .interactions .top-info {
  4391. position: relative;
  4392. bottom: 5%
  4393. }
  4394. #help-dialog.desktop.de-DE.dollhouse .interactions .top-info,#help-dialog.desktop.de-DE.floorplan .interactions .top-info,#help-dialog.desktop.es-MX.floorplan .interactions .top-info,#help-dialog.desktop.ru-RU.dollhouse .interactions .top-info,#help-dialog.desktop.ru-RU.floorplan .interactions .top-info {
  4395. top: -10%;
  4396. font-size: 2vw
  4397. }
  4398. }
  4399. @media only screen and (max-width: 700px) and (min-aspect-ratio:2/1) {
  4400. #help-dialog.desktop .interactions hr {
  4401. bottom:15.5vh
  4402. }
  4403. }
  4404. @media only screen and (min-width: 701px) and (max-aspect-ratio:15/10) {
  4405. #help-dialog.desktop .interactions {
  4406. position:absolute;
  4407. top: 10%
  4408. }
  4409. #help-dialog.desktop .interactions hr {
  4410. width: 6vh
  4411. }
  4412. #help-dialog.desktop.dollhouse .interactions {
  4413. top: 10%
  4414. }
  4415. #help-dialog.desktop .interactions .top-info {
  4416. position: relative;
  4417. top: 15%
  4418. }
  4419. #help-dialog.desktop.ru-RU.dollhouse .interactions {
  4420. height: 68%
  4421. }
  4422. #help-dialog.desktop.de-DE.dollhouse .interactions .top-info,#help-dialog.desktop.de-DE.floorplan .interactions .top-info {
  4423. font-size: 1.3em
  4424. }
  4425. #help-dialog.desktop.ru-RU.floorplan .interactions .top-info {
  4426. top: 8%
  4427. }
  4428. #help-dialog.desktop.de-DE .interactions .keyboard,#help-dialog.desktop.jp-JP .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4429. bottom: -5%
  4430. }
  4431. #help-dialog.desktop.es-MX.floorplan .interactions {
  4432. top: 20%
  4433. }
  4434. #help-dialog.desktop.es-MX.floorplan .interactions .top-info {
  4435. top: 0
  4436. }
  4437. #help-dialog.desktop.de-DE.dollhouse .interactions .bottom-info,#help-dialog.desktop.de-DE.floorplan .interactions .bottom-info {
  4438. font-size: 1.2em
  4439. }
  4440. #help-dialog.desktop.dollhouse .interactions.left .bottom-info,#help-dialog.desktop.es-MX.dollhouse .interactions .bottom-info,#help-dialog.desktop.fr-FR.dollhouse .interactions .bottom-info {
  4441. top: 77.5%
  4442. }
  4443. #help-dialog.desktop .interactions .big-image {
  4444. width: 6.3vh
  4445. }
  4446. #help-dialog.desktop.floorplan .interactions.middle .big-image {
  4447. width: 6.6vh
  4448. }
  4449. #help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4450. width: 7.725vh
  4451. }
  4452. #help-dialog.desktop.dollhouse .interactions.middle .big-image {
  4453. width: 7.8vh
  4454. }
  4455. #help-dialog.desktop .interactions .keyboard {
  4456. width: 6.5vh
  4457. }
  4458. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4459. width: 10.5vh
  4460. }
  4461. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.outdoor .interactions.middle .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4462. width: 3.275vh
  4463. }
  4464. }
  4465. @media only screen and (min-aspect-ratio: 15/10) and (min-width:700px) {
  4466. #help-dialog.desktop.es-MX.floorplan .interactions .top-info {
  4467. position:relative;
  4468. bottom: 7%
  4469. }
  4470. #help-dialog.desktop.jp-JP .interactions .top-info {
  4471. font-size: 1.4em
  4472. }
  4473. #help-dialog.desktop.jp-JP .interactions .bottom-info {
  4474. font-size: 1.3vw
  4475. }
  4476. #help-dialog.desktop.de-DE.dollhouse .interactions .top-info,#help-dialog.desktop.de-DE.floorplan .interactions .top-info,#help-dialog.desktop.ru-RU.dollhouse .interactions .top-info,#help-dialog.desktop.ru-RU.floorplan .interactions .top-info {
  4477. bottom: 1%;
  4478. font-size: 1.3em;
  4479. position: relative
  4480. }
  4481. #help-dialog.desktop .interactions .keyboard,#help-dialog.desktop.es-MX.dollhouse .interactions .keyboard,#help-dialog.desktop.fr-FR.dollhouse .interactions .keyboard {
  4482. bottom: -3vh
  4483. }
  4484. #help-dialog.desktop.de-DE .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4485. bottom: -7vh
  4486. }
  4487. #help-dialog.desktop.de-DE .interactions .bottom-info {
  4488. font-size: 1.15em
  4489. }
  4490. #help-dialog.desktop .interactions .bottom-info {
  4491. bottom: 7.5vh
  4492. }
  4493. #help-dialog.desktop .interactions hr {
  4494. bottom: 16vh
  4495. }
  4496. }
  4497. @media only screen and (min-aspect-ratio: 17/10) {
  4498. #help-dialog.desktop .interactions .keyboard {
  4499. bottom:-3vh
  4500. }
  4501. #help-dialog.desktop.ru-RU .interactions .keyboard {
  4502. bottom: -12%
  4503. }
  4504. }
  4505. @media only screen and (min-aspect-ratio: 25/10) {
  4506. #help-dialog.desktop .interactions hr {
  4507. bottom:15vh
  4508. }
  4509. }
  4510. #help-dialog.mobile #navigation-help-wrapper {
  4511. position: absolute;
  4512. top: 12%;
  4513. left: 0;
  4514. right: -25px;
  4515. bottom: 25px;
  4516. overflow: scroll
  4517. }
  4518. #help-dialog.mobile .interactions {
  4519. position: absolute;
  4520. top: 45%;
  4521. transform: translate(0,-50%);
  4522. height: 90px;
  4523. width: 144px
  4524. }
  4525. #help-dialog.mobile .interactions.left {
  4526. right: 312px;
  4527. right: calc(264px + 10vw)
  4528. }
  4529. #help-dialog.mobile .interactions.right {
  4530. left: 312px;
  4531. left: calc(264px + 10vw)
  4532. }
  4533. #help-dialog.mobile .interactions .top-info {
  4534. font-size: 11px;
  4535. font-weight: 500;
  4536. margin-left: 3%;
  4537. margin-right: 3%;
  4538. top: 0
  4539. }
  4540. #help-dialog.mobile .big-image,#help-dialog.mobile.floorplan .interactions.left .big-image {
  4541. bottom: 34%;
  4542. bottom: calc(100% - 110px);
  4543. width: 40.1px
  4544. }
  4545. #help-dialog.mobile.floorplan .interactions.middle .big-image {
  4546. width: 37px
  4547. }
  4548. #help-dialog.mobile.outdoor .interactions.middle .big-image {
  4549. width: 27px
  4550. }
  4551. #help-dialog.mobile .interactions.right .big-image {
  4552. width: 43px
  4553. }
  4554. #help-dialog.mobile.panorama .interactions.middle .big-image {
  4555. width: 56px
  4556. }
  4557. #help-dialog.mobile.dollhouse .interactions.middle .big-image {
  4558. width: 43px
  4559. }
  4560. @media only screen and (min-aspect-ratio: 1/1) {
  4561. #help-dialog.mobile.ru-RU .interactions .top-info {
  4562. position:relative;
  4563. top: -20%
  4564. }
  4565. #help-dialog.mobile.fr-FR.dollhouse .interactions .top-info {
  4566. font-size: 10px
  4567. }
  4568. #help-dialog.mobile.dollhouse.de-DE .interactions .top-info,#help-dialog.mobile.outdoor.es-MX .interactions .top-info,#help-dialog.mobile.outdoor.fr-FR .interactions .top-info {
  4569. position: relative;
  4570. top: -10px
  4571. }
  4572. #help-dialog.mobile.outdoor.es-MX .interactions,#help-dialog.mobile.outdoor.fr-FR .interactions {
  4573. transform: translateY(-50%) translateY(10px)
  4574. }
  4575. }
  4576. @media only screen and (min-aspect-ratio: 1/1) and (max-width:480px) {
  4577. #help-dialog.mobile #navigation-help {
  4578. position:absolute;
  4579. min-width: 480px;
  4580. height: 100%
  4581. }
  4582. }
  4583. @media only screen and (min-aspect-ratio: 1/1) and (min-width:480px) {
  4584. #help-dialog.mobile .interactions {
  4585. position:fixed
  4586. }
  4587. }
  4588. @media only screen and (min-aspect-ratio: 1/1) and (max-height:200px) {
  4589. #help-dialog.mobile #navigation-help-wrapper {
  4590. top:50px
  4591. }
  4592. #help-dialog.mobile .interactions {
  4593. position: absolute;
  4594. height: 110px
  4595. }
  4596. }
  4597. @media only screen and (max-aspect-ratio: 1/1) {
  4598. #help-dialog.mobile .interactions .big-image {
  4599. position:relative;
  4600. margin: 3em auto auto;
  4601. left: auto;
  4602. right: auto;
  4603. transform: translate(0,0)
  4604. }
  4605. #help-dialog.mobile #navigation-help {
  4606. display: inline-block;
  4607. position: absolute;
  4608. left: 0;
  4609. width: 100%;
  4610. min-height: 500px;
  4611. height: 65vh
  4612. }
  4613. #help-dialog.mobile .interactions,#help-dialog.mobile .interactions.left,#help-dialog.mobile .interactions.right {
  4614. position: absolute;
  4615. top: 5%;
  4616. transform: translate(0,0);
  4617. left: 0;
  4618. height: 20%;
  4619. width: 100%
  4620. }
  4621. #help-dialog.mobile .interactions.middle {
  4622. top: 35%
  4623. }
  4624. #help-dialog.mobile .interactions.right {
  4625. top: 65%
  4626. }
  4627. #help-dialog.mobile .interactions .top-info {
  4628. font-size: 14px;
  4629. text-align: center;
  4630. width: 68%;
  4631. max-width: 218px;
  4632. margin: auto
  4633. }
  4634. #help-dialog.mobile.dollhouse .interactions.left .big-image,#help-dialog.mobile.floorplan .interactions.middle .big-image {
  4635. transform: translate(10%,0)
  4636. }
  4637. }
  4638. @media only screen and (max-aspect-ratio: 1/1) and (min-height:600px) {
  4639. #help-dialog.mobile #navigation-help-wrapper {
  4640. top:2.5%
  4641. }
  4642. #help-dialog.mobile.more-help #navigation-help-wrapper {
  4643. top: 50px
  4644. }
  4645. #help-dialog.mobile #navigation-help {
  4646. top: 60%;
  4647. transform: translate(0,-60%)
  4648. }
  4649. }
  4650. @media only screen and (max-aspect-ratio: 1/1) and (min-aspect-ratio:2/3) {
  4651. #help-dialog.mobile .interactions .top-info {
  4652. font-size:14px
  4653. }
  4654. #help-dialog.more-help.mobile #more-help {
  4655. height: 200px
  4656. }
  4657. }
  4658. #help-dialog.more-help #navigation-help {
  4659. display: none
  4660. }
  4661. #more-help-wrapper {
  4662. position: absolute;
  4663. top: 20%;
  4664. top: calc(20% - 4vw);
  4665. left: 0;
  4666. right: -25px;
  4667. bottom: -25px;
  4668. overflow: scroll
  4669. }
  4670. @media only screen and (max-height: 454px) {
  4671. #help-dialog.more-help #more-help-wrapper {
  4672. right:0
  4673. }
  4674. }
  4675. @media only screen and (max-width: 1060px) {
  4676. #help-dialog.more-help #more-help-wrapper {
  4677. bottom:25px
  4678. }
  4679. }
  4680. #help-dialog.more-help #navigation-help-wrapper {
  4681. z-index: -1
  4682. }
  4683. #help-dialog.more-help #more-help {
  4684. display: inline-block;
  4685. position: absolute;
  4686. top: 6vw;
  4687. width: 96%;
  4688. height: 80%;
  4689. left: 2%;
  4690. bottom: 25px;
  4691. min-height: 35vw
  4692. }
  4693. #help-dialog .ui-instructions {
  4694. display: inline-block;
  4695. position: absolute;
  4696. width: 16vw;
  4697. margin-left: 20px;
  4698. line-height: 1.29;
  4699. min-height: 161px;
  4700. min-width: 190px;
  4701. font-weight: 400;
  4702. height: 30vh;
  4703. top: 50%;
  4704. font-size: 1.3vw
  4705. }
  4706. #help-dialog .ui-instructions h2 {
  4707. font-size: 1.55vw;
  4708. position: absolute;
  4709. bottom: 100%;
  4710. width: 100%
  4711. }
  4712. #help-dialog.desktop.es-MX .ui-instructions h2,#help-dialog.desktop.fr-FR .ui-instructions h2 {
  4713. font-size: 1.3vw
  4714. }
  4715. #help-dialog .ui-instructions:nth-child(-n+5) {
  4716. top: 0
  4717. }
  4718. #help-dialog .ui-instructions:nth-child(5n+1) {
  4719. left: 0
  4720. }
  4721. #help-dialog .ui-instructions:nth-child(5n+2) {
  4722. left: 20%
  4723. }
  4724. #help-dialog .ui-instructions:nth-child(5n+3) {
  4725. left: 40%
  4726. }
  4727. #help-dialog .ui-instructions:nth-child(5n+4) {
  4728. left: 60%
  4729. }
  4730. #help-dialog .ui-instructions:nth-child(5n+5) {
  4731. left: 80%
  4732. }
  4733. #help-dialog.desktop .ui-instructions .big-image {
  4734. margin-top: 2vw;
  4735. margin-bottom: 1.5vw;
  4736. height: 3.5vw
  4737. }
  4738. @media only screen and (max-width: 1100px) {
  4739. #help-dialog.desktop.more-help #more-help {
  4740. width:1056px;
  4741. min-height: 360px
  4742. }
  4743. #help-dialog.desktop .ui-instructions {
  4744. font-size: 14px;
  4745. margin-left: 0
  4746. }
  4747. #help-dialog.desktop .ui-instructions .bottom-info {
  4748. width: 100%
  4749. }
  4750. #help-dialog.desktop .ui-instructions h2 {
  4751. font-size: 16px
  4752. }
  4753. #help-dialog.desktop.es-MX .ui-instructions h2,#help-dialog.desktop.fr-FR .ui-instructions h2 {
  4754. font-size: 15px
  4755. }
  4756. #help-dialog.desktop .ui-instructions .big-image {
  4757. margin-top: 12px;
  4758. height: 35px;
  4759. margin-bottom: 12px
  4760. }
  4761. }
  4762. @media only screen and (max-height: 500px) {
  4763. #more-help-wrapper.destkop {
  4764. top:73px;
  4765. left: 10px
  4766. }
  4767. }
  4768. #help-dialog.mobile .ui-instructions {
  4769. min-width: 0;
  4770. width: 48%;
  4771. font-size: 11px;
  4772. margin-left: 0;
  4773. top: 67.5%
  4774. }
  4775. #help-dialog.mobile #more-help-wrapper {
  4776. top: 20vw;
  4777. width: 100%;
  4778. left: 0;
  4779. bottom: 25px
  4780. }
  4781. #help-dialog.mobile .ui-instructions h2 {
  4782. font-size: 13px
  4783. }
  4784. #help-dialog.more-help.mobile #more-help {
  4785. position: absolute;
  4786. display: inline-block;
  4787. width: 87%;
  4788. min-height: 700px;
  4789. height: 100vh;
  4790. margin-top: 5%;
  4791. left: 6%
  4792. }
  4793. #help-dialog.mobile .ui-instructions:nth-child(-n+6) {
  4794. top: 45%
  4795. }
  4796. #help-dialog.mobile .ui-instructions:nth-child(-n+4) {
  4797. top: 22.5%
  4798. }
  4799. #help-dialog.mobile .ui-instructions:nth-child(-n+2) {
  4800. top: 0
  4801. }
  4802. #help-dialog.mobile .ui-instructions:nth-child(2n) {
  4803. left: auto;
  4804. right: 0
  4805. }
  4806. #help-dialog.mobile .ui-instructions:nth-child(2n+1) {
  4807. left: 0
  4808. }
  4809. #help-dialog.mobile .ui-instructions .big-image {
  4810. position: static;
  4811. margin: 1em auto .75em;
  4812. width: auto;
  4813. height: 35px
  4814. }
  4815. #help-dialog.mobile .ui-instructions .bottom-info {
  4816. position: relative;
  4817. margin: auto;
  4818. max-width: 135px
  4819. }
  4820. @media only screen and (min-height: 770px) and (max-aspect-ratio:1/1) {
  4821. #help-dialog.more-help.mobile #more-help {
  4822. position:absolute;
  4823. height: auto;
  4824. margin-top: 0;
  4825. top: 45%;
  4826. transform: translate(0,-45%)
  4827. }
  4828. }
  4829. @media only screen and (min-aspect-ratio: 1/1) {
  4830. #help-dialog.mobile #more-help-wrapper {
  4831. top:15vh;
  4832. left: 0
  4833. }
  4834. #help-dialog.mobile .ui-instructions {
  4835. min-width: 0;
  4836. width: 30%;
  4837. height: 30vw
  4838. }
  4839. #help-dialog.more-help.mobile #more-help {
  4840. width: 90%;
  4841. height: 100vh;
  4842. left: 6.5%;
  4843. margin-top: 0
  4844. }
  4845. #help-dialog.mobile .ui-instructions:nth-child(n) {
  4846. left: 0;
  4847. top: 53%
  4848. }
  4849. #help-dialog.mobile .ui-instructions:nth-child(3n-1) {
  4850. left: 30vw
  4851. }
  4852. #help-dialog.mobile .ui-instructions:nth-child(3n) {
  4853. left: 60vw
  4854. }
  4855. #help-dialog.mobile .ui-instructions:nth-child(-n+6) {
  4856. top: 28%
  4857. }
  4858. #help-dialog.mobile .ui-instructions:nth-child(-n+3) {
  4859. top: 3%
  4860. }
  4861. }
  4862. @media only screen and (min-height: 500px) {
  4863. #help-dialog.mobile #more-help-wrapper {
  4864. top:7.5%
  4865. }
  4866. }
  4867. @media only screen and (min-height: 650px) and (min-width:650px) and (max-aspect-ratio:650/800),(min-aspect-ratio:800/650) and (min-height:650px) and (min-width:650px) {
  4868. #help-dialog.mobile .interactions .top-info,#help-dialog.mobile.fr-FR.dollhouse .interactions .top-info {
  4869. font-size:21px;
  4870. max-width: 230px;
  4871. margin: auto;
  4872. line-height: 1.25
  4873. }
  4874. #help-dialog.mobile.de-DE .interactions .top-info,#help-dialog.mobile.ru-RU .interactions .top-info {
  4875. font-size: 19px
  4876. }
  4877. #help-dialog.mobile.es-MX .interactions .top-info,#help-dialog.mobile.fr-FR .interactions .top-info,#help-dialog.mobile.fr-FR.dollhouse .interactions .top-info {
  4878. max-width: 280px
  4879. }
  4880. }
  4881. @media only screen and (min-height: 650px) and (min-width:650px) and (min-aspect-ratio:800/650) {
  4882. #help-dialog.mobile .interactions .big-image {
  4883. transform:scale(1.5) translate(-50%,0)
  4884. }
  4885. #help-dialog.mobile .interactions {
  4886. width: 300px;
  4887. height: 200px
  4888. }
  4889. #help-dialog.mobile .interactions.left {
  4890. right: 600px
  4891. }
  4892. #help-dialog.mobile .interactions.right {
  4893. left: 600px
  4894. }
  4895. #help-dialog.mobile .interactions .big-image,#help-dialog.mobile.floorplan .interactions.left .big-image,#help-dialog.mobile.fr-FR.dollhouse .interactions .big-image,#help-dialog.mobile.panorama .interactions.middle .big-image {
  4896. bottom: 57%;
  4897. bottom: calc(100% - 175px)
  4898. }
  4899. }
  4900. @media only screen and (min-height: 650px) and (min-width:650px) and (max-aspect-ratio:1/1) {
  4901. #help-dialog.mobile .interactions,#help-dialog.mobile .interactions.left,#help-dialog.mobile .interactions.right {
  4902. position:static;
  4903. height: auto;
  4904. margin-bottom: 10%
  4905. }
  4906. #help-dialog.mobile #navigation-help-wrapper {
  4907. top: 2.5%
  4908. }
  4909. #help-dialog.mobile .interactions .big-image {
  4910. transform: scale(1.5)
  4911. }
  4912. #help-dialog.mobile #navigation-help {
  4913. height: auto;
  4914. top: 50%;
  4915. transform: translate(0,-50%)
  4916. }
  4917. #help-dialog.mobile.dollhouse .interactions.left .big-image,#help-dialog.mobile.floorplan .interactions.middle .big-image {
  4918. transform: scale(1.5) translate(10%,0)
  4919. }
  4920. #help-dialog.mobile.es-MX #navigation-help,#help-dialog.mobile.fr-FR #navigation-help {
  4921. min-height: 700px
  4922. }
  4923. #help-dialog.mobile.es-MX .interactions .big-image,#help-dialog.mobile.fr-FR .interactions .big-image {
  4924. margin-top: 4em
  4925. }
  4926. }
  4927. @media only screen and (min-height: 650px) and (min-width:650px) {
  4928. #help-dialog.more-help.mobile #more-help {
  4929. margin-top:0
  4930. }
  4931. #help-dialog.mobile #more-help .ui-instructions {
  4932. font-size: 15.5px;
  4933. margin-top: 37px
  4934. }
  4935. #help-dialog.mobile .ui-instructions h2 {
  4936. font-size: 19.5px
  4937. }
  4938. #help-dialog.mobile .ui-instructions .big-image {
  4939. transform: scale(1.5);
  4940. margin-top: 1.5em;
  4941. margin-bottom: 2em
  4942. }
  4943. }
  4944. @media only screen and (min-height: 650px) and (min-width:650px) and (max-aspect-ratio:1/1) {
  4945. #help-dialog.more-help.mobile #more-help {
  4946. height:100vh;
  4947. margin-top: 2vw
  4948. }
  4949. #help-dialog.mobile .ui-instructions .bottom-info {
  4950. top: auto;
  4951. max-width: 250px
  4952. }
  4953. }
  4954. @media only screen and (min-height: 650px) and (min-width:650px) and (min-aspect-ratio:1/1) {
  4955. #help-dialog.more-help.mobile #more-help {
  4956. min-height:870px;
  4957. top: 2vw
  4958. }
  4959. #help-dialog.mobile .ui-instructions .bottom-info {
  4960. max-width: none
  4961. }
  4962. #help-dialog.mobile #more-help .ui-instructions {
  4963. margin-top: 0
  4964. }
  4965. #help-dialog.mobile #more-help-wrapper {
  4966. top: 10vh;
  4967. height: 100vh
  4968. }
  4969. #help-dialog.more-help.mobile #more-help {
  4970. height: 110vh
  4971. }
  4972. }
  4973. #share-modal {
  4974. position: absolute;
  4975. top: 50%;
  4976. left: 50%;
  4977. transform: translate(-50%,-50%);
  4978. z-index: 100;
  4979. width: 375px;
  4980. height: 325px;
  4981. border-radius: 10px;
  4982. background-color: rgba(0,0,0,.75);
  4983. padding: 16px;
  4984. color: #fff;
  4985. text-align: center;
  4986. opacity: 0;
  4987. pointer-events: none;
  4988. -webkit-transition: all .5s;
  4989. transition: all .5s
  4990. }
  4991. #share-modal.fadeIn {
  4992. opacity: 1;
  4993. pointer-events: all
  4994. }
  4995. #share-modal .title {
  4996. position: absolute;
  4997. font-size: 16px;
  4998. margin-left: 5px
  4999. }
  5000. #share-modal #share-outer {
  5001. position: absolute;
  5002. width: 80%;
  5003. left: 10%;
  5004. top: 20%;
  5005. text-align: center;
  5006. font-size: 14px
  5007. }
  5008. #share-modal #share-outer .share-to {
  5009. margin-bottom: 15px
  5010. }
  5011. #share-modal #share-outer .share-button {
  5012. display: inline-block;
  5013. width: 48px;
  5014. height: 48px;
  5015. border: 1px solid #fff;
  5016. font-size: 28px;
  5017. border-radius: 1px;
  5018. margin: 0 3px
  5019. }
  5020. #share-modal #share-outer .share-button:active,#share-modal:not(.mobile) #share-outer .share-button:hover {
  5021. background-color: #1eb8cc
  5022. }
  5023. #share-modal #share-url span::selection {
  5024. background-color: #1eb8cc
  5025. }
  5026. #share-modal #share-url span::-moz-selection {
  5027. background-color: #1eb8cc
  5028. }
  5029. #share-modal .share-images span {
  5030. line-height: 48px
  5031. }
  5032. #share-modal #share-outer .direct-link {
  5033. width: 100%;
  5034. height: 100%;
  5035. margin-top: 50px;
  5036. margin-bottom: 10px
  5037. }
  5038. #share-modal #share-url {
  5039. font-size: 14px;
  5040. color: #fff;
  5041. padding: 8px;
  5042. background-color: rgba(0,0,0,0);
  5043. width: 20em;
  5044. border: 1px solid #fff;
  5045. cursor: default;
  5046. margin: auto;
  5047. overflow: hidden;
  5048. white-space: nowrap
  5049. }
  5050. #share-modal #share-url span {
  5051. display: block;
  5052. width: calc(20em - 16px);
  5053. overflow: hidden
  5054. }
  5055. #share-modal #share-url span.highlighted {
  5056. background-color: #1eb8cc
  5057. }
  5058. #share-modal.fadeIn #share-url {
  5059. pointer-events: auto;
  5060. touch-callout: default;
  5061. -webkit-touch-callout: default;
  5062. -webkit-user-select: all;
  5063. -khtml-user-select: all;
  5064. -moz-user-select: all;
  5065. -ms-user-select: all;
  5066. user-select: all;
  5067. cursor: text
  5068. }
  5069. #meta-info-wrapper,#model-title.fadeOut,.pinTop.left,.pinTop.left.closed #meta-info-wrapper,.pinTop.left.closed #model-title {
  5070. pointer-events: none
  5071. }
  5072. #share-close,.meta-toggle {
  5073. cursor: pointer
  5074. }
  5075. #share-modal #copy-success {
  5076. margin-top: 10px
  5077. }
  5078. #share-modal a.hasHover:hover,#share-modal a:active {
  5079. color: #fff
  5080. }
  5081. #share-close {
  5082. position: absolute;
  5083. top: 0;
  5084. right: 0;
  5085. padding: 16px;
  5086. font-size: 13px
  5087. }
  5088. #share-modal.closeByFooter #share-close {
  5089. display: none
  5090. }
  5091. @media only screen and (max-width: 487px),(max-height:360px) {
  5092. #share-modal {
  5093. position:fixed;
  5094. top: 0;
  5095. left: 0;
  5096. transform: none;
  5097. height: 100%;
  5098. width: 100%;
  5099. bottom: 0;
  5100. border-radius: 0
  5101. }
  5102. }
  5103. @media only screen and (max-width: 320px) {
  5104. #share-modal #share-url {
  5105. width:15em
  5106. }
  5107. #share-modal #share-url span {
  5108. width: calc(15em - 16px)
  5109. }
  5110. }
  5111. @media only screen and (max-height: 250px) {
  5112. #share-modal #share-outer .direct-link {
  5113. margin-top:10px
  5114. }
  5115. }
  5116. #share-modal.mobile .title {
  5117. position: static;
  5118. font-size: 16px
  5119. }
  5120. #share-close.mobile {
  5121. font-size: 16px
  5122. }
  5123. #share-modal.mobile {
  5124. position: fixed;
  5125. top: 0;
  5126. left: 0;
  5127. transform: none;
  5128. height: 100%;
  5129. width: 100%;
  5130. bottom: 0;
  5131. border-radius: 0
  5132. }
  5133. #model-title,.title-container {
  5134. position: relative;
  5135. height: auto;
  5136. }
  5137. /*.pinTop.left.fadeOut,.pinTop.left.fadeOut #meta-info-wrapper {
  5138. -webkit-transition: all .5s;
  5139. transition: all .5s;
  5140. opacity: 0;
  5141. pointer-events: none
  5142. }*/
  5143. #model-title {
  5144. font-weight: 100;
  5145. z-index: 20;
  5146. opacity: 1;
  5147. -webkit-transition: all .3s;
  5148. transition: all .3s;
  5149. pointer-events: all;
  5150. background: rgba(0,0,0,0.2);
  5151. border-radius: 10px;
  5152. padding: 0 10px;
  5153. color:rgb(235,211,155);
  5154. min-width: 180px;
  5155. border: 15px solid transparent;
  5156. -moz-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Old Firefox */
  5157. -webkit-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Safari and Chrome */
  5158. -o-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Opera */
  5159. border-image: url(http://space3d.4dage.com/SuperLY/images/box_img.png) 15 15 round;
  5160. }
  5161. #model-title:hover{
  5162. background: rgba(0,0,0,0.5);
  5163. }
  5164. #model-title.expand{
  5165. background: rgba(0,0,0,0.5);
  5166. }
  5167. .title-row {
  5168. white-space: nowrap;
  5169. display: flex;
  5170. align-items: center;
  5171. justify-content: space-around;
  5172. }
  5173. #title-container-wrapper {
  5174. overflow: hidden;
  5175. width: 100%;
  5176. }
  5177. .title-container {
  5178. width: 100%;
  5179. white-space: nowrap;
  5180. display: flex;
  5181. margin-left: 1px;
  5182. -webkit-transition: all .4s ease-in-out;
  5183. transition: all .4s ease-in-out;
  5184. justify-content: space-between;
  5185. align-items: center;
  5186. }
  5187. .title-container.no-meta,.title-container.share-only {
  5188. cursor: default
  5189. }
  5190. #less-hint,#more-hint {
  5191. font-weight: 400;
  5192. font-size: 10px;
  5193. }
  5194. .title-container #less-hint,.title-container.expand #more-hint,.title-container.no-meta #less-hint,.title-container.no-meta #more-hint,.title-container.share-only #less-hint,.title-container.share-only #more-hint {
  5195. display: none
  5196. }
  5197. .title-container #more-hint,.title-container.expand #less-hint {
  5198. display: flex;
  5199. align-items: center;
  5200. height: 100%;
  5201. padding-left: 12px;
  5202. }
  5203. /*.meta-toggle.hasHover:hover,.meta-toggle:active {
  5204. background-color: rgba(0,0,0,.75);
  5205. color: #fff
  5206. }*/
  5207. #title-toggle {
  5208. float: left;
  5209. text-align: center;
  5210. height: 52px;
  5211. font-size: 18px;
  5212. pointer-events: all;
  5213. line-height: 52px;
  5214. padding-top: 2px;
  5215. display: none;
  5216. }
  5217. #title-logo{
  5218. margin-right: 6px;
  5219. }
  5220. #title-logo i {
  5221. display: block;
  5222. width: 18px;
  5223. height: 18px;
  5224. background: url("http://space3d.4dage.com/SuperLY/images/4dage-logo.png")left top no-repeat;
  5225. background-size: 100%;
  5226. }
  5227. #title-toggle.hasHover:hover,#title-toggle:active {
  5228. background-color: rgba(0,0,0,.75);
  5229. color: #fff
  5230. }
  5231. .co-brand {
  5232. color: rgba(255,255,255,.7);
  5233. font-size: 12px;
  5234. line-height: 14px;
  5235. overflow: hidden;
  5236. position: absolute;
  5237. top: 10px;
  5238. width: -webkit-calc(100% - 65px);
  5239. width: calc(100% - 65px)
  5240. }
  5241. #gui-name {
  5242. font-size: 18px;
  5243. overflow: hidden;
  5244. height: 100%;
  5245. line-height: 18px;
  5246. display: flex;
  5247. align-items: center;
  5248. }
  5249. #gui-name.noCoBrand {
  5250. /* width: 300px; */
  5251. float: left;
  5252. height: 100%;
  5253. }
  5254. .pinTop.left .title-container {
  5255. right: 0;
  5256. margin-right: 0
  5257. }
  5258. .pinTop.left.closed .title-container {
  5259. -webkit-transition: right .4s ease-in-out;
  5260. transition: right .4s ease-in-out;
  5261. right: 100%;
  5262. margin-right: 100%
  5263. }
  5264. .pinTop.left.closed .title-container.meta-toggle.expand,.pinTop.left.closed .title-container.share-link {
  5265. -webkit-transition-delay: .4s;
  5266. transition-delay: .4s
  5267. }
  5268. .pinTop.left .title-container.no-meta {
  5269. -webkit-transition-delay: 0s;
  5270. transition-delay: 0s
  5271. }
  5272. .pinTop.left.closed.open .title-container,.pinTop.left.closed.open .title-container.meta-toggle.expand {
  5273. -webkit-transition-delay: 0s;
  5274. transition-delay: 0s;
  5275. right: 0
  5276. }
  5277. #meta-info {
  5278. position: relative;
  5279. bottom: 110%;
  5280. width: 100%;
  5281. padding: 1px;
  5282. white-space: normal;
  5283. font-weight: 400;
  5284. border-radius: 10px;
  5285. -webkit-transtion: all .4s ease-in-out;
  5286. transition: all .4s ease-in-out;
  5287. border: 12px solid transparent;
  5288. -moz-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Old Firefox */
  5289. -webkit-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Safari and Chrome */
  5290. -o-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Opera */
  5291. border-image: url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round;
  5292. }
  5293. #meta-info.share-link {
  5294. bottom: calc(100% - 35px)
  5295. }
  5296. #meta-info .jiantou{
  5297. height: 50px;
  5298. background: rgba(0, 0, 0, 0.5);
  5299. line-height: 50px;
  5300. padding: 20px;
  5301. display: flex;
  5302. justify-content: space-evenly;
  5303. align-items: center;
  5304. }
  5305. #meta-info .jiantou img{
  5306. width: 42px;
  5307. cursor: pointer;
  5308. }
  5309. #meta-info,#meta-info * {
  5310. -webkit-touch-callout: all;
  5311. -webkit-user-select: text;
  5312. -khtml-user-select: text;
  5313. -moz-user-select: text;
  5314. -ms-user-select: text;
  5315. user-select: text;
  5316. }
  5317. #meta-info a {
  5318. position: relative;
  5319. z-index: 10;
  5320. pointer-events: auto
  5321. }
  5322. #meta-info #meta-description {
  5323. font-size: 16px;
  5324. line-height: 22px;
  5325. word-wrap: break-word;
  5326. text-align: justify;
  5327. background: rgba(0,0,0,0.5);
  5328. padding: 20px;
  5329. max-height: 400px;
  5330. overflow-x: hidden;
  5331. }
  5332. #meta-info i {
  5333. font-size: 13px
  5334. }
  5335. #meta-info-wrapper {
  5336. width: 530px;
  5337. overflow: hidden;
  5338. position: relative;
  5339. top: 14px;
  5340. }
  5341. #meta-info-wrapper.expand {
  5342. pointer-events: auto
  5343. }
  5344. #call-to-action #pause-overlay {
  5345. height: 100%;
  5346. width: 100%;
  5347. position: absolute
  5348. }
  5349. .contact-info {
  5350. margin-bottom: 12px
  5351. }
  5352. .contact-info div {
  5353. max-width: 320px;
  5354. max-width: calc(100% - 19px);
  5355. white-space: nowrap;
  5356. overflow: hidden;
  5357. display: inline-block;
  5358. margin-top: -3px
  5359. }
  5360. .address {
  5361. width: 100%;
  5362. white-space: nowrap;
  5363. overflow: hidden
  5364. }
  5365. #share-origin hr {
  5366. margin-bottom: 10px;
  5367. border-color: #ccc
  5368. }
  5369. #share-origin>div {
  5370. white-space: nowrap;
  5371. overflow: hidden
  5372. }
  5373. #share-link-wrapper,#share-origin i,#share-origin span {
  5374. display: inline-block;
  5375. float: left
  5376. }
  5377. #share-link-wrapper {
  5378. width: 93%;
  5379. width: calc(100% - 20px);
  5380. line-height: 1em;
  5381. margin-left: .35em;
  5382. display: inline-block;
  5383. overflow: hidden;
  5384. top: 2px
  5385. }
  5386. #call-to-action #interaction-modal.desktop.small .interaction hr,#interaction-modal.desktop .mobile-title,#interaction-modal.desktop.dollhouse .interaction.middle .keyboard,#interaction-modal.desktop.dollhouse .interaction.middle hr,#interaction-modal.desktop.floorplan.landing .interaction.left .keyboard,#interaction-modal.desktop.floorplan.landing .interaction.left hr,#interaction-modal.mobile .desktop-title,#interaction-modal.mobile .interaction hr {
  5387. display: none
  5388. }
  5389. #meta-info.expand {
  5390. bottom: 0
  5391. }
  5392. .pinTop.left.closed #meta-info {
  5393. bottom: 105%
  5394. }
  5395. .pinTop.left.closed.open #meta-info.share-link {
  5396. -webkit-transition-delay: .4s;
  5397. transition-delay: .4s;
  5398. bottom: 100%;
  5399. transform: translate(0,-35px)
  5400. }
  5401. .pinTop.left.closed.open #meta-info.expand {
  5402. -webkit-transition-delay: .4s;
  5403. transition-delay: .4s;
  5404. bottom: 0
  5405. }
  5406. @media only screen and (max-width: 487px) {
  5407. #meta-info,.title-container {
  5408. width:100%
  5409. }
  5410. }
  5411. #call-to-action {
  5412. top: 0;
  5413. text-align: center;
  5414. z-index: 0
  5415. }
  5416. #call-to-action #pause-overlay.playing {
  5417. pointer-events: auto;
  5418. cursor: pointer
  5419. }
  5420. #call-to-action #pause-icon {
  5421. font-size: 45px;
  5422. position: absolute;
  5423. left: 50%;
  5424. top: 50%;
  5425. transform: translate(-50%,-50%) scaleX(1.5);
  5426. text-shadow: 0 0 5px rgba(0,0,0,.9);
  5427. opacity: 0;
  5428. -webkit-transition: all .5s;
  5429. transition: all .5s
  5430. }
  5431. #call-to-action #interaction-modal.fadeIn,#call-to-action #pause-icon.fadeIn {
  5432. opacity: 1;
  5433. pointer-events: auto;
  5434. }
  5435. #call-to-action #interaction-modal {
  5436. position: fixed;
  5437. left: 50%;
  5438. top: 50%;
  5439. transform: translate(-50%,-50%);
  5440. opacity: 0;
  5441. -webkit-transition: all .5s;
  5442. transition: all .5s;
  5443. z-index: 201;
  5444. pointer-events: none;
  5445. }
  5446. #interaction-modal .interaction {
  5447. position: absolute;
  5448. width: 20%;
  5449. margin: 0 auto;
  5450. left: 0;
  5451. right: 0
  5452. }
  5453. #interaction-modal .interaction.left {
  5454. right: 73%
  5455. }
  5456. #interaction-modal.desktop.fr-FR .interaction.left {
  5457. right: 65%
  5458. }
  5459. #interaction-modal .interaction.right {
  5460. left: 73%
  5461. }
  5462. #interaction-modal.desktop.fr-FR .interaction.right {
  5463. left: 65%
  5464. }
  5465. #interaction-modal.ru-RU .interaction {
  5466. width: auto
  5467. }
  5468. #call-to-action #interaction-modal.desktop {
  5469. height: 350px;
  5470. width: 550px;
  5471. border-radius: 10px;
  5472. }
  5473. #interaction-modal.desktop .interaction h2 {
  5474. text-shadow: 0 0 4px rgba(0,0,0,.5);
  5475. font-size: 23px
  5476. }
  5477. #interaction-modal.desktop.floorplan .interaction h2,#interaction-modal.desktop.landing.dollhouse .interaction h2,#interaction-modal.desktop.outdoor .interaction h2 {
  5478. margin-bottom: 10px;
  5479. margin-top: -5px
  5480. }
  5481. #interaction-modal.desktop.de-DE .interaction h2,#interaction-modal.desktop.fr-FR .interaction h2 {
  5482. width: 130%;
  5483. position: relative;
  5484. right: 15%
  5485. }
  5486. #interaction-modal.desktop .tour-title {
  5487. font-size: 28px;
  5488. padding: 18px;
  5489. font-weight: lighter
  5490. }
  5491. #interaction-modal.desktop hr,#interaction-modal.desktop img {
  5492. width:100%;
  5493. height:100%;
  5494. }
  5495. .nav-help-page{position: absolute;top: 50%; z-index: 10; cursor: pointer; width: 20px;height: 20px;border-top: 3px solid #ffffff;border-right: 3px solid #ffffff; }
  5496. .next-button{ right: 15px; transform: translate(0,-50%) rotate(45deg);}
  5497. .prev-button{ left: 15px; transform: translate(0,-50%) rotate(-135deg);}
  5498. #interaction-modal.desktop .big-image {
  5499. bottom: -122px
  5500. }
  5501. #interaction-modal.desktop .keyboard {
  5502. bottom: -200px
  5503. }
  5504. #interaction-modal.desktop img[src="images/nav_help_mouse_drag_left.png"],#interaction-modal.desktop img[src="images/nav_help_mouse_drag_right.png"] {
  5505. width: 52px
  5506. }
  5507. #interaction-modal.desktop img[src='images/nav_help_click_inside.png'],#interaction-modal.desktop img[src='images/Desktop-help-play-button.svg'],#interaction-modal.desktop img[src='images/nav_help_keyboard_left_right.png'],#interaction-modal.desktop img[src='images/nav_help_mouse_zoom.png'],#interaction-modal.desktop img[src='images/nav_help_zoom_keys.png'] {
  5508. width: 50px
  5509. }
  5510. #interaction-modal.desktop img[src='images/nav_help_mouse_position_left.png'],#interaction-modal.desktop img[src='images/nav_help_mouse_position_right.png'] {
  5511. width: 63px
  5512. }
  5513. #interaction-modal.desktop img[src='images/nav_help_mouse_click.png'] {
  5514. width: 60px
  5515. }
  5516. #interaction-modal.desktop img[src='images/nav_help_keyboard_up_down.png'],#interaction-modal.desktop img[src='images/nav_help_inside_key.png'] {
  5517. width: 25px
  5518. }
  5519. #interaction-modal.desktop img[src='images/nav_help_keyboard_up_down.png'] {
  5520. bottom: -215px
  5521. }
  5522. #interaction-modal.desktop img[src='images/Desktop-help-spacebar-2.svg'] {
  5523. width: 70px
  5524. }
  5525. #interaction-modal.desktop .interaction hr {
  5526. width: 45px;
  5527. border: none;
  5528. height: 2px;
  5529. background-color: #fff;
  5530. position: absolute;
  5531. bottom: -166px
  5532. }
  5533. #interaction-modal.desktop.landing.es-MX .interaction {
  5534. width: 25%
  5535. }
  5536. #interaction-modal.desktop.landing.es-MX .interaction h2 {
  5537. font-size: 18px
  5538. }
  5539. #interaction-modal.desktop.landing.de-DE .interaction.middle,#interaction-modal.desktop.landing.es-MX .interaction.middle {
  5540. right: 2.5%
  5541. }
  5542. #interaction-modal.desktop.landing.de-DE .interaction.right,#interaction-modal.desktop.landing.es-MX .interaction.right {
  5543. left: 67%
  5544. }
  5545. #interaction-modal.desktop.fr-FR .interaction h2 {
  5546. font-size: 18px
  5547. }
  5548. #call-to-action #interaction-modal.desktop.small .tour-title {
  5549. font-size: 22px;
  5550. padding: 10px 15px
  5551. }
  5552. #interaction-modal.desktop.ru-RU .interaction h2 {
  5553. font-size: 18px
  5554. }
  5555. #interaction-modal.desktop.outdoor.tour.ru-RU .interaction.right,#interaction-modal.desktop.panorama.tour.ru-RU .interaction.right {
  5556. left: 63%
  5557. }
  5558. #interaction-modal.desktop.outdoor.tour.ru-RU .interaction.middle,#interaction-modal.desktop.panorama.tour.ru-RU .interaction.middle {
  5559. right: 5%
  5560. }
  5561. #interaction-modal.desktop.floorplan.landing.ru-RU .interaction.right,#interaction-modal.desktop.floorplan.tour.ru-RU .interaction.right {
  5562. left: 68%
  5563. }
  5564. #interaction-modal.desktop.floorplan.landing.ru-RU .interaction.middle,#interaction-modal.desktop.floorplan.tour.ru-RU .interaction.middle {
  5565. right: 2.5%
  5566. }
  5567. #call-to-action #interaction-modal.desktop.es-MX.small,#call-to-action #interaction-modal.desktop.fr-FR.small,#call-to-action #interaction-modal.desktop.small {
  5568. height: auto;
  5569. width: auto;
  5570. border-radius: 6px
  5571. }
  5572. @media only screen and (min-height: 650px) {
  5573. #call-to-action #pause-icon {
  5574. font-size:60px
  5575. }
  5576. }
  5577. @media only screen and (max-height: 487px),(max-width:620px) {
  5578. #call-to-action #interaction-modal:not(.small).desktop #interaction-modal-inner {
  5579. position: absolute;
  5580. height: auto;
  5581. width: 90%;
  5582. left: 50%;
  5583. top: 50%;
  5584. transform: translate(-50%,-50%)
  5585. }
  5586. }
  5587. #call-to-action #interaction-modal.mobile {
  5588. height: auto;
  5589. width: 95%;
  5590. border-radius: 5px
  5591. }
  5592. #interaction-modal.mobile.interaction {
  5593. top: 15%
  5594. }
  5595. #interaction-modal.mobile .interaction h2 {
  5596. font-size: 15px;
  5597. white-space: nowrap
  5598. }
  5599. #interaction-modal.mobile.dollhouse .interaction h2,#interaction-modal.mobile.floorplan.landing .interaction h2,#interaction-modal.mobile.outdoor .interaction h2 {
  5600. margin-bottom: 5px
  5601. }
  5602. #interaction-modal.mobile .tour-title {
  5603. font-weight: lighter;
  5604. padding: 13px;
  5605. font-size: 17px
  5606. }
  5607. #interaction-modal.mobile img {
  5608. width: 100%;
  5609. }
  5610. #call-to-action #interaction-modal.mobile.fr-FR .interaction {
  5611. width: 26%
  5612. }
  5613. #call-to-action #interaction-modal.mobile.fr-FR h2 {
  5614. font-size: 12px
  5615. }
  5616. #call-to-action #interaction-modal.mobile.fr-FR .interaction.left {
  5617. right: 61%
  5618. }
  5619. #call-to-action #interaction-modal.mobile.fr-FR .interaction.middle {
  5620. left: 2%
  5621. }
  5622. #call-to-action #interaction-modal.mobile.fr-FR .interaction.right {
  5623. left: 65%
  5624. }
  5625. #call-to-action #interaction-modal.mobile.de-DE h2 {
  5626. font-size: 13px
  5627. }
  5628. #call-to-action #interaction-modal.mobile.de-DE .tour-title {
  5629. font-size: 15px
  5630. }
  5631. #call-to-action #interaction-modal.mobile.de-DE .interaction.left {
  5632. right: 64%
  5633. }
  5634. #call-to-action #interaction-modal.mobile.de-DE .interaction.middle {
  5635. right: 3%
  5636. }
  5637. #call-to-action #interaction-modal.mobile.de-DE .interaction.right {
  5638. left: 58%
  5639. }
  5640. #call-to-action #interaction-modal.mobile.es-MX .tour-title {
  5641. font-size: 16px
  5642. }
  5643. #call-to-action #interaction-modal.mobile.outdoor.landing.es-MX .interaction.middle,#call-to-action #interaction-modal.mobile.panorama.landing.es-MX .interaction.middle {
  5644. right: 10%
  5645. }
  5646. #call-to-action #interaction-modal.mobile.outdoor.landing.es-MX .interaction.right,#call-to-action #interaction-modal.mobile.panorama.landing.es-MX .interaction.right {
  5647. width: 40%;
  5648. left: 60%
  5649. }
  5650. #call-to-action #interaction-modal.mobile.landing.es-MX h2 {
  5651. font-size: 13px
  5652. }
  5653. #call-to-action #interaction-modal.mobile.ru-RU .interaction h2 {
  5654. font-size: 12px
  5655. }
  5656. #call-to-action #interaction-modal.mobile.dollhouse.landing.ru-RU .interaction.right,#call-to-action #interaction-modal.mobile.floorplan.landing.ru-RU .interaction.right,#call-to-action #interaction-modal.mobile.tour.ru-RU .interaction.right {
  5657. left: 61%
  5658. }
  5659. #call-to-action #interaction-modal.mobile.dollhouse.landing.ru-RU .interaction.middle,#call-to-action #interaction-modal.mobile.floorplan.landing.ru-RU .interaction.middle,#call-to-action #interaction-modal.mobile.tour.ru-RU .interaction.middle {
  5660. right: 8%
  5661. }
  5662. #call-to-action #interaction-modal.mobile.tour.jp-JP .interaction.right {
  5663. left: 64%
  5664. }
  5665. #call-to-action #interaction-modal.mobile.tour.jp-JP .interaction.middle {
  5666. right: 3%
  5667. }
  5668. #call-to-action #interaction-modal.mobile.small {
  5669. width: auto;
  5670. height: auto
  5671. }
  5672. #call-to-action #interaction-modal.mobile.small .tour-title {
  5673. font-size: 22px;
  5674. padding: 10px
  5675. }
  5676. .returnToFloors{
  5677. text-align: center;
  5678. border: 2px solid #FFF;
  5679. width: 86px;
  5680. height: 22px;
  5681. color: #FFF;
  5682. font-size: 12px;
  5683. float: left;
  5684. padding: 4px;
  5685. position: fixed;
  5686. top: 10px;
  5687. right: 16px;
  5688. cursor: pointer;
  5689. text-shadow: rgb(0, 0, 0) 0px 0px 5px;
  5690. box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 5px, rgba(0, 0, 0, 0.7) 0px 0px 5px inset;
  5691. }
  5692. #myCompany.JLogo{ height: 30px;}
  5693. /*洛阳文物列表*/
  5694. .warpper-LY{position: fixed;top: 20px;right: 50px;}
  5695. .warpper-LY a{
  5696. display: inline-block;
  5697. line-height: 1;
  5698. white-space: nowrap;
  5699. cursor: pointer;
  5700. -webkit-appearance: none;
  5701. text-align: center;
  5702. -webkit-box-sizing: border-box;
  5703. box-sizing: border-box;
  5704. outline: none;
  5705. margin: 0;
  5706. -webkit-transition: .1s;
  5707. transition: .1s;
  5708. font-weight: 500;
  5709. -moz-user-select: none;
  5710. -webkit-user-select: none;
  5711. -ms-user-select: none;
  5712. padding: 17px 25px;
  5713. font-size: 18px;
  5714. color: rgb(235,211,155);
  5715. background: url(http://space3d.4dage.com/SuperLY/images/img_LYbtn_bg@2x.png)top left no-repeat;
  5716. background-size: 100% auto;
  5717. }
  5718. .region-msg{
  5719. display: none;
  5720. position: absolute;
  5721. right: 11%;
  5722. bottom: 10px;
  5723. width: 150px;
  5724. height: 102px;
  5725. overflow: hidden;
  5726. }
  5727. .region-name{
  5728. height: 100%;
  5729. position: absolute;
  5730. z-index: 2;
  5731. left: 0;
  5732. top: 0;
  5733. animation: superLY-Flag 1.6s steps(6) infinite;
  5734. }
  5735. span.nav-icon-name{
  5736. font-size: 13px;
  5737. margin-top: 4px;
  5738. }
  5739. /* 旗子的逐幀动画 */
  5740. @-webkit-keyframes superLY-Flag{
  5741. 0%{
  5742. -webkit-transform: translateX(0);
  5743. }
  5744. 100%{
  5745. -webkit-transform: translateX(-900px);
  5746. }
  5747. }
  5748. @keyframes superLY-Flag{
  5749. 0%{
  5750. -webkit-transform: translateX(0);
  5751. transform: translateX(0);
  5752. }
  5753. 100%{
  5754. -webkit-transform: translateX(-900px);
  5755. transform: translateX(-900px);
  5756. }
  5757. }
  5758. ::-webkit-scrollbar-track/*滑动轨道*/
  5759. {
  5760. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  5761. border-radius: 0px;
  5762. background: rgba(0,0,0,0.1);
  5763. }
  5764. ::-webkit-scrollbar { /*滑块大小*/
  5765. width:8px;
  5766. height:13px;
  5767. }
  5768. ::-webkit-scrollbar-thumb/*滑块*/
  5769. {
  5770. border-radius: 5px;
  5771. -webkit-box-shadow: inset 0 0 5px rgba(192,192,192,0.2);
  5772. background: rgba(192,192,192,0.2);
  5773. }
  5774. ::-webkit-scrollbar-thumb:hover/*滑块效果*/
  5775. {
  5776. border-radius: 5px;
  5777. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  5778. background: rgba(0,0,0,0.4);
  5779. }
  5780. #closepop {
  5781. background: url(http://space3d.4dage.com/SuperLY/images/close.png) no-repeat;
  5782. width: 40px;
  5783. height: 40px;
  5784. cursor: pointer;
  5785. position: absolute;
  5786. right: 30px;
  5787. top: 30px;
  5788. text-indent: -999em;
  5789. background-size: 100% 100%;
  5790. }
  5791. @media only screen and (max-width : 1000px) {
  5792. .progressbar{ width: 60%; }
  5793. .warpper-LY{ position: fixed; top: 60px; right: 5px;}
  5794. }
  5795. @media only screen and (max-width : 700px) {
  5796. .progressbar{ width: 65%; }
  5797. .returnToFloors{ top: 60px; }
  5798. #myCompany.JLogo{ height: 20px;}
  5799. }
  5800. @media only screen and (max-width: 680px) {
  5801. .pinTop.left {
  5802. left: 50%;
  5803. transform: translateX(-50%);
  5804. align-items: center;
  5805. }
  5806. .title-row{
  5807. justify-content:center;
  5808. }
  5809. }
  5810. @media only screen and (max-width: 600px) {
  5811. /* #gui-modes-map >div[rel]:hover,#play:hover{ background:transparent; } */
  5812. .pinBottom.right .ui-icon{ margin-right: 5px; }
  5813. .pinBottom.right,.pinBottom.left{bottom: 5px;}
  5814. .pinBottom.left {left:5px;}
  5815. .viewContainer,#gui-modes-map{ display: flex; flex-direction: column; }
  5816. #gui-modes-map >div[rel]{margin-bottom: 15px;}
  5817. /* #gui-modes-map >div[rel]{width:64px;} */
  5818. .progressbar{ width: 70%; }
  5819. .gui-floor-number,.tourSpinner{ left: -0.4px;}
  5820. .gui-floor{ float: none; margin-bottom: 5px; }
  5821. .gui-floor .container{right: 0; left: auto;}
  5822. #call-to-action #interaction-modal.desktop{ width: 100%; height: auto; }
  5823. }
  5824. @media only screen and (max-width: 370px) {
  5825. #gui-name{ font-size: 16px;}
  5826. #meta-info-wrapper{ width: 100vw;}
  5827. #meta-info{ font-size: 12px;}
  5828. }
  5829. @media only screen and (max-width: 330px) {
  5830. #gui-name{ font-size: 14px;}
  5831. }