style.bhouse.scss 94 KB

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