style.bhouse.scss 93 KB

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