style.bhouse.css 100 KB

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