style.bhouse.css 113 KB

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