style.bhouse.css 105 KB

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