style.bhouse.css 106 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441
  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. }
  1335. .bhouseweb_loc_sec02_card .slide_item_text p {
  1336. color: #fff;
  1337. letter-spacing: 1px;
  1338. text-align: right;
  1339. }
  1340. .img-height-vw {
  1341. -o-object-fit: contain;
  1342. object-fit: contain;
  1343. height: 35vw !important;
  1344. }
  1345. @media (max-width: 767px) {
  1346. .img-height-vw {
  1347. height: 65vw !important;
  1348. }
  1349. }
  1350. /* 成家故事作品集-collection end */
  1351. /* 成家故事作品集內頁-simple_korean_style_hous start */
  1352. .bg-portfolio .bg-img {
  1353. background-image: url(/img/home/X-1-02.png);
  1354. }
  1355. .bg-serve .bg-img {
  1356. background-image: url(/img/home/X-1-03.png);
  1357. }
  1358. .bg-qa .bg-img {
  1359. background-image: url(/img/home/X-1-04.png);
  1360. }
  1361. .bg-store .bg-img {
  1362. background-image: url(/img/home/X-1-05.png);
  1363. }
  1364. .icon-box img {
  1365. margin-top: 0px;
  1366. width: 35px;
  1367. }
  1368. .style_house_ads {
  1369. padding: 15px;
  1370. background: #fff;
  1371. }
  1372. @media screen and (max-width: 991px) {
  1373. .style_house_ads {
  1374. padding-top: 13px;
  1375. }
  1376. }
  1377. .style_house_ads .style_house_text {
  1378. margin: 0 auto;
  1379. }
  1380. @media screen and (max-width: 767px) {
  1381. .style_house_ads .style_house_text {
  1382. width: 95%;
  1383. }
  1384. }
  1385. .style_house_line {
  1386. background: grey;
  1387. height: 1px;
  1388. opacity: 1 !important;
  1389. }
  1390. .title_underline {
  1391. border-bottom: 2px #fff solid;
  1392. padding-bottom: 5px;
  1393. }
  1394. .style_house_banner img {
  1395. width: 100%;
  1396. height: 80vh;
  1397. -o-object-fit: cover;
  1398. object-fit: cover;
  1399. }
  1400. @media screen and (max-width: 767px) {
  1401. .style_house_banner img {
  1402. height: 300px;
  1403. }
  1404. }
  1405. .style_house_title {
  1406. color: #4c660b;
  1407. font-size: 1.4rem;
  1408. letter-spacing: 3px;
  1409. margin-bottom: 25px;
  1410. font-weight: 700;
  1411. text-align: center;
  1412. }
  1413. @media screen and (max-width: 767px) {
  1414. .style_house_title {
  1415. font-size: 1rem;
  1416. }
  1417. }
  1418. .style_house_subtitle {
  1419. color: #4c660b;
  1420. font-size: 1.2rem;
  1421. font-weight: 600;
  1422. letter-spacing: 3px;
  1423. font-weight: 700;
  1424. }
  1425. .style_house_content {
  1426. width: 50%;
  1427. margin: 0 auto;
  1428. }
  1429. @media screen and (max-width: 767px) {
  1430. .style_house_content {
  1431. width: 95%;
  1432. }
  1433. }
  1434. .style_house_sec01 {
  1435. margin-top: 100px;
  1436. text-align: center;
  1437. margin-bottom: 50px;
  1438. }
  1439. @media screen and (max-width: 767px) {
  1440. .style_house_sec01 {
  1441. margin-top: 30px;
  1442. }
  1443. }
  1444. .style_house_sec01 h3 {
  1445. font-size: 1.5rem;
  1446. font-weight: 700;
  1447. letter-spacing: 2px;
  1448. }
  1449. @media screen and (max-width: 767px) {
  1450. .style_house_sec01 h3 {
  1451. font-size: 1rem;
  1452. }
  1453. }
  1454. .style_house_sec01 p {
  1455. color: #808e4c;
  1456. font-weight: 500;
  1457. letter-spacing: 2px;
  1458. }
  1459. @media screen and (max-width: 767px) {
  1460. .style_house_sec01 p {
  1461. font-size: 0.6rem;
  1462. }
  1463. }
  1464. .style_house_sec01 .style_house_sec01_box {
  1465. margin-top: 30px;
  1466. }
  1467. @media screen and (max-width: 767px) {
  1468. .style_house_sec01 .style_house_sec01_box {
  1469. margin-top: 10px;
  1470. }
  1471. }
  1472. .style_house_sec01 .style_house_sec01_box-1 {
  1473. margin: auto;
  1474. }
  1475. .style_house_sec02 {
  1476. margin-top: 50px;
  1477. margin-bottom: 35px;
  1478. }
  1479. .style_house_sec02 .style_house_sec02_content {
  1480. margin-top: 50px;
  1481. }
  1482. @media screen and (max-width: 767px) {
  1483. .style_house_sec02 .style_house_sec02_content {
  1484. margin-top: 10px;
  1485. }
  1486. }
  1487. .style_house_sec02_slide .slick-prev {
  1488. top: 50%;
  1489. background: #fff;
  1490. left: 25px;
  1491. z-index: 1;
  1492. padding-top: 2.5px;
  1493. background: #fff;
  1494. width: 32px;
  1495. height: 32px;
  1496. right: 25px;
  1497. z-index: 1;
  1498. border-radius: 100%;
  1499. }
  1500. .style_house_sec02_slide .slick-prev:before {
  1501. font-family: "slick";
  1502. font-size: 32px;
  1503. line-height: 1;
  1504. color: rgba(0, 0, 0, 0.54);
  1505. }
  1506. .style_house_sec02_slide .slick-next:before {
  1507. content: "→";
  1508. font-family: "slick";
  1509. font-size: 32px;
  1510. line-height: 1;
  1511. color: rgba(0, 0, 0, 0.54);
  1512. }
  1513. .style_house_sec02_slide .slick-next {
  1514. top: 50%;
  1515. padding-top: 2.5px;
  1516. background: #fff;
  1517. width: 32px;
  1518. height: 32px;
  1519. right: 25px;
  1520. z-index: 1;
  1521. border-radius: 100%;
  1522. }
  1523. .style_house_sec02 .slick-slide {
  1524. padding: 20px 0;
  1525. }
  1526. .style_house_sec02 .slide-box {
  1527. width: 100%;
  1528. height: 40vw;
  1529. display: flex !important;
  1530. flex-direction: column;
  1531. justify-content: center;
  1532. }
  1533. @media screen and (max-width: 991px) {
  1534. .style_house_sec02 .slide-box {
  1535. height: 50vw;
  1536. }
  1537. }
  1538. @media screen and (max-width: 767px) {
  1539. .style_house_sec02 .slide-box {
  1540. height: 80vw;
  1541. }
  1542. }
  1543. @media screen and (max-width: 576px) {
  1544. .style_house_sec02 .slide-box {
  1545. height: 100vw;
  1546. }
  1547. }
  1548. .style_house_sec02 .style_house_sec02_slide {
  1549. margin-top: 30px;
  1550. }
  1551. .style_house_sec02 .style_house_sec02_slide .slide_item_text {
  1552. background-color: rgba(128, 143, 76, 0.8);
  1553. padding: 15px;
  1554. }
  1555. .style_house_sec02 .style_house_sec02_slide .slide_item_text p {
  1556. color: #fff;
  1557. padding: 0px 20px;
  1558. }
  1559. .style_house_sec02 p {
  1560. margin-bottom: 0;
  1561. font-size: 16px;
  1562. line-height: 28px;
  1563. letter-spacing: 2px;
  1564. font-weight: 500;
  1565. }
  1566. @media screen and (max-width: 767px) {
  1567. .style_house_sec02 p {
  1568. font-size: 14px;
  1569. }
  1570. }
  1571. @media screen and (max-width: 767px) {
  1572. .style_house_sec02 p {
  1573. font-size: 1rem;
  1574. }
  1575. }
  1576. .style_house_sec02 .style_house_sec02_slide_list {
  1577. margin-top: -50px;
  1578. }
  1579. .style_house_sec02 .style_house_sec02_slide_list .sec02_slide_item {
  1580. padding: 5px;
  1581. }
  1582. .style_house_sec02_slide .slick-dots {
  1583. display: none !important;
  1584. }
  1585. .style_house_sec03 {
  1586. margin-top: 35px;
  1587. letter-spacing: 1px;
  1588. }
  1589. .style_house_sec03 .table1 {
  1590. margin-top: 30px;
  1591. margin-bottom: 50px;
  1592. font-weight: 600;
  1593. border-color: grey;
  1594. border-spacing: 2px;
  1595. }
  1596. .style_house_sec03 .table1 th {
  1597. font-weight: 600;
  1598. width: 15%;
  1599. padding-left: 15px;
  1600. padding-top: 10px;
  1601. font-weight: 400;
  1602. }
  1603. @media screen and (max-width: 767px) {
  1604. .style_house_sec03 .table1 th {
  1605. width: 15%;
  1606. font-size: 1rem;
  1607. }
  1608. }
  1609. .style_house_sec03 .table1 td {
  1610. font-weight: 600;
  1611. padding: 15px;
  1612. }
  1613. .style_house_sec03 .table1 td p {
  1614. font-weight: 400 !important;
  1615. }
  1616. @media screen and (max-width: 767px) {
  1617. .style_house_sec03 .table1 td {
  1618. padding: 5px;
  1619. font-size: 1rem;
  1620. font-weight: 500 !important;
  1621. }
  1622. }
  1623. .style_house_sec03 .table2 {
  1624. margin-top: 30px;
  1625. margin-bottom: 50px;
  1626. font-weight: 600;
  1627. border-color: grey;
  1628. border-spacing: 2px;
  1629. }
  1630. .style_house_sec03 .table2 th {
  1631. width: 15%;
  1632. padding-left: 15px;
  1633. padding-top: 10px;
  1634. font-weight: 500 !important;
  1635. }
  1636. .style_house_sec03 .table2 td {
  1637. font-weight: 400;
  1638. }
  1639. @media screen and (max-width: 767px) {
  1640. .style_house_sec03 .table2 th {
  1641. width: 25%;
  1642. font-size: 1rem;
  1643. font-weight: 500 !important;
  1644. }
  1645. }
  1646. .style_house_sec03 .table2 td p {
  1647. margin-bottom: 0;
  1648. line-height: 2;
  1649. font-weight: 600;
  1650. font-weight: 500 !important;
  1651. }
  1652. @media screen and (max-width: 767px) {
  1653. .style_house_sec03 .table2 td p {
  1654. font-size: 1rem;
  1655. }
  1656. }
  1657. .style_house_sec04 {
  1658. margin-top: 50px;
  1659. margin-bottom: 50px;
  1660. }
  1661. @media screen and (max-width: 767px) {
  1662. .style_house_sec04 {
  1663. margin-top: 30px;
  1664. }
  1665. }
  1666. .style_house_sec04 p {
  1667. font-weight: 500;
  1668. }
  1669. .style_house_sec05 {
  1670. margin-top: 50px;
  1671. margin-bottom: 100px;
  1672. }
  1673. @media screen and (max-width: 767px) {
  1674. .style_house_sec05 {
  1675. margin-bottom: 30px;
  1676. margin-top: 30px;
  1677. }
  1678. }
  1679. .style_house_sec05_box a {
  1680. text-decoration: none;
  1681. padding: 8px 5px;
  1682. background: #808e4c;
  1683. color: #fff;
  1684. margin-right: 5px;
  1685. transition: 0.3s;
  1686. border: 1px solid #808e4c;
  1687. }
  1688. .style_house_sec05_box a:hover {
  1689. border: 1px solid #808e4c;
  1690. background: #fff;
  1691. color: #808e4c;
  1692. }
  1693. .style_house_sec06 {
  1694. margin: 30px 0;
  1695. }
  1696. /* 成家故事作品集內頁-simple_korean_style_hous end */
  1697. /* 成家設計服務-room_planner start */
  1698. /* 成家設計服務-room_planner start */
  1699. @media screen and (max-width: 1024px) {
  1700. .room-planner-process-destop {
  1701. display: none;
  1702. }
  1703. }
  1704. @media screen and (min-width: 1025px) {
  1705. .room-planner-process-mb {
  1706. display: none;
  1707. }
  1708. }
  1709. .f-78B142-20 {
  1710. color: #78b142;
  1711. font-size: 20px;
  1712. font-weight: 700;
  1713. letter-spacing: 1.5px;
  1714. }
  1715. .f-2A2A2A-20 {
  1716. font-size: 20px;
  1717. font-weight: 500;
  1718. color: #2a2a2a;
  1719. letter-spacing: 1.5px;
  1720. }
  1721. .f-2A2A2A-16 {
  1722. font-size: 16px;
  1723. font-weight: 500;
  1724. color: #2a2a2a;
  1725. letter-spacing: 1.5px;
  1726. }
  1727. .f-2A2A2A-16-400 {
  1728. font-size: 16px;
  1729. color: #2b2b2b;
  1730. letter-spacing: 1.5px;
  1731. }
  1732. .f-fff-18 {
  1733. font-weight: 700;
  1734. color: #fff;
  1735. font-size: 18px;
  1736. }
  1737. .f-649E2E-24 {
  1738. font-weight: 700;
  1739. color: #649e2e;
  1740. font-size: 24px;
  1741. }
  1742. .f-649E2E-18 {
  1743. font-weight: 700;
  1744. color: #649e2e;
  1745. font-size: 18px;
  1746. }
  1747. .f-649E2E-20-q {
  1748. font-family: Quicksand;
  1749. font-weight: 700;
  1750. color: #649e2e;
  1751. font-size: 20px;
  1752. }
  1753. .f-2b2b2b-18-q {
  1754. font-family: Quicksand;
  1755. font-weight: 300;
  1756. color: #2b2b2b;
  1757. font-size: 18px;
  1758. }
  1759. .room-planner-service {
  1760. font-weight: 500;
  1761. font-size: 28px;
  1762. letter-spacing: 2%;
  1763. }
  1764. @media screen and (max-width: 767px) {
  1765. .room-planner-service {
  1766. text-align: center;
  1767. }
  1768. }
  1769. .room-planner-service mark {
  1770. padding: 2px 1px;
  1771. border-radius: 2%;
  1772. color: #2a2a2a;
  1773. font-weight: 500;
  1774. background: linear-gradient(#fff 30%, #f0f6dd 70%);
  1775. }
  1776. .bg-ruler-img {
  1777. margin-top: -55px;
  1778. }
  1779. .room-planner-service2 {
  1780. font-weight: 500;
  1781. font-size: 28px;
  1782. }
  1783. .room-planner-service2 mark {
  1784. padding: 2px 1px;
  1785. border-radius: 2%;
  1786. color: #000;
  1787. font-weight: 500;
  1788. background: linear-gradient(#f0f6dd 50%, #e0ee79 100%);
  1789. }
  1790. .room-planner-service-no {
  1791. font-family: "Quicksand", sans-serif;
  1792. font-size: 36px;
  1793. color: #649e2e;
  1794. }
  1795. .room-planner-service-no-28 {
  1796. font-family: "Quicksand", sans-serif;
  1797. font-size: 28px;
  1798. color: #649e2e;
  1799. }
  1800. .room-planner-service-icon-box {
  1801. margin-top: 30px;
  1802. width: 650px;
  1803. padding: 0 20px;
  1804. text-align: center;
  1805. }
  1806. @media screen and (max-width: 767px) {
  1807. .room-planner-service-icon-box {
  1808. width: 80%;
  1809. margin: 30px auto;
  1810. padding: 0 10px;
  1811. }
  1812. }
  1813. .room-planner-service-icon-box2 {
  1814. margin-top: 30px;
  1815. width: 650px;
  1816. padding: 0 20px;
  1817. text-align: center;
  1818. }
  1819. @media screen and (max-width: 767px) {
  1820. .room-planner-service-icon-box2 p {
  1821. color: #2b2b2b !important;
  1822. }
  1823. }
  1824. @media screen and (max-width: 767px) {
  1825. .room-planner-service-icon-box2 {
  1826. width: 85%;
  1827. margin: 30px auto;
  1828. padding: 0 10px;
  1829. }
  1830. }
  1831. .room-planner-service-icon-box2 .icon-radius-img04 {
  1832. margin-top: 10px;
  1833. width: 68px;
  1834. }
  1835. @media screen and (max-width: 767px) {
  1836. .room-planner-service-icon-box2 .icon-radius-img04 {
  1837. margin-top: 15px;
  1838. width: 41px;
  1839. }
  1840. }
  1841. .room-planner-service-icon-box2 .icon-radius-img05 {
  1842. margin-top: 10px;
  1843. width: 58px;
  1844. }
  1845. @media screen and (max-width: 767px) {
  1846. .room-planner-service-icon-box2 .icon-radius-img05 {
  1847. margin-top: 15px;
  1848. width: 35px;
  1849. }
  1850. }
  1851. .room-planner-service-icon-box2 .icon-radius-img06 {
  1852. margin-top: 10px;
  1853. width: 66px;
  1854. }
  1855. @media screen and (max-width: 767px) {
  1856. .room-planner-service-icon-box2 .icon-radius-img06 {
  1857. width: 40px;
  1858. }
  1859. }
  1860. @media screen and (max-width: 767px) {
  1861. .room-planner-service-icon-box .room-planner-service-icon-box-item,
  1862. .room-planner-service-icon-box2 .room-planner-service-icon-box-item {
  1863. margin-top: 15px;
  1864. }
  1865. }
  1866. .room-planner-service-icon-box .icon-radius-text,
  1867. .room-planner-service-icon-box2 .icon-radius-text {
  1868. color: #78b142;
  1869. font-size: 20px;
  1870. font-weight: 700;
  1871. margin-top: 15px;
  1872. }
  1873. .room-planner-service-icon-box .icon-radius,
  1874. .room-planner-service-icon-box2 .icon-radius {
  1875. border: 1px solid #e0ee79;
  1876. border-radius: 100%;
  1877. padding: 20px;
  1878. width: 120px;
  1879. height: 120px;
  1880. margin: 0 auto;
  1881. }
  1882. @media screen and (max-width: 767px) {
  1883. .room-planner-service-icon-box .icon-radius,
  1884. .room-planner-service-icon-box2 .icon-radius {
  1885. width: 72px;
  1886. height: 72px;
  1887. padding: 5px;
  1888. }
  1889. }
  1890. .room-planner-service-icon-box .icon-radius img,
  1891. .room-planner-service-icon-box2 .icon-radius img {
  1892. height: auto;
  1893. -o-object-fit: cover;
  1894. object-fit: cover;
  1895. }
  1896. .room-planner-service-icon-box .icon-radius .icon-radius-img01,
  1897. .room-planner-service-icon-box2 .icon-radius .icon-radius-img01 {
  1898. margin-top: 10px;
  1899. width: 55px;
  1900. }
  1901. @media screen and (max-width: 767px) {
  1902. .room-planner-service-icon-box .icon-radius .icon-radius-img01,
  1903. .room-planner-service-icon-box2 .icon-radius .icon-radius-img01 {
  1904. margin-top: 15px;
  1905. width: 33px;
  1906. }
  1907. }
  1908. .room-planner-service-icon-box .icon-radius .icon-radius-img02,
  1909. .room-planner-service-icon-box2 .icon-radius .icon-radius-img02 {
  1910. margin-top: 10px;
  1911. width: 71px;
  1912. }
  1913. @media screen and (max-width: 767px) {
  1914. .room-planner-service-icon-box .icon-radius .icon-radius-img02,
  1915. .room-planner-service-icon-box2 .icon-radius .icon-radius-img02 {
  1916. width: 42px;
  1917. }
  1918. }
  1919. .room-planner-service-icon-box .icon-radius .icon-radius-img03,
  1920. .room-planner-service-icon-box2 .icon-radius .icon-radius-img03 {
  1921. margin-top: 10px;
  1922. width: 56px;
  1923. }
  1924. @media screen and (max-width: 767px) {
  1925. .room-planner-service-icon-box .icon-radius .icon-radius-img03,
  1926. .room-planner-service-icon-box2 .icon-radius .icon-radius-img03 {
  1927. width: 33.6px;
  1928. }
  1929. }
  1930. .room-planner-process {
  1931. position: relative;
  1932. background: #f0f6dd;
  1933. padding: 100px 0;
  1934. }
  1935. @media screen and (max-width: 767px) {
  1936. .room-planner-process {
  1937. margin-top: 50px;
  1938. padding: 15px 0;
  1939. }
  1940. }
  1941. .room-planner-process .room-planner-process-house {
  1942. position: absolute;
  1943. left: 100px;
  1944. top: -100px;
  1945. width: 199px;
  1946. }
  1947. @media screen and (max-width: 1024px) {
  1948. .room-planner-process .room-planner-process-house {
  1949. width: 150px;
  1950. top: -50px;
  1951. left: 50px;
  1952. }
  1953. }
  1954. @media screen and (max-width: 767px) {
  1955. .room-planner-process .room-planner-process-house {
  1956. left: 100px;
  1957. top: -100px;
  1958. width: 199px;
  1959. }
  1960. }
  1961. .room-planner-process .room-planner-process-star-green {
  1962. position: absolute;
  1963. left: 100px;
  1964. top: -70px;
  1965. -webkit-animation-name: star;
  1966. animation-name: star;
  1967. -webkit-animation-duration: 1s;
  1968. animation-duration: 1s;
  1969. -webkit-animation-delay: 0;
  1970. animation-delay: 0;
  1971. -webkit-animation-iteration-count: infinite;
  1972. animation-iteration-count: infinite;
  1973. -webkit-animation-direction: alternate;
  1974. animation-direction: alternate;
  1975. -webkit-animation-timing-function: ease-in-out;
  1976. animation-timing-function: ease-in-out;
  1977. }
  1978. @media screen and (max-width: 1024px) {
  1979. .room-planner-process .room-planner-process-star-green {
  1980. left: 50px;
  1981. top: -50px;
  1982. }
  1983. }
  1984. @media screen and (max-width: 767px) {
  1985. .room-planner-process .room-planner-process-star-green {
  1986. left: 100px;
  1987. top: -70px;
  1988. }
  1989. }
  1990. .room-planner-process .room-planner-process-star-yellow {
  1991. position: absolute;
  1992. left: 300px;
  1993. top: -100px;
  1994. -webkit-animation-name: star;
  1995. animation-name: star;
  1996. -webkit-animation-duration: 1s;
  1997. animation-duration: 1s;
  1998. -webkit-animation-delay: 0;
  1999. animation-delay: 0;
  2000. -webkit-animation-iteration-count: infinite;
  2001. animation-iteration-count: infinite;
  2002. animation-direction: alternate-reverse;
  2003. -webkit-animation-timing-function: linear;
  2004. animation-timing-function: linear;
  2005. }
  2006. @media screen and (max-width: 1024px) {
  2007. .room-planner-process .room-planner-process-star-yellow {
  2008. left: 210px;
  2009. top: -50px;
  2010. }
  2011. }
  2012. @media screen and (max-width: 767px) {
  2013. .room-planner-process .room-planner-process-star-yellow {
  2014. left: 300px;
  2015. top: -100px;
  2016. }
  2017. }
  2018. .room-planner-process .room-planner-process-ruler2 {
  2019. width: 118px;
  2020. position: absolute;
  2021. top: -70px;
  2022. right: 100px;
  2023. }
  2024. @media screen and (max-width: 1024px) {
  2025. .room-planner-process .room-planner-process-ruler2 {
  2026. width: 100px;
  2027. top: -50px;
  2028. right: 50px;
  2029. }
  2030. }
  2031. @media screen and (max-width: 767px) {
  2032. .room-planner-process .room-planner-process-ruler2 {
  2033. top: 580px;
  2034. right: 20px;
  2035. width: 118px;
  2036. }
  2037. }
  2038. .room-planner-process .room-planner-process-box {
  2039. width: 60%;
  2040. margin: 0 auto;
  2041. position: relative;
  2042. }
  2043. @media screen and (max-width: 1199px) {
  2044. .room-planner-process .room-planner-process-box {
  2045. width: 65%;
  2046. }
  2047. }
  2048. @media screen and (max-width: 1024px) {
  2049. .room-planner-process .room-planner-process-box {
  2050. width: 80%;
  2051. }
  2052. }
  2053. .room-planner-process .room-planner-process-box .room-planner-process-box_line_01 {
  2054. position: absolute;
  2055. width: 46vw;
  2056. top: 40px;
  2057. right: 100px;
  2058. }
  2059. @media screen and (min-width: 2500px) {
  2060. .room-planner-process .room-planner-process-box .room-planner-process-box_line_01 {
  2061. right: 200px;
  2062. }
  2063. }
  2064. @media screen and (max-width: 1024px) {
  2065. .room-planner-process .room-planner-process-box .room-planner-process-box_line_01 {
  2066. width: 60vw;
  2067. }
  2068. }
  2069. @media screen and (max-width: 767px) {
  2070. .room-planner-process .room-planner-process-box .room-planner-process-box_line_01 {
  2071. display: none;
  2072. }
  2073. }
  2074. @media screen and (max-width: 767px) {
  2075. .room-planner-process .room-planner-process-box {
  2076. width: 90%;
  2077. margin-top: 80px;
  2078. }
  2079. }
  2080. @media screen and (max-width: 375px) {
  2081. .room-planner-process .room-planner-process-box {
  2082. width: 90%;
  2083. }
  2084. }
  2085. .room-planner-process .room-planner-process-box .col-6 {
  2086. position: relative;
  2087. }
  2088. .room-planner-process .room-planner-process-box .col-6 .room-planner-process-box_mb_line {
  2089. display: none;
  2090. background-repeat: no-repeat;
  2091. background-size: contain;
  2092. background-image: url(/img/room_planner/mb_line01.svg);
  2093. width: 40vw;
  2094. position: absolute;
  2095. top: 32%;
  2096. left: 60%;
  2097. height: 3px;
  2098. z-index: 10px;
  2099. }
  2100. @media screen and (max-width: 767px) {
  2101. .room-planner-process .room-planner-process-box .col-6 .room-planner-process-box_mb_line {
  2102. display: block;
  2103. }
  2104. }
  2105. .room-planner-process .room-planner-process-box .col-6 .room-planner-process-box_mb_line2 {
  2106. display: none;
  2107. background-repeat: no-repeat;
  2108. background-size: contain;
  2109. background-image: url(/img/room_planner/mb_line02.svg);
  2110. width: 100%;
  2111. position: absolute;
  2112. top: 90%;
  2113. left: -50%;
  2114. height: 125px;
  2115. z-index: 10px;
  2116. }
  2117. @media screen and (max-width: 767px) {
  2118. .room-planner-process .room-planner-process-box .col-6 .room-planner-process-box_mb_line2 {
  2119. display: block;
  2120. }
  2121. }
  2122. @media screen and (max-width: 767px) {
  2123. .room-planner-process .room-planner-process-box .col-6 {
  2124. margin-bottom: 50px;
  2125. }
  2126. }
  2127. .room-planner-process .room-planner-process-box .room-planner-process-icon-number {
  2128. position: absolute;
  2129. right: -5px;
  2130. top: -35px;
  2131. font-family: "Quicksand", sans-serif;
  2132. font-size: 40px;
  2133. color: #fff;
  2134. -webkit-text-stroke: 2px #78b142;
  2135. z-index: 13;
  2136. }
  2137. @media screen and (max-width: 767px) {
  2138. .room-planner-process .room-planner-process-box .room-planner-process-icon-number {
  2139. right: 30px;
  2140. }
  2141. }
  2142. .room-planner-process .room-planner-process-box .room-planner-process-icon {
  2143. position: relative;
  2144. z-index: 12;
  2145. padding: 15px;
  2146. background: #fff;
  2147. border-radius: 16px;
  2148. width: 90px;
  2149. height: 90px;
  2150. margin: 0 auto;
  2151. text-align: center;
  2152. cursor: pointer;
  2153. }
  2154. .room-planner-process .room-planner-process-box .room-planner-process-icon img {
  2155. height: auto;
  2156. -o-object-fit: cover;
  2157. object-fit: cover;
  2158. }
  2159. .room-planner-process .room-planner-process-box .room-planner-process-icon-text {
  2160. margin-top: 10px;
  2161. font-weight: 500;
  2162. font-size: 16px;
  2163. color: #000;
  2164. text-align: center;
  2165. }
  2166. .bg-F0F6DD {
  2167. background: #f0f6dd;
  2168. }
  2169. @media screen and (max-width: 767px) {
  2170. .tree2-img {
  2171. display: none;
  2172. }
  2173. }
  2174. .room_planner-sales-service {
  2175. margin-top: 30px;
  2176. }
  2177. .room_planner-sales-service-box {
  2178. width: 77%;
  2179. margin: 30px auto;
  2180. padding: 50px 0;
  2181. }
  2182. @media screen and (max-width: 1024px) {
  2183. .room_planner-sales-service-box {
  2184. width: 95%;
  2185. }
  2186. }
  2187. @media screen and (max-width: 767px) {
  2188. .room_planner-sales-service-box {
  2189. width: 100%;
  2190. margin: 0 auto;
  2191. }
  2192. }
  2193. .room_planner-sales-service-box .room-planner-service-content {
  2194. margin-top: 50px;
  2195. height: 188px;
  2196. }
  2197. @media screen and (min-width: 1441px) {
  2198. .room_planner-sales-service-box .room-planner-service-content {
  2199. width: 90%;
  2200. margin: 50px auto;
  2201. }
  2202. }
  2203. .room_planner-sales-service-box .room-planner-service-content img {
  2204. width: 21px;
  2205. height: 21px;
  2206. }
  2207. @media screen and (max-width: 767px) {
  2208. .room_planner-sales-service-box .room-planner-service-content {
  2209. width: 60%;
  2210. margin: 50px auto;
  2211. }
  2212. }
  2213. .room_planner-sales-service-box .room-planner-service-content p {
  2214. margin-bottom: 0.9rem;
  2215. }
  2216. .divider {
  2217. width: 1px;
  2218. height: 350px !important;
  2219. border-left: 4px dotted #e0ee79;
  2220. position: relative;
  2221. }
  2222. @media screen and (max-width: 767px) {
  2223. .divider {
  2224. display: none;
  2225. }
  2226. }
  2227. @media screen and (min-width: 1024px) {
  2228. #room-planner-service-5-service-inf2 {
  2229. height: 180px;
  2230. }
  2231. }
  2232. .room-planner-service-5-service-inf ul {
  2233. list-style: none;
  2234. }
  2235. .room-planner-service-5-service-inf li {
  2236. font-size: 16px;
  2237. font-weight: 500;
  2238. color: #2a2a2a;
  2239. letter-spacing: 1.5px;
  2240. line-height: 2;
  2241. }
  2242. .room-planner-service-5-service-inf li::before {
  2243. content: "";
  2244. display: inline-block;
  2245. width: 8px;
  2246. height: 8px;
  2247. border-radius: 7.5px;
  2248. background-color: #e0ee79;
  2249. margin-right: 8px;
  2250. margin-left: -2em;
  2251. }
  2252. .room_planner-sales-service-left-text {
  2253. margin-top: 30px;
  2254. }
  2255. @media screen and (max-width: 1024px) {
  2256. .room_planner-sales-service-left-text {
  2257. margin-top: 50px;
  2258. }
  2259. }
  2260. @media screen and (max-width: 767px) {
  2261. .room_planner-sales-service-left-text {
  2262. margin-top: 30px;
  2263. }
  2264. }
  2265. .room_planner-sales-service-right-text {
  2266. margin-top: 50px;
  2267. }
  2268. @media screen and (max-width: 1024px) {
  2269. .room_planner-sales-service-right-text {
  2270. margin-top: 0;
  2271. }
  2272. }
  2273. @media screen and (max-width: 767px) {
  2274. .room_planner-sales-service-right-text {
  2275. margin-top: 50px;
  2276. }
  2277. }
  2278. .room_planner-sales-service-CTA {
  2279. width: 160px;
  2280. height: 50px;
  2281. border-radius: 16px;
  2282. background: #78b142;
  2283. background-image: url(/img/room_planner/icon.png);
  2284. background-repeat: no-repeat;
  2285. background-size: 14px 14px;
  2286. background-position: right 28px center;
  2287. transition: all 300ms ease-in-out;
  2288. box-shadow: 3px 5px #f0f6dd;
  2289. position: relative;
  2290. bottom: 0;
  2291. left: 0;
  2292. }
  2293. .room_planner-sales-service-CTA:hover {
  2294. bottom: -5px;
  2295. left: 4px;
  2296. background-position: right 20px center;
  2297. box-shadow: none;
  2298. }
  2299. .main-border {
  2300. border: 1px solid #95cf54;
  2301. border-radius: 16px;
  2302. box-shadow: 3px 5px #f0f6dd;
  2303. }
  2304. .border-E0EE79 {
  2305. border: 1px solid #95cf54;
  2306. border-radius: 16px;
  2307. box-shadow: 5px 5px #e0ee79;
  2308. }
  2309. .room-planner-process-sub-title {
  2310. margin-top: -45px;
  2311. }
  2312. .step-sub-title {
  2313. color: #4b7718;
  2314. font-weight: 700;
  2315. font-size: 36px;
  2316. }
  2317. @media screen and (max-width: 767px) {
  2318. .step-sub-title {
  2319. font-size: 28px;
  2320. }
  2321. }
  2322. .steup-mb-title {
  2323. font-weight: 700;
  2324. font-family: "Quicksand", sans-serif;
  2325. font-size: 28px;
  2326. color: #78b142;
  2327. }
  2328. .dotted {
  2329. border: none;
  2330. border-top: 4px dotted #e0ee79;
  2331. color: #fff;
  2332. background-color: #fff;
  2333. width: 100%;
  2334. opacity: 1 !important;
  2335. }
  2336. .fix-img {
  2337. position: absolute;
  2338. right: 180px;
  2339. bottom: -50px;
  2340. }
  2341. @media screen and (max-width: 767px) {
  2342. .fix-img {
  2343. display: none;
  2344. }
  2345. }
  2346. .room-planner-process-main {
  2347. position: relative;
  2348. margin: 100px 0;
  2349. }
  2350. @media screen and (max-width: 1024px) {
  2351. .room-planner-process-main {
  2352. display: none;
  2353. }
  2354. }
  2355. @media screen and (max-width: 767px) {
  2356. .room-planner-process-main {
  2357. display: none;
  2358. }
  2359. }
  2360. .room-planner-process-main .main-content-bg-line {
  2361. position: absolute;
  2362. }
  2363. @media screen and (min-width: 2500px) {
  2364. .room-planner-process-main .main-content-bg-line {
  2365. right: -60px;
  2366. top: -100px;
  2367. width: 18.5vw;
  2368. height: 1950px;
  2369. -o-object-fit: cover;
  2370. object-fit: cover;
  2371. }
  2372. }
  2373. @media screen and (max-width: 2057px) {
  2374. .room-planner-process-main .main-content-bg-line {
  2375. right: -60px;
  2376. top: -75px;
  2377. width: 22vw;
  2378. }
  2379. }
  2380. @media screen and (max-width: 1921px) {
  2381. .room-planner-process-main .main-content-bg-line {
  2382. right: -60px;
  2383. top: -75px;
  2384. width: 24vw;
  2385. }
  2386. }
  2387. @media screen and (max-width: 1441px) {
  2388. .room-planner-process-main .main-content-bg-line {
  2389. top: -95px;
  2390. right: -90px;
  2391. z-index: -5;
  2392. width: 34.7vw;
  2393. }
  2394. }
  2395. .room-planner-process-main .bg01-hand {
  2396. margin-top: -100px;
  2397. }
  2398. .room-planner-process-main .bg03-table {
  2399. position: absolute;
  2400. width: 304px;
  2401. right: 30px;
  2402. bottom: -130px;
  2403. }
  2404. @media screen and (min-width: 2500px) {
  2405. .room-planner-process-main .step2 {
  2406. width: 75%;
  2407. margin-top: -130px;
  2408. margin-left: 130px;
  2409. }
  2410. }
  2411. @media screen and (max-width: 2057px) {
  2412. .room-planner-process-main .step2 {
  2413. width: 90%;
  2414. margin-top: -150px;
  2415. }
  2416. }
  2417. @media screen and (max-width: 1921px) {
  2418. .room-planner-process-main .step2 {
  2419. width: 90%;
  2420. margin-top: -130px;
  2421. }
  2422. }
  2423. @media screen and (max-width: 1441px) {
  2424. .room-planner-process-main .step2 {
  2425. width: 100%;
  2426. margin-top: -30px;
  2427. margin-left: 10px;
  2428. }
  2429. }
  2430. @media screen and (min-width: 2500px) {
  2431. .room-planner-process-main .step1-0 {
  2432. width: 30%;
  2433. margin-top: -100px;
  2434. margin-left: 200px;
  2435. }
  2436. }
  2437. @media screen and (max-width: 2057px) {
  2438. .room-planner-process-main .step1-0 {
  2439. width: 40%;
  2440. margin-top: -50px;
  2441. margin-left: 100px;
  2442. }
  2443. }
  2444. @media screen and (max-width: 1921px) {
  2445. .room-planner-process-main .step1-0 {
  2446. width: 40%;
  2447. margin-top: -30px;
  2448. margin-left: 100px;
  2449. }
  2450. }
  2451. @media screen and (max-width: 1441px) {
  2452. .room-planner-process-main .step1-0 {
  2453. width: 40%;
  2454. margin-left: 0px;
  2455. margin-top: 0px;
  2456. }
  2457. }
  2458. @media screen and (min-width: 2500px) {
  2459. .room-planner-process-main .step1-1 {
  2460. width: 60%;
  2461. margin-top: -50px;
  2462. margin-left: 250px;
  2463. }
  2464. }
  2465. @media screen and (max-width: 2057px) {
  2466. .room-planner-process-main .step1-1 {
  2467. width: 80%;
  2468. margin-top: -110px;
  2469. margin-left: 70px;
  2470. }
  2471. }
  2472. @media screen and (max-width: 1921px) {
  2473. .room-planner-process-main .step1-1 {
  2474. width: 80%;
  2475. margin-top: -80px;
  2476. margin-left: 80px;
  2477. }
  2478. }
  2479. @media screen and (max-width: 1441px) {
  2480. .room-planner-process-main .step1-1 {
  2481. width: 90%;
  2482. margin-left: 30px;
  2483. margin-top: 0px;
  2484. }
  2485. }
  2486. @media screen and (min-width: 2500px) {
  2487. .room-planner-process-main .step3 {
  2488. width: 75%;
  2489. margin-top: -120px;
  2490. margin-left: 120px;
  2491. }
  2492. }
  2493. @media screen and (max-width: 2057px) {
  2494. .room-planner-process-main .step3 {
  2495. width: 75%;
  2496. margin-top: -60px;
  2497. margin-left: 100px;
  2498. }
  2499. }
  2500. @media screen and (max-width: 1921px) {
  2501. .room-planner-process-main .step3 {
  2502. width: 80%;
  2503. margin-top: -50px;
  2504. margin-left: 60px;
  2505. }
  2506. }
  2507. @media screen and (max-width: 1441px) {
  2508. .room-planner-process-main .step3 {
  2509. width: 90%;
  2510. margin-top: 30px;
  2511. margin-left: 0px;
  2512. }
  2513. }
  2514. @media screen and (min-width: 2500px) {
  2515. .room-planner-process-main .step4 {
  2516. width: 40%;
  2517. margin-top: 50px;
  2518. margin-right: 50px;
  2519. }
  2520. }
  2521. @media screen and (max-width: 2057px) {
  2522. .room-planner-process-main .step4 {
  2523. width: 45%;
  2524. margin-top: -70px;
  2525. margin-right: 70px;
  2526. }
  2527. }
  2528. @media screen and (max-width: 1921px) {
  2529. .room-planner-process-main .step4 {
  2530. width: 50%;
  2531. margin-top: -100px;
  2532. margin-right: 80px;
  2533. }
  2534. }
  2535. @media screen and (max-width: 1441px) {
  2536. .room-planner-process-main .step4 {
  2537. width: 60%;
  2538. margin-right: 50px;
  2539. margin-top: -10px;
  2540. }
  2541. }
  2542. @media screen and (min-width: 2500px) {
  2543. .room-planner-process-main .step5 {
  2544. width: 80%;
  2545. margin-top: -130px;
  2546. margin-left: 120px;
  2547. }
  2548. }
  2549. @media screen and (max-width: 2057px) {
  2550. .room-planner-process-main .step5 {
  2551. width: 85%;
  2552. margin-top: -80px;
  2553. margin-left: 70px;
  2554. }
  2555. }
  2556. @media screen and (max-width: 1921px) {
  2557. .room-planner-process-main .step5 {
  2558. width: 90%;
  2559. margin-top: -100px;
  2560. margin-left: 50px;
  2561. }
  2562. }
  2563. @media screen and (max-width: 1441px) {
  2564. .room-planner-process-main .step5 {
  2565. width: 100%;
  2566. margin-top: -20px;
  2567. margin-left: 0px;
  2568. }
  2569. }
  2570. @media screen and (min-width: 2500px) {
  2571. .room-planner-process-main .step5-2 {
  2572. width: 30%;
  2573. margin-right: -30px;
  2574. margin-top: -100px;
  2575. }
  2576. }
  2577. @media screen and (max-width: 2057px) {
  2578. .room-planner-process-main .step5-2 {
  2579. width: 35%;
  2580. margin-right: 50px;
  2581. margin-top: -100px;
  2582. }
  2583. }
  2584. @media screen and (max-width: 1921px) {
  2585. .room-planner-process-main .step5-2 {
  2586. margin-right: 0px;
  2587. margin-top: -80px;
  2588. }
  2589. }
  2590. @media screen and (max-width: 1441px) {
  2591. .room-planner-process-main .step5-2 {
  2592. width: 40%;
  2593. margin-right: 80px;
  2594. margin-top: -80px;
  2595. }
  2596. }
  2597. .room-planner-process-main .meihaochengjia {
  2598. position: absolute;
  2599. }
  2600. @media screen and (min-width: 2500px) {
  2601. .room-planner-process-main .meihaochengjia {
  2602. width: 130px;
  2603. position: absolute;
  2604. right: 50px;
  2605. top: -10px;
  2606. }
  2607. }
  2608. @media screen and (max-width: 2057px) {
  2609. .room-planner-process-main .meihaochengjia {
  2610. width: 130px;
  2611. position: absolute;
  2612. right: 50px;
  2613. top: 10px;
  2614. }
  2615. }
  2616. @media screen and (max-width: 1921px) {
  2617. .room-planner-process-main .meihaochengjia {
  2618. width: 130px;
  2619. position: absolute;
  2620. right: 50px;
  2621. top: 20px;
  2622. }
  2623. }
  2624. @media screen and (max-width: 1441px) {
  2625. .room-planner-process-main .meihaochengjia {
  2626. width: 130px;
  2627. position: absolute;
  2628. right: 30px;
  2629. top: 30px;
  2630. }
  2631. }
  2632. .room-planner-process-main .room-planner-process-main-box {
  2633. width: 95%;
  2634. margin: 0 auto;
  2635. }
  2636. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box {
  2637. position: relative;
  2638. padding: 20px;
  2639. background: #fff;
  2640. border-radius: 16px;
  2641. }
  2642. @media screen and (max-width: 1200px) {
  2643. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box {
  2644. padding: 10px;
  2645. }
  2646. }
  2647. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box .step04_direction {
  2648. position: absolute;
  2649. left: -50px;
  2650. top: 50px;
  2651. z-index: -1;
  2652. }
  2653. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box .step03_direction {
  2654. position: absolute;
  2655. left: -50px;
  2656. top: 150px;
  2657. z-index: -1;
  2658. }
  2659. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box .step02_direction {
  2660. position: absolute;
  2661. left: -50px;
  2662. bottom: 150px;
  2663. z-index: -1;
  2664. }
  2665. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box .step01_direction {
  2666. position: absolute;
  2667. right: -50px;
  2668. top: 50px;
  2669. z-index: -1;
  2670. }
  2671. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-box .step05_direction {
  2672. position: absolute;
  2673. right: -50px;
  2674. top: 180px;
  2675. z-index: -1;
  2676. }
  2677. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-step .room-planner-process-main-content-left-step-item {
  2678. margin-top: 30px;
  2679. }
  2680. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-content-left-step p {
  2681. margin-bottom: 0.5rem;
  2682. }
  2683. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-title-box {
  2684. width: 431px;
  2685. padding: 10px 20px;
  2686. }
  2687. .room-planner-process-main .room-planner-process-main-box .room-planner-process-main-title-box .room-planner-process-main-title {
  2688. font-style: oblique;
  2689. font-weight: 700;
  2690. color: #4b7718;
  2691. font-size: 42px;
  2692. letter-spacing: 5px;
  2693. }
  2694. .room-planner-process-main .room-planner-process-main-box .step-number-circle {
  2695. background: #649e2e;
  2696. width: 26px;
  2697. height: 26px;
  2698. text-align: center;
  2699. border-radius: 100%;
  2700. padding: 1px 0;
  2701. }
  2702. .room-planner-process-main .room-planner-process-main-box .step-number-circle .step-number {
  2703. font-size: 16px;
  2704. font-family: Quicksand;
  2705. font-weight: 700;
  2706. color: #fff;
  2707. }
  2708. .room-planner-process-main .room-planner-process-main-box .step-qa-circle-q {
  2709. background: #e0ee79;
  2710. width: 26px;
  2711. height: 26px;
  2712. text-align: center;
  2713. border-radius: 100%;
  2714. padding: 1px 0;
  2715. }
  2716. .room-planner-process-main .room-planner-process-main-box .step-qa-circle-q .step-qa-q {
  2717. font-size: 14px;
  2718. font-family: Quicksand;
  2719. font-weight: 700;
  2720. color: #54891d;
  2721. }
  2722. .room-planner-process-main .room-planner-process-main-star-green {
  2723. position: absolute;
  2724. bottom: 10px;
  2725. right: 150px;
  2726. -webkit-animation-name: star;
  2727. animation-name: star;
  2728. -webkit-animation-duration: 1s;
  2729. animation-duration: 1s;
  2730. -webkit-animation-delay: 0;
  2731. animation-delay: 0;
  2732. -webkit-animation-iteration-count: infinite;
  2733. animation-iteration-count: infinite;
  2734. -webkit-animation-direction: alternate;
  2735. animation-direction: alternate;
  2736. -webkit-animation-timing-function: ease-in-out;
  2737. animation-timing-function: ease-in-out;
  2738. }
  2739. @media screen and (min-width: 2560px) {
  2740. .room-planner-process-main .room-planner-process-main-star-green {
  2741. top: 40px;
  2742. right: 170px;
  2743. }
  2744. }
  2745. @media screen and (max-width: 2057px) {
  2746. .room-planner-process-main .room-planner-process-main-star-green {
  2747. bottom: 20px;
  2748. right: 190px;
  2749. }
  2750. }
  2751. @media screen and (max-width: 1921px) {
  2752. .room-planner-process-main .room-planner-process-main-star-green {
  2753. bottom: 20px;
  2754. right: 190px;
  2755. }
  2756. }
  2757. @media screen and (max-width: 1441px) {
  2758. .room-planner-process-main .room-planner-process-main-star-green {
  2759. bottom: -15px;
  2760. right: 170px;
  2761. }
  2762. }
  2763. .room-planner-process-main .room-planner-process-main-star-line {
  2764. position: absolute;
  2765. bottom: 10px;
  2766. right: 5px;
  2767. -webkit-animation-name: star;
  2768. animation-name: star;
  2769. -webkit-animation-duration: 1s;
  2770. animation-duration: 1s;
  2771. -webkit-animation-delay: 0;
  2772. animation-delay: 0;
  2773. -webkit-animation-iteration-count: infinite;
  2774. animation-iteration-count: infinite;
  2775. -webkit-animation-direction: alternate;
  2776. animation-direction: alternate;
  2777. -webkit-animation-timing-function: ease-in-out;
  2778. animation-timing-function: ease-in-out;
  2779. }
  2780. @media screen and (min-width: 2560px) {
  2781. .room-planner-process-main .room-planner-process-main-star-line {
  2782. top: 50px;
  2783. right: 40px;
  2784. }
  2785. }
  2786. @media screen and (max-width: 2057px) {
  2787. .room-planner-process-main .room-planner-process-main-star-line {
  2788. bottom: 10px;
  2789. right: 20px;
  2790. }
  2791. }
  2792. @media screen and (max-width: 1921px) {
  2793. .room-planner-process-main .room-planner-process-main-star-line {
  2794. bottom: 10px;
  2795. right: 20px;
  2796. }
  2797. }
  2798. @media screen and (max-width: 1441px) {
  2799. .room-planner-process-main .room-planner-process-main-star-line {
  2800. bottom: -40px;
  2801. right: 15px;
  2802. }
  2803. }
  2804. .room-planner-process-main .room-planner-process-main-star-yellow {
  2805. position: absolute;
  2806. right: -15px;
  2807. top: 50px;
  2808. -webkit-animation-name: star;
  2809. animation-name: star;
  2810. -webkit-animation-duration: 2s;
  2811. animation-duration: 2s;
  2812. -webkit-animation-delay: 0;
  2813. animation-delay: 0;
  2814. -webkit-animation-iteration-count: infinite;
  2815. animation-iteration-count: infinite;
  2816. animation-direction: alternate-reverse;
  2817. -webkit-animation-timing-function: linear;
  2818. animation-timing-function: linear;
  2819. }
  2820. @media screen and (min-width: 2560px) {
  2821. .room-planner-process-main .room-planner-process-main-star-yellow {
  2822. top: -15px;
  2823. right: 20px;
  2824. }
  2825. }
  2826. @media screen and (max-width: 2057px) {
  2827. .room-planner-process-main .room-planner-process-main-star-yellow {
  2828. top: 5px;
  2829. right: 5px;
  2830. }
  2831. }
  2832. @media screen and (max-width: 1921px) {
  2833. .room-planner-process-main .room-planner-process-main-star-yellow {
  2834. top: 5px;
  2835. right: 5px;
  2836. }
  2837. }
  2838. @media screen and (max-width: 1441px) {
  2839. .room-planner-process-main .room-planner-process-main-star-yellow {
  2840. right: -5px;
  2841. top: 30px;
  2842. }
  2843. }
  2844. .room-planner-process-main-content-step-img {
  2845. margin-top: -50px;
  2846. }
  2847. .room-planner-process-main-content-step-4-6img {
  2848. margin-top: 380px;
  2849. }
  2850. @media screen and (min-width: 2500px) {
  2851. .room-planner-process-main-content-step-4-6img {
  2852. margin-top: 200px;
  2853. }
  2854. }
  2855. @media screen and (max-width: 2057px) {
  2856. .room-planner-process-main-content-step-4-6img {
  2857. margin-top: 320px;
  2858. }
  2859. }
  2860. @media screen and (max-width: 1921px) {
  2861. .room-planner-process-main-content-step-4-6img {
  2862. margin-top: 380px;
  2863. }
  2864. }
  2865. @media screen and (max-width: 1441px) {
  2866. .room-planner-process-main-content-step-4-6img {
  2867. margin-top: 380px;
  2868. }
  2869. }
  2870. .stepbox {
  2871. background: #4b7718;
  2872. border-radius: 100px;
  2873. padding: 5px 15px;
  2874. font-family: Quicksand;
  2875. color: #fff;
  2876. font-weight: 700;
  2877. font-size: 24px;
  2878. }
  2879. .room-planner-process-main-chenjia {
  2880. background: #ffe35f;
  2881. width: 150px;
  2882. border-radius: 100px;
  2883. padding: 5px 15px;
  2884. color: #736357;
  2885. font-weight: 700;
  2886. margin: 50px auto;
  2887. font-size: 24px;
  2888. }
  2889. @media screen and (min-width: 1025px) {
  2890. .section-room-planner-process-mb-main {
  2891. display: none;
  2892. }
  2893. }
  2894. @media screen and (max-width: 991px) {
  2895. .section-room-planner-process-mb-main {
  2896. display: block;
  2897. }
  2898. }
  2899. .room-planner-process-mb-main .room-planner-process-main-title-box {
  2900. width: 100%;
  2901. padding: 10px;
  2902. margin: 30px auto;
  2903. }
  2904. .room-planner-process-mb-main .room-planner-process-main-title-box .room-planner-process-main-title {
  2905. text-align: center;
  2906. font-style: oblique;
  2907. font-weight: 700;
  2908. color: #4b7718;
  2909. font-size: 34px;
  2910. letter-spacing: 5px;
  2911. }
  2912. @media screen and (max-width: 375px) {
  2913. .room-planner-process-mb-main .room-planner-process-main-title-box .room-planner-process-main-title {
  2914. font-size: 32px;
  2915. }
  2916. }
  2917. .room-planner-process-mb-main .step-number-circle {
  2918. background: #649e2e;
  2919. width: 26px;
  2920. height: 26px;
  2921. text-align: center;
  2922. border-radius: 100%;
  2923. padding: 1px 0;
  2924. }
  2925. .room-planner-process-mb-main .step-number-circle .step-number {
  2926. font-size: 16px;
  2927. font-family: Quicksand;
  2928. font-weight: 700;
  2929. color: #fff;
  2930. }
  2931. .room-planner-process-mb-main .step-qa-circle-q {
  2932. background: #e0ee79;
  2933. width: 26px;
  2934. height: 26px;
  2935. text-align: center;
  2936. border-radius: 100%;
  2937. padding: 1px 0;
  2938. }
  2939. .room-planner-process-mb-main .step-qa-circle-q .step-qa-q {
  2940. font-size: 14px;
  2941. font-family: Quicksand;
  2942. font-weight: 700;
  2943. color: #54891d;
  2944. }
  2945. .room-planner-process-mb-main .accordion-body {
  2946. padding: 0;
  2947. }
  2948. .room-planner-process-mb-main .accordion-button:focus {
  2949. background: #fff;
  2950. box-shadow: none;
  2951. }
  2952. .room-planner-process-mb-main .accordion-item {
  2953. border-top: 1.5px solid #e0ee79 !important;
  2954. border-left: none;
  2955. border-right: none;
  2956. border-bottom: none;
  2957. }
  2958. .room-planner-process-mb-main .accordion-item .accordion-button {
  2959. padding-top: 30px;
  2960. }
  2961. .room-planner-process-mb-main .accordion-button:not(.collapsed) {
  2962. background: #fff;
  2963. box-shadow: none;
  2964. }
  2965. .room-planner-process-mb-main .accordion-button::after {
  2966. background-image: url(/img/room_planner/open.png);
  2967. }
  2968. .room-planner-process-mb-main .accordion .accordion-button:not(.collapsed)::after {
  2969. width: 20px;
  2970. height: 20px;
  2971. background-image: url(/img/room_planner/close.png);
  2972. background-position: center;
  2973. transform: none;
  2974. }
  2975. .room-planner-process-mb-main .accordion-header {
  2976. padding-bottom: 15px;
  2977. }
  2978. .room-planner-process-mb-main {
  2979. width: 95%;
  2980. margin: 0 auto;
  2981. }
  2982. .room-planner {
  2983. display: flex;
  2984. flex-direction: column;
  2985. }
  2986. .room-planner .sub-banner {
  2987. margin: 210px auto 50px;
  2988. }
  2989. @media screen and (max-width: 767px) {
  2990. .room-planner .sub-banner {
  2991. margin: 160px auto 50px;
  2992. }
  2993. }
  2994. .sub-banner2 {
  2995. width: 650px;
  2996. margin: 100px auto;
  2997. }
  2998. @media screen and (max-width: 767px) {
  2999. .sub-banner2 {
  3000. width: 100%;
  3001. margin: 50px auto;
  3002. }
  3003. }
  3004. .room-planner .room-planner-images {
  3005. padding: 0 70px 100px;
  3006. position: relative;
  3007. }
  3008. .room-planner .room-planner-images .row {
  3009. padding: 50px 0;
  3010. }
  3011. .room-planner .room-planner-images .img-box {
  3012. border-radius: 40px;
  3013. background-color: #99a56f;
  3014. border: 3px solid var(--second-color);
  3015. background-size: cover;
  3016. background-position: center;
  3017. background-repeat: no-repeat;
  3018. }
  3019. .room-planner .room-planner-images .bg-item {
  3020. max-width: 830px;
  3021. height: 270px;
  3022. }
  3023. .room-planner .room-planner-images .step-01 {
  3024. background-image: url(/img/room_planner/step1.webp);
  3025. }
  3026. .room-planner .room-planner-images .step-02 {
  3027. background-image: url(/img/room_planner/step2.webp);
  3028. }
  3029. .room-planner .room-planner-images .step-03 {
  3030. background-position: right;
  3031. background-image: url(/img/room_planner/step3.webp);
  3032. }
  3033. .room-planner .room-planner-images .step-04 {
  3034. background-image: url(/img/room_planner/step4.webp);
  3035. }
  3036. .room-planner .room-planner-images .step-06 {
  3037. background-image: url(/img/room_planner/step6.webp);
  3038. }
  3039. .room-planner .room-planner-images .step-09 {
  3040. background-image: url(/img/room_planner/step9.webp);
  3041. }
  3042. .room-planner .room-planner-images .line-1,
  3043. .room-planner .room-planner-images .line-2,
  3044. .room-planner .room-planner-images .line-3,
  3045. .room-planner .room-planner-images .line-4,
  3046. .room-planner .room-planner-images .line-5 {
  3047. position: absolute;
  3048. z-index: -1;
  3049. }
  3050. .room-planner .room-planner-images .line-1 {
  3051. top: -50px;
  3052. width: 580px;
  3053. height: 200px;
  3054. border-left: 3px solid var(--second-color);
  3055. }
  3056. .room-planner .room-planner-images .line-2 {
  3057. top: 185px;
  3058. width: 585px;
  3059. height: 370px;
  3060. border: 3px solid var(--second-color);
  3061. border-left: none;
  3062. }
  3063. .room-planner .room-planner-images .line-3 {
  3064. top: 600px;
  3065. width: 580px;
  3066. height: 200px;
  3067. border-left: 3px solid var(--second-color);
  3068. }
  3069. .room-planner .room-planner-images .line-4 {
  3070. top: 930px;
  3071. width: 585px;
  3072. height: 380px;
  3073. border: 3px solid var(--second-color);
  3074. border-left: none;
  3075. }
  3076. .room-planner .room-planner-images .line-5 {
  3077. width: 590px;
  3078. height: 300px;
  3079. bottom: 300px;
  3080. border-left: 3px solid var(--second-color);
  3081. }
  3082. @media (max-width: 991px) {
  3083. .room-planner .room-planner-images .bg-item {
  3084. min-width: 750px;
  3085. }
  3086. .room-planner .room-planner-images .line-2,
  3087. .room-planner .room-planner-images .line-3 {
  3088. width: 540px;
  3089. }
  3090. .room-planner .room-planner-images .line-4 {
  3091. width: 510px;
  3092. }
  3093. }
  3094. @media (max-width: 767px) {
  3095. .room-planner .room-planner-images {
  3096. display: none;
  3097. }
  3098. }
  3099. .room-planner .room-planner-moblie .row {
  3100. margin-bottom: 50px;
  3101. padding: 0 65px;
  3102. }
  3103. .room-planner .room-planner-moblie .img-box {
  3104. border-radius: 30px;
  3105. background-color: #99a56f;
  3106. border: 3px solid var(--second-color);
  3107. }
  3108. .room-planner .room-planner-moblie .text-box {
  3109. margin-right: 10vw;
  3110. font-size: 20px;
  3111. font-weight: bold;
  3112. text-align: center;
  3113. }
  3114. .room-planner .room-planner-moblie .text-box span {
  3115. font-size: 44px;
  3116. color: #99a56f;
  3117. }
  3118. .room-planner .room-planner-moblie .line-6 {
  3119. height: 2800px;
  3120. position: absolute;
  3121. top: -50px;
  3122. right: 29%;
  3123. z-index: -1;
  3124. border-right: 2px solid var(--second-color);
  3125. }
  3126. @media (min-width: 767px) {
  3127. .room-planner .room-planner-moblie {
  3128. display: none;
  3129. }
  3130. }
  3131. @media (max-width: 575px) {
  3132. .room-planner .room-planner-moblie .line-6 {
  3133. right: 36%;
  3134. }
  3135. .room-planner .room-planner-moblie .text-box {
  3136. margin-right: 0;
  3137. }
  3138. }
  3139. .room-planner .rp-navs {
  3140. padding: 35px 25px;
  3141. }
  3142. .room-planner .rp-navs .home-content {
  3143. width: 100%;
  3144. max-width: 850px;
  3145. display: flex;
  3146. }
  3147. @media (max-width: 767px) {
  3148. .room-planner .rp-navs {
  3149. display: none;
  3150. }
  3151. }
  3152. .hover_up {
  3153. cursor: pointer;
  3154. }
  3155. .hover_up:hover {
  3156. -webkit-animation: float 1.5s ease-out infinite;
  3157. animation: float 1.5s ease-out infinite;
  3158. }
  3159. @-webkit-keyframes float {
  3160. 50% {
  3161. transform: translate(0, -20px);
  3162. }
  3163. }
  3164. @keyframes float {
  3165. 50% {
  3166. transform: translate(0, -20px);
  3167. }
  3168. }
  3169. .room-planner-process-main-star-yellow-m {
  3170. position: absolute;
  3171. right: 100px;
  3172. bottom: 50px;
  3173. -webkit-animation-name: star;
  3174. animation-name: star;
  3175. -webkit-animation-duration: 2s;
  3176. animation-duration: 2s;
  3177. -webkit-animation-delay: 0;
  3178. animation-delay: 0;
  3179. -webkit-animation-iteration-count: infinite;
  3180. animation-iteration-count: infinite;
  3181. animation-direction: alternate-reverse;
  3182. -webkit-animation-timing-function: linear;
  3183. animation-timing-function: linear;
  3184. }
  3185. @media screen and (max-width: 1024px) {
  3186. .room-planner-process-main-star-yellow-m {
  3187. right: 35vw;
  3188. }
  3189. }
  3190. @media screen and (max-width: 767px) {
  3191. .room-planner-process-main-star-yellow-m {
  3192. right: 100px;
  3193. bottom: 50px;
  3194. }
  3195. }
  3196. .room-planner-process-main-star-green-m {
  3197. position: absolute;
  3198. bottom: -10px;
  3199. left: 100px;
  3200. -webkit-animation-name: star;
  3201. animation-name: star;
  3202. -webkit-animation-duration: 1s;
  3203. animation-duration: 1s;
  3204. -webkit-animation-delay: 0;
  3205. animation-delay: 0;
  3206. -webkit-animation-iteration-count: infinite;
  3207. animation-iteration-count: infinite;
  3208. -webkit-animation-direction: alternate;
  3209. animation-direction: alternate;
  3210. -webkit-animation-timing-function: ease-in-out;
  3211. animation-timing-function: ease-in-out;
  3212. }
  3213. @media screen and (max-width: 1024px) {
  3214. .room-planner-process-main-star-green-m {
  3215. left: 35vw;
  3216. }
  3217. }
  3218. @media screen and (max-width: 767px) {
  3219. .room-planner-process-main-star-green-m {
  3220. bottom: -30px;
  3221. left: 80px;
  3222. }
  3223. }
  3224. @media screen and (max-width: 375px) {
  3225. .room-planner-process-main-star-green-m {
  3226. left: 80px;
  3227. }
  3228. }
  3229. .room-planner-process-main-star-line-m {
  3230. position: absolute;
  3231. bottom: -30px;
  3232. right: 100px;
  3233. -webkit-animation-name: star;
  3234. animation-name: star;
  3235. -webkit-animation-duration: 1s;
  3236. animation-duration: 1s;
  3237. -webkit-animation-delay: 0;
  3238. animation-delay: 0;
  3239. -webkit-animation-iteration-count: infinite;
  3240. animation-iteration-count: infinite;
  3241. -webkit-animation-direction: alternate;
  3242. animation-direction: alternate;
  3243. -webkit-animation-timing-function: ease-in-out;
  3244. animation-timing-function: ease-in-out;
  3245. }
  3246. @media screen and (max-width: 1024px) {
  3247. .room-planner-process-main-star-line-m {
  3248. right: 35vw;
  3249. }
  3250. }
  3251. @media screen and (max-width: 767px) {
  3252. .room-planner-process-main-star-line-m {
  3253. bottom: -30px;
  3254. right: 100px;
  3255. }
  3256. }
  3257. /* 成家設計服務-room_planner end */
  3258. /* 成家知識專欄-categories start */
  3259. .w-80-auto {
  3260. width: 80%;
  3261. margin: 0 auto;
  3262. }
  3263. @media screen and (max-width: 767px) {
  3264. .w-80-auto {
  3265. width: 100%;
  3266. margin: 0 auto;
  3267. }
  3268. }
  3269. .blog-categories .container {
  3270. width: 50%;
  3271. margin: 40px auto 25px;
  3272. }
  3273. .blog-categories .container .breadcrumb-item {
  3274. font-weight: 500;
  3275. }
  3276. .blog-categories .container .breadcrumb-item a {
  3277. font-weight: 500;
  3278. color: var(--main-color);
  3279. }
  3280. .blog-categories .container .link-list {
  3281. width: 100%;
  3282. }
  3283. .blog-categories .container .link-list button {
  3284. text-decoration: none;
  3285. margin: 0 0.1rem 0.5rem;
  3286. padding: 5px 10px;
  3287. background: #808e4c;
  3288. margin-right: 5px;
  3289. transition: 0.3s;
  3290. border: 1px solid #808e4c;
  3291. }
  3292. .blog-categories .container .link-list button:hover {
  3293. border: 1px solid #808e4c;
  3294. background: #fff;
  3295. color: #808e4c;
  3296. }
  3297. .blog-categories .container .link-list button:hover a {
  3298. color: #808e4c;
  3299. }
  3300. .blog-categories .container .link-list a {
  3301. color: #fff;
  3302. }
  3303. .blog-categories .container .bhouseweb_search_form {
  3304. padding: 0;
  3305. }
  3306. .blog-categories .container .bhouseweb_search_form .bhouseweb_search_img img {
  3307. width: 38px;
  3308. }
  3309. .blog-categories .article {
  3310. width: 50%;
  3311. margin: auto;
  3312. display: flex;
  3313. flex-direction: column;
  3314. margin-top: 25px;
  3315. }
  3316. .blog-categories .article .article-item {
  3317. display: flex;
  3318. margin: 25px 0;
  3319. padding-bottom: 50px;
  3320. border-bottom: 1px solid var(--dark-gray);
  3321. align-items: center;
  3322. }
  3323. .blog-categories .article .article-item h4 {
  3324. font-size: 24px;
  3325. line-height: 32px;
  3326. color: #4c660b;
  3327. font-weight: 700;
  3328. }
  3329. .blog-categories .article .article-item h4:hover {
  3330. opacity: 0.8;
  3331. }
  3332. .blog-categories .article .article-item .description {
  3333. color: var(--dark-color);
  3334. }
  3335. .blog-categories .article .article-item .description:hover {
  3336. opacity: 0.8;
  3337. }
  3338. .blog-categories .article .article-item img {
  3339. width: 240px;
  3340. height: auto;
  3341. margin-right: 35px;
  3342. }
  3343. .blog-categories .nav-link {
  3344. padding: 0;
  3345. margin-bottom: 50px;
  3346. padding-top: 30px;
  3347. text-align: center;
  3348. font-weight: bold;
  3349. font-size: 14px;
  3350. letter-spacing: 1px;
  3351. color: var(--dark-color);
  3352. }
  3353. @media (max-width: 991px) {
  3354. .blog-categories .container,
  3355. .blog-categories .article {
  3356. width: 75%;
  3357. }
  3358. }
  3359. @media (max-width: 767px) {
  3360. .room-planner-process-box .container {
  3361. width: 75%;
  3362. }
  3363. }
  3364. @media (max-width: 575px) {
  3365. .blog-categories .container,
  3366. .blog-categories .article,
  3367. .room-planner-process-box .container {
  3368. width: 90%;
  3369. }
  3370. .blog-categories .container .article-item,
  3371. .blog-categories .article .article-item {
  3372. flex-direction: column;
  3373. }
  3374. .blog-categories .container .article-item a,
  3375. .blog-categories .article .article-item a {
  3376. margin-top: 20px;
  3377. }
  3378. .blog-categories .container .article-item img,
  3379. .blog-categories .article .article-item img {
  3380. width: 100%;
  3381. margin-right: 15px;
  3382. }
  3383. }
  3384. .blog-main .text-box {
  3385. margin: 70px auto;
  3386. }
  3387. .blog-main .text-box .title {
  3388. text-align: center;
  3389. font-weight: 700;
  3390. font-size: 32px;
  3391. letter-spacing: 2%;
  3392. color: #649e2e;
  3393. }
  3394. .blog-main .text-box div {
  3395. position: relative;
  3396. max-width: 480px;
  3397. margin: auto;
  3398. }
  3399. .blog-main .text-box div p {
  3400. max-width: 480px;
  3401. margin: 40px auto;
  3402. text-align: center;
  3403. font-weight: 500;
  3404. font-size: 20px;
  3405. line-height: 36px;
  3406. color: #78b142;
  3407. }
  3408. .blog-main .text-box div img {
  3409. width: 2.5%;
  3410. }
  3411. .blog-main .text-box div .left_img {
  3412. position: absolute;
  3413. top: 0;
  3414. left: 0;
  3415. }
  3416. @media (max-width: 767px) {
  3417. .blog-main .text-box div .left_img {
  3418. left: 10vw;
  3419. }
  3420. }
  3421. .blog-main .text-box div .right_img {
  3422. position: absolute;
  3423. top: 0;
  3424. right: 0;
  3425. }
  3426. @media (max-width: 767px) {
  3427. .blog-main .text-box div .right_img {
  3428. right: 10vw;
  3429. }
  3430. }
  3431. .blog-main .text-box .underline {
  3432. display: block;
  3433. background: #f0f6dd;
  3434. height: 10px;
  3435. width: 210px;
  3436. margin: auto;
  3437. margin-top: -35px;
  3438. }
  3439. .blog-main .process {
  3440. padding: 85px 0 60px;
  3441. background-color: #f0f6dd;
  3442. display: flex;
  3443. flex-direction: column;
  3444. justify-content: center;
  3445. align-items: center;
  3446. position: relative;
  3447. }
  3448. @media (max-width: 767px) {
  3449. .blog-main .process {
  3450. padding: 100px 0 60px;
  3451. }
  3452. }
  3453. .blog-main .process div {
  3454. display: flex;
  3455. margin: 0 50px;
  3456. }
  3457. @media (max-width: 767px) {
  3458. .blog-main .process div {
  3459. margin: auto;
  3460. }
  3461. }
  3462. .blog-main .process div:last-child {
  3463. padding: 0 145px;
  3464. margin-top: 58px;
  3465. }
  3466. @media (max-width: 890px) {
  3467. .blog-main .process div:last-child {
  3468. margin-top: 27px;
  3469. }
  3470. }
  3471. @media (max-width: 767px) {
  3472. .blog-main .process div:last-child {
  3473. padding: 0;
  3474. margin-top: 0;
  3475. }
  3476. }
  3477. .blog-main .process .house_img {
  3478. position: absolute;
  3479. top: -95px;
  3480. left: 100px;
  3481. max-width: 180px;
  3482. }
  3483. @media (max-width: 1200px) {
  3484. .blog-main .process .house_img {
  3485. top: -8vw;
  3486. max-width: 15%;
  3487. }
  3488. }
  3489. @media (max-width: 767px) {
  3490. .blog-main .process .house_img {
  3491. top: -60px;
  3492. left: 35%;
  3493. max-width: 25vw;
  3494. }
  3495. }
  3496. @media (max-width: 475px) {
  3497. .blog-main .process .house_img {
  3498. left: 33%;
  3499. max-width: 35vw;
  3500. }
  3501. }
  3502. .blog-main .process .star_green {
  3503. width: 20px;
  3504. position: absolute;
  3505. top: -60px;
  3506. left: 90px;
  3507. -webkit-animation-name: star;
  3508. animation-name: star;
  3509. -webkit-animation-duration: 1s;
  3510. animation-duration: 1s;
  3511. -webkit-animation-delay: 0;
  3512. animation-delay: 0;
  3513. -webkit-animation-iteration-count: infinite;
  3514. animation-iteration-count: infinite;
  3515. -webkit-animation-direction: alternate;
  3516. animation-direction: alternate;
  3517. -webkit-animation-timing-function: ease-in-out;
  3518. animation-timing-function: ease-in-out;
  3519. }
  3520. @media (max-width: 767px) {
  3521. .blog-main .process .star_green {
  3522. left: 30vw;
  3523. top: -4%;
  3524. }
  3525. }
  3526. .blog-main .process .star_yellow {
  3527. width: 20px;
  3528. position: absolute;
  3529. top: -85px;
  3530. left: 280px;
  3531. -webkit-animation-name: star;
  3532. animation-name: star;
  3533. -webkit-animation-duration: 1s;
  3534. animation-duration: 1s;
  3535. -webkit-animation-delay: 0;
  3536. animation-delay: 0;
  3537. -webkit-animation-iteration-count: infinite;
  3538. animation-iteration-count: infinite;
  3539. animation-direction: alternate-reverse;
  3540. -webkit-animation-timing-function: linear;
  3541. animation-timing-function: linear;
  3542. }
  3543. @media (max-width: 1199px) {
  3544. .blog-main .process .star_yellow {
  3545. left: 24%;
  3546. }
  3547. }
  3548. @media (max-width: 991px) {
  3549. .blog-main .process .star_yellow {
  3550. left: 27%;
  3551. top: -15%;
  3552. }
  3553. }
  3554. @media (max-width: 767px) {
  3555. .blog-main .process .star_yellow {
  3556. left: 60vw;
  3557. top: -7%;
  3558. }
  3559. }
  3560. @media (max-width: 475px) {
  3561. .blog-main .process .star_yellow {
  3562. left: 67vw;
  3563. }
  3564. }
  3565. .blog-main .process .ruler_img {
  3566. position: absolute;
  3567. top: -70px;
  3568. right: 100px;
  3569. max-width: 110px;
  3570. }
  3571. .blog-main .process .line_01 {
  3572. position: absolute;
  3573. width: 700px;
  3574. top: 25%;
  3575. }
  3576. @media (max-width: 890px) {
  3577. .blog-main .process .line_01 {
  3578. width: 600px;
  3579. }
  3580. }
  3581. .blog-main .process .line_02 {
  3582. position: absolute;
  3583. width: 700px;
  3584. top: 85%;
  3585. right: 48%;
  3586. max-width: 700px;
  3587. height: 100%;
  3588. }
  3589. @media (max-width: 890px) {
  3590. .blog-main .process .line_02 {
  3591. width: 600px;
  3592. top: 67%;
  3593. }
  3594. }
  3595. .blog-main .process .dot {
  3596. position: absolute;
  3597. }
  3598. .blog-main .process .dot::before {
  3599. content: "\a";
  3600. width: 10px;
  3601. height: 10px;
  3602. margin: 0 10px;
  3603. border-radius: 50%;
  3604. display: inline-block;
  3605. background: #649E2E;
  3606. position: absolute;
  3607. z-index: 0;
  3608. top: 34px;
  3609. left: 0;
  3610. -webkit-animation: dot 8s infinite;
  3611. animation: dot 8s infinite;
  3612. }
  3613. @media (max-width: 892px) {
  3614. .blog-main .process .dot::before {
  3615. -webkit-animation: none;
  3616. animation: none;
  3617. }
  3618. }
  3619. @media (width: 768px) {
  3620. .blog-main .process .dot::before {
  3621. -webkit-animation: dot_768px 8s infinite;
  3622. animation: dot_768px 8s infinite;
  3623. }
  3624. }
  3625. @media (width: 414px) {
  3626. .blog-main .process .dot::before {
  3627. -webkit-animation: dot_414px 8s infinite;
  3628. animation: dot_414px 8s infinite;
  3629. }
  3630. }
  3631. @media (width: 375px) {
  3632. .blog-main .process .dot::before {
  3633. -webkit-animation: dot_375px 8s infinite;
  3634. animation: dot_375px 8s infinite;
  3635. }
  3636. }
  3637. .blog-main .process section {
  3638. margin-right: 80px;
  3639. }
  3640. @media (max-width: 767px) {
  3641. .blog-main .process section {
  3642. margin-right: 0;
  3643. }
  3644. }
  3645. .blog-main .process section img {
  3646. width: 100%;
  3647. max-width: 90px;
  3648. height: 90px;
  3649. -o-object-fit: contain;
  3650. object-fit: contain;
  3651. position: relative;
  3652. z-index: 1;
  3653. cursor: pointer;
  3654. }
  3655. @media (max-width: 767px) {
  3656. .blog-main .process section img {
  3657. width: auto;
  3658. }
  3659. }
  3660. .blog-main .process section span {
  3661. display: block;
  3662. position: absolute;
  3663. }
  3664. .blog-main .process section span img {
  3665. width: 40px;
  3666. height: 45px;
  3667. position: absolute;
  3668. top: -110px;
  3669. left: 65px;
  3670. z-index: 10;
  3671. -o-object-fit: contain;
  3672. object-fit: contain;
  3673. }
  3674. .blog-main .process section h4 {
  3675. font-size: 16px;
  3676. text-align: center;
  3677. margin: 15px 0;
  3678. font-weight: 500;
  3679. }
  3680. .blog-main .process_mb .row img {
  3681. position: relative;
  3682. z-index: 20;
  3683. }
  3684. .blog-main .process_mb .row div {
  3685. position: relative;
  3686. justify-content: center;
  3687. margin-bottom: 10vw;
  3688. }
  3689. .blog-main .process_mb .row .mb_line_01 {
  3690. background-size: contain;
  3691. background-repeat: no-repeat;
  3692. background-image: url("/img/blog/line01_mb.svg");
  3693. position: absolute;
  3694. height: 5px;
  3695. width: 66%;
  3696. top: 32%;
  3697. left: 68%;
  3698. z-index: 10;
  3699. }
  3700. .blog-main .process_mb .row .mb_line_02 {
  3701. background-size: contain;
  3702. background-repeat: no-repeat;
  3703. background-image: url("/img/blog/line02_mb.svg");
  3704. position: absolute;
  3705. height: 125px;
  3706. width: 100%;
  3707. top: 90%;
  3708. left: -50%;
  3709. z-index: 10;
  3710. }
  3711. .blog-main .article_list {
  3712. margin-top: 100px;
  3713. }
  3714. @media (max-width: 767px) {
  3715. .blog-main .article_list {
  3716. margin-top: 0;
  3717. }
  3718. }
  3719. .blog-main .article_list .article_item {
  3720. width: 65%;
  3721. display: flex;
  3722. justify-content: center;
  3723. align-items: center;
  3724. flex-direction: column;
  3725. }
  3726. @media (max-width: 1199px) {
  3727. .blog-main .article_list .article_item {
  3728. width: 80%;
  3729. }
  3730. }
  3731. @media (max-width: 991px) {
  3732. .blog-main .article_list .article_item {
  3733. width: 97%;
  3734. }
  3735. }
  3736. @media (max-width: 767px) {
  3737. .blog-main .article_list .article_item {
  3738. width: 100%;
  3739. margin: auto;
  3740. }
  3741. }
  3742. .blog-main .article_list .article_item .row {
  3743. height: 500px;
  3744. }
  3745. @media (max-width: 991px) {
  3746. .blog-main .article_list .article_item .row {
  3747. height: 530px;
  3748. }
  3749. }
  3750. .blog-main .article_list .article_item .img_box {
  3751. position: relative;
  3752. }
  3753. @media (max-width: 767px) {
  3754. .blog-main .article_list .article_item .img_box {
  3755. display: flex;
  3756. flex-direction: column;
  3757. align-items: center;
  3758. margin: 80px auto;
  3759. }
  3760. }
  3761. .blog-main .article_list .article_item .img_box img:first-child {
  3762. width: 100%;
  3763. }
  3764. @media (max-width: 767px) {
  3765. .blog-main .article_list .article_item .img_box img:first-child {
  3766. width: 75%;
  3767. }
  3768. }
  3769. .blog-main .article_list .article_item .img_box img:last-child {
  3770. width: 55px;
  3771. position: absolute;
  3772. left: 80%;
  3773. top: -20px;
  3774. }
  3775. @media (max-width: 1199px) {
  3776. .blog-main .article_list .article_item .img_box img:last-child {
  3777. left: 19vw;
  3778. }
  3779. }
  3780. @media (max-width: 991px) {
  3781. .blog-main .article_list .article_item .img_box img:last-child {
  3782. left: 23vw;
  3783. top: -25px;
  3784. }
  3785. }
  3786. @media (max-width: 767px) {
  3787. .blog-main .article_list .article_item .img_box img:last-child {
  3788. position: absolute;
  3789. left: 65vw;
  3790. width: 60px;
  3791. top: -10px;
  3792. }
  3793. }
  3794. .blog-main .article_list .article_item .mobile_line img {
  3795. width: 100%;
  3796. margin-bottom: -25px;
  3797. }
  3798. .blog-main .article_list .article_item .text_box {
  3799. display: flex;
  3800. flex-direction: column;
  3801. position: relative;
  3802. }
  3803. .blog-main .article_list .article_item .text_box h4 {
  3804. color: #649e2e;
  3805. font-size: 35px;
  3806. font-weight: 700;
  3807. }
  3808. @media (max-width: 767px) {
  3809. .blog-main .article_list .article_item .text_box h4 {
  3810. font-size: 26px;
  3811. }
  3812. }
  3813. .blog-main .article_list .article_item .text_box h4 span {
  3814. color: #78b142;
  3815. font-size: 28px;
  3816. font-weight: 500;
  3817. }
  3818. @media (max-width: 767px) {
  3819. .blog-main .article_list .article_item .text_box h4 span {
  3820. font-size: 24px;
  3821. }
  3822. }
  3823. .blog-main .article_list .article_item .text_box ul {
  3824. list-style: none;
  3825. margin-top: 15px;
  3826. padding-left: 20px;
  3827. }
  3828. .blog-main .article_list .article_item .text_box ul li:last-child {
  3829. display: none;
  3830. }
  3831. .blog-main .article_list .article_item .text_box ul li {
  3832. display: flex;
  3833. align-items: center;
  3834. }
  3835. .blog-main .article_list .article_item .text_box ul li .blog_img {
  3836. position: relative;
  3837. }
  3838. .blog-main .article_list .article_item .text_box ul li .blog_img img:first-child {
  3839. width: 120px;
  3840. height: 80px;
  3841. border-radius: 10px;
  3842. }
  3843. .blog-main .article_list .article_item .text_box ul li .blog_img img:last-child {
  3844. position: absolute;
  3845. width: 50px;
  3846. left: -20px;
  3847. top: -20px;
  3848. }
  3849. .blog-main .article_list .article_item .text_box ul li .blog_text {
  3850. margin-left: 20px;
  3851. }
  3852. .blog-main .article_list .article_item .text_box ul li .blog_text h5 a {
  3853. width: 130%;
  3854. font-size: 18px;
  3855. font-weight: 500;
  3856. color: #000;
  3857. }
  3858. .blog-main .article_list .article_item .text_box ul li .blog_text h5 a:hover {
  3859. background: linear-gradient(to bottom, #fff 50%, #ffe55f 50%);
  3860. }
  3861. .blog-main .article_list .article_item .text_box ul li .blog_text p {
  3862. margin: 0;
  3863. width: 100%;
  3864. color: #78b142;
  3865. line-height: 20px;
  3866. font-size: 14px;
  3867. }
  3868. .blog-main .article_list .article_item .text_box ul li span {
  3869. display: block;
  3870. margin: 5px 0;
  3871. }
  3872. .blog-main .article_list .article_item .text_box ul li span img {
  3873. width: 100%;
  3874. }
  3875. @media (max-width: 767px) {
  3876. .blog-main .article_list .article_item .text_box ul li span img {
  3877. width: 100%;
  3878. }
  3879. }
  3880. .blog-main .article_list .article_item .text_box .btn_box {
  3881. margin-top: 10px;
  3882. margin-left: 20px;
  3883. }
  3884. @media (max-width: 767px) {
  3885. .blog-main .article_list .article_item .text_box .btn_box {
  3886. position: relative;
  3887. margin: 20px auto;
  3888. }
  3889. }
  3890. .blog-main .article_list .article_item .text_box .btn_box .read_more {
  3891. display: flex;
  3892. align-items: center;
  3893. justify-content: center;
  3894. width: 160px;
  3895. height: 50px;
  3896. color: #fff;
  3897. background-color: #78b142;
  3898. border: none;
  3899. border-radius: 12px;
  3900. position: relative;
  3901. bottom: 0;
  3902. left: 0;
  3903. transition: all 0.2s;
  3904. letter-spacing: 1px;
  3905. font-size: 18px;
  3906. font-weight: 500;
  3907. cursor: pointer;
  3908. }
  3909. .blog-main .article_list .article_item .text_box .btn_box .read_more p {
  3910. margin: 0;
  3911. margin-left: -10px;
  3912. }
  3913. .blog-main .article_list .article_item .text_box .btn_box .read_more:hover {
  3914. bottom: -5px;
  3915. left: 4px;
  3916. }
  3917. .blog-main .article_list .article_item .text_box .btn_box .read_more:hover img {
  3918. right: -15px;
  3919. }
  3920. .blog-main .article_list .article_item .text_box .btn_box .read_more img {
  3921. position: relative;
  3922. right: -10px;
  3923. transition: all 0.2s;
  3924. }
  3925. .blog-main .article_list .article_item .text_box .btn_box span {
  3926. width: 160px;
  3927. height: 50px;
  3928. background: #f0f6dd;
  3929. position: absolute;
  3930. z-index: -1;
  3931. bottom: -5px;
  3932. left: 25px;
  3933. border-radius: 12px;
  3934. }
  3935. @media (max-width: 767px) {
  3936. .blog-main .article_list .article_item .text_box .btn_box span {
  3937. left: 3.5%;
  3938. }
  3939. }
  3940. .blog-main .article_list .article_item .blog_divider {
  3941. position: relative;
  3942. }
  3943. .blog-main .article_list .article_item .blog_divider .bg_img {
  3944. width: 45vw;
  3945. height: 5px;
  3946. margin: 50px 0;
  3947. background-image: url("/img/blog/Vector.png");
  3948. background-repeat: no-repeat;
  3949. }
  3950. @media (max-width: 1199px) {
  3951. .blog-main .article_list .article_item .blog_divider .bg_img {
  3952. width: 33vw;
  3953. }
  3954. }
  3955. @media (max-width: 991px) {
  3956. .blog-main .article_list .article_item .blog_divider .bg_img {
  3957. width: 25vw;
  3958. }
  3959. }
  3960. .blog-main .article_list .article_item .blog_divider img {
  3961. width: 45vw;
  3962. margin: 50px 0;
  3963. }
  3964. .blog-main .article_list .article_item .blog_divider .line_left {
  3965. position: absolute;
  3966. width: 311px;
  3967. height: 610px;
  3968. top: 0px;
  3969. right: -300px;
  3970. }
  3971. @media (max-width: 991px) {
  3972. .blog-main .article_list .article_item .blog_divider .line_left {
  3973. height: 640px;
  3974. }
  3975. }
  3976. .blog-main .article_list .article_item .blog_divider .line_right {
  3977. position: absolute;
  3978. width: 300px;
  3979. height: 590px;
  3980. top: -1px;
  3981. left: -290px;
  3982. }
  3983. @media (max-width: 991px) {
  3984. .blog-main .article_list .article_item .blog_divider .line_right {
  3985. height: 620px;
  3986. }
  3987. }
  3988. .blog-main .article_list .article_item .blog_divider .logo_01,
  3989. .blog-main .article_list .article_item .blog_divider .logo_02,
  3990. .blog-main .article_list .article_item .blog_divider .logo_03 {
  3991. position: absolute;
  3992. width: 70px;
  3993. }
  3994. @media (max-width: 991px) {
  3995. .blog-main .article_list .article_item .blog_divider .logo_01,
  3996. .blog-main .article_list .article_item .blog_divider .logo_02,
  3997. .blog-main .article_list .article_item .blog_divider .logo_03 {
  3998. display: none;
  3999. }
  4000. }
  4001. .blog-main .article_list .article_item .blog_divider .logo_01 {
  4002. left: -43%;
  4003. top: 150px;
  4004. }
  4005. @media (max-width: 1199px) {
  4006. .blog-main .article_list .article_item .blog_divider .logo_01 {
  4007. left: -90%;
  4008. }
  4009. }
  4010. .blog-main .article_list .article_item .blog_divider .logo_02 {
  4011. right: -45%;
  4012. top: 80px;
  4013. }
  4014. @media (max-width: 1199px) {
  4015. .blog-main .article_list .article_item .blog_divider .logo_02 {
  4016. right: -90%;
  4017. top: 60px;
  4018. }
  4019. }
  4020. .blog-main .article_list .article_item .blog_divider .logo_03 {
  4021. right: -45%;
  4022. top: -250px;
  4023. }
  4024. @media (max-width: 1199px) {
  4025. .blog-main .article_list .article_item .blog_divider .logo_03 {
  4026. right: -90%;
  4027. }
  4028. }
  4029. .blog-main .article_list .topic_list {
  4030. height: 295px;
  4031. margin-bottom: -50px;
  4032. background-color: #f0f6dd;
  4033. display: flex;
  4034. justify-content: center;
  4035. align-items: center;
  4036. position: relative;
  4037. }
  4038. @media (max-width: 767px) {
  4039. .blog-main .article_list .topic_list {
  4040. height: 100%;
  4041. margin-top: 80px;
  4042. }
  4043. }
  4044. .blog-main .article_list .topic_list img {
  4045. position: absolute;
  4046. top: -45px;
  4047. left: 100px;
  4048. max-width: 125px;
  4049. }
  4050. @media (max-width: 767px) {
  4051. .blog-main .article_list .topic_list img {
  4052. top: -50px;
  4053. left: 35vw;
  4054. max-width: 120px;
  4055. }
  4056. }
  4057. .blog-main .article_list .topic_list section {
  4058. display: flex;
  4059. flex-direction: column;
  4060. }
  4061. @media (max-width: 767px) {
  4062. .blog-main .article_list .topic_list section {
  4063. padding: 70px 0;
  4064. justify-content: center;
  4065. }
  4066. }
  4067. .blog-main .article_list .topic_list section h5 {
  4068. width: 125px;
  4069. margin: auto;
  4070. font-size: 28px;
  4071. text-align: center;
  4072. font-weight: 700;
  4073. background: linear-gradient(to bottom, #f0f6dd 50%, #e0ee79 50%);
  4074. margin-bottom: 25px;
  4075. }
  4076. .blog-main .article_list .topic_list section div {
  4077. width: 100%;
  4078. max-width: 535px;
  4079. margin: auto;
  4080. }
  4081. .blog-main .article_list .topic_list section div a {
  4082. display: inline-block;
  4083. color: #000;
  4084. background-color: #fff;
  4085. padding: 10px 15px;
  4086. margin: 10px 5px;
  4087. border-radius: 100px;
  4088. transition: all 0.3s;
  4089. }
  4090. .blog-main .article_list .topic_list section div a:hover {
  4091. color: #fff;
  4092. background-color: #649e2e;
  4093. }
  4094. @media (max-width: 767px) {
  4095. .blog-main .article_list .topic_list section div a {
  4096. width: 95px;
  4097. margin: 10px 3px;
  4098. box-sizing: border-box;
  4099. }
  4100. }
  4101. @media (max-width: 767px) {
  4102. .blog-main .article_list .topic_list main {
  4103. width: 600px;
  4104. display: flex;
  4105. justify-content: center;
  4106. }
  4107. .blog-main .article_list .topic_list .container {
  4108. display: inline-flex;
  4109. flex-wrap: wrap;
  4110. width: 500px;
  4111. margin: auto;
  4112. }
  4113. }
  4114. @media (max-width: 475px) {
  4115. .blog-main .article_list .topic_list main {
  4116. width: 350px;
  4117. }
  4118. .blog-main .article_list .topic_list .container {
  4119. width: 310px;
  4120. justify-content: center;
  4121. }
  4122. }
  4123. /* 成家知識專欄-categories end */
  4124. /* 成家知識專欄-article start */
  4125. .blog_article h3 {
  4126. color: #4c660b;
  4127. font-weight: bold;
  4128. font-weight: 900;
  4129. margin-bottom: 50px;
  4130. }
  4131. .blog_article span {
  4132. font-weight: bold;
  4133. letter-spacing: 2px;
  4134. }
  4135. .blog_article ul {
  4136. margin: 0;
  4137. padding: 0;
  4138. list-style: none;
  4139. }
  4140. .blog_article p {
  4141. margin-bottom: 0;
  4142. line-height: 32px;
  4143. letter-spacing: 1px;
  4144. font-weight: 400;
  4145. }
  4146. .blog_article .content {
  4147. width: 50%;
  4148. margin: 60px auto 0;
  4149. }
  4150. .blog_article .content section:first-child {
  4151. margin: 60px auto;
  4152. padding-bottom: 60px;
  4153. border-bottom: 1px solid var(--dark-gray);
  4154. }
  4155. @media (max-width: 1200px) {
  4156. .blog_article .content {
  4157. width: 70%;
  4158. }
  4159. }
  4160. @media (max-width: 992px) {
  4161. .blog_article .content {
  4162. width: 90%;
  4163. }
  4164. }
  4165. .blog_article hr {
  4166. margin: 50px 0;
  4167. }
  4168. .blog_article .question-box {
  4169. display: flex;
  4170. align-items: center;
  4171. flex-direction: column;
  4172. border: 2px solid var(--second-color);
  4173. margin-bottom: 50px;
  4174. padding: 20px 50px 10px;
  4175. }
  4176. .blog_article .question-box ul li {
  4177. margin: 10px 0;
  4178. letter-spacing: 1px;
  4179. font-weight: bold;
  4180. }
  4181. .blog_article .question-box p {
  4182. font-size: 20px;
  4183. font-weight: 700;
  4184. }
  4185. .blog_article .question-box ul a {
  4186. margin-left: 5px;
  4187. color: #006e9a;
  4188. }
  4189. .blog_article .question-box ul a:hover {
  4190. opacity: 0.8;
  4191. }
  4192. .blog_article .img-text {
  4193. margin: 0;
  4194. margin-bottom: 50px;
  4195. padding: 20px 60px;
  4196. background-color: rgba(128, 143, 76, 0.8);
  4197. text-align: start;
  4198. color: #ffffff;
  4199. font-size: 14px;
  4200. line-height: 28px;
  4201. font-weight: 500;
  4202. letter-spacing: 2px;
  4203. }
  4204. @media (max-width: 767px) {
  4205. .blog_article .img-text {
  4206. padding: 20px 30px;
  4207. }
  4208. }
  4209. .blog_article .content img {
  4210. width: 100%;
  4211. margin-top: 30px;
  4212. }
  4213. .blog_article .icon-box img {
  4214. margin-top: 0px;
  4215. width: 35px;
  4216. }
  4217. .blog_article h2 {
  4218. margin-bottom: 30px;
  4219. font-size: 20px;
  4220. font-weight: bold;
  4221. font-weight: 700;
  4222. color: var(--main-color);
  4223. }
  4224. .blog_article b {
  4225. font-weight: 700;
  4226. }
  4227. .blog_article li,
  4228. .blog_article table td {
  4229. font-weight: 400;
  4230. }
  4231. .blog_article li {
  4232. letter-spacing: 1px;
  4233. line-height: 32px;
  4234. }
  4235. .blog_article .list-title {
  4236. font-size: 20px;
  4237. font-weight: bold;
  4238. font-weight: 700;
  4239. }
  4240. .blog_article table {
  4241. width: 100%;
  4242. margin-top: 20px;
  4243. margin-bottom: 50px;
  4244. }
  4245. .blog_article table,
  4246. .blog_article table td,
  4247. .blog_article table th {
  4248. padding: 5px 10px;
  4249. border: 1px solid #333;
  4250. }
  4251. .blog_article .link-box {
  4252. margin-top: 50px;
  4253. padding-bottom: 50px;
  4254. border-bottom: 1px solid var(--dark-gray);
  4255. }
  4256. .blog_article .link-box .link-list {
  4257. width: 100%;
  4258. }
  4259. .blog_article .link-box .link-list a {
  4260. text-decoration: none;
  4261. padding: 7px 10px;
  4262. background: #808e4c;
  4263. color: #fff;
  4264. transition: 0.3s;
  4265. border: 1px solid #808e4c;
  4266. font-weight: bold;
  4267. }
  4268. .blog_article .link-box .link-list a:hover {
  4269. border: 1px solid #808e4c;
  4270. background: #fff;
  4271. color: #808e4c;
  4272. }
  4273. .blog_article .article_readMore {
  4274. margin: 25px 0;
  4275. }
  4276. .blog_article .read-more-list {
  4277. padding-top: 60px;
  4278. border-top: 1px solid var(--dark-gray);
  4279. font-size: 18px;
  4280. letter-spacing: 2px;
  4281. }
  4282. .blog_article .read-more-list li {
  4283. margin: 15px 0;
  4284. font-weight: bold;
  4285. }
  4286. @media (max-width: 575px) {
  4287. .blog_article .read-more-list li {
  4288. margin: 20px 0;
  4289. }
  4290. }
  4291. .blog_article .read-more-list a {
  4292. color: var(--main-color);
  4293. }
  4294. .blog_article button {
  4295. border: none;
  4296. margin: 1px;
  4297. }
  4298. /* 成家知識專欄-article end */
  4299. /* 最新消息公告-news start */
  4300. .news-content img {
  4301. margin-bottom: 30px;
  4302. }
  4303. .news-content p {
  4304. margin-bottom: 0;
  4305. line-height: 32px;
  4306. letter-spacing: 1px;
  4307. font-weight: 400;
  4308. margin-top: 10px;
  4309. }
  4310. .news-content h2 {
  4311. margin-bottom: 30px;
  4312. font-size: 20px;
  4313. font-weight: bold;
  4314. font-weight: 700;
  4315. color: #000;
  4316. letter-spacing: 1px;
  4317. }
  4318. .bhouseweb_loc_content .subtitle {
  4319. font-weight: 900;
  4320. }
  4321. .bhouseweb_loc_content .bhouseWeb_news_content {
  4322. letter-spacing: 1px;
  4323. line-height: 28px;
  4324. }
  4325. .likeSee__state__filter p {
  4326. width: 110px;
  4327. margin-left: 50px;
  4328. font-weight: 500;
  4329. letter-spacing: 1px;
  4330. }
  4331. .bhouseweb_loc_sec p {
  4332. font-weight: 400;
  4333. }
  4334. .NewsDescription {
  4335. width: 100%;
  4336. }
  4337. .NewsDescription .NewsDescription_p {
  4338. overflow: hidden;
  4339. white-space: nowrap;
  4340. text-overflow: ellipsis;
  4341. display: -webkit-box;
  4342. -webkit-line-clamp: 2;
  4343. -webkit-box-orient: vertical;
  4344. white-space: normal;
  4345. }
  4346. /* 最新消息公告-news end */
  4347. /* 小寶設計單品-furniture_design start */
  4348. .furniture_design_content {
  4349. width: 55%;
  4350. margin: 0 auto;
  4351. }
  4352. @media (max-width: 991px) {
  4353. .furniture_design_content {
  4354. width: 75%;
  4355. }
  4356. }
  4357. @media (max-width: 575px) {
  4358. .furniture_design_content {
  4359. width: 90%;
  4360. }
  4361. }
  4362. .furniture_design_content .tw-15 {
  4363. font-weight: bold;
  4364. }
  4365. .furniture-design p {
  4366. padding-right: 15px;
  4367. text-align: justify;
  4368. font-weight: 400;
  4369. }
  4370. .furniture-design h5 {
  4371. font-weight: bold;
  4372. color: var(--main-color);
  4373. font-weight: 700;
  4374. }
  4375. .furniture-design p,
  4376. .furniture-design h5 {
  4377. line-height: 32px;
  4378. letter-spacing: 1px;
  4379. }
  4380. .furniture-design img {
  4381. width: 100%;
  4382. }
  4383. .furniture-design .text-box {
  4384. width: 380px;
  4385. text-align: center;
  4386. margin: auto;
  4387. }
  4388. @media screen and (max-width: 575px) {
  4389. .furniture-design .text-box {
  4390. width: auto;
  4391. }
  4392. }
  4393. .furniture-design .nav-link {
  4394. font-size: 14px;
  4395. color: var(--dark-color);
  4396. }
  4397. .furniture-design .tab-title .nav-item {
  4398. width: 200px;
  4399. justify-content: center;
  4400. }
  4401. .furniture-design .tab-title .nav-link {
  4402. margin: atuo;
  4403. font-size: 18px;
  4404. font-weight: 400;
  4405. }
  4406. .furniture-design ul {
  4407. display: flex;
  4408. flex-wrap: nowrap;
  4409. list-style: none;
  4410. }
  4411. .furniture-design ul li {
  4412. display: flex;
  4413. flex-wrap: wrap;
  4414. list-style: none;
  4415. font-weight: 400;
  4416. }
  4417. .furniture-design .design-list {
  4418. display: flex;
  4419. flex-wrap: wrap;
  4420. list-style: none;
  4421. }
  4422. @media (max-width: 767px) {
  4423. .furniture-design .design-list a {
  4424. border: 1px solid #d9d9d9;
  4425. }
  4426. .furniture-design .design-list a:hover {
  4427. background-color: #d9d9d9;
  4428. }
  4429. }
  4430. @media (max-width: 575px) {
  4431. .furniture-design .design-list {
  4432. width: 105%;
  4433. margin: 0;
  4434. margin-left: -20px;
  4435. }
  4436. }
  4437. @media (max-width: 413px) {
  4438. .furniture-design .design-list {
  4439. padding: 0;
  4440. margin-left: -9px;
  4441. justify-content: center;
  4442. }
  4443. }
  4444. @media (max-width: 361px) {
  4445. .furniture-design .design-list {
  4446. margin-left: -4px;
  4447. justify-content: flex-start;
  4448. }
  4449. }
  4450. .furniture-design .design-list li {
  4451. margin: 5px 10px 0px;
  4452. }
  4453. @media (max-width: 767px) {
  4454. .furniture-design .design-list li {
  4455. margin: 5px 8px;
  4456. }
  4457. }
  4458. #cabinet {
  4459. padding-left: 37px;
  4460. padding-right: 37px;
  4461. }
  4462. #dining_chair {
  4463. padding-left: 22px;
  4464. padding-right: 22px;
  4465. }
  4466. .furniture-design .sub-tab-content h4 {
  4467. margin: 0;
  4468. color: #ffffff;
  4469. background-color: rgba(128, 142, 76, 0.8);
  4470. padding: 10px 20px;
  4471. transition: all 0.3s;
  4472. font-size: 1.3rem;
  4473. white-space: nowrap;
  4474. text-align: center;
  4475. letter-spacing: 2px;
  4476. font-weight: 500;
  4477. }
  4478. .mattress-top {
  4479. margin-top: 280px;
  4480. }
  4481. @media (max-width: 576px) {
  4482. .mattress-top {
  4483. margin-top: 380px;
  4484. }
  4485. }
  4486. .furniture-design .sub-tab-content .text-item div {
  4487. display: flex;
  4488. justify-content: center;
  4489. align-items: center;
  4490. transition: all 0.3s;
  4491. }
  4492. .furniture-design .sub-tab-content .mattress-text-box {
  4493. width: 400px;
  4494. }
  4495. @media (max-width: 575px) {
  4496. .furniture-design .sub-tab-content .mattress-text-box {
  4497. width: auto;
  4498. }
  4499. }
  4500. .furniture-design .mattress-price p {
  4501. text-align: center;
  4502. margin-bottom: 5px;
  4503. }
  4504. .furniture-design .mattress-price .price-item {
  4505. font-size: 18px;
  4506. font-weight: 500;
  4507. }
  4508. .furniture-design .nav-pills .nav-link.active {
  4509. color: var(--dark-color);
  4510. background-color: transparent;
  4511. border-bottom: 2px solid var(--second-color);
  4512. border-radius: 0;
  4513. }
  4514. @media (max-width: 991px) {
  4515. .furniture-design .nav-pills {
  4516. padding-top: 30px;
  4517. }
  4518. }
  4519. @media (max-width: 767px) {
  4520. .furniture-design .nav-pills {
  4521. padding-top: 12px;
  4522. }
  4523. }
  4524. .furniture-design #systeam-furniture .cabinet-03 {
  4525. height: 500px;
  4526. display: flex;
  4527. flex-direction: column;
  4528. align-items: center;
  4529. }
  4530. .furniture-design #systeam-furniture .cabinet-03 h5 {
  4531. margin: 20px;
  4532. }
  4533. .furniture-design #systeam-furniture .cabinet-03 img {
  4534. width: 150px;
  4535. height: 150px;
  4536. -o-object-fit: contain;
  4537. object-fit: contain;
  4538. }
  4539. @media (max-width: 991px) {
  4540. .furniture-design #systeam-furniture .cabinet-03 {
  4541. height: auto;
  4542. }
  4543. }
  4544. .b-bottom {
  4545. border-bottom: 1px solid var(--dark-gray);
  4546. }
  4547. .furniture-design .bg-text {
  4548. position: absolute;
  4549. left: 0;
  4550. width: 100%;
  4551. background-color: #80a251;
  4552. }
  4553. .furniture-design .bg-text p {
  4554. margin: 0;
  4555. padding: 70px 0;
  4556. font-size: 24px;
  4557. text-align: center;
  4558. line-height: 50px;
  4559. color: #fff;
  4560. font-weight: 700;
  4561. letter-spacing: 2px;
  4562. }
  4563. .furniture-design .mobile-tab {
  4564. padding: 20px;
  4565. letter-spacing: 1px;
  4566. }
  4567. @media (max-width: 475px) {
  4568. .furniture-design .mobile-tab {
  4569. padding: 10px;
  4570. }
  4571. }
  4572. .furniture-design .mobile-tab ul {
  4573. padding-bottom: 20px;
  4574. }
  4575. @media screen and (max-width: 575px) {
  4576. .furniture-design .mobile-tab .all-tab {
  4577. padding: 0 6px;
  4578. }
  4579. }
  4580. @media screen and (max-width: 475px) {
  4581. .furniture-design .mobile-tab .all-tab {
  4582. width: 40%;
  4583. }
  4584. }
  4585. .furniture-design .mobile-tab #all-design-tab {
  4586. margin: 0 0.3rem;
  4587. text-align: center;
  4588. font-size: 18px;
  4589. font-weight: 400;
  4590. color: #fff;
  4591. background: #808e4c;
  4592. font-size: 1rem;
  4593. }
  4594. .furniture-design .mobile-tab #all-design-tab:hover {
  4595. background: #68686b;
  4596. }
  4597. @media screen and (max-width: 575px) {
  4598. .furniture-design .mobile-tab #all-design-tab {
  4599. font-size: 14px;
  4600. }
  4601. }
  4602. .furniture-design .mobile-tab #pills-tab .nav-item {
  4603. width: 100%;
  4604. transition: all 0.3s;
  4605. }
  4606. @media (max-width: 475px) {
  4607. .furniture-design .mobile-tab #pills-tab .nav-item {
  4608. width: auto;
  4609. margin: 0 3px;
  4610. }
  4611. }
  4612. .furniture-design .mobile-tab #pills-tab .nav-item:hover {
  4613. background: #68686b;
  4614. }
  4615. .furniture-design .mobile-tab #pills-tab .nav-active {
  4616. background: #68686b;
  4617. }
  4618. .furniture-design .mobile-tab #pills-tab a {
  4619. font-size: 1rem !important;
  4620. }
  4621. @media (max-width: 575px) {
  4622. .furniture-design .mobile-tab #pills-tab a {
  4623. padding: 8px 3px;
  4624. font-size: 14px !important;
  4625. }
  4626. }
  4627. @media (max-width: 575px) {
  4628. .furniture-design .mobile-tab #pills-tab .col-4 {
  4629. padding: 0 3px;
  4630. }
  4631. }
  4632. .furniture-design .mobile-tab .nav-link {
  4633. margin: auto;
  4634. }
  4635. .furniture-design .mobile-tab .tab-title {
  4636. display: flex;
  4637. flex-wrap: nowrap;
  4638. }
  4639. .tw-85 {
  4640. width: 85%;
  4641. }
  4642. .tw-15 {
  4643. width: 15%;
  4644. }
  4645. /* 小寶設計單品-furniture_design end */
  4646. /* 設計家具 start */
  4647. .design-container {
  4648. padding-top: 50px;
  4649. }
  4650. .design-container .me-3 {
  4651. font-weight: bold;
  4652. }
  4653. .design-container p {
  4654. line-height: 32px;
  4655. }
  4656. .design-container h3,
  4657. .design-container h6 {
  4658. font-weight: bold;
  4659. color: var(--main-color);
  4660. font-weight: 700;
  4661. }
  4662. .design-container h6 {
  4663. font-size: 20px;
  4664. }
  4665. .design-container div {
  4666. font-weight: 400;
  4667. }
  4668. .design-container ul {
  4669. display: flex;
  4670. flex-direction: column;
  4671. padding: 0;
  4672. list-style: none;
  4673. }
  4674. .design-container ul li {
  4675. line-height: 32px;
  4676. }
  4677. .design-container .slider-box {
  4678. width: 60%;
  4679. }
  4680. .design-container .slider-box .slider {
  4681. margin-right: 20px;
  4682. }
  4683. @media (max-width: 767px) {
  4684. .design-container .slider-box {
  4685. width: 100%;
  4686. }
  4687. }
  4688. .design-container .slider-nav img {
  4689. cursor: pointer;
  4690. }
  4691. .design-container .slider-nav .middle-item {
  4692. padding: 0 5px;
  4693. }
  4694. .furniture-design .design-border {
  4695. border-bottom: 2px solid var(--second-color);
  4696. border-radius: 0;
  4697. }
  4698. @media (max-width: 991px) {
  4699. .design-container .slider-nav img {
  4700. width: 95%;
  4701. height: auto;
  4702. margin: auto;
  4703. }
  4704. .design-container .slider-nav .middle-item {
  4705. margin: 0;
  4706. }
  4707. }
  4708. /* 設計家具 end */
  4709. .bhouse_line {
  4710. background: #000;
  4711. height: 1px;
  4712. opacity: 1 !important;
  4713. }
  4714. .bhouse_title {
  4715. font-size: 1.3rem;
  4716. letter-spacing: 2px;
  4717. text-align: justify;
  4718. color: #4c660b;
  4719. font-weight: 700;
  4720. }
  4721. @media screen and (max-width: 767px) {
  4722. .bhouse_title {
  4723. font-size: 1rem;
  4724. }
  4725. }
  4726. .bhouse_subtitle {
  4727. color: #4c660b;
  4728. font-size: 1.2rem;
  4729. font-weight: 600;
  4730. letter-spacing: 3px;
  4731. }
  4732. .brand_sec02_content {
  4733. margin: 50px 0;
  4734. }
  4735. .brand_sec02_content p {
  4736. letter-spacing: 2px;
  4737. line-height: 28px;
  4738. font-weight: 400;
  4739. }
  4740. .brand_content {
  4741. width: 50%;
  4742. margin: 0 auto;
  4743. }
  4744. @media screen and (max-width: 991px) {
  4745. .brand_content {
  4746. width: 70%;
  4747. }
  4748. }
  4749. @media screen and (max-width: 767px) {
  4750. .brand_content {
  4751. width: 95%;
  4752. }
  4753. .store-line {
  4754. margin: 35px 20px;
  4755. }
  4756. }
  4757. .brand_sec01,
  4758. .brand_sec02 {
  4759. margin: 50px 0;
  4760. }
  4761. .likeSee__state {
  4762. display: flex;
  4763. justify-content: space-between;
  4764. align-items: center;
  4765. }
  4766. .likeSee__state img {
  4767. width: 40px;
  4768. }
  4769. @media screen and (max-width: 767px) {
  4770. .likeSee__state img {
  4771. width: 30px;
  4772. }
  4773. }
  4774. .mt-15 {
  4775. margin-top: 15px;
  4776. }
  4777. .mt-30 {
  4778. margin-top: 30px;
  4779. }
  4780. .my-80 {
  4781. margin: 80px 0;
  4782. }
  4783. .my-50 {
  4784. margin: 50px 0;
  4785. }
  4786. .mt-80 {
  4787. margin-top: 80px;
  4788. }
  4789. .mb-80 {
  4790. margin-bottom: 80px;
  4791. }
  4792. .article__readMore {
  4793. color: #656565;
  4794. font-size: 0.9rem;
  4795. font-weight: 500;
  4796. cursor: pointer;
  4797. }
  4798. .sec01_store_map_img {
  4799. width: 100%;
  4800. height: 700px;
  4801. margin: 0 auto;
  4802. position: relative;
  4803. -o-object-fit: contain;
  4804. object-fit: contain;
  4805. }
  4806. @media screen and (max-width: 767px) {
  4807. .sec01_store_map_img {
  4808. width: 80%;
  4809. height: 400px;
  4810. }
  4811. }
  4812. @media screen and (max-width: 575px) {
  4813. .sec01_store_map_img {
  4814. margin-left: 20px;
  4815. }
  4816. }
  4817. .store_cta_box_reserve {
  4818. position: absolute;
  4819. left: 30px;
  4820. top: 100px;
  4821. }
  4822. @media screen and (max-width: 1200px) {
  4823. .store_cta_box_reserve {
  4824. left: -10px;
  4825. top: 130px;
  4826. }
  4827. }
  4828. @media screen and (max-width: 767px) {
  4829. .store_cta_box_reserve {
  4830. left: 30px;
  4831. top: 50px;
  4832. }
  4833. }
  4834. @media screen and (max-width: 575px) {
  4835. .store_cta_box_reserve {
  4836. left: 15px;
  4837. }
  4838. }
  4839. .store_cta_box_reserve .store_cta {
  4840. background: #808f4c;
  4841. width: 150px;
  4842. padding: 16px;
  4843. color: #fff;
  4844. border-radius: 15px;
  4845. text-align: center;
  4846. font-size: 18px;
  4847. letter-spacing: 2px;
  4848. font-weight: 500;
  4849. }
  4850. @media screen and (max-width: 767px) {
  4851. .store_cta_box_reserve .store_cta {
  4852. width: 120px;
  4853. padding: 10px;
  4854. font-size: 12px;
  4855. }
  4856. }
  4857. .store_cta_box_reserve p {
  4858. text-align: center;
  4859. color: #68686b;
  4860. font-weight: bold;
  4861. letter-spacing: 2px;
  4862. font-size: 14px;
  4863. }
  4864. .store_cta_box_reserve p a {
  4865. font-weight: 700;
  4866. }
  4867. @media screen and (max-width: 767px) {
  4868. .store_cta_box_reserve p {
  4869. font-size: 12px;
  4870. }
  4871. }
  4872. .store_cta_box_reserve a {
  4873. color: #2980b8;
  4874. }
  4875. @media screen and (max-width: 767px) {
  4876. .store_cta_box_reserve a {
  4877. font-size: 12px;
  4878. }
  4879. }
  4880. .store_cta_box {
  4881. position: absolute;
  4882. top: 40%;
  4883. right: -70px;
  4884. }
  4885. @media screen and (max-width: 1200px) {
  4886. .store_cta_box {
  4887. right: -170px;
  4888. }
  4889. }
  4890. @media screen and (max-width: 767px) {
  4891. .store_cta_box {
  4892. right: 0px;
  4893. }
  4894. }
  4895. .store_cta_box_form {
  4896. margin-top: 70px;
  4897. position: relative;
  4898. }
  4899. @media screen and (max-width: 767px) {
  4900. .store_cta_box_form {
  4901. left: -10px;
  4902. }
  4903. }
  4904. .store_cta_box_form .store_cta {
  4905. background-color: var(--dark-gray);
  4906. width: 160px;
  4907. padding: 15px 5px;
  4908. color: #fff;
  4909. border-radius: 15px;
  4910. text-align: center;
  4911. margin: 0 auto;
  4912. font-size: 18px;
  4913. letter-spacing: 2px;
  4914. font-weight: 500;
  4915. }
  4916. @media screen and (max-width: 767px) {
  4917. .store_cta_box_form .store_cta {
  4918. width: 125px;
  4919. padding: 10px 5px;
  4920. font-size: 12px;
  4921. }
  4922. }
  4923. .store_cta_box_form p {
  4924. text-align: center;
  4925. color: #68686b;
  4926. font-weight: bold;
  4927. letter-spacing: 2px;
  4928. font-size: 14px;
  4929. }
  4930. .store_cta_box_form p a {
  4931. font-weight: 700;
  4932. }
  4933. @media screen and (max-width: 767px) {
  4934. .store_cta_box_form p {
  4935. width: 130px;
  4936. font-size: 12px;
  4937. }
  4938. }
  4939. .store_cta_box_form a {
  4940. color: #2980b8;
  4941. }
  4942. @media screen and (max-width: 767px) {
  4943. .store_cta_box_form a {
  4944. font-size: 12px;
  4945. }
  4946. }
  4947. .store-link {
  4948. color: #2980b8 !important;
  4949. }
  4950. .store-link:hover {
  4951. opacity: 0.7;
  4952. }
  4953. .store-tab #pills-tab .nav-item {
  4954. margin: 0 0.8rem;
  4955. }
  4956. @media screen and (max-width: 767px) {
  4957. .store-tab #pills-tab .nav-item {
  4958. margin: 0 0.5rem;
  4959. }
  4960. }
  4961. .store-tab #pills-tab a,
  4962. .mobile-tab #pills-tab a {
  4963. color: #fff;
  4964. text-decoration: none;
  4965. font-size: 1.2rem;
  4966. font-weight: 400;
  4967. -webkit-appearance: none;
  4968. border-radius: 0;
  4969. }
  4970. .store-tab #pills-tab .nav-item,
  4971. .mobile-tab #pills-tab .nav-item {
  4972. width: auto;
  4973. background: #808e4c;
  4974. }
  4975. .store-tab #pills-tab .nav-item-link,
  4976. .mobile-tab #pills-tab .nav-item-link {
  4977. display: block;
  4978. text-decoration: none;
  4979. margin: 0 0.1rem;
  4980. padding: 0.4rem 1.8rem;
  4981. background: #808e4c;
  4982. color: #fff;
  4983. margin-right: 5px;
  4984. transition: 0.3s;
  4985. font-weight: 400;
  4986. letter-spacing: 2px;
  4987. text-align: center;
  4988. margin: 0;
  4989. }
  4990. .store-tab #pills-tab .nav-item-link:hover,
  4991. .mobile-tab #pills-tab .nav-item-link:hover {
  4992. background: #68686b !important;
  4993. }
  4994. @media screen and (max-width: 575px) {
  4995. .store-tab #pills-tab .nav-item-link,
  4996. .mobile-tab #pills-tab .nav-item-link {
  4997. font-size: 16px;
  4998. padding: 0.4rem 1rem;
  4999. }
  5000. }
  5001. @media screen and (max-width: 767px) {
  5002. .store-tab #pills-tab .nav-item-link {
  5003. margin: 0 0rem;
  5004. }
  5005. }
  5006. .store-tab #pills-tab .nav-item-link.active,
  5007. .mobile-tab #pills-tab .nav-item-link.active {
  5008. color: #fff;
  5009. background: #68686b !important;
  5010. -webkit-appearance: none;
  5011. border-radius: 0 !important;
  5012. }
  5013. /* .tab-content {
  5014. margin-bottom: 40vh;
  5015. }
  5016. @media screen and (max-width: 767px) {
  5017. .tab-content {
  5018. margin-bottom: 20vh;
  5019. }
  5020. } */
  5021. .store_title {
  5022. color: #4c660b;
  5023. font-size: 1.8rem;
  5024. font-weight: 700;
  5025. }
  5026. @media screen and (max-width: 767px) {
  5027. .store_title {
  5028. margin-top: 15px;
  5029. }
  5030. }
  5031. .store_content {
  5032. font-weight: 600;
  5033. letter-spacing: 2px;
  5034. }
  5035. .store_content a {
  5036. color: #68686b;
  5037. font-weight: 600;
  5038. }
  5039. .store_content .reservation-link {
  5040. margin-top: 15px;
  5041. color: #2980b8;
  5042. font-weight: 600;
  5043. font-size: 17px;
  5044. }
  5045. .store_content .reservation-link:hover {
  5046. opacity: 0.7;
  5047. }
  5048. .store_content .store_content_item {
  5049. margin-bottom: 10px;
  5050. }
  5051. .store_content_item .title {
  5052. font-weight: 500;
  5053. }
  5054. @media (max-width: 576px) {
  5055. .store_content_item .title {
  5056. width: 30%;
  5057. }
  5058. }
  5059. .assign-link {
  5060. border-bottom: 2px solid var(--second-color);
  5061. }
  5062. @media (max-width: 767px) {
  5063. .assign-link {
  5064. border-bottom: none;
  5065. background-color: #d9d9d9;
  5066. }
  5067. }
  5068. .card-img,
  5069. .card-img-top {
  5070. border-radius: 0 !important;
  5071. }
  5072. .breadcrumb-item + .breadcrumb-item::before {
  5073. content: ">" !important;
  5074. }/*# sourceMappingURL=style.bhouse.css.map */