sceen2.css 144 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022
  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. /* display: flex;
  3283. justify-content: center; */
  3284. }
  3285. .frame.noScroll {
  3286. margin: 17px 10px
  3287. }
  3288. .frame .slidee {
  3289. margin: 0;
  3290. padding: 0;
  3291. height: 100%;
  3292. list-style: none
  3293. }
  3294. .frame .slidee li {
  3295. float: left;
  3296. width: 136px;
  3297. margin: 0 12px 0 0;
  3298. position: relative
  3299. }
  3300. .frame .slidee li .overlay {
  3301. position: absolute;
  3302. bottom: 2px;
  3303. left: 2px;
  3304. width: 130px;
  3305. height: 20px;
  3306. padding: 6px;
  3307. color: #fff;
  3308. background-color: rgba(0,0,0,.7);
  3309. overflow: hidden;
  3310. white-space: nowrap;
  3311. font-weight: 100;
  3312. text-align: center;
  3313. line-height: 4px;
  3314. z-index: 100;
  3315. -moz-transform: translate3d(0,0,0);
  3316. -ms-transform: translate3d(0,0,0);
  3317. -o-transform: translate3d(0,0,0);
  3318. transform: translate3d(0,0,0)
  3319. }
  3320. .frame .slidee li .mark360View,.frame .slidee li .markInsideView {
  3321. position: absolute;
  3322. top: 2px;
  3323. left: 2px;
  3324. width: 50px;
  3325. max-height: 25px;
  3326. color: #fff;
  3327. background-color: rgba(0,0,0,1);
  3328. z-index: 100;
  3329. -webkit-transform: translate3d(0,0,0);
  3330. -moz-transform: translate3d(0,0,0);
  3331. -ms-transform: translate3d(0,0,0);
  3332. -o-transform: translate3d(0,0,0);
  3333. transform: translate3d(0,0,0)
  3334. }
  3335. .frame .slidee li img {
  3336. border: 2px solid transparent;
  3337. transition: all .5s
  3338. }
  3339. .frame .slidee li.thumbImg.hasHover>img:hover {
  3340. opacity: 1;
  3341. border-color: #fff
  3342. }
  3343. .playing .frame .slidee li.thumbImg.hasHover>img:hover {
  3344. opacity: .6;
  3345. border-color: transparent
  3346. }
  3347. .frame .slidee li.thumbImg.hasHover.recent>img:hover,.frame .slidee li.thumbImg.recent>img {
  3348. opacity: .6;
  3349. border-color: #A0A0A0
  3350. }
  3351. .frame .slidee li.thumbImg.hasHover.upcoming>img:hover,.frame .slidee li.thumbImg.upcoming>img {
  3352. opacity: 1;
  3353. border-color: #BFAF1E
  3354. }
  3355. .frame .slidee li.thumbImg.active>img,.frame .slidee li.thumbImg.hasHover.active>img:hover {
  3356. opacity: 1;
  3357. border-color:#00b4ed
  3358. }
  3359. .scrollbar {
  3360. width: calc(100% - 10px);
  3361. margin: 0 5px;
  3362. height: 8px;
  3363. float: left;
  3364. border-radius: 5px;
  3365. background: rgba(0,0,0,.75)
  3366. }
  3367. .scrollbar .handle {
  3368. width: 100px;
  3369. height: 100%;
  3370. background: rgba(255,255,255,.75);
  3371. border-radius: 5px
  3372. }
  3373. #progressBar,#status {
  3374. display: table-cell;
  3375. height: 0;
  3376. vertical-align: middle
  3377. }
  3378. #loader-cont,#loader-cont:after {
  3379. display: block;
  3380. border-radius: 100%
  3381. }
  3382. #playHead {
  3383. display: table;
  3384. height: 20px;
  3385. width: 100%;
  3386. position: absolute;
  3387. bottom: -20px;
  3388. left: 0;
  3389. transition-property: bottom;
  3390. transition-duration: .5s;
  3391. background-color: #000;
  3392. z-index: 50
  3393. }
  3394. #playHead.playing {
  3395. bottom: 0
  3396. }
  3397. #status {
  3398. width: 65px;
  3399. color: #fff;
  3400. font-family: OpenSans,'Helvetica Neue',Arial,sans-serif;
  3401. font-weight: 700;
  3402. font-size: 11px;
  3403. padding-left: 10px
  3404. }
  3405. #progressBar {
  3406. padding: 0 10px;
  3407. pointer-events: all
  3408. }
  3409. #progressBar .step {
  3410. height: 6px;
  3411. float: left
  3412. }
  3413. #progressBar .step:last-of-type {
  3414. padding: 0
  3415. }
  3416. #progressBar .step::before {
  3417. content: '';
  3418. background-color: #575757;
  3419. width: 100%;
  3420. height: 100%;
  3421. display: block
  3422. }
  3423. #progressBar .step.active::before,#progressBar .step.recent::before {
  3424. background-color:#00b4ed
  3425. }
  3426. #progressBar .step.upcoming::before {
  3427. background-color: #BFAF1E
  3428. }
  3429. .terms2 {
  3430. display: none;
  3431. padding-top: 7px
  3432. }
  3433. .specialPower {
  3434. width: 100%;
  3435. font-size: 16px;
  3436. bottom: 11px;
  3437. left: 0;
  3438. display: none
  3439. }
  3440. .specialEdition .specialPower {
  3441. display: block
  3442. }
  3443. .specialEdition .specialPower .img {
  3444. display: inline-block;
  3445. width: 120px;
  3446. height: 20px;
  3447. background: url(http://space3d.4dage.com/SuperLY/images/specialEdLogo1.png) no-repeat;
  3448. background-size: contain
  3449. }
  3450. .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 {
  3451. display: none
  3452. }
  3453. .specialEdition .terms2 {
  3454. display: block
  3455. }
  3456. .specialEdition .pinBottom.right,.specialEdition .pinTop.right {
  3457. right: 20px
  3458. }
  3459. .specialEdition .pinBottom.open.playing {
  3460. bottom: 130px
  3461. }
  3462. .specialEdition #drawer.playing,.specialEdition .pinBottom.playing {
  3463. bottom: 0
  3464. }
  3465. .specialEdition #playHead.playing {
  3466. bottom: -20px
  3467. }
  3468. .powered-by {
  3469. width: 105px;
  3470. height: 23px;
  3471. font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif;
  3472. font-size: 12px;
  3473. letter-spacing: -.1px;
  3474. color: #fff
  3475. }
  3476. @media only screen and (max-height: 370px) {
  3477. #loader-cont {
  3478. width:50px;
  3479. height: 50px;
  3480. font-size: 24px;
  3481. padding: 6px 0
  3482. }
  3483. #loader-cont:after {
  3484. width: 42px;
  3485. height: 42px;
  3486. top: 4px;
  3487. left: 4px;
  3488. line-height: 42px;
  3489. font-size: 10px
  3490. }
  3491. #gui-loading {
  3492. z-index: 5000
  3493. }
  3494. #gui-loading img {
  3495. width: 88px;
  3496. height: auto
  3497. }
  3498. }
  3499. @media only screen and (max-width: 320px) {
  3500. .pinBottom.left .ui-icon.wide,.ui-icon {
  3501. font-size: 22px;
  3502. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3503. }
  3504. }
  3505. @media only screen and (max-width: 487px) and (min-width: 321px) {
  3506. .pinBottom.left .ui-icon.wide,.ui-icon {
  3507. font-size:22px;
  3508. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3509. }
  3510. .pinBottom.right {
  3511. right: 0;
  3512. padding-right: 0
  3513. }
  3514. }
  3515. @media only screen and (max-width: 487px) {
  3516. .mobile-only {
  3517. display: block
  3518. }
  3519. #gui-fullscreen {
  3520. padding-left: 20px
  3521. }
  3522. .pinTop.right {
  3523. top: 60px;
  3524. font-size: 27px
  3525. }
  3526. .pinTop.right.reposition {
  3527. top: 10px;
  3528. z-index: 20
  3529. }
  3530. #model-title.closed {
  3531. width: 20px
  3532. }
  3533. .tourSpinner {
  3534. top: -10px;
  3535. left: -10px
  3536. }
  3537. #gui.jp-JP .gui-floor-number {
  3538. padding-right: 3px
  3539. }
  3540. }
  3541. @media only screen and (max-width: 487px),(max-height:487px) {
  3542. #thumb-container .thumbImg img,.frame {
  3543. height:77px
  3544. }
  3545. .frame .slidee li,.frame .slidee li .overlay {
  3546. width: 103px
  3547. }
  3548. #drawer-container.drawerOpen #drawer.open.noScroll {
  3549. height: 94px
  3550. }
  3551. #drawer.open.noScroll,#drawer.open.noScroll.playing {
  3552. height: 88px
  3553. }
  3554. .pinBottom-container.drawerOpen.duringTour {
  3555. bottom: 6px
  3556. }
  3557. #gui .pinBottom.open.noScroll {
  3558. bottom: 93px
  3559. }
  3560. .pinBottom.open.noScroll.playing {
  3561. bottom: 108px
  3562. }
  3563. }
  3564. @media only screen and (max-width: 350px) {
  3565. .pinBottom-container.embed .pinBottom.left {
  3566. left:10px
  3567. }
  3568. .pinBottom-container.embed #pullTab {
  3569. margin-right: 16px
  3570. }
  3571. .pinBottom-container.embed .ui-icon {
  3572. padding-right: 16px
  3573. }
  3574. .pinBottom-container.embed .pinBottom.right .ui-icon,.pinBottom-container.embed .pinBottom.right .ui-icon.wide {
  3575. padding: 0 8px
  3576. }
  3577. .pinBottom-container.embed .gui-floor {
  3578. margin-right: 8px
  3579. }
  3580. .pinBottom-container.embed #gui-fullscreen {
  3581. padding-left: 8px
  3582. }
  3583. }
  3584. .pinTop.right.mobile-only {
  3585. top: 60px;
  3586. font-size: 27px;
  3587. right: 0
  3588. }
  3589. .pinTop.right.mobile-only.reposition {
  3590. top: 10px;
  3591. z-index: 20
  3592. }
  3593. .pinTop.right.mobile-only #more-menu-button.icon {
  3594. padding-right: 0
  3595. }
  3596. .menu-toggles {
  3597. font-size: 14px;
  3598. padding-top: 10px
  3599. }
  3600. .menu-radios {
  3601. font-size: 12px;
  3602. padding-top: 5px
  3603. }
  3604. .menu-radios::after {
  3605. content: '';
  3606. display: block;
  3607. height: 0;
  3608. clear: both
  3609. }
  3610. .menu-radios>div {
  3611. background-color: rgba(255,255,255,.15);
  3612. width: calc(50% - 1px);
  3613. height: 25px;
  3614. line-height: 25px;
  3615. float: left
  3616. }
  3617. .menu-radios * {
  3618. cursor: pointer
  3619. }
  3620. .menu-radios>div:hover {
  3621. background-color: rgba(255,255,255,.25)
  3622. }
  3623. .menu-radios input {
  3624. display: none
  3625. }
  3626. .menu-radios input~label {
  3627. position: relative;
  3628. display: block;
  3629. width: 100%;
  3630. padding-left: 10px;
  3631. padding-right: 10px;
  3632. user-select: none
  3633. }
  3634. .menu-radios input~label::after {
  3635. content: '';
  3636. position: absolute;
  3637. top: 6px;
  3638. right: 10px;
  3639. width: 13px;
  3640. height: 13px;
  3641. border-radius: 8px;
  3642. border: 1px solid #fff;
  3643. line-height: 20px
  3644. }
  3645. .menu-radios input:checked~label::after {
  3646. content: url(http://space3d.4dage.com/SuperLY/images/icon-checkmark.svg);
  3647. position: absolute;
  3648. top: 5px;
  3649. width: 15px;
  3650. height: 15px;
  3651. border: 0
  3652. }
  3653. #lightbox,.menu-mattertag-hide,.menu-mattertag-show {
  3654. width: 100%
  3655. }
  3656. .menu-radio-hide {
  3657. margin-left: 1px
  3658. }
  3659. #lightbox {
  3660. position: fixed;
  3661. height: 100%;
  3662. background-color: rgba(0,0,0,.6);
  3663. z-index: 200;
  3664. -webkit-transition: opacity 250ms;
  3665. transition: opacity 250ms
  3666. }
  3667. #lightbox-close {
  3668. position: absolute;
  3669. font-weight: 700;
  3670. top: 1%;
  3671. right: 1%;
  3672. width: 5%;
  3673. height: 5%;
  3674. line-height: 1.5em;
  3675. text-align: center
  3676. }
  3677. @media only screen and (orientation: landscape) {
  3678. #lightbox {
  3679. font-size:3vw
  3680. }
  3681. }
  3682. @media only screen and (orientation: portrait) {
  3683. #lightbox {
  3684. font-size:3vh
  3685. }
  3686. }
  3687. #lightbox-contents {
  3688. position: relative;
  3689. left: 10%;
  3690. top: 10%;
  3691. width: 80%;
  3692. height: 80%;
  3693. border: 0;
  3694. background-color: rgba(255,255,255,.8)
  3695. }
  3696. #datLinks {
  3697. width: 60%
  3698. }
  3699. #datLinks .property-name {
  3700. width: 10%
  3701. }
  3702. #datLinks .property-name~div {
  3703. width: 90%;
  3704. float: left;
  3705. padding: 0;
  3706. margin: 0
  3707. }
  3708. #datLinks .property-name~div>input {
  3709. height: 20px;
  3710. width: 85%;
  3711. float: left;
  3712. line-height: 20px
  3713. }
  3714. .footer {
  3715. height: 25px;
  3716. width: 100%;
  3717. position: fixed;
  3718. padding: 3px;
  3719. right: 0;
  3720. bottom: 0;
  3721. display: inline-block;
  3722. font-size: 14px;
  3723. z-index: 103;
  3724. background-color: rgba(0,0,0,.3);
  3725. transition: all .5s;
  3726. vertical-align: middle;
  3727. text-shadow: 0 0 5px rgba(0,0,0,.9);
  3728. opacity: 1;
  3729. position:absolute;
  3730. }
  3731. /*.footer.fadeOut {
  3732. opacity: 0;
  3733. pointer-events: none
  3734. }*/
  3735. .footer.drawerOpen,.footer.duringTour {
  3736. bottom: -25px
  3737. }
  3738. .footer.open {
  3739. background-color: rgba(0,0,0,.45)
  3740. }
  3741. .footer .standard,.footer.closeByFooter .close {
  3742. -webkit-transition: all .5s;
  3743. transition: all .5s;
  3744. opacity: 1;
  3745. width: auto;
  3746. pointer-events: auto
  3747. }
  3748. .footer .close,.footer.closeByFooter .standard {
  3749. opacity: 0;
  3750. width: 0;
  3751. pointer-events: none
  3752. }
  3753. .footer div {
  3754. float: right;
  3755. margin-right: 8px
  3756. }
  3757. .footer div.standard {
  3758. margin-right: 0
  3759. }
  3760. .footer img {
  3761. float: right;
  3762. margin-right: 3px;
  3763. height: 20px;
  3764. width: auto;
  3765. position: relative
  3766. }
  3767. .footer-help.open a {
  3768. color:#00b4ed
  3769. }
  3770. .footer.mobile .footer-help a.hasHover:hover {
  3771. color: #fff
  3772. }
  3773. .footer.mobile .footer-help.open a.hasHover:hover {
  3774. color:#00b4ed
  3775. }
  3776. #tag-billboards {
  3777. z-index: 100;
  3778. position: absolute;
  3779. top: 0;
  3780. left: 0;
  3781. width: 100%;
  3782. height: 100%;
  3783. pointer-events: none
  3784. }
  3785. .tag-container {
  3786. white-space: pre-wrap;
  3787. pointer-events: auto;
  3788. position: absolute;
  3789. color: #fff;
  3790. font-family: OpenSans,'Helvetica Neue',sans-serif;
  3791. visibility: hidden;
  3792. background-color: rgba(0,0,0,.85);
  3793. -webkit-user-select: none;
  3794. -khtml-user-select: none;
  3795. -moz-user-select: none;
  3796. -ms-user-select: none;
  3797. user-select: none;
  3798. -webkit-border-radius: 3px;
  3799. border-radius: 3px;
  3800. box-shadow: 0 1px 1px rgba(0,0,0,.5);
  3801. padding: 12px
  3802. }
  3803. .tag-label {
  3804. font-size: 12pt;
  3805. font-weight: 700;
  3806. padding-bottom: 5px;
  3807. padding-left: 10px
  3808. }
  3809. .tag-desc {
  3810. font-size: 11pt;
  3811. font-weight: 600;
  3812. color: #c8c8c8;
  3813. max-height: 8.2em;
  3814. padding-left: 10px;
  3815. padding-right: 10px
  3816. }
  3817. .tag-content {
  3818. top: 10px;
  3819. left: 10px
  3820. }
  3821. .overlay .tag-content {
  3822. overflow: hidden
  3823. }
  3824. .overlay .tag-body .tag-content {
  3825. max-height: calc(100% - 20px);
  3826. background-color: transparent
  3827. }
  3828. .overlay .tag-body .tag-desc {
  3829. overflow-y: auto;
  3830. max-height: unset;
  3831. transition: height .5s ease-in;
  3832. background-color: rgba(0,0,0,.85)
  3833. }
  3834. .overlay .tag-body:not(.show-info) .tag-desc {
  3835. height: 0!important
  3836. }
  3837. .overlay .tag-body.show-info .tag-desc {
  3838. height: calc(100% - 27px)
  3839. }
  3840. .tag-container:not(.overlay) .tag-text-content {
  3841. overflow-y: auto
  3842. }
  3843. .tag-container .loading-spinner {
  3844. background-color: #626262;
  3845. margin-top: 15px;
  3846. padding: 15px
  3847. }
  3848. .tag-container .gui-spinner-icon {
  3849. display: block;
  3850. margin: 0 auto
  3851. }
  3852. .tag-container .tag-body {
  3853. max-width: 250px;
  3854. overflow: hidden
  3855. }
  3856. .tag-container.has-image {
  3857. padding: 0;
  3858. text-shadow: 0 1px 1px #000
  3859. }
  3860. .tag-container.has-image .tag-body {
  3861. max-width: none;
  3862. position: relative;
  3863. width: auto
  3864. }
  3865. .tag-container.has-image .tag-content {
  3866. position: absolute;
  3867. width: calc(100% - 19px);
  3868. left: 10px;
  3869. top: 10px;
  3870. padding-bottom: 10px
  3871. }
  3872. .tag-container.has-image:not(.has-text) .tag-text-content .tag-label,.tag-container.overlay .tag-content {
  3873. padding-bottom: 0
  3874. }
  3875. .tag-container.has-image:not(.overlay) .tag-content {
  3876. background-color: rgba(0,0,0,.7)
  3877. }
  3878. .tag-container.has-embed:not(.overlay) .tag-desc,.tag-container.has-image:not(.overlay) .tag-desc,.tag-container.has-video:not(.overlay) .tag-desc {
  3879. max-height: 4em
  3880. }
  3881. .tag-container:not(.overlay) .view-image {
  3882. cursor: -webkit-zoom-in;
  3883. cursor: url(http://space3d.4dage.com/SuperLY/images/cursor/zoom-in.svg),auto;
  3884. cursor: zoom-in
  3885. }
  3886. .tag-container .tag-image {
  3887. background-size: cover;
  3888. background-repeat: no-repeat;
  3889. background-position: 50% 50%
  3890. }
  3891. .tag-container.has-image .tag-media-content {
  3892. padding: 10px
  3893. }
  3894. .tag-container.has-image.image-portrait:not(.overlay) .tag-media-content .tag-image {
  3895. height: 400px!important;
  3896. min-width: 225px;
  3897. max-width: 300px
  3898. }
  3899. .tag-container.has-image.image-landscape:not(.overlay) .tag-media-content .tag-image {
  3900. width: 400px!important;
  3901. min-height: 225px;
  3902. max-height: 300px
  3903. }
  3904. .tag-container.has-video .tag-body {
  3905. max-width: none;
  3906. width: 350px
  3907. }
  3908. .tag-container .tag-video {
  3909. position: relative;
  3910. width: 100%;
  3911. padding-top: 56.25%
  3912. }
  3913. .tag-container.has-embed .tag-body {
  3914. max-width: none;
  3915. width: 350px
  3916. }
  3917. .tag-container .tag-embed {
  3918. position: relative
  3919. }
  3920. .tag-container.has-embed .tag-content,.tag-container.has-video .tag-content {
  3921. padding-bottom: 12px
  3922. }
  3923. .tag-container iframe {
  3924. position: absolute;
  3925. top: 0;
  3926. left: 0;
  3927. border: 0;
  3928. width: 100%;
  3929. height: 100%
  3930. }
  3931. .tag-container-right-down::before,.tag-container-right-up::before,.tag-container-right::before {
  3932. content: "";
  3933. position: absolute;
  3934. border-right: 30px solid rgba(0,0,0,.85);
  3935. right: 100%
  3936. }
  3937. .tag-container-left-down::before,.tag-container-left-up::before,.tag-container-left::before {
  3938. border-left: 30px solid rgba(0,0,0,.85);
  3939. left: 100%
  3940. }
  3941. .tag-container-right-down {
  3942. -webkit-transform: translateX(30px);
  3943. transform: translateX(30px)
  3944. }
  3945. .tag-container-right-down::before {
  3946. top: 0;
  3947. border-bottom: 20px solid transparent;
  3948. -webkit-transform-origin: 0 0;
  3949. transform-origin: 0 0;
  3950. -webkit-transform: skewY(30deg);
  3951. transform: skewY(30deg)
  3952. }
  3953. .tag-container-right {
  3954. -webkit-transform: translate(30px,calc(-50% - 20px / 2 - 30px * .57735));
  3955. transform: translate(30px,-50%) translateY(-27px)
  3956. }
  3957. .tag-container-right::before {
  3958. top: calc(50% - 20px / 2);
  3959. border-top: 20px solid transparent;
  3960. -webkit-transform-origin: 100% 50%;
  3961. transform-origin: 100% 50%;
  3962. -webkit-transform: skewY(-30deg);
  3963. transform: skewY(-30deg)
  3964. }
  3965. .tag-container-right-up {
  3966. -webkit-transform: translate(30px,-100%);
  3967. transform: translate(30px,-100%)
  3968. }
  3969. .tag-container-right-up::before {
  3970. bottom: 0;
  3971. border-top: 20px solid transparent;
  3972. -webkit-transform-origin: 0 100%;
  3973. transform-origin: 0 100%;
  3974. -webkit-transform: skewY(-30deg);
  3975. transform: skewY(-30deg)
  3976. }
  3977. .tag-container-bottom::before,.tag-container-top::before {
  3978. border-right: 20px solid transparent;
  3979. position: absolute;
  3980. content: ""
  3981. }
  3982. .tag-container-right-down::after,.tag-container-right-up::after,.tag-container-right::after {
  3983. position: absolute;
  3984. height: 100%;
  3985. width: 30px;
  3986. right: 100%;
  3987. top: 0
  3988. }
  3989. .tag-container-left-down {
  3990. -webkit-transform: translateX(calc(-100% - 30px));
  3991. transform: translateX(-100%) translateX(-30px)
  3992. }
  3993. .tag-container-left-down::before {
  3994. content: "";
  3995. position: absolute;
  3996. top: 0;
  3997. border-bottom: 20px solid transparent;
  3998. -webkit-transform-origin: 100% 0;
  3999. transform-origin: 100% 0;
  4000. -webkit-transform: skewY(-30deg);
  4001. transform: skewY(-30deg)
  4002. }
  4003. .tag-container-left {
  4004. -webkit-transform: translate(calc(-100% - 30px),calc(-50% - 20px / 2 - 30px * .57735));
  4005. transform: translate(-100%,-50%) translate(-30px,-27px)
  4006. }
  4007. .tag-container-left::before {
  4008. content: "";
  4009. position: absolute;
  4010. top: calc(50% - 20px / 2);
  4011. border-top: 20px solid transparent;
  4012. -webkit-transform-origin: 0 50%;
  4013. transform-origin: 0 50%;
  4014. -webkit-transform: skewY(30deg);
  4015. transform: skewY(30deg)
  4016. }
  4017. .tag-container-left-up {
  4018. -webkit-transform: translate(calc(-100% - 30px),-100%);
  4019. transform: translate(-100%,-100%) translateX(-30px)
  4020. }
  4021. .tag-container-left-up::before {
  4022. content: "";
  4023. position: absolute;
  4024. bottom: 0;
  4025. border-top: 20px solid transparent;
  4026. -webkit-transform-origin: 100% 100%;
  4027. transform-origin: 100% 100%;
  4028. -webkit-transform: skewY(30deg);
  4029. transform: skewY(30deg)
  4030. }
  4031. .tag-container-left-down::after,.tag-container-left-up::after,.tag-container-left::after {
  4032. position: absolute;
  4033. height: 100%;
  4034. width: 30px;
  4035. left: 100%;
  4036. top: 0
  4037. }
  4038. .tag-container-top {
  4039. -webkit-transform: translate(calc(-50% + 20px / 2 + 30px * .57735),calc(-100% - 30px));
  4040. transform: translate(-50%,-100%) translate(27px,-30px)
  4041. }
  4042. .tag-container-top::before {
  4043. right: calc(50% - 20px / 2);
  4044. top: 100%;
  4045. border-top: 30px solid rgba(0,0,0,.85);
  4046. -webkit-transform-origin: 50% 0;
  4047. transform-origin: 50% 0;
  4048. -webkit-transform: skewX(-30deg);
  4049. transform: skewX(-30deg)
  4050. }
  4051. .tag-container-top::after {
  4052. position: absolute;
  4053. height: 30px;
  4054. width: 100%;
  4055. left: 0;
  4056. top: 100%
  4057. }
  4058. .tag-container-bottom {
  4059. -webkit-transform: translate(calc(-50% + 20px / 2 + 30px * .57735),30px);
  4060. transform: translate(-50%,30px) translateX(27px)
  4061. }
  4062. .tag-container-bottom::before {
  4063. left: calc(50% - 20px / 2);
  4064. bottom: 100%;
  4065. border-bottom: 30px solid rgba(0,0,0,.85);
  4066. -webkit-transform-origin: 50% 100%;
  4067. transform-origin: 50% 100%;
  4068. -webkit-transform: skewX(30deg);
  4069. transform: skewX(30deg)
  4070. }
  4071. .tag-container-bottom::after {
  4072. position: absolute;
  4073. height: 30px;
  4074. width: 100%;
  4075. left: 0;
  4076. bottom: 100%
  4077. }
  4078. .has-hotzone::after {
  4079. content: ""
  4080. }
  4081. a.tag-link {
  4082. color: rgba(154,222,238,1)
  4083. }
  4084. a.hasHover.tag-link:hover {
  4085. color: rgba(75,205,252,1)
  4086. }
  4087. .tag-container.overlay {
  4088. pointer-events: all;
  4089. position: absolute;
  4090. top: 0;
  4091. left: 0;
  4092. max-width: none;
  4093. width: 100%;
  4094. height: calc(100% - 25px);
  4095. transform: none!important;
  4096. background-color: rgba(0,0,0,.3)
  4097. }
  4098. .tag-container.overlay .tag-body {
  4099. margin: 0 auto;
  4100. top: 50%;
  4101. transform: translateY(-50%)
  4102. }
  4103. .tag-container.overlay .tag-media-content {
  4104. height: 100%;
  4105. width: 100%;
  4106. background-color: rgba(0,0,0,.85)
  4107. }
  4108. .tag-container.overlay .tag-label {
  4109. background-color: rgba(0,0,0,.85)
  4110. }
  4111. .tag-container.overlay .tag-image {
  4112. height: 100%!important;
  4113. width: 100%!important;
  4114. background-size: contain
  4115. }
  4116. .tag-container.overlay .tag-body .tag-text-content {
  4117. left: 0;
  4118. top: 0;
  4119. width: 100%;
  4120. transform: translateZ(0);
  4121. height: 100%
  4122. }
  4123. .tag-container.overlay .tag-body .tag-text-content .tag-label {
  4124. line-height: 22px
  4125. }
  4126. .tag-container.overlay .tag-body .tag-content.collapsible .tag-label {
  4127. width: 100%;
  4128. padding-right: 55px
  4129. }
  4130. .tag-container.overlay .tag-body:not(.show-info) .tag-content.collapsible .tag-label {
  4131. text-overflow: ellipsis;
  4132. white-space: nowrap;
  4133. overflow: hidden
  4134. }
  4135. .tag-container:not(.overlay) .close {
  4136. display: none
  4137. }
  4138. .tag-container.overlay .close {
  4139. cursor: pointer;
  4140. position: absolute;
  4141. font-size: 18px;
  4142. top: 5px;
  4143. right: 5px;
  4144. padding: 5px
  4145. }
  4146. .tag-container.overlay .tag-text-content.collapsible {
  4147. cursor: pointer;
  4148. height: 100%
  4149. }
  4150. .tag-container.overlay.has-text .tag-body .tag-content.collapsible .tag-label::after {
  4151. font-family: mp-font;
  4152. font-size: 18px;
  4153. font-weight: 400;
  4154. content: '\e601';
  4155. position: absolute;
  4156. top: 0;
  4157. right: 35px;
  4158. transform: none;
  4159. transition: transform .5s
  4160. }
  4161. .tag-container.overlay.has-text .tag-body.show-info .tag-content.collapsible .tag-label::after {
  4162. transform: scale(1,-1)
  4163. }
  4164. #help-dialog {
  4165. position: absolute;
  4166. width: 100%;
  4167. height: 100%;
  4168. left: 0;
  4169. top: 0;
  4170. bottom: 0;
  4171. right: 0;
  4172. text-align: center;
  4173. font-weight: lighter;
  4174. visibility: visible;
  4175. z-index: 102;
  4176. background-color: rgba(0,0,0,.8);
  4177. -webkit-transition: all .5s;
  4178. transition: all .5s;
  4179. pointer-events: none;
  4180. opacity: 0
  4181. }
  4182. #help-dialog.fadeIn {
  4183. opacity: 1;
  4184. pointer-events: all
  4185. }
  4186. #help-dialog .close {
  4187. position: absolute;
  4188. right: 0;
  4189. top: 0;
  4190. padding: 15px;
  4191. font-size: 16px
  4192. }
  4193. #help-dialog .help-tabs div {
  4194. padding: 16px 55px 15px 20px;
  4195. display: inline-block;
  4196. font-weight: 700;
  4197. font-size: 18px;
  4198. height: 100%
  4199. }
  4200. #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 {
  4201. display: none
  4202. }
  4203. #help-dialog .help-tabs {
  4204. position: absolute;
  4205. width: 80%;
  4206. left: 10%;
  4207. transition: all .3s;
  4208. cursor: pointer;
  4209. z-index: 100
  4210. }
  4211. #help-dialog .help-tabs div:hover * {
  4212. color: rgba(75,205,252,1)
  4213. }
  4214. #help-dialog .help-tabs span {
  4215. padding-bottom: 3px;
  4216. transition: all .3s
  4217. }
  4218. #help-dialog .help-tabs div span {
  4219. border-bottom: 0 solid #000
  4220. }
  4221. #help-dialog .help-tabs div.underline-tab span {
  4222. border-bottom: 1px solid #fff
  4223. }
  4224. #help-dialog .help-tabs div.underline-tab:hover span {
  4225. border-bottom: 1px solid rgba(75,205,252,1)
  4226. }
  4227. #help-dialog.mobile .help-tabs div {
  4228. font-size: 12px;
  4229. padding: 17px 17px 17px 12px
  4230. }
  4231. #help-dialog.mobile .close {
  4232. font-size: 12px
  4233. }
  4234. @media only screen and (min-aspect-ratio: 1/1) {
  4235. #help-dialog.mobile .help-tabs div {
  4236. padding:15px 15px 15px 20px
  4237. }
  4238. #help-dialog.mobile .close {
  4239. font-size: 12px
  4240. }
  4241. }
  4242. #help-dialog #more-help-wrapper {
  4243. z-index: -1
  4244. }
  4245. #help-dialog #navigation-help-wrapper,#help-dialog.more-help #more-help-wrapper {
  4246. z-index: -2
  4247. }
  4248. #help-dialog .interactions {
  4249. position: absolute;
  4250. width: 30%;
  4251. height: 60%;
  4252. margin: 0 auto;
  4253. top: 20%;
  4254. left: 0;
  4255. right: 0;
  4256. font-size: 1.15vw
  4257. }
  4258. #help-dialog .interactions.left {
  4259. right: 65%
  4260. }
  4261. #help-dialog .interactions.right {
  4262. left: 65%
  4263. }
  4264. #help-dialog .interactions .big-image,#help-dialog .interactions .keyboard,#help-dialog .interactions hr {
  4265. position: absolute;
  4266. left: 50%;
  4267. transform: translate(-50%,0)
  4268. }
  4269. #help-dialog.desktop .interactions hr {
  4270. bottom: 16vh;
  4271. width: 7.8vh
  4272. }
  4273. #help-dialog.desktop .interactions .big-image {
  4274. bottom: 24vh;
  4275. width: 8.4vh
  4276. }
  4277. #help-dialog.desktop.floorplan .interactions.middle .big-image {
  4278. width: 8.8vh
  4279. }
  4280. #help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4281. width: 10.3vh
  4282. }
  4283. #help-dialog.desktop.dollhouse .interactions.middle .big-image {
  4284. width: 10.4vh
  4285. }
  4286. #help-dialog.desktop .interactions .top-info {
  4287. font-weight: 500;
  4288. margin-left: 7%;
  4289. margin-right: 7%;
  4290. line-height: 1.25
  4291. }
  4292. #help-dialog.desktop .interactions .keyboard {
  4293. bottom: 0;
  4294. width: 8.66vh
  4295. }
  4296. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4297. width: 14vh
  4298. }
  4299. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4300. width: 4.33vh;
  4301. transform: translate(-50%,25%)
  4302. }
  4303. #help-dialog.desktop.outdoor .interactions.middle .keyboard {
  4304. width: 4.33vh
  4305. }
  4306. #help-dialog.desktop .interactions .bottom-info {
  4307. position: absolute;
  4308. font-size: 1.46vw;
  4309. font-weight: 400;
  4310. top: 45vh;
  4311. margin-left: 15%;
  4312. margin-right: 15%;
  4313. line-height: 1.3
  4314. }
  4315. #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 {
  4316. top: 75%
  4317. }
  4318. #help-dialog.desktop.dollhouse.es-MX.desktop .interactions {
  4319. height: 65%
  4320. }
  4321. @media only screen and (max-width: 700px) and (max-height:600px) {
  4322. #help-dialog.desktop .help-tabs div {
  4323. font-size:12px
  4324. }
  4325. #help-dialog.desktop .interactions .top-info {
  4326. position: absolute;
  4327. top: 0;
  4328. width: 100%;
  4329. margin-left: 0;
  4330. font-size: 2.15vw;
  4331. font-weight: 500;
  4332. line-height: 1.3
  4333. }
  4334. #help-dialog.desktop.panorama .interactions .top-info {
  4335. top: 3%
  4336. }
  4337. #help-dialog.desktop.floorplan .interactions .top-info {
  4338. top: -2%
  4339. }
  4340. #help-dialog.desktop.es-MX.panorama .interactions .top-info {
  4341. top: 0
  4342. }
  4343. #help-dialog.desktop .interactions .bottom-info {
  4344. margin-left: 5%;
  4345. margin-right: 5%;
  4346. font-size: 2.15vw;
  4347. line-height: 1.14;
  4348. top: 40vh
  4349. }
  4350. #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 {
  4351. font-size: 2vw
  4352. }
  4353. #help-dialog.desktop .interactions .big-image {
  4354. width: 7.15vh;
  4355. bottom: 28.75vh
  4356. }
  4357. #help-dialog.desktop.dollhouse .interactions.left .big-image,#help-dialog.desktop.floorplan .interactions.middle .big-image {
  4358. width: 7.5vh
  4359. }
  4360. #help-dialog.desktop.dollhouse .interactions.middle .big-image,#help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4361. width: 9vh
  4362. }
  4363. #help-dialog.desktop .interactions hr {
  4364. width: 6.55vh;
  4365. bottom: 19.8vh
  4366. }
  4367. #help-dialog.desktop .interactions .keyboard {
  4368. width: 10.4vh;
  4369. bottom: 0
  4370. }
  4371. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.outdoor .interactions.middle .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4372. width: 5.2vh
  4373. }
  4374. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4375. bottom: 0
  4376. }
  4377. #help-dialog.desktop.es-MX.floorplan .interactions {
  4378. top: 23%
  4379. }
  4380. #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 {
  4381. top: 65%
  4382. }
  4383. #help-dialog.desktop.es-MX.dollhouse .interactions .bottom-info,#help-dialog.desktop.es-MX.floorplan .interactions .bottom-info {
  4384. top: 68%
  4385. }
  4386. #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 {
  4387. bottom: -5%
  4388. }
  4389. #help-dialog.desktop.de-DE.floorplan .interactions .keyboard,#help-dialog.desktop.de-DE.panorama .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4390. bottom: -10%
  4391. }
  4392. #help-dialog.desktop.es-MX.dollhouse .interactions .top-info {
  4393. position: relative;
  4394. bottom: 5%
  4395. }
  4396. #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 {
  4397. top: -10%;
  4398. font-size: 2vw
  4399. }
  4400. }
  4401. @media only screen and (max-width: 700px) and (min-aspect-ratio:2/1) {
  4402. #help-dialog.desktop .interactions hr {
  4403. bottom:15.5vh
  4404. }
  4405. }
  4406. @media only screen and (min-width: 701px) and (max-aspect-ratio:15/10) {
  4407. #help-dialog.desktop .interactions {
  4408. position:absolute;
  4409. top: 10%
  4410. }
  4411. #help-dialog.desktop .interactions hr {
  4412. width: 6vh
  4413. }
  4414. #help-dialog.desktop.dollhouse .interactions {
  4415. top: 10%
  4416. }
  4417. #help-dialog.desktop .interactions .top-info {
  4418. position: relative;
  4419. top: 15%
  4420. }
  4421. #help-dialog.desktop.ru-RU.dollhouse .interactions {
  4422. height: 68%
  4423. }
  4424. #help-dialog.desktop.de-DE.dollhouse .interactions .top-info,#help-dialog.desktop.de-DE.floorplan .interactions .top-info {
  4425. font-size: 1.3em
  4426. }
  4427. #help-dialog.desktop.ru-RU.floorplan .interactions .top-info {
  4428. top: 8%
  4429. }
  4430. #help-dialog.desktop.de-DE .interactions .keyboard,#help-dialog.desktop.jp-JP .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4431. bottom: -5%
  4432. }
  4433. #help-dialog.desktop.es-MX.floorplan .interactions {
  4434. top: 20%
  4435. }
  4436. #help-dialog.desktop.es-MX.floorplan .interactions .top-info {
  4437. top: 0
  4438. }
  4439. #help-dialog.desktop.de-DE.dollhouse .interactions .bottom-info,#help-dialog.desktop.de-DE.floorplan .interactions .bottom-info {
  4440. font-size: 1.2em
  4441. }
  4442. #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 {
  4443. top: 77.5%
  4444. }
  4445. #help-dialog.desktop .interactions .big-image {
  4446. width: 6.3vh
  4447. }
  4448. #help-dialog.desktop.floorplan .interactions.middle .big-image {
  4449. width: 6.6vh
  4450. }
  4451. #help-dialog.desktop.floorplan .interactions.left .big-image,#help-dialog.desktop.panorama .interactions.middle .big-image {
  4452. width: 7.725vh
  4453. }
  4454. #help-dialog.desktop.dollhouse .interactions.middle .big-image {
  4455. width: 7.8vh
  4456. }
  4457. #help-dialog.desktop .interactions .keyboard {
  4458. width: 6.5vh
  4459. }
  4460. #help-dialog.desktop.dollhouse .interactions.left .keyboard {
  4461. width: 10.5vh
  4462. }
  4463. #help-dialog.desktop.floorplan .interactions.right .keyboard,#help-dialog.desktop.outdoor .interactions.middle .keyboard,#help-dialog.desktop.panorama .interactions.middle .keyboard {
  4464. width: 3.275vh
  4465. }
  4466. }
  4467. @media only screen and (min-aspect-ratio: 15/10) and (min-width:700px) {
  4468. #help-dialog.desktop.es-MX.floorplan .interactions .top-info {
  4469. position:relative;
  4470. bottom: 7%
  4471. }
  4472. #help-dialog.desktop.jp-JP .interactions .top-info {
  4473. font-size: 1.4em
  4474. }
  4475. #help-dialog.desktop.jp-JP .interactions .bottom-info {
  4476. font-size: 1.3vw
  4477. }
  4478. #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 {
  4479. bottom: 1%;
  4480. font-size: 1.3em;
  4481. position: relative
  4482. }
  4483. #help-dialog.desktop .interactions .keyboard,#help-dialog.desktop.es-MX.dollhouse .interactions .keyboard,#help-dialog.desktop.fr-FR.dollhouse .interactions .keyboard {
  4484. bottom: -3vh
  4485. }
  4486. #help-dialog.desktop.de-DE .interactions .keyboard,#help-dialog.desktop.ru-RU .interactions .keyboard {
  4487. bottom: -7vh
  4488. }
  4489. #help-dialog.desktop.de-DE .interactions .bottom-info {
  4490. font-size: 1.15em
  4491. }
  4492. #help-dialog.desktop .interactions .bottom-info {
  4493. bottom: 7.5vh
  4494. }
  4495. #help-dialog.desktop .interactions hr {
  4496. bottom: 16vh
  4497. }
  4498. }
  4499. @media only screen and (min-aspect-ratio: 17/10) {
  4500. #help-dialog.desktop .interactions .keyboard {
  4501. bottom:-3vh
  4502. }
  4503. #help-dialog.desktop.ru-RU .interactions .keyboard {
  4504. bottom: -12%
  4505. }
  4506. }
  4507. @media only screen and (min-aspect-ratio: 25/10) {
  4508. #help-dialog.desktop .interactions hr {
  4509. bottom:15vh
  4510. }
  4511. }
  4512. #help-dialog.mobile #navigation-help-wrapper {
  4513. position: absolute;
  4514. top: 12%;
  4515. left: 0;
  4516. right: -25px;
  4517. bottom: 25px;
  4518. overflow: scroll
  4519. }
  4520. #help-dialog.mobile .interactions {
  4521. position: absolute;
  4522. top: 45%;
  4523. transform: translate(0,-50%);
  4524. height: 90px;
  4525. width: 144px
  4526. }
  4527. #help-dialog.mobile .interactions.left {
  4528. right: 312px;
  4529. right: calc(264px + 10vw)
  4530. }
  4531. #help-dialog.mobile .interactions.right {
  4532. left: 312px;
  4533. left: calc(264px + 10vw)
  4534. }
  4535. #help-dialog.mobile .interactions .top-info {
  4536. font-size: 11px;
  4537. font-weight: 500;
  4538. margin-left: 3%;
  4539. margin-right: 3%;
  4540. top: 0
  4541. }
  4542. #help-dialog.mobile .big-image,#help-dialog.mobile.floorplan .interactions.left .big-image {
  4543. bottom: 34%;
  4544. bottom: calc(100% - 110px);
  4545. width: 40.1px
  4546. }
  4547. #help-dialog.mobile.floorplan .interactions.middle .big-image {
  4548. width: 37px
  4549. }
  4550. #help-dialog.mobile.outdoor .interactions.middle .big-image {
  4551. width: 27px
  4552. }
  4553. #help-dialog.mobile .interactions.right .big-image {
  4554. width: 43px
  4555. }
  4556. #help-dialog.mobile.panorama .interactions.middle .big-image {
  4557. width: 56px
  4558. }
  4559. #help-dialog.mobile.dollhouse .interactions.middle .big-image {
  4560. width: 43px
  4561. }
  4562. @media only screen and (min-aspect-ratio: 1/1) {
  4563. #help-dialog.mobile.ru-RU .interactions .top-info {
  4564. position:relative;
  4565. top: -20%
  4566. }
  4567. #help-dialog.mobile.fr-FR.dollhouse .interactions .top-info {
  4568. font-size: 10px
  4569. }
  4570. #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 {
  4571. position: relative;
  4572. top: -10px
  4573. }
  4574. #help-dialog.mobile.outdoor.es-MX .interactions,#help-dialog.mobile.outdoor.fr-FR .interactions {
  4575. transform: translateY(-50%) translateY(10px)
  4576. }
  4577. }
  4578. @media only screen and (min-aspect-ratio: 1/1) and (max-width:480px) {
  4579. #help-dialog.mobile #navigation-help {
  4580. position:absolute;
  4581. min-width: 480px;
  4582. height: 100%
  4583. }
  4584. }
  4585. @media only screen and (min-aspect-ratio: 1/1) and (min-width:480px) {
  4586. #help-dialog.mobile .interactions {
  4587. position:fixed
  4588. }
  4589. }
  4590. @media only screen and (min-aspect-ratio: 1/1) and (max-height:200px) {
  4591. #help-dialog.mobile #navigation-help-wrapper {
  4592. top:50px
  4593. }
  4594. #help-dialog.mobile .interactions {
  4595. position: absolute;
  4596. height: 110px
  4597. }
  4598. }
  4599. @media only screen and (max-aspect-ratio: 1/1) {
  4600. #help-dialog.mobile .interactions .big-image {
  4601. position:relative;
  4602. margin: 3em auto auto;
  4603. left: auto;
  4604. right: auto;
  4605. transform: translate(0,0)
  4606. }
  4607. #help-dialog.mobile #navigation-help {
  4608. display: inline-block;
  4609. position: absolute;
  4610. left: 0;
  4611. width: 100%;
  4612. min-height: 500px;
  4613. height: 65vh
  4614. }
  4615. #help-dialog.mobile .interactions,#help-dialog.mobile .interactions.left,#help-dialog.mobile .interactions.right {
  4616. position: absolute;
  4617. top: 5%;
  4618. transform: translate(0,0);
  4619. left: 0;
  4620. height: 20%;
  4621. width: 100%
  4622. }
  4623. #help-dialog.mobile .interactions.middle {
  4624. top: 35%
  4625. }
  4626. #help-dialog.mobile .interactions.right {
  4627. top: 65%
  4628. }
  4629. #help-dialog.mobile .interactions .top-info {
  4630. font-size: 14px;
  4631. text-align: center;
  4632. width: 68%;
  4633. max-width: 218px;
  4634. margin: auto
  4635. }
  4636. #help-dialog.mobile.dollhouse .interactions.left .big-image,#help-dialog.mobile.floorplan .interactions.middle .big-image {
  4637. transform: translate(10%,0)
  4638. }
  4639. }
  4640. @media only screen and (max-aspect-ratio: 1/1) and (min-height:600px) {
  4641. #help-dialog.mobile #navigation-help-wrapper {
  4642. top:2.5%
  4643. }
  4644. #help-dialog.mobile.more-help #navigation-help-wrapper {
  4645. top: 50px
  4646. }
  4647. #help-dialog.mobile #navigation-help {
  4648. top: 60%;
  4649. transform: translate(0,-60%)
  4650. }
  4651. }
  4652. @media only screen and (max-aspect-ratio: 1/1) and (min-aspect-ratio:2/3) {
  4653. #help-dialog.mobile .interactions .top-info {
  4654. font-size:14px
  4655. }
  4656. #help-dialog.more-help.mobile #more-help {
  4657. height: 200px
  4658. }
  4659. }
  4660. #help-dialog.more-help #navigation-help {
  4661. display: none
  4662. }
  4663. #more-help-wrapper {
  4664. position: absolute;
  4665. top: 20%;
  4666. top: calc(20% - 4vw);
  4667. left: 0;
  4668. right: -25px;
  4669. bottom: -25px;
  4670. overflow: scroll
  4671. }
  4672. @media only screen and (max-height: 454px) {
  4673. #help-dialog.more-help #more-help-wrapper {
  4674. right:0
  4675. }
  4676. }
  4677. @media only screen and (max-width: 1060px) {
  4678. #help-dialog.more-help #more-help-wrapper {
  4679. bottom:25px
  4680. }
  4681. }
  4682. #help-dialog.more-help #navigation-help-wrapper {
  4683. z-index: -1
  4684. }
  4685. #help-dialog.more-help #more-help {
  4686. display: inline-block;
  4687. position: absolute;
  4688. top: 6vw;
  4689. width: 96%;
  4690. height: 80%;
  4691. left: 2%;
  4692. bottom: 25px;
  4693. min-height: 35vw
  4694. }
  4695. #help-dialog .ui-instructions {
  4696. display: inline-block;
  4697. position: absolute;
  4698. width: 16vw;
  4699. margin-left: 20px;
  4700. line-height: 1.29;
  4701. min-height: 161px;
  4702. min-width: 190px;
  4703. font-weight: 400;
  4704. height: 30vh;
  4705. top: 50%;
  4706. font-size: 1.3vw
  4707. }
  4708. #help-dialog .ui-instructions h2 {
  4709. font-size: 1.55vw;
  4710. position: absolute;
  4711. bottom: 100%;
  4712. width: 100%
  4713. }
  4714. #help-dialog.desktop.es-MX .ui-instructions h2,#help-dialog.desktop.fr-FR .ui-instructions h2 {
  4715. font-size: 1.3vw
  4716. }
  4717. #help-dialog .ui-instructions:nth-child(-n+5) {
  4718. top: 0
  4719. }
  4720. #help-dialog .ui-instructions:nth-child(5n+1) {
  4721. left: 0
  4722. }
  4723. #help-dialog .ui-instructions:nth-child(5n+2) {
  4724. left: 20%
  4725. }
  4726. #help-dialog .ui-instructions:nth-child(5n+3) {
  4727. left: 40%
  4728. }
  4729. #help-dialog .ui-instructions:nth-child(5n+4) {
  4730. left: 60%
  4731. }
  4732. #help-dialog .ui-instructions:nth-child(5n+5) {
  4733. left: 80%
  4734. }
  4735. #help-dialog.desktop .ui-instructions .big-image {
  4736. margin-top: 2vw;
  4737. margin-bottom: 1.5vw;
  4738. height: 3.5vw
  4739. }
  4740. @media only screen and (max-width: 1100px) {
  4741. #help-dialog.desktop.more-help #more-help {
  4742. width:1056px;
  4743. min-height: 360px
  4744. }
  4745. #help-dialog.desktop .ui-instructions {
  4746. font-size: 14px;
  4747. margin-left: 0
  4748. }
  4749. #help-dialog.desktop .ui-instructions .bottom-info {
  4750. width: 100%
  4751. }
  4752. #help-dialog.desktop .ui-instructions h2 {
  4753. font-size: 16px
  4754. }
  4755. #help-dialog.desktop.es-MX .ui-instructions h2,#help-dialog.desktop.fr-FR .ui-instructions h2 {
  4756. font-size: 15px
  4757. }
  4758. #help-dialog.desktop .ui-instructions .big-image {
  4759. margin-top: 12px;
  4760. height: 35px;
  4761. margin-bottom: 12px
  4762. }
  4763. }
  4764. @media only screen and (max-height: 500px) {
  4765. #more-help-wrapper.destkop {
  4766. top:73px;
  4767. left: 10px
  4768. }
  4769. }
  4770. #help-dialog.mobile .ui-instructions {
  4771. min-width: 0;
  4772. width: 48%;
  4773. font-size: 11px;
  4774. margin-left: 0;
  4775. top: 67.5%
  4776. }
  4777. #help-dialog.mobile #more-help-wrapper {
  4778. top: 20vw;
  4779. width: 100%;
  4780. left: 0;
  4781. bottom: 25px
  4782. }
  4783. #help-dialog.mobile .ui-instructions h2 {
  4784. font-size: 13px
  4785. }
  4786. #help-dialog.more-help.mobile #more-help {
  4787. position: absolute;
  4788. display: inline-block;
  4789. width: 87%;
  4790. min-height: 700px;
  4791. height: 100vh;
  4792. margin-top: 5%;
  4793. left: 6%
  4794. }
  4795. #help-dialog.mobile .ui-instructions:nth-child(-n+6) {
  4796. top: 45%
  4797. }
  4798. #help-dialog.mobile .ui-instructions:nth-child(-n+4) {
  4799. top: 22.5%
  4800. }
  4801. #help-dialog.mobile .ui-instructions:nth-child(-n+2) {
  4802. top: 0
  4803. }
  4804. #help-dialog.mobile .ui-instructions:nth-child(2n) {
  4805. left: auto;
  4806. right: 0
  4807. }
  4808. #help-dialog.mobile .ui-instructions:nth-child(2n+1) {
  4809. left: 0
  4810. }
  4811. #help-dialog.mobile .ui-instructions .big-image {
  4812. position: static;
  4813. margin: 1em auto .75em;
  4814. width: auto;
  4815. height: 35px
  4816. }
  4817. #help-dialog.mobile .ui-instructions .bottom-info {
  4818. position: relative;
  4819. margin: auto;
  4820. max-width: 135px
  4821. }
  4822. @media only screen and (min-height: 770px) and (max-aspect-ratio:1/1) {
  4823. #help-dialog.more-help.mobile #more-help {
  4824. position:absolute;
  4825. height: auto;
  4826. margin-top: 0;
  4827. top: 45%;
  4828. transform: translate(0,-45%)
  4829. }
  4830. }
  4831. @media only screen and (min-aspect-ratio: 1/1) {
  4832. #help-dialog.mobile #more-help-wrapper {
  4833. top:15vh;
  4834. left: 0
  4835. }
  4836. #help-dialog.mobile .ui-instructions {
  4837. min-width: 0;
  4838. width: 30%;
  4839. height: 30vw
  4840. }
  4841. #help-dialog.more-help.mobile #more-help {
  4842. width: 90%;
  4843. height: 100vh;
  4844. left: 6.5%;
  4845. margin-top: 0
  4846. }
  4847. #help-dialog.mobile .ui-instructions:nth-child(n) {
  4848. left: 0;
  4849. top: 53%
  4850. }
  4851. #help-dialog.mobile .ui-instructions:nth-child(3n-1) {
  4852. left: 30vw
  4853. }
  4854. #help-dialog.mobile .ui-instructions:nth-child(3n) {
  4855. left: 60vw
  4856. }
  4857. #help-dialog.mobile .ui-instructions:nth-child(-n+6) {
  4858. top: 28%
  4859. }
  4860. #help-dialog.mobile .ui-instructions:nth-child(-n+3) {
  4861. top: 3%
  4862. }
  4863. }
  4864. @media only screen and (min-height: 500px) {
  4865. #help-dialog.mobile #more-help-wrapper {
  4866. top:7.5%
  4867. }
  4868. }
  4869. @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) {
  4870. #help-dialog.mobile .interactions .top-info,#help-dialog.mobile.fr-FR.dollhouse .interactions .top-info {
  4871. font-size:21px;
  4872. max-width: 230px;
  4873. margin: auto;
  4874. line-height: 1.25
  4875. }
  4876. #help-dialog.mobile.de-DE .interactions .top-info,#help-dialog.mobile.ru-RU .interactions .top-info {
  4877. font-size: 19px
  4878. }
  4879. #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 {
  4880. max-width: 280px
  4881. }
  4882. }
  4883. @media only screen and (min-height: 650px) and (min-width:650px) and (min-aspect-ratio:800/650) {
  4884. #help-dialog.mobile .interactions .big-image {
  4885. transform:scale(1.5) translate(-50%,0)
  4886. }
  4887. #help-dialog.mobile .interactions {
  4888. width: 300px;
  4889. height: 200px
  4890. }
  4891. #help-dialog.mobile .interactions.left {
  4892. right: 600px
  4893. }
  4894. #help-dialog.mobile .interactions.right {
  4895. left: 600px
  4896. }
  4897. #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 {
  4898. bottom: 57%;
  4899. bottom: calc(100% - 175px)
  4900. }
  4901. }
  4902. @media only screen and (min-height: 650px) and (min-width:650px) and (max-aspect-ratio:1/1) {
  4903. #help-dialog.mobile .interactions,#help-dialog.mobile .interactions.left,#help-dialog.mobile .interactions.right {
  4904. position:static;
  4905. height: auto;
  4906. margin-bottom: 10%
  4907. }
  4908. #help-dialog.mobile #navigation-help-wrapper {
  4909. top: 2.5%
  4910. }
  4911. #help-dialog.mobile .interactions .big-image {
  4912. transform: scale(1.5)
  4913. }
  4914. #help-dialog.mobile #navigation-help {
  4915. height: auto;
  4916. top: 50%;
  4917. transform: translate(0,-50%)
  4918. }
  4919. #help-dialog.mobile.dollhouse .interactions.left .big-image,#help-dialog.mobile.floorplan .interactions.middle .big-image {
  4920. transform: scale(1.5) translate(10%,0)
  4921. }
  4922. #help-dialog.mobile.es-MX #navigation-help,#help-dialog.mobile.fr-FR #navigation-help {
  4923. min-height: 700px
  4924. }
  4925. #help-dialog.mobile.es-MX .interactions .big-image,#help-dialog.mobile.fr-FR .interactions .big-image {
  4926. margin-top: 4em
  4927. }
  4928. }
  4929. @media only screen and (min-height: 650px) and (min-width:650px) {
  4930. #help-dialog.more-help.mobile #more-help {
  4931. margin-top:0
  4932. }
  4933. #help-dialog.mobile #more-help .ui-instructions {
  4934. font-size: 15.5px;
  4935. margin-top: 37px
  4936. }
  4937. #help-dialog.mobile .ui-instructions h2 {
  4938. font-size: 19.5px
  4939. }
  4940. #help-dialog.mobile .ui-instructions .big-image {
  4941. transform: scale(1.5);
  4942. margin-top: 1.5em;
  4943. margin-bottom: 2em
  4944. }
  4945. }
  4946. @media only screen and (min-height: 650px) and (min-width:650px) and (max-aspect-ratio:1/1) {
  4947. #help-dialog.more-help.mobile #more-help {
  4948. height:100vh;
  4949. margin-top: 2vw
  4950. }
  4951. #help-dialog.mobile .ui-instructions .bottom-info {
  4952. top: auto;
  4953. max-width: 250px
  4954. }
  4955. }
  4956. @media only screen and (min-height: 650px) and (min-width:650px) and (min-aspect-ratio:1/1) {
  4957. #help-dialog.more-help.mobile #more-help {
  4958. min-height:870px;
  4959. top: 2vw
  4960. }
  4961. #help-dialog.mobile .ui-instructions .bottom-info {
  4962. max-width: none
  4963. }
  4964. #help-dialog.mobile #more-help .ui-instructions {
  4965. margin-top: 0
  4966. }
  4967. #help-dialog.mobile #more-help-wrapper {
  4968. top: 10vh;
  4969. height: 100vh
  4970. }
  4971. #help-dialog.more-help.mobile #more-help {
  4972. height: 110vh
  4973. }
  4974. }
  4975. #share-modal {
  4976. position: absolute;
  4977. top: 50%;
  4978. left: 50%;
  4979. transform: translate(-50%,-50%);
  4980. z-index: 100;
  4981. width: 375px;
  4982. height: 325px;
  4983. border-radius: 10px;
  4984. background-color: rgba(0,0,0,.75);
  4985. padding: 16px;
  4986. color: #fff;
  4987. text-align: center;
  4988. opacity: 0;
  4989. pointer-events: none;
  4990. -webkit-transition: all .5s;
  4991. transition: all .5s
  4992. }
  4993. #share-modal.fadeIn {
  4994. opacity: 1;
  4995. pointer-events: all
  4996. }
  4997. #share-modal .title {
  4998. position: absolute;
  4999. font-size: 16px;
  5000. margin-left: 5px
  5001. }
  5002. #share-modal #share-outer {
  5003. position: absolute;
  5004. width: 80%;
  5005. left: 10%;
  5006. top: 20%;
  5007. text-align: center;
  5008. font-size: 14px
  5009. }
  5010. #share-modal #share-outer .share-to {
  5011. margin-bottom: 15px
  5012. }
  5013. #share-modal #share-outer .share-button {
  5014. display: inline-block;
  5015. width: 48px;
  5016. height: 48px;
  5017. border: 1px solid #fff;
  5018. font-size: 28px;
  5019. border-radius: 1px;
  5020. margin: 0 3px
  5021. }
  5022. #share-modal #share-outer .share-button:active,#share-modal:not(.mobile) #share-outer .share-button:hover {
  5023. background-color: #1eb8cc
  5024. }
  5025. #share-modal #share-url span::selection {
  5026. background-color: #1eb8cc
  5027. }
  5028. #share-modal #share-url span::-moz-selection {
  5029. background-color: #1eb8cc
  5030. }
  5031. #share-modal .share-images span {
  5032. line-height: 48px
  5033. }
  5034. #share-modal #share-outer .direct-link {
  5035. width: 100%;
  5036. height: 100%;
  5037. margin-top: 50px;
  5038. margin-bottom: 10px
  5039. }
  5040. #share-modal #share-url {
  5041. font-size: 14px;
  5042. color: #fff;
  5043. padding: 8px;
  5044. background-color: rgba(0,0,0,0);
  5045. width: 20em;
  5046. border: 1px solid #fff;
  5047. cursor: default;
  5048. margin: auto;
  5049. overflow: hidden;
  5050. white-space: nowrap
  5051. }
  5052. #share-modal #share-url span {
  5053. display: block;
  5054. width: calc(20em - 16px);
  5055. overflow: hidden
  5056. }
  5057. #share-modal #share-url span.highlighted {
  5058. background-color: #1eb8cc
  5059. }
  5060. #share-modal.fadeIn #share-url {
  5061. pointer-events: auto;
  5062. touch-callout: default;
  5063. -webkit-touch-callout: default;
  5064. -webkit-user-select: all;
  5065. -khtml-user-select: all;
  5066. -moz-user-select: all;
  5067. -ms-user-select: all;
  5068. user-select: all;
  5069. cursor: text
  5070. }
  5071. #meta-info-wrapper,#model-title.fadeOut,.pinTop.left,.pinTop.left.closed #meta-info-wrapper,.pinTop.left.closed #model-title {
  5072. pointer-events: none
  5073. }
  5074. #share-close,.meta-toggle {
  5075. cursor: pointer
  5076. }
  5077. #share-modal #copy-success {
  5078. margin-top: 10px
  5079. }
  5080. #share-modal a.hasHover:hover,#share-modal a:active {
  5081. color: #fff
  5082. }
  5083. #share-close {
  5084. position: absolute;
  5085. top: 0;
  5086. right: 0;
  5087. padding: 16px;
  5088. font-size: 13px
  5089. }
  5090. #share-modal.closeByFooter #share-close {
  5091. display: none
  5092. }
  5093. @media only screen and (max-width: 487px),(max-height:360px) {
  5094. #share-modal {
  5095. position:fixed;
  5096. top: 0;
  5097. left: 0;
  5098. transform: none;
  5099. height: 100%;
  5100. width: 100%;
  5101. bottom: 0;
  5102. border-radius: 0
  5103. }
  5104. }
  5105. @media only screen and (max-width: 320px) {
  5106. #share-modal #share-url {
  5107. width:15em
  5108. }
  5109. #share-modal #share-url span {
  5110. width: calc(15em - 16px)
  5111. }
  5112. }
  5113. @media only screen and (max-height: 250px) {
  5114. #share-modal #share-outer .direct-link {
  5115. margin-top:10px
  5116. }
  5117. }
  5118. #share-modal.mobile .title {
  5119. position: static;
  5120. font-size: 16px
  5121. }
  5122. #share-close.mobile {
  5123. font-size: 16px
  5124. }
  5125. #share-modal.mobile {
  5126. position: fixed;
  5127. top: 0;
  5128. left: 0;
  5129. transform: none;
  5130. height: 100%;
  5131. width: 100%;
  5132. bottom: 0;
  5133. border-radius: 0
  5134. }
  5135. #model-title,.title-container {
  5136. position: relative;
  5137. height: auto;
  5138. }
  5139. /*.pinTop.left.fadeOut,.pinTop.left.fadeOut #meta-info-wrapper {
  5140. -webkit-transition: all .5s;
  5141. transition: all .5s;
  5142. opacity: 0;
  5143. pointer-events: none
  5144. }*/
  5145. #model-title {
  5146. font-weight: 100;
  5147. z-index: 20;
  5148. opacity: 1;
  5149. -webkit-transition: all .3s;
  5150. transition: all .3s;
  5151. pointer-events: all;
  5152. background: rgba(0,0,0,0.2);
  5153. border-radius: 10px;
  5154. padding: 0 10px;
  5155. color:rgb(235,211,155);
  5156. min-width: 180px;
  5157. border: 15px solid transparent;
  5158. -moz-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Old Firefox */
  5159. -webkit-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Safari and Chrome */
  5160. -o-border-image:url(http://space3d.4dage.com/SuperLY/images/box_img.png) 30 30 round; /* Opera */
  5161. border-image: url(http://space3d.4dage.com/SuperLY/images/box_img.png) 15 15 round;
  5162. }
  5163. #model-title:hover{
  5164. background: rgba(0,0,0,0.5);
  5165. }
  5166. #model-title.expand{
  5167. background: rgba(0,0,0,0.5);
  5168. }
  5169. .title-row {
  5170. white-space: nowrap;
  5171. display: flex;
  5172. align-items: center;
  5173. justify-content: space-around;
  5174. }
  5175. #title-container-wrapper {
  5176. overflow: hidden;
  5177. width: 100%;
  5178. }
  5179. .title-container {
  5180. width: 100%;
  5181. white-space: nowrap;
  5182. display: flex;
  5183. margin-left: 1px;
  5184. -webkit-transition: all .4s ease-in-out;
  5185. transition: all .4s ease-in-out;
  5186. justify-content: space-between;
  5187. align-items: center;
  5188. }
  5189. .title-container.no-meta,.title-container.share-only {
  5190. cursor: default
  5191. }
  5192. #less-hint,#more-hint {
  5193. font-weight: 400;
  5194. font-size: 10px;
  5195. }
  5196. .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 {
  5197. display: none
  5198. }
  5199. .title-container #more-hint,.title-container.expand #less-hint {
  5200. display: flex;
  5201. align-items: center;
  5202. height: 100%;
  5203. padding-left: 12px;
  5204. }
  5205. /*.meta-toggle.hasHover:hover,.meta-toggle:active {
  5206. background-color: rgba(0,0,0,.75);
  5207. color: #fff
  5208. }*/
  5209. #title-toggle {
  5210. float: left;
  5211. text-align: center;
  5212. height: 52px;
  5213. font-size: 18px;
  5214. pointer-events: all;
  5215. line-height: 52px;
  5216. padding-top: 2px;
  5217. display: none;
  5218. }
  5219. #title-logo{
  5220. margin-right: 6px;
  5221. }
  5222. #title-logo i {
  5223. display: block;
  5224. width: 18px;
  5225. height: 18px;
  5226. background: url("http://space3d.4dage.com/SuperLY/images/4dage-logo.png")left top no-repeat;
  5227. background-size: 100%;
  5228. }
  5229. #title-toggle.hasHover:hover,#title-toggle:active {
  5230. background-color: rgba(0,0,0,.75);
  5231. color: #fff
  5232. }
  5233. .co-brand {
  5234. color: rgba(255,255,255,.7);
  5235. font-size: 12px;
  5236. line-height: 14px;
  5237. overflow: hidden;
  5238. position: absolute;
  5239. top: 10px;
  5240. width: -webkit-calc(100% - 65px);
  5241. width: calc(100% - 65px)
  5242. }
  5243. #gui-name {
  5244. font-size: 18px;
  5245. overflow: hidden;
  5246. height: 100%;
  5247. line-height: 18px;
  5248. display: flex;
  5249. align-items: center;
  5250. }
  5251. #gui-name.noCoBrand {
  5252. /* width: 300px; */
  5253. float: left;
  5254. height: 100%;
  5255. }
  5256. .pinTop.left .title-container {
  5257. right: 0;
  5258. margin-right: 0
  5259. }
  5260. .pinTop.left.closed .title-container {
  5261. -webkit-transition: right .4s ease-in-out;
  5262. transition: right .4s ease-in-out;
  5263. right: 100%;
  5264. margin-right: 100%
  5265. }
  5266. .pinTop.left.closed .title-container.meta-toggle.expand,.pinTop.left.closed .title-container.share-link {
  5267. -webkit-transition-delay: .4s;
  5268. transition-delay: .4s
  5269. }
  5270. .pinTop.left .title-container.no-meta {
  5271. -webkit-transition-delay: 0s;
  5272. transition-delay: 0s
  5273. }
  5274. .pinTop.left.closed.open .title-container,.pinTop.left.closed.open .title-container.meta-toggle.expand {
  5275. -webkit-transition-delay: 0s;
  5276. transition-delay: 0s;
  5277. right: 0
  5278. }
  5279. #meta-info {
  5280. position: relative;
  5281. bottom: 110%;
  5282. width: 100%;
  5283. padding: 1px;
  5284. white-space: normal;
  5285. font-weight: 400;
  5286. border-radius: 10px;
  5287. -webkit-transtion: all .4s ease-in-out;
  5288. transition: all .4s ease-in-out;
  5289. border: 12px solid transparent;
  5290. -moz-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Old Firefox */
  5291. -webkit-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Safari and Chrome */
  5292. -o-border-image:url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round; /* Opera */
  5293. border-image: url(http://space3d.4dage.com/SuperLY/images/img_info_bg.png) 10 14 round;
  5294. }
  5295. #meta-info.share-link {
  5296. bottom: calc(100% - 35px)
  5297. }
  5298. #meta-info .jiantou{
  5299. height: 50px;
  5300. background: rgba(0, 0, 0, 0.5);
  5301. line-height: 50px;
  5302. padding: 20px;
  5303. display: flex;
  5304. justify-content: space-evenly;
  5305. align-items: center;
  5306. }
  5307. #meta-info .jiantou img{
  5308. width: 42px;
  5309. cursor: pointer;
  5310. }
  5311. #meta-info,#meta-info * {
  5312. -webkit-touch-callout: all;
  5313. -webkit-user-select: text;
  5314. -khtml-user-select: text;
  5315. -moz-user-select: text;
  5316. -ms-user-select: text;
  5317. user-select: text;
  5318. }
  5319. #meta-info a {
  5320. position: relative;
  5321. z-index: 10;
  5322. pointer-events: auto
  5323. }
  5324. #meta-info #meta-description {
  5325. font-size: 16px;
  5326. line-height: 22px;
  5327. word-wrap: break-word;
  5328. text-align: justify;
  5329. background: rgba(0,0,0,0.5);
  5330. padding: 20px;
  5331. max-height: 400px;
  5332. overflow-x: hidden;
  5333. }
  5334. #meta-info i {
  5335. font-size: 13px
  5336. }
  5337. #meta-info-wrapper {
  5338. width: 530px;
  5339. overflow: hidden;
  5340. position: relative;
  5341. top: 14px;
  5342. }
  5343. #meta-info-wrapper.expand {
  5344. pointer-events: auto
  5345. }
  5346. #call-to-action #pause-overlay {
  5347. height: 100%;
  5348. width: 100%;
  5349. position: absolute
  5350. }
  5351. .contact-info {
  5352. margin-bottom: 12px
  5353. }
  5354. .contact-info div {
  5355. max-width: 320px;
  5356. max-width: calc(100% - 19px);
  5357. white-space: nowrap;
  5358. overflow: hidden;
  5359. display: inline-block;
  5360. margin-top: -3px
  5361. }
  5362. .address {
  5363. width: 100%;
  5364. white-space: nowrap;
  5365. overflow: hidden
  5366. }
  5367. #share-origin hr {
  5368. margin-bottom: 10px;
  5369. border-color: #ccc
  5370. }
  5371. #share-origin>div {
  5372. white-space: nowrap;
  5373. overflow: hidden
  5374. }
  5375. #share-link-wrapper,#share-origin i,#share-origin span {
  5376. display: inline-block;
  5377. float: left
  5378. }
  5379. #share-link-wrapper {
  5380. width: 93%;
  5381. width: calc(100% - 20px);
  5382. line-height: 1em;
  5383. margin-left: .35em;
  5384. display: inline-block;
  5385. overflow: hidden;
  5386. top: 2px
  5387. }
  5388. #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 {
  5389. display: none
  5390. }
  5391. #meta-info.expand {
  5392. bottom: 0
  5393. }
  5394. .pinTop.left.closed #meta-info {
  5395. bottom: 105%
  5396. }
  5397. .pinTop.left.closed.open #meta-info.share-link {
  5398. -webkit-transition-delay: .4s;
  5399. transition-delay: .4s;
  5400. bottom: 100%;
  5401. transform: translate(0,-35px)
  5402. }
  5403. .pinTop.left.closed.open #meta-info.expand {
  5404. -webkit-transition-delay: .4s;
  5405. transition-delay: .4s;
  5406. bottom: 0
  5407. }
  5408. @media only screen and (max-width: 487px) {
  5409. #meta-info,.title-container {
  5410. width:100%
  5411. }
  5412. }
  5413. #call-to-action {
  5414. top: 0;
  5415. text-align: center;
  5416. z-index: 0
  5417. }
  5418. #call-to-action #pause-overlay.playing {
  5419. pointer-events: auto;
  5420. cursor: pointer
  5421. }
  5422. #call-to-action #pause-icon {
  5423. font-size: 45px;
  5424. position: absolute;
  5425. left: 50%;
  5426. top: 50%;
  5427. transform: translate(-50%,-50%) scaleX(1.5);
  5428. text-shadow: 0 0 5px rgba(0,0,0,.9);
  5429. opacity: 0;
  5430. -webkit-transition: all .5s;
  5431. transition: all .5s
  5432. }
  5433. #call-to-action #interaction-modal.fadeIn,#call-to-action #pause-icon.fadeIn {
  5434. opacity: 1;
  5435. pointer-events: auto;
  5436. }
  5437. #call-to-action #interaction-modal {
  5438. position: fixed;
  5439. left: 50%;
  5440. top: 50%;
  5441. transform: translate(-50%,-50%);
  5442. opacity: 0;
  5443. -webkit-transition: all .5s;
  5444. transition: all .5s;
  5445. z-index: 201;
  5446. pointer-events: none;
  5447. }
  5448. #interaction-modal .interaction {
  5449. position: absolute;
  5450. width: 20%;
  5451. margin: 0 auto;
  5452. left: 0;
  5453. right: 0
  5454. }
  5455. #interaction-modal .interaction.left {
  5456. right: 73%
  5457. }
  5458. #interaction-modal.desktop.fr-FR .interaction.left {
  5459. right: 65%
  5460. }
  5461. #interaction-modal .interaction.right {
  5462. left: 73%
  5463. }
  5464. #interaction-modal.desktop.fr-FR .interaction.right {
  5465. left: 65%
  5466. }
  5467. #interaction-modal.ru-RU .interaction {
  5468. width: auto
  5469. }
  5470. #call-to-action #interaction-modal.desktop {
  5471. height: 350px;
  5472. width: 550px;
  5473. border-radius: 10px;
  5474. }
  5475. #interaction-modal.desktop .interaction h2 {
  5476. text-shadow: 0 0 4px rgba(0,0,0,.5);
  5477. font-size: 23px
  5478. }
  5479. #interaction-modal.desktop.floorplan .interaction h2,#interaction-modal.desktop.landing.dollhouse .interaction h2,#interaction-modal.desktop.outdoor .interaction h2 {
  5480. margin-bottom: 10px;
  5481. margin-top: -5px
  5482. }
  5483. #interaction-modal.desktop.de-DE .interaction h2,#interaction-modal.desktop.fr-FR .interaction h2 {
  5484. width: 130%;
  5485. position: relative;
  5486. right: 15%
  5487. }
  5488. #interaction-modal.desktop .tour-title {
  5489. font-size: 28px;
  5490. padding: 18px;
  5491. font-weight: lighter
  5492. }
  5493. #interaction-modal.desktop hr,#interaction-modal.desktop img {
  5494. width:100%;
  5495. height:100%;
  5496. }
  5497. .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; }
  5498. .next-button{ right: 15px; transform: translate(0,-50%) rotate(45deg);}
  5499. .prev-button{ left: 15px; transform: translate(0,-50%) rotate(-135deg);}
  5500. #interaction-modal.desktop .big-image {
  5501. bottom: -122px
  5502. }
  5503. #interaction-modal.desktop .keyboard {
  5504. bottom: -200px
  5505. }
  5506. #interaction-modal.desktop img[src="images/nav_help_mouse_drag_left.png"],#interaction-modal.desktop img[src="images/nav_help_mouse_drag_right.png"] {
  5507. width: 52px
  5508. }
  5509. #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'] {
  5510. width: 50px
  5511. }
  5512. #interaction-modal.desktop img[src='images/nav_help_mouse_position_left.png'],#interaction-modal.desktop img[src='images/nav_help_mouse_position_right.png'] {
  5513. width: 63px
  5514. }
  5515. #interaction-modal.desktop img[src='images/nav_help_mouse_click.png'] {
  5516. width: 60px
  5517. }
  5518. #interaction-modal.desktop img[src='images/nav_help_keyboard_up_down.png'],#interaction-modal.desktop img[src='images/nav_help_inside_key.png'] {
  5519. width: 25px
  5520. }
  5521. #interaction-modal.desktop img[src='images/nav_help_keyboard_up_down.png'] {
  5522. bottom: -215px
  5523. }
  5524. #interaction-modal.desktop img[src='images/Desktop-help-spacebar-2.svg'] {
  5525. width: 70px
  5526. }
  5527. #interaction-modal.desktop .interaction hr {
  5528. width: 45px;
  5529. border: none;
  5530. height: 2px;
  5531. background-color: #fff;
  5532. position: absolute;
  5533. bottom: -166px
  5534. }
  5535. #interaction-modal.desktop.landing.es-MX .interaction {
  5536. width: 25%
  5537. }
  5538. #interaction-modal.desktop.landing.es-MX .interaction h2 {
  5539. font-size: 18px
  5540. }
  5541. #interaction-modal.desktop.landing.de-DE .interaction.middle,#interaction-modal.desktop.landing.es-MX .interaction.middle {
  5542. right: 2.5%
  5543. }
  5544. #interaction-modal.desktop.landing.de-DE .interaction.right,#interaction-modal.desktop.landing.es-MX .interaction.right {
  5545. left: 67%
  5546. }
  5547. #interaction-modal.desktop.fr-FR .interaction h2 {
  5548. font-size: 18px
  5549. }
  5550. #call-to-action #interaction-modal.desktop.small .tour-title {
  5551. font-size: 22px;
  5552. padding: 10px 15px
  5553. }
  5554. #interaction-modal.desktop.ru-RU .interaction h2 {
  5555. font-size: 18px
  5556. }
  5557. #interaction-modal.desktop.outdoor.tour.ru-RU .interaction.right,#interaction-modal.desktop.panorama.tour.ru-RU .interaction.right {
  5558. left: 63%
  5559. }
  5560. #interaction-modal.desktop.outdoor.tour.ru-RU .interaction.middle,#interaction-modal.desktop.panorama.tour.ru-RU .interaction.middle {
  5561. right: 5%
  5562. }
  5563. #interaction-modal.desktop.floorplan.landing.ru-RU .interaction.right,#interaction-modal.desktop.floorplan.tour.ru-RU .interaction.right {
  5564. left: 68%
  5565. }
  5566. #interaction-modal.desktop.floorplan.landing.ru-RU .interaction.middle,#interaction-modal.desktop.floorplan.tour.ru-RU .interaction.middle {
  5567. right: 2.5%
  5568. }
  5569. #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 {
  5570. height: auto;
  5571. width: auto;
  5572. border-radius: 6px
  5573. }
  5574. @media only screen and (min-height: 650px) {
  5575. #call-to-action #pause-icon {
  5576. font-size:60px
  5577. }
  5578. }
  5579. @media only screen and (max-height: 487px),(max-width:620px) {
  5580. #call-to-action #interaction-modal:not(.small).desktop #interaction-modal-inner {
  5581. position: absolute;
  5582. height: auto;
  5583. width: 90%;
  5584. left: 50%;
  5585. top: 50%;
  5586. transform: translate(-50%,-50%)
  5587. }
  5588. }
  5589. #call-to-action #interaction-modal.mobile {
  5590. height: auto;
  5591. width: 95%;
  5592. border-radius: 5px
  5593. }
  5594. #interaction-modal.mobile.interaction {
  5595. top: 15%
  5596. }
  5597. #interaction-modal.mobile .interaction h2 {
  5598. font-size: 15px;
  5599. white-space: nowrap
  5600. }
  5601. #interaction-modal.mobile.dollhouse .interaction h2,#interaction-modal.mobile.floorplan.landing .interaction h2,#interaction-modal.mobile.outdoor .interaction h2 {
  5602. margin-bottom: 5px
  5603. }
  5604. #interaction-modal.mobile .tour-title {
  5605. font-weight: lighter;
  5606. padding: 13px;
  5607. font-size: 17px
  5608. }
  5609. #interaction-modal.mobile img {
  5610. width: 100%;
  5611. }
  5612. #call-to-action #interaction-modal.mobile.fr-FR .interaction {
  5613. width: 26%
  5614. }
  5615. #call-to-action #interaction-modal.mobile.fr-FR h2 {
  5616. font-size: 12px
  5617. }
  5618. #call-to-action #interaction-modal.mobile.fr-FR .interaction.left {
  5619. right: 61%
  5620. }
  5621. #call-to-action #interaction-modal.mobile.fr-FR .interaction.middle {
  5622. left: 2%
  5623. }
  5624. #call-to-action #interaction-modal.mobile.fr-FR .interaction.right {
  5625. left: 65%
  5626. }
  5627. #call-to-action #interaction-modal.mobile.de-DE h2 {
  5628. font-size: 13px
  5629. }
  5630. #call-to-action #interaction-modal.mobile.de-DE .tour-title {
  5631. font-size: 15px
  5632. }
  5633. #call-to-action #interaction-modal.mobile.de-DE .interaction.left {
  5634. right: 64%
  5635. }
  5636. #call-to-action #interaction-modal.mobile.de-DE .interaction.middle {
  5637. right: 3%
  5638. }
  5639. #call-to-action #interaction-modal.mobile.de-DE .interaction.right {
  5640. left: 58%
  5641. }
  5642. #call-to-action #interaction-modal.mobile.es-MX .tour-title {
  5643. font-size: 16px
  5644. }
  5645. #call-to-action #interaction-modal.mobile.outdoor.landing.es-MX .interaction.middle,#call-to-action #interaction-modal.mobile.panorama.landing.es-MX .interaction.middle {
  5646. right: 10%
  5647. }
  5648. #call-to-action #interaction-modal.mobile.outdoor.landing.es-MX .interaction.right,#call-to-action #interaction-modal.mobile.panorama.landing.es-MX .interaction.right {
  5649. width: 40%;
  5650. left: 60%
  5651. }
  5652. #call-to-action #interaction-modal.mobile.landing.es-MX h2 {
  5653. font-size: 13px
  5654. }
  5655. #call-to-action #interaction-modal.mobile.ru-RU .interaction h2 {
  5656. font-size: 12px
  5657. }
  5658. #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 {
  5659. left: 61%
  5660. }
  5661. #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 {
  5662. right: 8%
  5663. }
  5664. #call-to-action #interaction-modal.mobile.tour.jp-JP .interaction.right {
  5665. left: 64%
  5666. }
  5667. #call-to-action #interaction-modal.mobile.tour.jp-JP .interaction.middle {
  5668. right: 3%
  5669. }
  5670. #call-to-action #interaction-modal.mobile.small {
  5671. width: auto;
  5672. height: auto
  5673. }
  5674. #call-to-action #interaction-modal.mobile.small .tour-title {
  5675. font-size: 22px;
  5676. padding: 10px
  5677. }
  5678. .returnToFloors{
  5679. text-align: center;
  5680. border: 2px solid #FFF;
  5681. width: 86px;
  5682. height: 22px;
  5683. color: #FFF;
  5684. font-size: 12px;
  5685. float: left;
  5686. padding: 4px;
  5687. position: fixed;
  5688. top: 10px;
  5689. right: 16px;
  5690. cursor: pointer;
  5691. text-shadow: rgb(0, 0, 0) 0px 0px 5px;
  5692. box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px, rgba(0, 0, 0, 0.5) 0px 0px 5px inset;
  5693. }
  5694. #myCompany.JLogo{ height: 30px;}
  5695. /*洛阳文物列表*/
  5696. .warpper-LY{position: fixed;top: 20px;right: 50px;}
  5697. .warpper-LY a{
  5698. display: inline-block;
  5699. line-height: 1;
  5700. white-space: nowrap;
  5701. cursor: pointer;
  5702. -webkit-appearance: none;
  5703. text-align: center;
  5704. -webkit-box-sizing: border-box;
  5705. box-sizing: border-box;
  5706. outline: none;
  5707. margin: 0;
  5708. -webkit-transition: .1s;
  5709. transition: .1s;
  5710. font-weight: 500;
  5711. -moz-user-select: none;
  5712. -webkit-user-select: none;
  5713. -ms-user-select: none;
  5714. padding: 17px 25px;
  5715. font-size: 18px;
  5716. color: rgb(235,211,155);
  5717. background: url(http://space3d.4dage.com/SuperLY/images/img_LYbtn_bg@2x.png)top left no-repeat;
  5718. background-size: 100% auto;
  5719. }
  5720. .region-msg{
  5721. display: none;
  5722. position: absolute;
  5723. right: 11%;
  5724. bottom: 10px;
  5725. width: 150px;
  5726. height: 102px;
  5727. overflow: hidden;
  5728. }
  5729. .region-name{
  5730. height: 100%;
  5731. position: absolute;
  5732. z-index: 2;
  5733. left: 0;
  5734. top: 0;
  5735. animation: superLY-Flag 1.6s steps(6) infinite;
  5736. }
  5737. span.nav-icon-name{
  5738. font-size: 13px;
  5739. margin-top: 4px;
  5740. }
  5741. /* 旗子的逐幀动画 */
  5742. @-webkit-keyframes superLY-Flag{
  5743. 0%{
  5744. -webkit-transform: translateX(0);
  5745. }
  5746. 100%{
  5747. -webkit-transform: translateX(-900px);
  5748. }
  5749. }
  5750. @keyframes superLY-Flag{
  5751. 0%{
  5752. -webkit-transform: translateX(0);
  5753. transform: translateX(0);
  5754. }
  5755. 100%{
  5756. -webkit-transform: translateX(-900px);
  5757. transform: translateX(-900px);
  5758. }
  5759. }
  5760. ::-webkit-scrollbar-track/*滑动轨道*/
  5761. {
  5762. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  5763. border-radius: 0px;
  5764. background: rgba(0,0,0,0.1);
  5765. }
  5766. ::-webkit-scrollbar { /*滑块大小*/
  5767. width:8px;
  5768. height:13px;
  5769. }
  5770. ::-webkit-scrollbar-thumb/*滑块*/
  5771. {
  5772. border-radius: 5px;
  5773. -webkit-box-shadow: inset 0 0 5px rgba(192,192,192,0.2);
  5774. background: rgba(192,192,192,0.2);
  5775. }
  5776. ::-webkit-scrollbar-thumb:hover/*滑块效果*/
  5777. {
  5778. border-radius: 5px;
  5779. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  5780. background: rgba(0,0,0,0.4);
  5781. }
  5782. #closepop {
  5783. background: url(http://space3d.4dage.com/SuperLY/images/close.png) no-repeat;
  5784. width: 40px;
  5785. height: 40px;
  5786. cursor: pointer;
  5787. position: absolute;
  5788. right: 30px;
  5789. top: 30px;
  5790. text-indent: -999em;
  5791. background-size: 100% 100%;
  5792. }
  5793. @media only screen and (max-width : 1000px) {
  5794. .progressbar{ width: 60%; }
  5795. .warpper-LY{ position: fixed; top: 60px; right: 5px;}
  5796. }
  5797. @media only screen and (max-width : 700px) {
  5798. .progressbar{ width: 65%; }
  5799. .returnToFloors{ top: 60px; }
  5800. #myCompany.JLogo{ height: 20px;}
  5801. }
  5802. @media only screen and (max-width: 680px) {
  5803. .pinTop.left {
  5804. left: 50%;
  5805. transform: translateX(-50%);
  5806. align-items: center;
  5807. }
  5808. .title-row{
  5809. justify-content:center;
  5810. }
  5811. }
  5812. @media only screen and (max-width: 600px) {
  5813. /* #gui-modes-map >div[rel]:hover,#play:hover{ background:transparent; } */
  5814. .pinBottom.right .ui-icon{ margin-right: 5px; }
  5815. .pinBottom.right,.pinBottom.left{bottom: 5px;}
  5816. .pinBottom.left {left:5px;}
  5817. .viewContainer,#gui-modes-map{ display: flex; flex-direction: column; }
  5818. #gui-modes-map >div[rel]{margin-bottom: 15px;}
  5819. /* #gui-modes-map >div[rel]{width:64px;} */
  5820. .progressbar{ width: 70%; }
  5821. .gui-floor-number,.tourSpinner{ left: -0.4px;}
  5822. .gui-floor{ float: none; margin-bottom: 5px; }
  5823. .gui-floor .container{right: 0; left: auto;}
  5824. #call-to-action #interaction-modal.desktop{ width: 100%; height: auto; }
  5825. }
  5826. @media only screen and (max-width: 370px) {
  5827. #gui-name{ font-size: 16px;}
  5828. #meta-info-wrapper{ width: 100vw;}
  5829. #meta-info{ font-size: 12px;}
  5830. }
  5831. @media only screen and (max-width: 330px) {
  5832. #gui-name{ font-size: 14px;}
  5833. }