sceen2.css 146 KB

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