style.bhouse.css 111 KB

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