style.bhouse.css 100 KB

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