style.bhouse.scss 98 KB

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