style.bhouse.scss 92 KB

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