style.bhouse.scss 91 KB

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