style.bhouse.css 103 KB

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