style.bhouse.scss 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046
  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 60px;
  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-inf {
  1894. @media screen and (min-width: 1024px) {
  1895. height: 180px;
  1896. }
  1897. ul {
  1898. list-style: none;
  1899. }
  1900. li {
  1901. font-size: 16px;
  1902. font-weight: 500;
  1903. color: #2a2a2a;
  1904. letter-spacing: 1.5px;
  1905. // margin-top: -5px;
  1906. line-height: 2;
  1907. }
  1908. li::before {
  1909. content: "";
  1910. display: inline-block;
  1911. width: 8px;
  1912. height: 8px;
  1913. border-radius: 7.5px;
  1914. background-color: #e0ee79;
  1915. margin-right: 8px;
  1916. margin-left: -2em;
  1917. }
  1918. }
  1919. .room_planner-sales-service-left-text {
  1920. margin-top: 30px;
  1921. @media screen and (max-width: $table) {
  1922. margin-top: 50px;
  1923. }
  1924. @media screen and (max-width: 767px) {
  1925. margin-top: 30px;
  1926. }
  1927. }
  1928. .room_planner-sales-service-right-text {
  1929. margin-top: 50px;
  1930. @media screen and (max-width: $table) {
  1931. margin-top: 0;
  1932. }
  1933. @media screen and (max-width: 767px) {
  1934. margin-top: 50px;
  1935. }
  1936. }
  1937. .room_planner-sales-service-CTA {
  1938. width: 160px;
  1939. height: 50px;
  1940. border-radius: 16px;
  1941. background: #78b142;
  1942. background-image: url(/img/room_planner/icon.png);
  1943. background-repeat: no-repeat;
  1944. background-size: 14px 14px;
  1945. background-position: right 28px center;
  1946. transition: all 300ms ease-in-out;
  1947. box-shadow: 3px 5px #f0f6dd;
  1948. position: relative;
  1949. bottom: 0;
  1950. left: 0;
  1951. &:hover {
  1952. bottom: -5px;
  1953. left: 4px;
  1954. background-position: right 20px center;
  1955. box-shadow: none;
  1956. }
  1957. }
  1958. .main-border {
  1959. border: 1px solid #95cf54;
  1960. border-radius: 16px;
  1961. box-shadow: 3px 5px #f0f6dd;
  1962. }
  1963. .border-E0EE79 {
  1964. border: 1px solid #95cf54;
  1965. border-radius: 16px;
  1966. box-shadow: 5px 5px #e0ee79;
  1967. }
  1968. .room-planner-process-sub-title {
  1969. margin-top: -45px;
  1970. }
  1971. .step-sub-title {
  1972. color: #4b7718;
  1973. font-weight: 700;
  1974. font-size: 36px;
  1975. @media screen and (max-width: 767px) {
  1976. font-size: 28px;
  1977. }
  1978. }
  1979. .steup-mb-title {
  1980. font-weight: 700;
  1981. font-family: "Quicksand", sans-serif;
  1982. font-size: 28px;
  1983. color: #78b142;
  1984. }
  1985. // .dottedline{
  1986. // border-style: dotted;
  1987. // background-position: bottom;
  1988. // background-image: linear-gradient(to right, black 30%, rgba(255, 255, 255, 0) 0%);
  1989. // background-size: 10px 3px;
  1990. // background-repeat: repeat-x;
  1991. // // height: 3px;
  1992. // }
  1993. .dotted {
  1994. border: none;
  1995. border-top: 4px dotted #e0ee79;
  1996. color: #fff;
  1997. background-color: #fff;
  1998. // height:5px;
  1999. width: 100%;
  2000. opacity: 1 !important;
  2001. }
  2002. .fix-img {
  2003. position: absolute;
  2004. right: 180px;
  2005. bottom: -50px;
  2006. @media screen and (max-width: 767px) {
  2007. display: none;
  2008. }
  2009. }
  2010. // 電腦版
  2011. .room-planner-process-main {
  2012. position: relative;
  2013. margin: 100px 0;
  2014. @media screen and (max-width: $table) {
  2015. display: none;
  2016. }
  2017. @media screen and (max-width: 767px) {
  2018. display: none;
  2019. }
  2020. .main-content-bg-line {
  2021. position: absolute;
  2022. @media screen and (min-width: 2500px) {
  2023. right: -60px;
  2024. top: -100px;
  2025. width: 18.5vw;
  2026. height: 1950px;
  2027. object-fit: cover;
  2028. }
  2029. @media screen and (max-width: 2057px) {
  2030. right: -60px;
  2031. top: -75px;
  2032. width: 22vw;
  2033. }
  2034. @media screen and (max-width: 1921px) {
  2035. right: -60px;
  2036. top: -75px;
  2037. width: 24vw;
  2038. }
  2039. @media screen and (max-width: 1441px) {
  2040. top: -95px;
  2041. right: -90px;
  2042. z-index: -5;
  2043. width: 34.7vw;
  2044. }
  2045. // @media screen and (max-width: 1200px) {
  2046. // width: 36vw;
  2047. // }
  2048. }
  2049. .bg01-hand {
  2050. margin-top: -100px;
  2051. }
  2052. .bg03-table {
  2053. position: absolute;
  2054. width: 304px;
  2055. right: 30px;
  2056. bottom: -130px;
  2057. }
  2058. .step2 {
  2059. @media screen and (min-width: 2500px) {
  2060. width: 75%;
  2061. margin-top: -130px;
  2062. margin-left: 130px;
  2063. }
  2064. @media screen and (max-width: 2057px) {
  2065. width: 90%;
  2066. margin-top: -150px;
  2067. }
  2068. @media screen and (max-width: 1921px) {
  2069. width: 90%;
  2070. margin-top: -130px;
  2071. }
  2072. @media screen and (max-width: 1441px) {
  2073. width: 100%;
  2074. margin-top: -30px;
  2075. margin-left: 10px;
  2076. }
  2077. }
  2078. .step1-0 {
  2079. @media screen and (min-width: 2500px) {
  2080. width: 30%;
  2081. margin-top: -100px;
  2082. margin-left: 200px;
  2083. }
  2084. @media screen and (max-width: 2057px) {
  2085. width: 40%;
  2086. margin-top: -50px;
  2087. margin-left: 100px;
  2088. }
  2089. // 1920
  2090. @media screen and (max-width: 1921px) {
  2091. width: 40%;
  2092. margin-top: -30px;
  2093. margin-left: 100px;
  2094. }
  2095. @media screen and (max-width: 1441px) {
  2096. width: 40%;
  2097. margin-left: 0px;
  2098. margin-top: 0px;
  2099. }
  2100. }
  2101. .step1-1 {
  2102. @media screen and (min-width: 2500px) {
  2103. width: 60%;
  2104. margin-top: -50px;
  2105. margin-left: 250px;
  2106. }
  2107. @media screen and (max-width: 2057px) {
  2108. width: 80%;
  2109. margin-top: -110px;
  2110. margin-left: 70px;
  2111. }
  2112. @media screen and (max-width: 1921px) {
  2113. width: 80%;
  2114. margin-top: -80px;
  2115. margin-left: 80px;
  2116. }
  2117. @media screen and (max-width: 1441px) {
  2118. width: 90%;
  2119. margin-left: 30px;
  2120. margin-top: 0px;
  2121. }
  2122. }
  2123. .step3 {
  2124. @media screen and (min-width: 2500px) {
  2125. width: 75%;
  2126. margin-top: -120px;
  2127. margin-left: 120px;
  2128. }
  2129. @media screen and (max-width: 2057px) {
  2130. width: 75%;
  2131. margin-top: -60px;
  2132. margin-left: 100px;
  2133. }
  2134. @media screen and (max-width: 1921px) {
  2135. width: 80%;
  2136. margin-top: -50px;
  2137. margin-left: 60px;
  2138. }
  2139. @media screen and (max-width: 1441px) {
  2140. width: 90%;
  2141. margin-top: 30px;
  2142. margin-left: 0px;
  2143. }
  2144. }
  2145. .step4 {
  2146. @media screen and (min-width: 2500px) {
  2147. width: 40%;
  2148. margin-top: 50px;
  2149. margin-right: 50px;
  2150. }
  2151. @media screen and (max-width: 2057px) {
  2152. width: 45%;
  2153. margin-top: -70px;
  2154. margin-right: 70px;
  2155. }
  2156. @media screen and (max-width: 1921px) {
  2157. width: 50%;
  2158. margin-top: -100px;
  2159. margin-right: 80px;
  2160. }
  2161. @media screen and (max-width: 1441px) {
  2162. width: 60%;
  2163. margin-right: 50px;
  2164. margin-top: -10px;
  2165. }
  2166. }
  2167. .step5 {
  2168. @media screen and (min-width: 2500px) {
  2169. width: 80%;
  2170. margin-top: -130px;
  2171. margin-left: 120px;
  2172. }
  2173. @media screen and (max-width: 2057px) {
  2174. width: 85%;
  2175. margin-top: -80px;
  2176. margin-left: 70px;
  2177. }
  2178. @media screen and (max-width: 1921px) {
  2179. width: 90%;
  2180. margin-top: -100px;
  2181. margin-left: 50px;
  2182. }
  2183. // @media screen and (min-width: 1441px) {
  2184. // width: 90%;
  2185. // margin-top: -100px;
  2186. // }
  2187. @media screen and (max-width: 1441px) {
  2188. width: 100%;
  2189. margin-top: -20px;
  2190. margin-left: 0px;
  2191. }
  2192. }
  2193. .step5-2 {
  2194. @media screen and (min-width: 2500px) {
  2195. width: 30%;
  2196. margin-right: -30px;
  2197. margin-top: -100px;
  2198. }
  2199. @media screen and (max-width: 2057px) {
  2200. width: 35%;
  2201. margin-right: 50px;
  2202. margin-top: -100px;
  2203. }
  2204. @media screen and (max-width: 1921px) {
  2205. margin-right: 0px;
  2206. margin-top: -80px;
  2207. }
  2208. @media screen and (max-width: 1441px) {
  2209. width: 40%;
  2210. margin-right: 80px;
  2211. margin-top: -80px;
  2212. }
  2213. }
  2214. .meihaochengjia {
  2215. position: absolute;
  2216. @media screen and (min-width: 2500px) {
  2217. width: 130px;
  2218. position: absolute;
  2219. right: 50px;
  2220. top: -10px;
  2221. }
  2222. @media screen and (max-width: 2057px) {
  2223. width: 130px;
  2224. position: absolute;
  2225. right: 50px;
  2226. top: 10px;
  2227. }
  2228. @media screen and (max-width: 1921px) {
  2229. width: 130px;
  2230. position: absolute;
  2231. right: 50px;
  2232. top: 20px;
  2233. }
  2234. @media screen and (max-width: 1441px) {
  2235. width: 130px;
  2236. position: absolute;
  2237. right: 30px;
  2238. top: 30px;
  2239. }
  2240. }
  2241. .room-planner-process-main-box {
  2242. width: 95%;
  2243. margin: 0 auto;
  2244. .room-planner-process-main-content-left-box {
  2245. position: relative;
  2246. padding: 20px;
  2247. background: #fff;
  2248. border-radius: 16px;
  2249. @media screen and (max-width: 1200px) {
  2250. padding: 10px;
  2251. }
  2252. .step04_direction {
  2253. position: absolute;
  2254. left: -50px;
  2255. top: 50px;
  2256. z-index: -1;
  2257. }
  2258. .step03_direction {
  2259. position: absolute;
  2260. left: -50px;
  2261. top: 150px;
  2262. z-index: -1;
  2263. }
  2264. .step02_direction {
  2265. position: absolute;
  2266. left: -50px;
  2267. bottom: 150px;
  2268. z-index: -1;
  2269. }
  2270. .step01_direction {
  2271. position: absolute;
  2272. right: -50px;
  2273. top: 50px;
  2274. z-index: -1;
  2275. }
  2276. .step05_direction {
  2277. position: absolute;
  2278. right: -50px;
  2279. top: 180px;
  2280. z-index: -1;
  2281. }
  2282. }
  2283. .room-planner-process-main-content-left-step {
  2284. .room-planner-process-main-content-left-step-item {
  2285. margin-top: 30px;
  2286. }
  2287. p {
  2288. margin-bottom: 0.5rem;
  2289. }
  2290. }
  2291. .room-planner-process-main-title-box {
  2292. width: 431px;
  2293. padding: 10px 20px;
  2294. .room-planner-process-main-title {
  2295. font-style: oblique;
  2296. font-weight: 700;
  2297. color: #4b7718;
  2298. font-size: 42px;
  2299. letter-spacing: 5px;
  2300. // font-style: oblique 20deg;
  2301. }
  2302. }
  2303. .step-number-circle {
  2304. background: #649e2e;
  2305. width: 26px;
  2306. height: 26px;
  2307. text-align: center;
  2308. border-radius: 100%;
  2309. padding: 1px 0;
  2310. .step-number {
  2311. font-size: 16px;
  2312. font-family: Quicksand;
  2313. font-weight: 700;
  2314. color: #fff;
  2315. }
  2316. }
  2317. .step-qa-circle-q {
  2318. background: #e0ee79;
  2319. width: 26px;
  2320. height: 26px;
  2321. text-align: center;
  2322. border-radius: 100%;
  2323. padding: 1px 0;
  2324. .step-qa-q {
  2325. font-size: 14px;
  2326. font-family: Quicksand;
  2327. font-weight: 700;
  2328. color: #54891d;
  2329. }
  2330. }
  2331. }
  2332. .room-planner-process-main-star-green {
  2333. position: absolute;
  2334. bottom: 10px;
  2335. right: 150px;
  2336. animation-name: star;
  2337. animation-duration: 1s;
  2338. animation-delay: 0;
  2339. animation-iteration-count: infinite;
  2340. animation-direction: alternate;
  2341. animation-timing-function: ease-in-out;
  2342. @media screen and (min-width: 2560px) {
  2343. top: 40px;
  2344. right: 170px;
  2345. }
  2346. @media screen and (max-width: 2057px) {
  2347. bottom: 20px;
  2348. right: 190px;
  2349. }
  2350. @media screen and (max-width: 1921px) {
  2351. bottom: 20px;
  2352. right: 190px;
  2353. }
  2354. @media screen and (max-width: 1441px) {
  2355. bottom: -15px;
  2356. right: 170px;
  2357. }
  2358. }
  2359. .room-planner-process-main-star-line {
  2360. position: absolute;
  2361. bottom: 10px;
  2362. right: 5px;
  2363. animation-name: star;
  2364. animation-duration: 1s;
  2365. animation-delay: 0;
  2366. animation-iteration-count: infinite;
  2367. animation-direction: alternate;
  2368. animation-timing-function: ease-in-out;
  2369. @media screen and (min-width: 2560px) {
  2370. top: 50px;
  2371. right: 40px;
  2372. }
  2373. @media screen and (max-width: 2057px) {
  2374. bottom: 10px;
  2375. right: 20px;
  2376. }
  2377. @media screen and (max-width: 1921px) {
  2378. bottom: 10px;
  2379. right: 20px;
  2380. }
  2381. @media screen and (max-width: 1441px) {
  2382. bottom: -40px;
  2383. right: 15px;
  2384. }
  2385. }
  2386. .room-planner-process-main-star-yellow {
  2387. position: absolute;
  2388. right: -15px;
  2389. top: 50px;
  2390. animation-name: star;
  2391. animation-duration: 2s;
  2392. animation-delay: 0;
  2393. animation-iteration-count: infinite;
  2394. animation-direction: alternate-reverse;
  2395. animation-timing-function: linear;
  2396. @media screen and (min-width: 2560px) {
  2397. top: -15px;
  2398. right: 20px;
  2399. }
  2400. @media screen and (max-width: 2057px) {
  2401. top: 5px;
  2402. right: 5px;
  2403. }
  2404. @media screen and (max-width: 1921px) {
  2405. top: 5px;
  2406. right: 5px;
  2407. }
  2408. @media screen and (max-width: 1441px) {
  2409. right: -5px;
  2410. top: 30px;
  2411. }
  2412. }
  2413. }
  2414. .room-planner-process-main-content-step-img {
  2415. margin-top: -50px;
  2416. }
  2417. .room-planner-process-main-content-step-4-6img {
  2418. @media screen and (min-width: 2500px) {
  2419. margin-top: 200px;
  2420. }
  2421. @media screen and (max-width: 2057px) {
  2422. margin-top: 320px;
  2423. }
  2424. @media screen and (max-width: 1921px) {
  2425. margin-top: 380px;
  2426. }
  2427. @media screen and (max-width: 1441px) {
  2428. margin-top: 380px;
  2429. }
  2430. margin-top: 380px;
  2431. }
  2432. .stepbox {
  2433. background: #4b7718;
  2434. border-radius: 100px;
  2435. padding: 5px 15px;
  2436. font-family: Quicksand;
  2437. color: #fff;
  2438. font-weight: 700;
  2439. font-size: 24px;
  2440. }
  2441. .room-planner-process-main-chenjia {
  2442. background: #ffe35f;
  2443. width: 150px;
  2444. border-radius: 100px;
  2445. padding: 5px 15px;
  2446. color: #736357;
  2447. font-weight: 700;
  2448. margin: 50px auto;
  2449. font-size: 24px;
  2450. }
  2451. // 手機版
  2452. .section-room-planner-process-mb-main {
  2453. @media screen and (min-width: $desktop) {
  2454. display: none;
  2455. }
  2456. @media screen and (max-width: 991px) {
  2457. display: block;
  2458. }
  2459. }
  2460. .room-planner-process-mb-main {
  2461. .room-planner-process-main-title-box {
  2462. width: 100%;
  2463. padding: 10px;
  2464. margin: 30px auto;
  2465. .room-planner-process-main-title {
  2466. text-align: center;
  2467. font-style: oblique;
  2468. font-weight: 700;
  2469. color: #4b7718;
  2470. font-size: 34px;
  2471. letter-spacing: 5px;
  2472. @media screen and (max-width: 375px) {
  2473. font-size: 32px;
  2474. }
  2475. // font-style: oblique 20deg;
  2476. }
  2477. }
  2478. .step-number-circle {
  2479. background: #649e2e;
  2480. width: 26px;
  2481. height: 26px;
  2482. text-align: center;
  2483. border-radius: 100%;
  2484. padding: 1px 0;
  2485. .step-number {
  2486. font-size: 16px;
  2487. font-family: Quicksand;
  2488. font-weight: 700;
  2489. color: #fff;
  2490. }
  2491. }
  2492. .step-qa-circle-q {
  2493. background: #e0ee79;
  2494. width: 26px;
  2495. height: 26px;
  2496. text-align: center;
  2497. border-radius: 100%;
  2498. padding: 1px 0;
  2499. .step-qa-q {
  2500. font-size: 14px;
  2501. font-family: Quicksand;
  2502. font-weight: 700;
  2503. color: #54891d;
  2504. }
  2505. }
  2506. .accordion-body {
  2507. padding: 0;
  2508. }
  2509. .accordion-button:focus {
  2510. background: #fff;
  2511. box-shadow: none;
  2512. }
  2513. .accordion-item {
  2514. border-top: 1.5px solid #e0ee79 !important;
  2515. border-left: none;
  2516. border-right: none;
  2517. border-bottom: none;
  2518. .accordion-button {
  2519. padding-top: 30px;
  2520. }
  2521. }
  2522. .accordion-button:not(.collapsed) {
  2523. background: #fff;
  2524. box-shadow: none;
  2525. }
  2526. .accordion-button::after {
  2527. background-image: url(/img/room_planner/open.png);
  2528. }
  2529. .accordion .accordion-button:not(.collapsed)::after {
  2530. width: 20px;
  2531. height: 20px;
  2532. background-image: url(/img/room_planner/close.png);
  2533. background-position: center;
  2534. transform: none;
  2535. }
  2536. .accordion-header {
  2537. padding-bottom: 15px;
  2538. }
  2539. }
  2540. .room-planner-process-mb-main {
  2541. width: 95%;
  2542. margin: 0 auto;
  2543. }
  2544. .room-planner {
  2545. display: -webkit-box;
  2546. display: -ms-flexbox;
  2547. display: flex;
  2548. -webkit-box-orient: vertical;
  2549. -webkit-box-direction: normal;
  2550. -ms-flex-direction: column;
  2551. flex-direction: column;
  2552. }
  2553. // .room-planner .row {
  2554. // -webkit-box-align: center;
  2555. // -ms-flex-align: center;
  2556. // align-items: center;
  2557. // -webkit-box-pack: center;
  2558. // -ms-flex-pack: center;
  2559. // justify-content: center;
  2560. // -ms-flex-wrap: nowrap;
  2561. // flex-wrap: nowrap;
  2562. // }
  2563. .room-planner .sub-banner {
  2564. margin: 210px auto 50px;
  2565. @media screen and (max-width: 767px) {
  2566. margin: 160px auto 50px;
  2567. }
  2568. }
  2569. .sub-banner2 {
  2570. width: 650px;
  2571. margin: 100px auto;
  2572. @media screen and (max-width: 767px) {
  2573. width: 100%;
  2574. margin: 50px auto;
  2575. }
  2576. }
  2577. // .room-planner .sub-banner img {
  2578. // width: 100%;
  2579. // max-width: 600px;
  2580. // padding: 0 20px;
  2581. // }
  2582. .room-planner .room-planner-images {
  2583. padding: 0 70px 100px;
  2584. position: relative;
  2585. }
  2586. .room-planner .room-planner-images .row {
  2587. padding: 50px 0;
  2588. }
  2589. .room-planner .room-planner-images .img-box {
  2590. border-radius: 40px;
  2591. background-color: #99a56f;
  2592. border: 3px solid var(--second-color);
  2593. background-size: cover;
  2594. background-position: center;
  2595. background-repeat: no-repeat;
  2596. }
  2597. .room-planner .room-planner-images .bg-item {
  2598. max-width: 830px;
  2599. height: 270px;
  2600. }
  2601. .room-planner .room-planner-images .step-01 {
  2602. background-image: url(/img/room_planner/step1.webp);
  2603. }
  2604. .room-planner .room-planner-images .step-02 {
  2605. background-image: url(/img/room_planner/step2.webp);
  2606. }
  2607. .room-planner .room-planner-images .step-03 {
  2608. background-position: right;
  2609. background-image: url(/img/room_planner/step3.webp);
  2610. }
  2611. .room-planner .room-planner-images .step-04 {
  2612. background-image: url(/img/room_planner/step4.webp);
  2613. }
  2614. .room-planner .room-planner-images .step-06 {
  2615. background-image: url(/img/room_planner/step6.webp);
  2616. }
  2617. .room-planner .room-planner-images .step-09 {
  2618. background-image: url(/img/room_planner/step9.webp);
  2619. }
  2620. .room-planner .room-planner-images .line-1,
  2621. .room-planner .room-planner-images .line-2,
  2622. .room-planner .room-planner-images .line-3,
  2623. .room-planner .room-planner-images .line-4,
  2624. .room-planner .room-planner-images .line-5 {
  2625. position: absolute;
  2626. z-index: -1;
  2627. }
  2628. .room-planner .room-planner-images .line-1 {
  2629. top: -50px;
  2630. width: 580px;
  2631. height: 200px;
  2632. border-left: 3px solid var(--second-color);
  2633. }
  2634. .room-planner .room-planner-images .line-2 {
  2635. top: 185px;
  2636. width: 585px;
  2637. height: 370px;
  2638. border: 3px solid var(--second-color);
  2639. border-left: none;
  2640. }
  2641. .room-planner .room-planner-images .line-3 {
  2642. top: 600px;
  2643. width: 580px;
  2644. height: 200px;
  2645. border-left: 3px solid var(--second-color);
  2646. }
  2647. .room-planner .room-planner-images .line-4 {
  2648. top: 930px;
  2649. width: 585px;
  2650. height: 380px;
  2651. border: 3px solid var(--second-color);
  2652. border-left: none;
  2653. }
  2654. .room-planner .room-planner-images .line-5 {
  2655. width: 590px;
  2656. height: 300px;
  2657. bottom: 300px;
  2658. border-left: 3px solid var(--second-color);
  2659. }
  2660. @media (max-width: 991px) {
  2661. .room-planner .room-planner-images .bg-item {
  2662. min-width: 750px;
  2663. }
  2664. .room-planner .room-planner-images .line-2,
  2665. .room-planner .room-planner-images .line-3 {
  2666. width: 540px;
  2667. }
  2668. .room-planner .room-planner-images .line-4 {
  2669. width: 510px;
  2670. }
  2671. }
  2672. @media (max-width: 767px) {
  2673. .room-planner .room-planner-images {
  2674. display: none;
  2675. }
  2676. }
  2677. .room-planner .room-planner-moblie .row {
  2678. margin-bottom: 50px;
  2679. padding: 0 65px;
  2680. }
  2681. .room-planner .room-planner-moblie .img-box {
  2682. border-radius: 30px;
  2683. background-color: #99a56f;
  2684. border: 3px solid var(--second-color);
  2685. }
  2686. .room-planner .room-planner-moblie .text-box {
  2687. margin-right: 10vw;
  2688. font-size: 20px;
  2689. font-weight: bold;
  2690. text-align: center;
  2691. }
  2692. .room-planner .room-planner-moblie .text-box span {
  2693. font-size: 44px;
  2694. color: #99a56f;
  2695. }
  2696. .room-planner .room-planner-moblie .line-6 {
  2697. height: 2800px;
  2698. position: absolute;
  2699. top: -50px;
  2700. right: 29%;
  2701. z-index: -1;
  2702. border-right: 2px solid var(--second-color);
  2703. }
  2704. @media (min-width: 767px) {
  2705. .room-planner .room-planner-moblie {
  2706. display: none;
  2707. }
  2708. }
  2709. @media (max-width: 575px) {
  2710. .room-planner .room-planner-moblie .line-6 {
  2711. right: 36%;
  2712. }
  2713. .room-planner .room-planner-moblie .text-box {
  2714. margin-right: 0;
  2715. }
  2716. }
  2717. .room-planner .rp-navs {
  2718. padding: 35px 25px;
  2719. }
  2720. .room-planner .rp-navs .home-content {
  2721. width: 100%;
  2722. max-width: 850px;
  2723. display: -webkit-box;
  2724. display: -ms-flexbox;
  2725. display: flex;
  2726. }
  2727. @media (max-width: 767px) {
  2728. .room-planner .rp-navs {
  2729. display: none;
  2730. }
  2731. }
  2732. .hover_up {
  2733. // transition: 0.3s;
  2734. cursor: pointer;
  2735. &:hover {
  2736. animation: float 1.5s ease-out infinite;
  2737. }
  2738. }
  2739. @keyframes float {
  2740. 50% {
  2741. transform: translate(0, -20px);
  2742. }
  2743. }
  2744. .room-planner-process-main-star-yellow-m {
  2745. position: absolute;
  2746. right: 100px;
  2747. bottom: 50px;
  2748. animation-name: star;
  2749. animation-duration: 2s;
  2750. animation-delay: 0;
  2751. animation-iteration-count: infinite;
  2752. animation-direction: alternate-reverse;
  2753. animation-timing-function: linear;
  2754. @media screen and (max-width: $table) {
  2755. right: 35vw;
  2756. }
  2757. @media screen and (max-width: 767px) {
  2758. right: 100px;
  2759. bottom: 50px;
  2760. }
  2761. }
  2762. .room-planner-process-main-star-green-m {
  2763. position: absolute;
  2764. bottom: -10px;
  2765. left: 100px;
  2766. animation-name: star;
  2767. animation-duration: 1s;
  2768. animation-delay: 0;
  2769. animation-iteration-count: infinite;
  2770. animation-direction: alternate;
  2771. animation-timing-function: ease-in-out;
  2772. @media screen and (max-width: $table) {
  2773. left: 35vw;
  2774. }
  2775. @media screen and (max-width: 767px) {
  2776. bottom: -30px;
  2777. left: 80px;
  2778. }
  2779. @media screen and (max-width: 375px) {
  2780. left: 80px;
  2781. }
  2782. }
  2783. .room-planner-process-main-star-line-m {
  2784. position: absolute;
  2785. bottom: -30px;
  2786. right: 100px;
  2787. animation-name: star;
  2788. animation-duration: 1s;
  2789. animation-delay: 0;
  2790. animation-iteration-count: infinite;
  2791. animation-direction: alternate;
  2792. animation-timing-function: ease-in-out;
  2793. @media screen and (max-width: $table) {
  2794. right: 35vw;
  2795. }
  2796. @media screen and (max-width: 767px) {
  2797. bottom: -30px;
  2798. right: 100px;
  2799. }
  2800. @media screen and (max-width: 375px) {
  2801. }
  2802. }
  2803. /* 成家設計服務-room_planner end */
  2804. /* 成家知識專欄-categories start */
  2805. .w-80-auto {
  2806. width: 80%;
  2807. margin: 0 auto;
  2808. @media screen and (max-width: 767px) {
  2809. width: 100%;
  2810. margin: 0 auto;
  2811. }
  2812. }
  2813. .blog-categories .container {
  2814. width: 50%;
  2815. margin: 40px auto 25px;
  2816. }
  2817. .blog-categories .container .breadcrumb-item {
  2818. font-weight: 500;
  2819. }
  2820. .blog-categories .container .breadcrumb-item a {
  2821. font-weight: 500;
  2822. color: var(--main-color);
  2823. }
  2824. .blog-categories .container .link-list {
  2825. width: 100%;
  2826. }
  2827. .blog-categories .container .link-list button {
  2828. text-decoration: none;
  2829. margin: 0 0.1rem 0.5rem;
  2830. padding: 5px 10px;
  2831. background: #808e4c;
  2832. margin-right: 5px;
  2833. -webkit-transition: 0.3s;
  2834. transition: 0.3s;
  2835. border: 1px solid #808e4c;
  2836. }
  2837. .blog-categories .container .link-list button:hover {
  2838. border: 1px solid #808e4c;
  2839. background: #fff;
  2840. color: #808e4c;
  2841. a {
  2842. color: #808e4c;
  2843. }
  2844. }
  2845. .blog-categories .container .link-list a {
  2846. color: #fff;
  2847. }
  2848. .blog-categories .container .bhouseweb_search_form {
  2849. padding: 0;
  2850. }
  2851. .blog-categories .container .bhouseweb_search_form .bhouseweb_search_img img {
  2852. width: 38px;
  2853. }
  2854. .blog-categories .article {
  2855. width: 50%;
  2856. margin: auto;
  2857. display: -webkit-box;
  2858. display: -ms-flexbox;
  2859. display: flex;
  2860. -webkit-box-orient: vertical;
  2861. -webkit-box-direction: normal;
  2862. -ms-flex-direction: column;
  2863. flex-direction: column;
  2864. margin-top: 25px;
  2865. }
  2866. .blog-categories .article .article-item {
  2867. display: -webkit-box;
  2868. display: -ms-flexbox;
  2869. display: flex;
  2870. margin: 25px 0;
  2871. padding-bottom: 50px;
  2872. border-bottom: 1px solid var(--dark-gray);
  2873. align-items: center;
  2874. }
  2875. .blog-categories .article .article-item h4 {
  2876. font-size: 24px;
  2877. line-height: 32px;
  2878. color: #4c660b;
  2879. font-weight: 700;
  2880. }
  2881. .blog-categories .article .article-item h4:hover {
  2882. opacity: 0.8;
  2883. }
  2884. .blog-categories .article .article-item .description {
  2885. color: var(--dark-color);
  2886. }
  2887. .blog-categories .article .article-item .description:hover {
  2888. opacity: 0.8;
  2889. }
  2890. // .blog-categories .article .article-item h4,
  2891. // .blog-categories .article .article-item p {
  2892. // font-weight: bold;
  2893. // }
  2894. // .blog-categories .article .article-item:last-child {
  2895. // border: none;
  2896. // }
  2897. .blog-categories .article .article-item img {
  2898. width: 240px;
  2899. height: auto;
  2900. margin-right: 35px;
  2901. }
  2902. .blog-categories .nav-link {
  2903. padding: 0;
  2904. margin-bottom: 50px;
  2905. padding-top: 30px;
  2906. text-align: center;
  2907. font-weight: bold;
  2908. font-size: 14px;
  2909. letter-spacing: 1px;
  2910. color: var(--dark-color);
  2911. // border-top: 1px solid var(--dark-gray);
  2912. }
  2913. @media (max-width: 991px) {
  2914. .blog-categories .container,
  2915. .blog-categories .article {
  2916. width: 75%;
  2917. }
  2918. }
  2919. @media (max-width: 767px) {
  2920. .room-planner-process-box .container {
  2921. width: 75%;
  2922. }
  2923. }
  2924. @media (max-width: 575px) {
  2925. .blog-categories .container,
  2926. .blog-categories .article,
  2927. .room-planner-process-box .container {
  2928. width: 90%;
  2929. }
  2930. .blog-categories .container .article-item,
  2931. .blog-categories .article .article-item {
  2932. -webkit-box-orient: vertical;
  2933. -webkit-box-direction: normal;
  2934. -ms-flex-direction: column;
  2935. flex-direction: column;
  2936. }
  2937. .blog-categories .container .article-item a,
  2938. .blog-categories .article .article-item a {
  2939. margin-top: 20px;
  2940. }
  2941. .blog-categories .container .article-item img,
  2942. .blog-categories .article .article-item img {
  2943. width: 100%;
  2944. margin-right: 15px;
  2945. }
  2946. }
  2947. .blog-main {
  2948. .text-box {
  2949. margin: 70px auto;
  2950. .title {
  2951. text-align: center;
  2952. font-weight: 700;
  2953. font-size: 32px;
  2954. letter-spacing: 2%;
  2955. color: #649e2e;
  2956. }
  2957. div {
  2958. position: relative;
  2959. max-width: 480px;
  2960. margin: auto;
  2961. p {
  2962. max-width: 480px;
  2963. margin: 40px auto;
  2964. text-align: center;
  2965. font-weight: 500;
  2966. font-size: 20px;
  2967. line-height: 36px;
  2968. color: #78b142;
  2969. }
  2970. img {
  2971. width: 2.5%;
  2972. }
  2973. .left_img {
  2974. position: absolute;
  2975. top: 0;
  2976. left: 0;
  2977. @media (max-width: 767px) {
  2978. left: 10vw;
  2979. }
  2980. }
  2981. .right_img {
  2982. position: absolute;
  2983. top: 0;
  2984. right: 0;
  2985. @media (max-width: 767px) {
  2986. right: 10vw;
  2987. }
  2988. }
  2989. }
  2990. .underline {
  2991. display: block;
  2992. background: #f0f6dd;
  2993. height: 10px;
  2994. width: 210px;
  2995. margin: auto;
  2996. margin-top: -35px;
  2997. }
  2998. }
  2999. .process {
  3000. padding: 85px 0 60px;
  3001. background-color: #f0f6dd;
  3002. display: flex;
  3003. flex-direction: column;
  3004. justify-content: center;
  3005. align-items: center;
  3006. position: relative;
  3007. @media (max-width: 767px) {
  3008. padding: 100px 0 60px;
  3009. }
  3010. div {
  3011. display: flex;
  3012. margin: 0 50px;
  3013. @media (max-width: 767px) {
  3014. margin: auto;
  3015. }
  3016. }
  3017. div:last-child {
  3018. padding: 0 145px;
  3019. margin-top: 58px;
  3020. @media (max-width: 890px) {
  3021. margin-top: 27px;
  3022. }
  3023. @media (max-width: 767px) {
  3024. padding: 0;
  3025. margin-top: 0;
  3026. }
  3027. }
  3028. .house_img {
  3029. position: absolute;
  3030. top: -95px;
  3031. left: 100px;
  3032. max-width: 180px;
  3033. @media (max-width: 1200px) {
  3034. top: -8vw;
  3035. max-width: 15%;
  3036. }
  3037. @media (max-width: 767px) {
  3038. top: -60px;
  3039. left: 35%;
  3040. max-width: 25vw;
  3041. }
  3042. @media (max-width: 475px) {
  3043. left: 33%;
  3044. max-width: 35vw;
  3045. }
  3046. }
  3047. .star_green {
  3048. width: 20px;
  3049. position: absolute;
  3050. top: -60px;
  3051. left: 90px;
  3052. animation-name: star;
  3053. animation-duration: 1s;
  3054. animation-delay: 0;
  3055. animation-iteration-count: infinite;
  3056. animation-direction: alternate;
  3057. animation-timing-function: ease-in-out;
  3058. @media (max-width: 767px) {
  3059. left: 30vw;
  3060. top: -4%;
  3061. }
  3062. }
  3063. .star_yellow {
  3064. width: 20px;
  3065. position: absolute;
  3066. top: -85px;
  3067. left: 280px;
  3068. animation-name: star;
  3069. animation-duration: 1s;
  3070. animation-delay: 0;
  3071. animation-iteration-count: infinite;
  3072. animation-direction: alternate-reverse;
  3073. animation-timing-function: linear;
  3074. @media (max-width: 1199px) {
  3075. left: 24%;
  3076. }
  3077. @media (max-width: 991px) {
  3078. left: 27%;
  3079. top: -15%;
  3080. }
  3081. @media (max-width: 767px) {
  3082. left: 60vw;
  3083. top: -7%;
  3084. }
  3085. @media (max-width: 475px) {
  3086. left: 67vw;
  3087. }
  3088. }
  3089. .ruler_img {
  3090. position: absolute;
  3091. top: -70px;
  3092. right: 100px;
  3093. max-width: 110px;
  3094. }
  3095. .line_01 {
  3096. position: absolute;
  3097. width: 700px;
  3098. top: 25%;
  3099. @media (max-width: 890px) {
  3100. width: 600px;
  3101. }
  3102. }
  3103. .line_02 {
  3104. position: absolute;
  3105. width: 700px;
  3106. top: 85%;
  3107. right: 48%;
  3108. max-width: 700px;
  3109. height: 100%;
  3110. @media (max-width: 890px) {
  3111. width: 600px;
  3112. top: 67%;
  3113. }
  3114. }
  3115. section {
  3116. margin-right: 80px;
  3117. @media (max-width: 767px) {
  3118. margin-right: 0;
  3119. }
  3120. img {
  3121. width: 100%;
  3122. max-width: 90px;
  3123. height: 90px;
  3124. object-fit: contain;
  3125. position: relative;
  3126. z-index: 1;
  3127. cursor: pointer;
  3128. @media (max-width: 767px) {
  3129. width: auto;
  3130. }
  3131. }
  3132. span {
  3133. display: block;
  3134. position: absolute;
  3135. img {
  3136. width: 40px;
  3137. height: 45px;
  3138. position: absolute;
  3139. top: -110px;
  3140. left: 65px;
  3141. z-index: 10;
  3142. object-fit: contain;
  3143. }
  3144. }
  3145. h4 {
  3146. font-size: 16px;
  3147. text-align: center;
  3148. margin: 15px 0;
  3149. font-weight: 500;
  3150. }
  3151. }
  3152. }
  3153. .process_mb {
  3154. .row {
  3155. img {
  3156. position: relative;
  3157. z-index: 20;
  3158. }
  3159. div {
  3160. position: relative;
  3161. justify-content: center;
  3162. margin-bottom: 10vw;
  3163. }
  3164. .mb_line_01 {
  3165. background-size: contain;
  3166. background-repeat: no-repeat;
  3167. background-image: url("/img/blog/line01_mb.svg");
  3168. position: absolute;
  3169. height: 5px;
  3170. width: 66%;
  3171. top: 32%;
  3172. left: 68%;
  3173. z-index: 10;
  3174. }
  3175. .mb_line_02 {
  3176. background-size: contain;
  3177. background-repeat: no-repeat;
  3178. background-image: url("/img/blog/line02_mb.svg");
  3179. position: absolute;
  3180. height: 125px;
  3181. width: 100%;
  3182. top: 90%;
  3183. left: -50%;
  3184. z-index: 10;
  3185. }
  3186. }
  3187. }
  3188. .article_list {
  3189. margin-top: 100px;
  3190. @media (max-width: 767px) {
  3191. margin-top: 0;
  3192. }
  3193. .article_item {
  3194. width: 65%;
  3195. display: flex;
  3196. justify-content: center;
  3197. align-items: center;
  3198. flex-direction: column;
  3199. @media (max-width: 1199px) {
  3200. width: 80%;
  3201. }
  3202. @media (max-width: 991px) {
  3203. width: 97%;
  3204. }
  3205. @media (max-width: 767px) {
  3206. width: 100%;
  3207. margin: auto;
  3208. }
  3209. .row {
  3210. height: 500px;
  3211. @media (max-width: 991px) {
  3212. height: 530px;
  3213. }
  3214. }
  3215. .img_box {
  3216. position: relative;
  3217. @media (max-width: 767px) {
  3218. display: flex;
  3219. flex-direction: column;
  3220. align-items: center;
  3221. margin: 80px auto;
  3222. }
  3223. img:first-child {
  3224. width: 100%;
  3225. @media (max-width: 767px) {
  3226. width: 75%;
  3227. }
  3228. }
  3229. img:last-child {
  3230. width: 55px;
  3231. position: absolute;
  3232. left: 80%;
  3233. top: -20px;
  3234. @media (max-width: 1199px) {
  3235. left: 19vw;
  3236. }
  3237. @media (max-width: 991px) {
  3238. left: 23vw;
  3239. top: -25px;
  3240. }
  3241. @media (max-width: 767px) {
  3242. position: absolute;
  3243. left: 65vw;
  3244. width: 60px;
  3245. top: -10px;
  3246. }
  3247. }
  3248. }
  3249. .mobile_line {
  3250. img {
  3251. width: 100%;
  3252. margin-bottom: -25px;
  3253. }
  3254. }
  3255. .text_box {
  3256. display: flex;
  3257. flex-direction: column;
  3258. position: relative;
  3259. h4 {
  3260. color: #649e2e;
  3261. font-size: 35px;
  3262. font-weight: 700;
  3263. @media (max-width: 767px) {
  3264. font-size: 26px;
  3265. }
  3266. span {
  3267. color: #78b142;
  3268. font-size: 28px;
  3269. font-weight: 500;
  3270. @media (max-width: 767px) {
  3271. font-size: 24px;
  3272. }
  3273. }
  3274. }
  3275. ul {
  3276. list-style: none;
  3277. margin-top: 15px;
  3278. padding-left: 20px;
  3279. // 隱藏最下方分隔線
  3280. li:last-child {
  3281. display: none;
  3282. }
  3283. li {
  3284. display: flex;
  3285. align-items: center;
  3286. .blog_img {
  3287. position: relative;
  3288. img:first-child {
  3289. width: 120px;
  3290. height: 80px;
  3291. border-radius: 10px;
  3292. }
  3293. img:last-child {
  3294. position: absolute;
  3295. width: 50px;
  3296. left: -20px;
  3297. top: -20px;
  3298. }
  3299. }
  3300. .blog_text {
  3301. margin-left: 20px;
  3302. h5 a {
  3303. width: 130%;
  3304. font-size: 18px;
  3305. font-weight: 500;
  3306. color: #000;
  3307. &:hover {
  3308. background: linear-gradient(to bottom, #fff 50%, #ffe55f 50%);
  3309. }
  3310. }
  3311. p {
  3312. margin: 0;
  3313. width: 100%;
  3314. color: #78b142;
  3315. line-height: 20px;
  3316. font-size: 14px;
  3317. }
  3318. }
  3319. span {
  3320. display: block;
  3321. margin: 5px 0;
  3322. img {
  3323. width: 100%;
  3324. @media (max-width: 767px) {
  3325. width: 100%;
  3326. }
  3327. }
  3328. }
  3329. }
  3330. }
  3331. .btn_box {
  3332. margin-top: 10px;
  3333. margin-left: 20px;
  3334. @media (max-width: 767px) {
  3335. position: relative;
  3336. margin: 20px auto;
  3337. }
  3338. .read_more {
  3339. display: flex;
  3340. align-items: center;
  3341. justify-content: center;
  3342. width: 160px;
  3343. height: 50px;
  3344. color: #fff;
  3345. background-color: #78b142;
  3346. border: none;
  3347. border-radius: 12px;
  3348. position: relative;
  3349. bottom: 0;
  3350. left: 0;
  3351. transition: all 0.2s;
  3352. letter-spacing: 1px;
  3353. font-size: 18px;
  3354. font-weight: 500;
  3355. cursor: pointer;
  3356. p {
  3357. margin: 0;
  3358. margin-left: -10px;
  3359. }
  3360. &:hover {
  3361. bottom: -5px;
  3362. left: 4px;
  3363. img {
  3364. right: -15px;
  3365. }
  3366. }
  3367. img {
  3368. position: relative;
  3369. right: -10px;
  3370. transition: all 0.2s;
  3371. }
  3372. }
  3373. span {
  3374. width: 160px;
  3375. height: 50px;
  3376. background: #f0f6dd;
  3377. position: absolute;
  3378. z-index: -1;
  3379. bottom: -5px;
  3380. left: 25px;
  3381. border-radius: 12px;
  3382. @media (max-width: 767px) {
  3383. left: 3.5%;
  3384. }
  3385. }
  3386. }
  3387. }
  3388. .blog_divider {
  3389. position: relative;
  3390. .bg_img {
  3391. width: 45vw;
  3392. height: 5px;
  3393. margin: 50px 0;
  3394. background-image: url("/img/blog/Vector.png");
  3395. background-repeat: no-repeat;
  3396. @media (max-width: 1199px) {
  3397. width: 33vw;
  3398. }
  3399. @media (max-width: 991px) {
  3400. width: 25vw;
  3401. }
  3402. }
  3403. img {
  3404. width: 45vw;
  3405. margin: 50px 0;
  3406. }
  3407. .line_left {
  3408. position: absolute;
  3409. width: 311px;
  3410. height: 610px;
  3411. top: 0px;
  3412. right: -300px;
  3413. @media (max-width: 991px) {
  3414. height: 640px;
  3415. }
  3416. }
  3417. .line_right {
  3418. position: absolute;
  3419. width: 300px;
  3420. height: 590px;
  3421. top: -1px;
  3422. left: -290px;
  3423. @media (max-width: 991px) {
  3424. height: 620px;
  3425. }
  3426. }
  3427. .logo_01,
  3428. .logo_02,
  3429. .logo_03 {
  3430. position: absolute;
  3431. width: 70px;
  3432. @media (max-width: 991px) {
  3433. display: none;
  3434. }
  3435. }
  3436. .logo_01 {
  3437. left: -43%;
  3438. top: 150px;
  3439. @media (max-width: 1199px) {
  3440. left: -90%;
  3441. }
  3442. }
  3443. .logo_02 {
  3444. right: -45%;
  3445. top: 80px;
  3446. @media (max-width: 1199px) {
  3447. right: -90%;
  3448. top: 60px;
  3449. }
  3450. }
  3451. .logo_03 {
  3452. right: -45%;
  3453. top: -250px;
  3454. @media (max-width: 1199px) {
  3455. right: -90%;
  3456. }
  3457. }
  3458. }
  3459. }
  3460. .topic_list {
  3461. height: 295px;
  3462. margin-bottom: -50px;
  3463. background-color: #f0f6dd;
  3464. display: flex;
  3465. justify-content: center;
  3466. align-items: center;
  3467. position: relative;
  3468. @media (max-width: 767px) {
  3469. height: 100%;
  3470. margin-top: 80px;
  3471. }
  3472. img {
  3473. position: absolute;
  3474. top: -45px;
  3475. left: 100px;
  3476. max-width: 125px;
  3477. @media (max-width: 767px) {
  3478. top: -50px;
  3479. left: 35vw;
  3480. max-width: 120px;
  3481. }
  3482. }
  3483. section {
  3484. display: flex;
  3485. flex-direction: column;
  3486. @media (max-width: 767px) {
  3487. padding: 70px 0;
  3488. justify-content: center;
  3489. }
  3490. h5 {
  3491. width: 125px;
  3492. margin: auto;
  3493. font-size: 28px;
  3494. text-align: center;
  3495. font-weight: 700;
  3496. background: linear-gradient(to bottom, #f0f6dd 50%, #e0ee79 50%);
  3497. margin-bottom: 25px;
  3498. }
  3499. div {
  3500. width: 100%;
  3501. max-width: 535px;
  3502. margin: auto;
  3503. a {
  3504. display: inline-block;
  3505. color: #000;
  3506. background-color: #fff;
  3507. padding: 10px 15px;
  3508. margin: 10px 5px;
  3509. border-radius: 100px;
  3510. transition: all 0.3s;
  3511. &:hover {
  3512. color: #fff;
  3513. background-color: #649e2e;
  3514. }
  3515. @media (max-width: 767px) {
  3516. width: 95px;
  3517. margin: 10px 3px;
  3518. box-sizing: border-box;
  3519. }
  3520. }
  3521. }
  3522. }
  3523. @media (max-width: 767px) {
  3524. main {
  3525. width: 600px;
  3526. display: flex;
  3527. justify-content: center;
  3528. }
  3529. .container {
  3530. display: inline-flex;
  3531. flex-wrap: wrap;
  3532. width: 500px;
  3533. margin: auto;
  3534. }
  3535. }
  3536. @media (max-width: 475px) {
  3537. main {
  3538. width: 350px;
  3539. }
  3540. .container {
  3541. width: 310px;
  3542. justify-content: center;
  3543. }
  3544. }
  3545. }
  3546. }
  3547. }
  3548. /* 成家知識專欄-categories end */
  3549. /* 成家知識專欄-article start */
  3550. .blog_article h3 {
  3551. color: #4c660b;
  3552. font-weight: bold;
  3553. font-weight: 900;
  3554. margin-bottom: 50px;
  3555. }
  3556. .blog_article span {
  3557. font-weight: bold;
  3558. letter-spacing: 2px;
  3559. }
  3560. .blog_article ul {
  3561. margin: 0;
  3562. padding: 0;
  3563. list-style: none;
  3564. }
  3565. .blog_article p {
  3566. margin-bottom: 0;
  3567. line-height: 32px;
  3568. letter-spacing: 1px;
  3569. font-weight: 400;
  3570. }
  3571. .blog_article .content {
  3572. width: 50%;
  3573. margin: 60px auto;
  3574. padding-bottom: 60px;
  3575. }
  3576. .blog_article .content section:first-child {
  3577. margin: 60px auto;
  3578. padding-bottom: 60px;
  3579. border-bottom: 1px solid var(--dark-gray);
  3580. }
  3581. @media (max-width: 1200px) {
  3582. .blog_article .content {
  3583. width: 70%;
  3584. }
  3585. }
  3586. @media (max-width: 992px) {
  3587. .blog_article .content {
  3588. width: 90%;
  3589. }
  3590. }
  3591. .blog_article hr {
  3592. margin: 50px 0;
  3593. }
  3594. .blog_article .question-box {
  3595. display: -webkit-box;
  3596. display: -ms-flexbox;
  3597. display: flex;
  3598. -webkit-box-align: center;
  3599. -ms-flex-align: center;
  3600. align-items: center;
  3601. -webkit-box-orient: vertical;
  3602. -webkit-box-direction: normal;
  3603. -ms-flex-direction: column;
  3604. flex-direction: column;
  3605. border: 2px solid var(--second-color);
  3606. margin-bottom: 50px;
  3607. padding: 20px 50px 10px;
  3608. }
  3609. // .blog_article .question-box ul {
  3610. // padding: 20px 40px;
  3611. // }
  3612. .blog_article .question-box ul li {
  3613. margin: 10px 0;
  3614. letter-spacing: 1px;
  3615. font-weight: bold;
  3616. }
  3617. .blog_article .question-box p {
  3618. font-size: 20px;
  3619. font-weight: 700;
  3620. }
  3621. // .blog_article .question-box ul li:first-child {
  3622. // font-size: 20px;
  3623. // font-weight: 700;
  3624. // }
  3625. .blog_article .question-box ul a {
  3626. margin-left: 5px;
  3627. color: #006e9a;
  3628. }
  3629. .blog_article .question-box ul a:hover {
  3630. opacity: 0.8;
  3631. }
  3632. .blog_article .img-text {
  3633. margin: 0;
  3634. margin-bottom: 50px;
  3635. padding: 20px 60px;
  3636. background-color: rgba(128, 143, 76, 0.8);
  3637. text-align: start;
  3638. color: #ffffff;
  3639. font-size: 14px;
  3640. line-height: 28px;
  3641. font-weight: 500;
  3642. letter-spacing: 2px;
  3643. @media (max-width: 767px) {
  3644. padding: 20px 30px;
  3645. }
  3646. }
  3647. // .blog_article .img-box {
  3648. // margin: 50px 0;
  3649. // position: relative;
  3650. // }
  3651. .blog_article .content img {
  3652. width: 100%;
  3653. margin-top: 30px;
  3654. }
  3655. .blog_article .icon-box img {
  3656. margin-top: 0px;
  3657. width: 35px;
  3658. }
  3659. // .blog_article .img-box p {
  3660. // margin: 0;
  3661. // padding: 20px 60px;
  3662. // position: absolute;
  3663. // left: 0;
  3664. // right: 0;
  3665. // bottom: 0px;
  3666. // background-color: rgba(128, 143, 76, 0.6);
  3667. // text-align: start;
  3668. // color: #ffffff;
  3669. // font-size: 14px;
  3670. // line-height: 28px;
  3671. // font-weight: 500;
  3672. // letter-spacing: 2px;
  3673. // }
  3674. .blog_article h2 {
  3675. margin-bottom: 30px;
  3676. font-size: 20px;
  3677. font-weight: bold;
  3678. font-weight: 700;
  3679. color: var(--main-color);
  3680. }
  3681. .blog_article b {
  3682. font-weight: 700;
  3683. }
  3684. .blog_article li,
  3685. .blog_article table td {
  3686. font-weight: 400;
  3687. }
  3688. // .blog_article .section-01 {
  3689. // margin-bottom: 40px;
  3690. // padding-bottom: 20px;
  3691. // border-bottom: 1px solid var(--dark-gray);
  3692. // }
  3693. .blog_article li {
  3694. letter-spacing: 1px;
  3695. line-height: 32px;
  3696. }
  3697. .blog_article .list-title {
  3698. font-size: 20px;
  3699. font-weight: bold;
  3700. font-weight: 700;
  3701. }
  3702. .blog_article table {
  3703. width: 100%;
  3704. margin-top: 20px;
  3705. margin-bottom: 50px;
  3706. }
  3707. .blog_article table,
  3708. .blog_article table td,
  3709. .blog_article table th {
  3710. padding: 5px 10px;
  3711. border: 1px solid #333;
  3712. }
  3713. .blog_article .link-box {
  3714. margin-top: 50px;
  3715. padding-bottom: 50px;
  3716. border-bottom: 1px solid var(--dark-gray);
  3717. }
  3718. .blog_article .link-box .link-list {
  3719. width: 100%;
  3720. }
  3721. .blog_article .link-box .link-list a {
  3722. text-decoration: none;
  3723. padding: 7px 10px;
  3724. background: #808e4c;
  3725. color: #fff;
  3726. -webkit-transition: 0.3s;
  3727. transition: 0.3s;
  3728. border: 1px solid #808e4c;
  3729. font-weight: bold;
  3730. }
  3731. .blog_article .link-box .link-list a:hover {
  3732. border: 1px solid #808e4c;
  3733. background: #fff;
  3734. color: #808e4c;
  3735. }
  3736. .blog_article .readMore,
  3737. .blog_article .article_readMore {
  3738. margin: 25px 0;
  3739. }
  3740. .blog_article .read-more-list {
  3741. padding-top: 60px;
  3742. border-top: 1px solid var(--dark-gray);
  3743. font-size: 18px;
  3744. letter-spacing: 2px;
  3745. }
  3746. .blog_article .read-more-list li {
  3747. margin: 15px 0;
  3748. font-weight: bold;
  3749. @media (max-width: 575px) {
  3750. margin: 20px 0;
  3751. }
  3752. }
  3753. .blog_article .read-more-list a {
  3754. color: var(--main-color);
  3755. }
  3756. .blog_article button {
  3757. border: none;
  3758. margin: 1px;
  3759. }
  3760. /* 成家知識專欄-article end */
  3761. /* 最新消息公告-news start */
  3762. .news-content {
  3763. img {
  3764. margin-bottom: 30px;
  3765. }
  3766. p {
  3767. margin-bottom: 0;
  3768. line-height: 32px;
  3769. letter-spacing: 1px;
  3770. font-weight: 400;
  3771. margin-top: 10px;
  3772. }
  3773. h2 {
  3774. margin-bottom: 30px;
  3775. font-size: 20px;
  3776. font-weight: bold;
  3777. font-weight: 700;
  3778. color: #000;
  3779. letter-spacing: 1px;
  3780. }
  3781. }
  3782. .bhouseweb_loc_content {
  3783. .subtitle {
  3784. font-weight: 900;
  3785. }
  3786. .bhouseWeb_news_content {
  3787. letter-spacing: 1px;
  3788. line-height: 28px;
  3789. }
  3790. }
  3791. .likeSee__state__filter p {
  3792. width: 110px;
  3793. margin-left: 50px;
  3794. font-weight: 500;
  3795. letter-spacing: 1px;
  3796. }
  3797. .bhouseweb_loc_sec p {
  3798. font-weight: 400;
  3799. }
  3800. .NewsDescription {
  3801. width: 100%;
  3802. .NewsDescription_p {
  3803. overflow: hidden;
  3804. white-space: nowrap;
  3805. text-overflow: ellipsis;
  3806. display: -webkit-box;
  3807. -webkit-line-clamp: 2;
  3808. -webkit-box-orient: vertical;
  3809. white-space: normal;
  3810. }
  3811. }
  3812. /* 最新消息公告-news end */
  3813. /* 小寶設計單品-furniture_design start */
  3814. .furniture_design_content {
  3815. width: 55%;
  3816. margin: 0 auto;
  3817. @media (max-width: 991px) {
  3818. width: 75%;
  3819. }
  3820. @media (max-width: 575px) {
  3821. width: 90%;
  3822. }
  3823. .tw-15 {
  3824. font-weight: bold;
  3825. }
  3826. }
  3827. .furniture-design p {
  3828. padding-right: 15px;
  3829. text-align: justify;
  3830. font-weight: 400;
  3831. }
  3832. .furniture-design h5 {
  3833. font-weight: bold;
  3834. color: var(--main-color);
  3835. font-weight: 700;
  3836. }
  3837. .furniture-design p,
  3838. .furniture-design h5 {
  3839. line-height: 32px;
  3840. letter-spacing: 1px;
  3841. }
  3842. .furniture-design img {
  3843. width: 100%;
  3844. }
  3845. .furniture-design .text-box {
  3846. width: 380px;
  3847. text-align: center;
  3848. margin: auto;
  3849. @media screen and (max-width: 575px) {
  3850. width: auto;
  3851. }
  3852. }
  3853. .furniture-design .nav-link {
  3854. font-size: 14px;
  3855. color: var(--dark-color);
  3856. }
  3857. .furniture-design .tab-title .nav-item {
  3858. width: 200px;
  3859. justify-content: center;
  3860. }
  3861. .furniture-design .tab-title .nav-link {
  3862. margin: atuo;
  3863. font-size: 18px;
  3864. font-weight: 400;
  3865. }
  3866. .furniture-design ul {
  3867. display: flex;
  3868. flex-wrap: nowrap;
  3869. list-style: none;
  3870. }
  3871. .furniture-design ul li {
  3872. display: flex;
  3873. flex-wrap: wrap;
  3874. list-style: none;
  3875. font-weight: 400;
  3876. }
  3877. .furniture-design .design-list {
  3878. display: flex;
  3879. flex-wrap: wrap;
  3880. list-style: none;
  3881. @media (max-width: 767px) {
  3882. a {
  3883. border: 1px solid #d9d9d9;
  3884. &:hover {
  3885. background-color: #d9d9d9;
  3886. }
  3887. }
  3888. }
  3889. @media (max-width: 575px) {
  3890. width: 105%;
  3891. margin: 0;
  3892. margin-left: -20px;
  3893. }
  3894. @media (max-width: 413px) {
  3895. padding: 0;
  3896. margin-left: -9px;
  3897. justify-content: center;
  3898. }
  3899. @media (max-width: 361px) {
  3900. margin-left: -4px;
  3901. justify-content: flex-start;
  3902. }
  3903. }
  3904. .furniture-design .design-list li {
  3905. margin: 5px 10px 0px;
  3906. @media (max-width: 767px) {
  3907. margin: 5px 8px;
  3908. }
  3909. }
  3910. #cabinet {
  3911. padding-left: 37px;
  3912. padding-right: 37px;
  3913. }
  3914. #dining_chair {
  3915. padding-left: 22px;
  3916. padding-right: 22px;
  3917. }
  3918. .furniture-design .sub-tab-content h4 {
  3919. margin: 0;
  3920. color: #ffffff;
  3921. background-color: rgba(128, 142, 76, 0.8);
  3922. padding: 10px 20px;
  3923. transition: all 0.3s;
  3924. font-size: 1.3rem;
  3925. white-space: nowrap;
  3926. text-align: center;
  3927. letter-spacing: 2px;
  3928. font-weight: 500;
  3929. }
  3930. .mattress-top {
  3931. margin-top: 280px;
  3932. @media (max-width: 576px) {
  3933. margin-top: 380px;
  3934. }
  3935. }
  3936. // .furniture-design .sub-tab-content img {
  3937. // height: 350px;
  3938. // -o-object-fit: cover;
  3939. // object-fit: cover;
  3940. // -o-object-position: center;
  3941. // object-position: center;
  3942. // }
  3943. // @media screen and (max-width: 767px) {
  3944. // .furniture-design .sub-tab-content img {
  3945. // height: 350px;
  3946. // }
  3947. // }
  3948. .furniture-design .sub-tab-content .text-item div {
  3949. // position: absolute;
  3950. // top: 50%;
  3951. // left: 50%;
  3952. // -webkit-transform: translate(-50%, -50%);
  3953. // transform: translate(-50%, -50%);
  3954. // top: 0;
  3955. // left: 0;
  3956. // right: 0;
  3957. display: -webkit-box;
  3958. display: -ms-flexbox;
  3959. display: flex;
  3960. -webkit-box-pack: center;
  3961. -ms-flex-pack: center;
  3962. justify-content: center;
  3963. -webkit-box-align: center;
  3964. -ms-flex-align: center;
  3965. align-items: center;
  3966. -webkit-transition: all 0.3s;
  3967. transition: all 0.3s;
  3968. }
  3969. // .furniture-design .sub-tab-content .text-item:hover div {
  3970. // display: -webkit-box;
  3971. // display: -ms-flexbox;
  3972. // display: flex;
  3973. // -webkit-box-pack: center;
  3974. // -ms-flex-pack: center;
  3975. // justify-content: center;
  3976. // -webkit-box-align: center;
  3977. // -ms-flex-align: center;
  3978. // align-items: center;
  3979. // width: 100%;
  3980. // height: 100%;
  3981. // background: rgba(128, 142, 76, 0.8);
  3982. // cursor: pointer;
  3983. // }
  3984. // .furniture-design .sub-tab-content .text-item:hover div h4 {
  3985. // background-color: transparent;
  3986. // }
  3987. .furniture-design .sub-tab-content .mattress-text-box {
  3988. width: 400px;
  3989. }
  3990. @media (max-width: 575px) {
  3991. .furniture-design .sub-tab-content .mattress-text-box {
  3992. width: auto;
  3993. }
  3994. }
  3995. .furniture-design .mattress-price {
  3996. p {
  3997. text-align: center;
  3998. margin-bottom: 5px;
  3999. }
  4000. .price-item {
  4001. font-size: 18px;
  4002. font-weight: 500;
  4003. }
  4004. }
  4005. .furniture-design .nav-pills .nav-link.active {
  4006. color: var(--dark-color);
  4007. background-color: transparent;
  4008. border-bottom: 2px solid var(--second-color);
  4009. border-radius: 0;
  4010. }
  4011. @media (max-width: 991px) {
  4012. .furniture-design .nav-pills {
  4013. padding-top: 30px;
  4014. }
  4015. }
  4016. @media (max-width: 767px) {
  4017. .furniture-design .nav-pills {
  4018. padding-top: 12px;
  4019. }
  4020. }
  4021. .furniture-design #systeam-furniture .cabinet-03 {
  4022. height: 500px;
  4023. display: -webkit-box;
  4024. display: -ms-flexbox;
  4025. display: flex;
  4026. -webkit-box-orient: vertical;
  4027. -webkit-box-direction: normal;
  4028. -ms-flex-direction: column;
  4029. flex-direction: column;
  4030. -webkit-box-align: center;
  4031. -ms-flex-align: center;
  4032. align-items: center;
  4033. }
  4034. .furniture-design #systeam-furniture .cabinet-03 h5 {
  4035. margin: 20px;
  4036. }
  4037. .furniture-design #systeam-furniture .cabinet-03 img {
  4038. width: 150px;
  4039. height: 150px;
  4040. -o-object-fit: contain;
  4041. object-fit: contain;
  4042. }
  4043. @media (max-width: 991px) {
  4044. .furniture-design #systeam-furniture .cabinet-03 {
  4045. height: auto;
  4046. }
  4047. }
  4048. .b-bottom {
  4049. border-bottom: 1px solid var(--dark-gray);
  4050. }
  4051. .furniture-design .bg-text {
  4052. position: absolute;
  4053. left: 0;
  4054. width: 100%;
  4055. background-color: #80a251;
  4056. }
  4057. .furniture-design .bg-text p {
  4058. margin: 0;
  4059. padding: 70px 0;
  4060. font-size: 24px;
  4061. text-align: center;
  4062. line-height: 50px;
  4063. color: #fff;
  4064. font-weight: 700;
  4065. letter-spacing: 2px;
  4066. }
  4067. .furniture-design .mobile-tab {
  4068. padding: 20px;
  4069. letter-spacing: 1px;
  4070. @media (max-width: 475px) {
  4071. padding: 10px;
  4072. }
  4073. ul {
  4074. padding-bottom: 20px;
  4075. }
  4076. .all-tab {
  4077. @media screen and (max-width: 575px) {
  4078. padding: 0 6px;
  4079. }
  4080. @media screen and (max-width: 475px) {
  4081. width: 40%;
  4082. }
  4083. }
  4084. #all-design-tab {
  4085. margin: 0 0.3rem;
  4086. text-align: center;
  4087. font-size: 18px;
  4088. font-weight: 400;
  4089. color: #fff;
  4090. background: #808e4c;
  4091. font-size: 1rem;
  4092. &:hover {
  4093. background: #68686b;
  4094. }
  4095. @media screen and (max-width: 575px) {
  4096. font-size: 14px;
  4097. }
  4098. }
  4099. #pills-tab {
  4100. .nav-item {
  4101. width: 100%;
  4102. transition: all 0.3s;
  4103. @media (max-width: 475px) {
  4104. width: auto;
  4105. margin: 0 3px;
  4106. }
  4107. &:hover {
  4108. background: #68686b;
  4109. }
  4110. }
  4111. .nav-active {
  4112. background: #68686b;
  4113. }
  4114. a {
  4115. font-size: 1rem !important;
  4116. @media (max-width: 575px) {
  4117. padding: 8px 3px;
  4118. font-size: 14px !important;
  4119. }
  4120. }
  4121. .col-4 {
  4122. @media (max-width: 575px) {
  4123. padding: 0 3px;
  4124. }
  4125. }
  4126. }
  4127. .nav-link {
  4128. margin: auto;
  4129. }
  4130. .tab-title {
  4131. display: flex;
  4132. flex-wrap: nowrap;
  4133. }
  4134. }
  4135. .tw-85 {
  4136. width: 85%;
  4137. }
  4138. .tw-15 {
  4139. width: 15%;
  4140. }
  4141. /* 小寶設計單品-furniture_design end */
  4142. /* 設計家具 start */
  4143. .design-container {
  4144. padding-top: 50px;
  4145. .me-3 {
  4146. font-weight: bold;
  4147. }
  4148. }
  4149. .design-container p {
  4150. line-height: 32px;
  4151. }
  4152. .design-container h3,
  4153. .design-container h6 {
  4154. font-weight: bold;
  4155. color: var(--main-color);
  4156. font-weight: 700;
  4157. }
  4158. .design-container h6 {
  4159. font-size: 20px;
  4160. }
  4161. .design-container div {
  4162. font-weight: 400;
  4163. }
  4164. .design-container ul {
  4165. display: flex;
  4166. flex-direction: column;
  4167. padding: 0;
  4168. list-style: none;
  4169. }
  4170. .design-container ul li {
  4171. line-height: 32px;
  4172. }
  4173. .design-container .slider-box {
  4174. width: 60%;
  4175. .slider {
  4176. margin-right: 20px;
  4177. }
  4178. }
  4179. @media (max-width: 767px) {
  4180. .design-container .slider-box {
  4181. width: 100%;
  4182. }
  4183. }
  4184. .design-container .slider-nav img {
  4185. // width: 90%;
  4186. // height: 130px;
  4187. // -o-object-fit: cover;
  4188. // object-fit: cover;
  4189. cursor: pointer;
  4190. }
  4191. .design-container .slider-nav .middle-item {
  4192. padding: 0 5px;
  4193. }
  4194. .furniture-design .design-border {
  4195. border-bottom: 2px solid var(--second-color);
  4196. border-radius: 0;
  4197. }
  4198. @media (max-width: 991px) {
  4199. .design-container .slider-nav img {
  4200. width: 95%;
  4201. height: auto;
  4202. margin: auto;
  4203. }
  4204. .design-container .slider-nav .middle-item {
  4205. margin: 0;
  4206. }
  4207. }
  4208. /* 設計家具 end */
  4209. .bhouse_line {
  4210. background: #000;
  4211. height: 1px;
  4212. opacity: 1 !important;
  4213. }
  4214. .bhouse_title {
  4215. font-size: 1.3rem;
  4216. letter-spacing: 2px;
  4217. text-align: justify;
  4218. color: #4c660b;
  4219. font-weight: 700;
  4220. }
  4221. @media screen and (max-width: 767px) {
  4222. .bhouse_title {
  4223. font-size: 1rem;
  4224. }
  4225. }
  4226. .bhouse_subtitle {
  4227. color: #4c660b;
  4228. font-size: 1.2rem;
  4229. font-weight: 600;
  4230. letter-spacing: 3px;
  4231. }
  4232. .brand_sec02_content {
  4233. margin: 50px 0;
  4234. }
  4235. .brand_sec02_content p {
  4236. letter-spacing: 2px;
  4237. line-height: 28px;
  4238. font-weight: 400;
  4239. }
  4240. .brand_content {
  4241. width: 50%;
  4242. margin: 0 auto;
  4243. }
  4244. @media screen and (max-width: 767px) {
  4245. .brand_content {
  4246. width: 95%;
  4247. }
  4248. .store-line {
  4249. margin: 35px 20px;
  4250. }
  4251. }
  4252. .brand_sec01,
  4253. .brand_sec02 {
  4254. margin: 50px 0;
  4255. }
  4256. .likeSee__state {
  4257. display: -webkit-box;
  4258. display: -ms-flexbox;
  4259. display: flex;
  4260. -webkit-box-pack: justify;
  4261. -ms-flex-pack: justify;
  4262. justify-content: space-between;
  4263. -webkit-box-align: center;
  4264. -ms-flex-align: center;
  4265. align-items: center;
  4266. }
  4267. .likeSee__state img {
  4268. width: 40px;
  4269. }
  4270. @media screen and (max-width: 767px) {
  4271. .likeSee__state img {
  4272. width: 30px;
  4273. }
  4274. }
  4275. .mt-15 {
  4276. margin-top: 15px;
  4277. }
  4278. .mt-30 {
  4279. margin-top: 30px;
  4280. }
  4281. .my-80 {
  4282. margin: 80px 0;
  4283. }
  4284. .my-50 {
  4285. margin: 50px 0;
  4286. }
  4287. .mt-80 {
  4288. margin-top: 80px;
  4289. }
  4290. .mb-80 {
  4291. margin-bottom: 80px;
  4292. }
  4293. .article__readMore {
  4294. color: #656565;
  4295. font-size: 0.9rem;
  4296. font-weight: 500;
  4297. cursor: pointer;
  4298. }
  4299. .sec01_store_map_img {
  4300. width: 100%;
  4301. height: 700px;
  4302. margin: 0 auto;
  4303. position: relative;
  4304. object-fit: contain;
  4305. @media screen and (max-width: 767px) {
  4306. width: 80%;
  4307. height: 400px;
  4308. }
  4309. @media screen and (max-width: 575px) {
  4310. margin-left: 20px;
  4311. }
  4312. }
  4313. .store_cta_box_reserve {
  4314. // width: 150px;
  4315. // margin-top: 80px;
  4316. // position: relative;
  4317. // left: 50px;
  4318. position: absolute;
  4319. left: 30px;
  4320. top: 100px;
  4321. @media screen and (max-width: 1200px) {
  4322. left: -10px;
  4323. top: 130px;
  4324. }
  4325. @media screen and (max-width: 767px) {
  4326. left: 30px;
  4327. top: 50px;
  4328. }
  4329. @media screen and (max-width: 575px) {
  4330. left: 15px;
  4331. }
  4332. }
  4333. .store_cta_box_reserve .store_cta {
  4334. background: #808f4c;
  4335. width: 150px;
  4336. padding: 16px;
  4337. color: #fff;
  4338. border-radius: 15px;
  4339. text-align: center;
  4340. font-size: 18px;
  4341. letter-spacing: 2px;
  4342. font-weight: 500;
  4343. }
  4344. @media screen and (max-width: 767px) {
  4345. .store_cta_box_reserve .store_cta {
  4346. width: 120px;
  4347. padding: 10px;
  4348. font-size: 12px;
  4349. }
  4350. }
  4351. .store_cta_box_reserve p {
  4352. text-align: center;
  4353. color: #68686b;
  4354. font-weight: bold;
  4355. letter-spacing: 2px;
  4356. font-size: 14px;
  4357. a {
  4358. font-weight: 700;
  4359. }
  4360. }
  4361. @media screen and (max-width: 767px) {
  4362. .store_cta_box_reserve p {
  4363. font-size: 12px;
  4364. }
  4365. }
  4366. .store_cta_box_reserve a {
  4367. color: #2980b8;
  4368. }
  4369. @media screen and (max-width: 767px) {
  4370. .store_cta_box_reserve a {
  4371. font-size: 12px;
  4372. }
  4373. }
  4374. .store_cta_box {
  4375. position: absolute;
  4376. top: 40%;
  4377. right: -70px;
  4378. @media screen and (max-width: 1200px) {
  4379. right: -170px;
  4380. }
  4381. @media screen and (max-width: 767px) {
  4382. right: 0px;
  4383. }
  4384. }
  4385. .store_cta_box_form {
  4386. margin-top: 70px;
  4387. position: relative;
  4388. }
  4389. @media screen and (max-width: 767px) {
  4390. .store_cta_box_form {
  4391. left: -10px;
  4392. }
  4393. }
  4394. .store_cta_box_form .store_cta {
  4395. background-color: var(--dark-gray);
  4396. width: 160px;
  4397. padding: 15px 5px;
  4398. color: #fff;
  4399. border-radius: 15px;
  4400. text-align: center;
  4401. margin: 0 auto;
  4402. font-size: 18px;
  4403. letter-spacing: 2px;
  4404. font-weight: 500;
  4405. }
  4406. @media screen and (max-width: 767px) {
  4407. .store_cta_box_form .store_cta {
  4408. width: 125px;
  4409. padding: 10px 5px;
  4410. font-size: 12px;
  4411. }
  4412. }
  4413. .store_cta_box_form p {
  4414. text-align: center;
  4415. color: #68686b;
  4416. font-weight: bold;
  4417. letter-spacing: 2px;
  4418. font-size: 14px;
  4419. a {
  4420. font-weight: 700;
  4421. }
  4422. }
  4423. @media screen and (max-width: 767px) {
  4424. .store_cta_box_form p {
  4425. width: 130px;
  4426. font-size: 12px;
  4427. }
  4428. }
  4429. .store_cta_box_form a {
  4430. color: #2980b8;
  4431. }
  4432. @media screen and (max-width: 767px) {
  4433. .store_cta_box_form a {
  4434. font-size: 12px;
  4435. }
  4436. }
  4437. .store-link {
  4438. color: #2980b8 !important;
  4439. &:hover {
  4440. opacity: 0.7;
  4441. }
  4442. }
  4443. .store-tab #pills-tab .nav-item {
  4444. margin: 0 0.8rem;
  4445. @media screen and (max-width: 767px) {
  4446. margin: 0 0.5rem;
  4447. }
  4448. }
  4449. .store-tab #pills-tab a,
  4450. .mobile-tab #pills-tab a {
  4451. color: #fff;
  4452. text-decoration: none;
  4453. font-size: 1.2rem;
  4454. font-weight: 400;
  4455. -webkit-appearance: none;
  4456. border-radius: 0;
  4457. }
  4458. .store-tab #pills-tab .nav-item,
  4459. .mobile-tab #pills-tab .nav-item {
  4460. // margin: 0 0.8rem;
  4461. width: auto;
  4462. background: #808e4c;
  4463. // @media screen and (max-width: 575px) {
  4464. // margin: 0 0.5rem;
  4465. // }
  4466. }
  4467. .store-tab #pills-tab .nav-item-link,
  4468. .mobile-tab #pills-tab .nav-item-link {
  4469. display: block;
  4470. text-decoration: none;
  4471. margin: 0 0.1rem;
  4472. padding: 0.4rem 1.8rem;
  4473. background: #808e4c;
  4474. color: #fff;
  4475. margin-right: 5px;
  4476. transition: 0.3s;
  4477. // border: 1px solid #808e4c;
  4478. font-weight: 400;
  4479. letter-spacing: 2px;
  4480. text-align: center;
  4481. margin: 0;
  4482. &:hover {
  4483. background: #68686b !important;
  4484. }
  4485. @media screen and (max-width: 575px) {
  4486. font-size: 16px;
  4487. padding: 0.4rem 1rem;
  4488. }
  4489. }
  4490. // #pills-tab .nav-item-link {
  4491. // display: block;
  4492. // padding: 0.5rem 1rem;
  4493. // margin: 0 2rem;
  4494. // text-decoration: none;
  4495. // background-color: transparent;
  4496. // font-size: 1.2rem;
  4497. // color: #68686b;
  4498. // -webkit-transition: all 0.3s;
  4499. // transition: all 0.3s;
  4500. // -webkit-appearance: none !important;
  4501. // border-bottom: 2px solid #fff;
  4502. // font-weight: 500;
  4503. // }
  4504. // @media screen and (max-width: 1200px) {
  4505. // #pills-tab .nav-item-link {
  4506. // padding: 0.5rem 0.8rem;
  4507. // }
  4508. // }
  4509. @media screen and (max-width: 767px) {
  4510. .store-tab #pills-tab .nav-item-link {
  4511. margin: 0 0rem;
  4512. }
  4513. }
  4514. // @media screen and (max-width: 375px) {
  4515. // #pills-tab .nav-item-link {
  4516. // padding: 0rem 0.5rem;
  4517. // }
  4518. // }
  4519. .store-tab #pills-tab .nav-item-link.active,
  4520. .mobile-tab #pills-tab .nav-item-link.active {
  4521. color: #fff;
  4522. background: #68686b !important;
  4523. // 取消 Safari 預設樣式
  4524. -webkit-appearance: none;
  4525. border-radius: 0 !important;
  4526. }
  4527. /* .tab-content {
  4528. margin-bottom: 40vh;
  4529. }
  4530. @media screen and (max-width: 767px) {
  4531. .tab-content {
  4532. margin-bottom: 20vh;
  4533. }
  4534. } */
  4535. .store_title {
  4536. color: #4c660b;
  4537. font-size: 1.8rem;
  4538. font-weight: 700;
  4539. }
  4540. @media screen and (max-width: 767px) {
  4541. .store_title {
  4542. margin-top: 15px;
  4543. }
  4544. }
  4545. .store_content {
  4546. font-weight: 600;
  4547. letter-spacing: 2px;
  4548. }
  4549. .store_content a {
  4550. color: #68686b;
  4551. font-weight: 600;
  4552. }
  4553. .store_content .reservation-link {
  4554. margin-top: 15px;
  4555. color: #2980b8;
  4556. font-weight: 600;
  4557. font-size: 17px;
  4558. &:hover {
  4559. opacity: 0.7;
  4560. }
  4561. }
  4562. .store_content .store_content_item {
  4563. margin-bottom: 10px;
  4564. }
  4565. .store_content_item span {
  4566. font-weight: 500;
  4567. }
  4568. .assign-link {
  4569. border-bottom: 2px solid var(--second-color);
  4570. @media (max-width: 767px) {
  4571. border-bottom: none;
  4572. background-color: #d9d9d9;
  4573. }
  4574. }
  4575. .card-img,
  4576. .card-img-top {
  4577. border-radius: 0 !important;
  4578. }
  4579. .breadcrumb-item + .breadcrumb-item::before {
  4580. content: ">" !important;
  4581. }