style.bhouse.css 106 KB

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