style.bhouse.scss 93 KB

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