style.bhouse.css 124 KB

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