style.bhouse.css 127 KB

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