style.bhouse.css 105 KB

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