style.bhouse.scss 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987
  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;
  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: 1px;
  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-15 {
  114. margin-top: 15px;
  115. }
  116. .mt-50 {
  117. margin-top: 50px;
  118. }
  119. .mt-30 {
  120. margin-top: 30px;
  121. }
  122. .my-80 {
  123. margin: 80px 0;
  124. }
  125. .my-50 {
  126. margin: 50px 0;
  127. }
  128. .mt-80 {
  129. margin-top: 80px;
  130. }
  131. .mb-80 {
  132. margin-bottom: 80px;
  133. }
  134. .readMore,
  135. .article_readMore {
  136. font-size: 0.9rem;
  137. font-weight: bold;
  138. color: #656565;
  139. cursor: pointer;
  140. letter-spacing: 1px;
  141. }
  142. .readMore:hover,
  143. .article_readMore:hover {
  144. opacity: 0.8;
  145. }
  146. // .qa-banner,
  147. // .blog-banner,
  148. // .brand-banner,
  149. // .store-banner,
  150. // .design-banner,
  151. // .news-page-banner,
  152. // .collection-banner,
  153. // .room-planner-banner {
  154. // padding: 175px 0;
  155. // background-size: cover;
  156. // background-position: center;
  157. // background-repeat: no-repeat;
  158. // image-rendering: -webkit-optimize-contrast;
  159. // }
  160. // @media (max-width: 991px) {
  161. // .qa-banner,
  162. // .blog-banner,
  163. // .store-banner,
  164. // .design-banner,
  165. // .room-planner-banner {
  166. // background-position: bottom -50px right 50%;
  167. // }
  168. // }
  169. /* 共通樣式 end */
  170. /* header start */
  171. .navbar {
  172. background-color: var(--second-color);
  173. }
  174. .navbar ul {
  175. white-space: nowrap;
  176. }
  177. .navbar .nav-item {
  178. padding: 13px 0;
  179. @media (max-width: 991px) {
  180. padding: 0;
  181. }
  182. &:hover {
  183. background-color: var(--main-color);
  184. .navbar-link {
  185. color: #fff;
  186. }
  187. }
  188. }
  189. .navbar .navbar-link {
  190. padding: 0 20px;
  191. color: var(--main-color);
  192. font-family: NSJP-500;
  193. }
  194. .navbar .navbar-link:hover {
  195. color: #ffffff;
  196. }
  197. .navbar .navbar-brand {
  198. display: none;
  199. @media (max-width: 991px) {
  200. margin: 0;
  201. }
  202. }
  203. .navbar .navbar-brand img {
  204. width: 70%;
  205. margin-left: 25%;
  206. object-fit: contain;
  207. }
  208. .navbar .close-btn {
  209. display: inline-block;
  210. position: relative;
  211. top: -5px;
  212. width: 23px;
  213. height: 2px;
  214. background: #ffffff;
  215. -webkit-transform: rotate(45deg);
  216. transform: rotate(45deg);
  217. }
  218. .navbar .close-btn::after {
  219. content: "";
  220. display: block;
  221. width: 23px;
  222. height: 2px;
  223. background: #ffffff;
  224. -webkit-transform: rotate(-90deg);
  225. transform: rotate(-90deg);
  226. }
  227. @media (max-width: 991px) {
  228. .navbar {
  229. padding: 0;
  230. top: 0;
  231. /* 收合時覆蓋內容 */
  232. width: 100%;
  233. position: absolute;
  234. z-index: 999;
  235. }
  236. .navbar .navbar-link {
  237. display: block;
  238. padding: 20px 0px;
  239. margin: 0 50px;
  240. color: #ffffff;
  241. border-bottom: 1px solid var(--dark-gray);
  242. }
  243. .navbar .navbar-link:hover {
  244. color: rgba(255, 255, 255, 0.6);
  245. }
  246. .navbar .navbar-logo {
  247. display: none;
  248. }
  249. .navbar .navbar-nav {
  250. height: 100vh;
  251. white-space: nowrap;
  252. border-top: 1px solid var(--dark-gray);
  253. }
  254. .navbar .navbar-nav li:last-child a {
  255. border: none;
  256. }
  257. .navbar .navbar-toggler {
  258. width: 30px;
  259. margin-right: 30px;
  260. border: none;
  261. }
  262. .navbar .navbar-toggler:focus,
  263. .navbar .navbar-toggler:active {
  264. outline: none !important;
  265. -webkit-box-shadow: none;
  266. box-shadow: none;
  267. }
  268. .navbar .navbar-brand {
  269. display: block;
  270. }
  271. }
  272. .news-link {
  273. display: flex;
  274. padding: 10px 0;
  275. background-color: #da831c;
  276. font-weight: bold;
  277. a {
  278. margin: auto;
  279. color: #fff;
  280. font-size: 14px;
  281. text-align: center;
  282. letter-spacing: 2px;
  283. &:hover {
  284. opacity: 0.8;
  285. }
  286. }
  287. @media (max-width: 991px) {
  288. margin-top: 80px;
  289. }
  290. }
  291. /* header end */
  292. /* slick start */
  293. .slick-dots {
  294. bottom: 115px;
  295. }
  296. .slick-dots li button:before {
  297. opacity: 1;
  298. content: "●";
  299. color: #ffffff;
  300. font-size: 18px;
  301. }
  302. .slick-dots li.slick-active button:before {
  303. opacity: 1;
  304. color: var(--second-color);
  305. }
  306. .slider-item {
  307. position: relative;
  308. }
  309. .slider-item img {
  310. width: 100%;
  311. height: 700px;
  312. -o-object-fit: cover;
  313. object-fit: cover;
  314. @media (max-width: 991px) {
  315. height: auto;
  316. }
  317. }
  318. .slider-item div {
  319. padding: 20px 20vw;
  320. position: absolute;
  321. left: 0;
  322. right: 0;
  323. bottom: 0px;
  324. background-color: rgba(128, 143, 76, 0.8);
  325. text-align: end;
  326. }
  327. .slider-item p {
  328. margin: 0;
  329. color: #ffffff;
  330. font-size: 22px;
  331. font-family: NSJP-500;
  332. letter-spacing: 2px;
  333. @media (max-width: 575px) {
  334. font-size: 17px;
  335. }
  336. }
  337. .slider-item p:last-child {
  338. font-size: 18px;
  339. @media (max-width: 575px) {
  340. font-size: 14px;
  341. }
  342. }
  343. @media (max-width: 767px) {
  344. .slider-item div {
  345. padding: 20px 5vw;
  346. }
  347. }
  348. @media (max-width: 575px) {
  349. .slider-item div {
  350. padding: 20px 2vw 20px 0;
  351. }
  352. }
  353. /* slick end */
  354. /* footer start */
  355. .footer {
  356. padding: 0 18vw;
  357. font-size: 15px;
  358. background-color: var(--light-gray);
  359. }
  360. .footer img {
  361. display: none;
  362. margin: 50px;
  363. }
  364. .footer ul {
  365. padding: 0;
  366. list-style: none;
  367. font-weight: bold;
  368. margin-bottom: 30px;
  369. }
  370. .footer .row {
  371. padding: 60px 0;
  372. }
  373. .footer .list {
  374. display: -webkit-box;
  375. display: -ms-flexbox;
  376. display: flex;
  377. }
  378. .footer .list li {
  379. padding: 5px 0;
  380. }
  381. .footer .title a {
  382. font-size: 15px;
  383. color: var(--main-color);
  384. font-family: NSJP-500;
  385. font-weight: bold;
  386. letter-spacing: 1px;
  387. }
  388. .footer .list li a,
  389. .footer .copyright,
  390. .footer .copyright a {
  391. color: #68686b;
  392. font-weight: bold;
  393. font-family: NSJP-400;
  394. letter-spacing: 1px;
  395. }
  396. .footer .mobile-list {
  397. display: none;
  398. border-top: 1px solid var(--dark-gray);
  399. padding-top: 10px;
  400. margin-bottom: 30px;
  401. }
  402. .footer .mobile-list li {
  403. margin: 20px 0 20px 50px;
  404. }
  405. .footer .mobile-list a {
  406. font-size: 20px;
  407. color: var(--main-color);
  408. font-family: NSJP-400;
  409. }
  410. .footer .mobile-list a:hover {
  411. opacity: 0.8;
  412. }
  413. .footer .copyright {
  414. padding: 20px 0;
  415. border-top: 1px solid var(--dark-gray);
  416. }
  417. .footer .copyright a {
  418. padding: 0 5px;
  419. }
  420. .footer .copyright span {
  421. position: relative;
  422. top: -1px;
  423. }
  424. @media (max-width: 1200px) {
  425. .footer {
  426. padding: 0 8vw;
  427. }
  428. }
  429. @media (max-width: 767px) {
  430. .footer {
  431. padding: 0 1.5vw;
  432. }
  433. .footer img {
  434. display: inline-block;
  435. }
  436. .footer .list {
  437. display: none;
  438. }
  439. .footer .mobile-list {
  440. display: block;
  441. }
  442. }
  443. /* footer end */
  444. /* home start */
  445. .home-content {
  446. width: 50%;
  447. margin: 0 auto;
  448. }
  449. .home-content a:hover p {
  450. opacity: 0.8;
  451. }
  452. .home-content img {
  453. max-width: 500px;
  454. width: 100%;
  455. }
  456. .home-content .bottom-box {
  457. position: relative;
  458. }
  459. .home-content .bottom-box div {
  460. position: absolute;
  461. bottom: 0;
  462. right: 0;
  463. left: 0;
  464. background: rgba(128, 143, 76, 0.6);
  465. padding: 20px 50px;
  466. }
  467. .home-content .bottom-box p {
  468. margin: auto;
  469. text-align: right;
  470. color: #fff;
  471. font-family: NSJP-700;
  472. letter-spacing: 2px;
  473. }
  474. .home-content .bottom-box p:first-child {
  475. font-size: 20px;
  476. }
  477. .home-content .bottom-box p:last-child {
  478. font-size: 16px;
  479. padding-top: 10px;
  480. }
  481. @media (max-width: 1200px) {
  482. .home-content {
  483. width: 70%;
  484. }
  485. }
  486. @media (max-width: 767px) {
  487. .home-content {
  488. width: 98.5%;
  489. }
  490. .home-content img {
  491. max-width: 100%;
  492. width: 100%;
  493. }
  494. }
  495. .home-content {
  496. img {
  497. height: 100%;
  498. }
  499. .bg-img {
  500. width: 100%;
  501. padding: 40% 0;
  502. background-position: center;
  503. background-size: cover;
  504. transition: all 0.5s;
  505. }
  506. .bg-portfolio {
  507. .bg-img {
  508. background-image: url(/img/home/X-1-02.png);
  509. }
  510. }
  511. .bg-serve {
  512. .bg-img {
  513. background-image: url(/img/home/X-1-03.png);
  514. }
  515. }
  516. .bg-qa {
  517. .bg-img {
  518. background-image: url(/img/home/X-1-04.png);
  519. }
  520. }
  521. .bg-store {
  522. .bg-img {
  523. background-image: url(/img/home/X-1-05.png);
  524. }
  525. }
  526. }
  527. .reserve {
  528. position: fixed;
  529. bottom: 5vw;
  530. right: 5vw;
  531. }
  532. .reserve img {
  533. width: 100px;
  534. }
  535. /* home end */
  536. /* 服務常見QA-frequently_asked_questions start */
  537. /* 服務常見QA-frequently_asked_questions start */
  538. .accordion {
  539. padding: 200px 25% 40px;
  540. border-bottom: 1px solid var(--dark-gray);
  541. }
  542. .accordion .accordion-item {
  543. padding: 10px 0;
  544. border-width: 2px;
  545. border-color: var(--second-color);
  546. }
  547. .accordion .accordion-item .title {
  548. display: flex;
  549. align-items: center;
  550. margin: auto;
  551. font-size: 30px;
  552. font-weight: bold;
  553. letter-spacing: 3px;
  554. color: var(--second-color);
  555. }
  556. .accordion .accordion-button,
  557. .accordion .accordion-button p {
  558. font-size: 14px;
  559. font-family: NSJP-500;
  560. letter-spacing: 1px;
  561. background: transparent !important;
  562. }
  563. .accordion .accordion-button:not(.collapsed) {
  564. color: #000000;
  565. -webkit-box-shadow: none;
  566. box-shadow: none;
  567. }
  568. .accordion .accordion-button:not(.collapsed)::after {
  569. background-image: url(/img/field_q6_h@2x.png);
  570. }
  571. .accordion .accordion-button:focus,
  572. .accordion .accordion-button:active {
  573. outline: none !important;
  574. -webkit-box-shadow: none;
  575. box-shadow: none;
  576. border-color: var(--second-color);
  577. }
  578. .accordion .accordion-button::after {
  579. width: 1.8rem;
  580. height: 1.8rem;
  581. background-size: 2rem;
  582. background-image: url(/img/field_q6_h@2x.png);
  583. image-rendering: -webkit-optimize-contrast;
  584. }
  585. .accordion .accordion-button span {
  586. // position: absolute;
  587. // top: -30px;
  588. // left: -30px;
  589. margin-left: 10px;
  590. letter-spacing: 1px;
  591. color: #000;
  592. font-size: 14px;
  593. font-family: NSJP-500;
  594. font-weight: normal;
  595. }
  596. .accordion .accordion-button span img {
  597. width: 60%;
  598. }
  599. .accordion .accordion-body,
  600. .accordion .accordion-body p,
  601. .accordion .accordion-body div,
  602. .accordion .accordion-body span {
  603. font-size: 14px !important;
  604. line-height: 28px !important;
  605. font-family: NSJP-700 !important;
  606. letter-spacing: 1px !important;
  607. }
  608. .accordion .botder-item {
  609. margin-bottom: 10px;
  610. border-radius: 0;
  611. border: 2px solid var(--second-color);
  612. line-height: 28px;
  613. }
  614. .botder-item::after {
  615. margin-right: 20px;
  616. }
  617. .accordion .subtitle {
  618. display: none;
  619. padding: 20px 0 0;
  620. font-size: 14px;
  621. text-align: center;
  622. font-weight: bold;
  623. color: var(--dark-color);
  624. }
  625. @media (max-width: 1200px) {
  626. .accordion {
  627. padding: 185px 15% 40px;
  628. }
  629. }
  630. @media (max-width: 767px) {
  631. .accordion {
  632. padding: 150px 5% 40px;
  633. }
  634. .accordion .botder-item {
  635. padding: 0;
  636. }
  637. .accordion .botder-item p {
  638. padding: 20px;
  639. margin: 5px 0;
  640. font-size: 16px;
  641. }
  642. .accordion .mobile-body {
  643. font-size: 16px;
  644. }
  645. .accordion .mobile-body,
  646. .accordion .accordion-body {
  647. font-size: 16px;
  648. line-height: 30px;
  649. }
  650. .accordion .accordion-item {
  651. padding: 15px 0;
  652. }
  653. .accordion .subtitle {
  654. display: block;
  655. }
  656. }
  657. .qa-navs {
  658. padding: 20px 0;
  659. }
  660. .qa-navs .home-content {
  661. display: -webkit-box;
  662. display: -ms-flexbox;
  663. display: flex;
  664. }
  665. @media (max-width: 767px) {
  666. .qa-navs {
  667. padding: 40px 0;
  668. }
  669. }
  670. /* 服務常見QA-frequently_asked_questions end */
  671. /* 服務常見QA-frequently_asked_questions end */
  672. /* Banner start */
  673. .bhouseweb_loc_banner {
  674. position: relative;
  675. }
  676. @media screen and (max-width: 991px) {
  677. .bhouseweb_loc_banner {
  678. padding-top: 80px;
  679. }
  680. }
  681. @media screen and (max-width: 991px) {
  682. .bhouseweb_loc_banner .banner-img {
  683. // height: 150px;
  684. -o-object-fit: cover;
  685. object-fit: cover;
  686. }
  687. }
  688. .bt_container {
  689. transition: all 0.3s;
  690. }
  691. .bt_container_margin {
  692. margin-bottom: -180px;
  693. @media screen and (max-width: 767px) {
  694. margin-bottom: -150px;
  695. }
  696. }
  697. .bt_slogan {
  698. position: relative;
  699. right: 80px;
  700. bottom: 24px;
  701. width: 90px;
  702. background: rgba(76, 102, 11, 0.6);
  703. color: #fff;
  704. cursor: pointer;
  705. display: none;
  706. }
  707. .bt_slogan img {
  708. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  709. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  710. }
  711. @media screen and (max-width: 767px) {
  712. .bt_slogan {
  713. right: 5%;
  714. width: 80px;
  715. }
  716. }
  717. @media screen and (max-width: 575px) {
  718. .bt_slogan {
  719. right: 3%;
  720. width: 50px;
  721. }
  722. }
  723. .bt_slogan_portfolio {
  724. width: 350px;
  725. -o-object-fit: cover;
  726. object-fit: cover;
  727. position: absolute;
  728. right: 260px;
  729. bottom: -175px;
  730. cursor: pointer;
  731. }
  732. @media screen and (max-width: 991px) {
  733. .bt_slogan_portfolio {
  734. width: 300px;
  735. right: 250px;
  736. height: 200px;
  737. }
  738. }
  739. @media screen and (max-width: 767px) {
  740. .bt_slogan_portfolio {
  741. right: 150px;
  742. bottom: -140px;
  743. }
  744. }
  745. @media screen and (max-width: 575px) {
  746. .bt_slogan_portfolio {
  747. right: 75px;
  748. width: 250px;
  749. height: 180px;
  750. }
  751. }
  752. .bhouseweb_loc_banner .bt_slogan img {
  753. -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  754. filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(104%) contrast(102%);
  755. }
  756. /* Banner end */
  757. /* 成家故事作品集-collection start */
  758. .collection_banner_text_box {
  759. padding: 20px 20vw;
  760. position: absolute;
  761. left: 0;
  762. right: 0;
  763. bottom: 0px;
  764. background-color: rgba(128, 143, 76, 0.8);
  765. text-align: end;
  766. @media screen and (max-width: 767px) {
  767. padding: 20px 2vw 20px 0;
  768. }
  769. p {
  770. margin: 0;
  771. color: #ffffff;
  772. font-size: 22px;
  773. font-family: NSJP-500;
  774. letter-spacing: 2px;
  775. @media screen and (max-width: 767px) {
  776. font-size: 17px;
  777. }
  778. }
  779. p:last-child {
  780. font-size: 18px;
  781. @media (max-width: 575px) {
  782. font-size: 14px;
  783. }
  784. }
  785. }
  786. .style_house_banner {
  787. position: relative;
  788. }
  789. .select {
  790. // text-decoration: underline !important;
  791. border-bottom: 1.5px solid #565656 !important;
  792. }
  793. .bhouseweb_item_type {
  794. cursor: pointer;
  795. }
  796. .readMore,
  797. .article_readMore {
  798. margin-top: 30px;
  799. }
  800. .title_underline {
  801. border-bottom: 2px #fff solid;
  802. padding-bottom: 5px;
  803. }
  804. .bhouseweb_loc_banner {
  805. position: relative;
  806. }
  807. @media screen and (max-width: 991px) {
  808. .bhouseweb_loc_banner {
  809. padding-top: 80px;
  810. }
  811. }
  812. @media screen and (max-width: 991px) {
  813. .bhouseweb_loc_banner .banner-img {
  814. height: 200px;
  815. -o-object-fit: cover;
  816. object-fit: cover;
  817. }
  818. }
  819. .bhouseweb_loc_sec01 {
  820. width: auto;
  821. margin-top: 180px;
  822. color: #656565;
  823. font-size: 0.9rem;
  824. }
  825. @media screen and (max-width: 767px) {
  826. .bhouseweb_loc_sec01 {
  827. // overflow-x: scroll;
  828. width: auto;
  829. margin-top: 150px;
  830. overflow-x: auto;
  831. }
  832. }
  833. .bhouseweb_loc_sec01 .bhouseweb_loc_type,
  834. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern,
  835. .bhouseweb_loc_sec01 .bhouseweb_loc_budget,
  836. .bhouseweb_loc_sec01 .bhouseweb_loc_size {
  837. margin: 10px;
  838. }
  839. .bhouseweb_loc_type {
  840. width: auto;
  841. white-space: nowrap;
  842. overflow-x: auto;
  843. @media screen and (max-width: 767px) {
  844. width: auto;
  845. white-space: nowrap;
  846. }
  847. }
  848. .bhouseweb_item_type {
  849. @media screen and (max-width: 767px) {
  850. display: inline-block;
  851. }
  852. }
  853. @media screen and (max-width: 767px) {
  854. .bhouseweb_loc_sec01 .bhouseweb_loc_type,
  855. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern,
  856. .bhouseweb_loc_sec01 .bhouseweb_loc_budget,
  857. .bhouseweb_loc_sec01 .bhouseweb_loc_size {
  858. margin: 5px;
  859. }
  860. }
  861. .bhouseweb_loc_sec01 .bhouseweb_loc_type a,
  862. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern a,
  863. .bhouseweb_loc_sec01 .bhouseweb_loc_budget a,
  864. .bhouseweb_loc_sec01 .bhouseweb_loc_size a {
  865. text-decoration: none;
  866. color: #565656;
  867. padding: 3px 15px;
  868. }
  869. @media screen and (max-width: 767px) {
  870. .bhouseweb_loc_sec01 .bhouseweb_loc_type a,
  871. .bhouseweb_loc_sec01 .bhouseweb_loc_pattern a,
  872. .bhouseweb_loc_sec01 .bhouseweb_loc_budget a,
  873. .bhouseweb_loc_sec01 .bhouseweb_loc_size a {
  874. padding: 3px 5px;
  875. }
  876. }
  877. .bhouseweb_loc_box {
  878. display: flex;
  879. align-items: center;
  880. p {
  881. min-width: 55px;
  882. padding-left: 25px;
  883. @media screen and (max-width: 767px) {
  884. min-width: 45px;
  885. padding-left: 10px;
  886. }
  887. }
  888. }
  889. .bhouseweb_loc_search_box {
  890. width: 100%;
  891. background: #565656;
  892. }
  893. .bhouseweb_loc_search_box .bhouseweb_search_img {
  894. width: 20%;
  895. font-size: 24px;
  896. color: #fff;
  897. padding-left: 30px;
  898. }
  899. @media screen and (max-width: 767px) {
  900. .bhouseweb_loc_search_box .bhouseweb_search_img {
  901. padding-left: 10px;
  902. width: 15%;
  903. font-size: 16px;
  904. }
  905. }
  906. .bhouseweb_loc_search_box .bhouseweb_search_form {
  907. padding: 0.35rem 0.35rem;
  908. }
  909. .bhouseweb_loc_search_box #bhouseweb_search {
  910. width: 70%;
  911. background: #565656 !important;
  912. border: none;
  913. font-size: 14.4px;
  914. font-weight: 400;
  915. line-height: 1.5;
  916. outline: none;
  917. color: #bcbcbc;
  918. }
  919. @media screen and (max-width: 767px) {
  920. .bhouseweb_loc_search_box #bhouseweb_search {
  921. width: 86%;
  922. font-size: 14.4px;
  923. }
  924. }
  925. .bhouseweb_loc_search_box ::-webkit-input-placeholder {
  926. /* Chrome, Safari */
  927. color: #bcbcbc;
  928. }
  929. .bhouseweb_loc_search_box :-ms-input-placeholder {
  930. color: #bcbcbc;
  931. }
  932. .bhouseweb_loc_search_box ::-ms-input-placeholder {
  933. color: #bcbcbc;
  934. }
  935. .bhouseweb_loc_search_box ::placeholder {
  936. color: #bcbcbc;
  937. }
  938. .bhouseweb_loc_search_box :-ms-input-placeholder {
  939. /* IE 10+ */
  940. color: #bcbcbc;
  941. }
  942. .bhouseweb_loc_search_box ::-moz-placeholder {
  943. /* Firefox 19+ */
  944. color: #bcbcbc;
  945. }
  946. .bhouseweb_loc_sec02 {
  947. height: 170vh;
  948. overflow: hidden;
  949. }
  950. .bhouseweb_loc_sec02_card {
  951. background: var(--logo-color);
  952. // padding: 0px 0px 10px 10px;
  953. position: relative;
  954. -webkit-transition: 0.5s ease-in-out;
  955. transition: 0.5s ease-in-out;
  956. cursor: pointer;
  957. overflow: hidden;
  958. height: 300px;
  959. }
  960. @media screen and (max-width: 767px) {
  961. .bhouseweb_loc_sec02_card {
  962. height: 300px;
  963. padding: 0;
  964. }
  965. }
  966. .bhouseweb_loc_sec02_card a {
  967. text-decoration: none;
  968. }
  969. .bhouseweb_loc_sec02_card .sec02-p-dec {
  970. color: #fff;
  971. text-align: center;
  972. font-size: 14px;
  973. font-weight: 900;
  974. -webkit-transition: 0.5s;
  975. transition: 0.5s;
  976. letter-spacing: 1px;
  977. width: 100%;
  978. position: absolute;
  979. top: 50%;
  980. left: 50%;
  981. font-size: 16px;
  982. transform: translate(-50%, -50%);
  983. opacity: 0;
  984. }
  985. // @media screen and (max-width: 991px) {
  986. // .bhouseweb_loc_sec02_card .sec02-p-dec {
  987. // width: 100%;
  988. // position: absolute;
  989. // top: 50%;
  990. // left: 50%;
  991. // font-size: 16px;
  992. // transform: translate(-50%, -50%);
  993. // opacity: 0;
  994. // }
  995. // }
  996. @media screen and (max-width: 767px) {
  997. .bhouseweb_loc_sec02_card .sec02-p-dec {
  998. display: none;
  999. }
  1000. }
  1001. .bhouseweb_loc_sec02_card img {
  1002. width: 100%;
  1003. height: 100%;
  1004. -o-object-fit: cover;
  1005. object-fit: cover;
  1006. }
  1007. @media screen and (max-width: 767px) {
  1008. .bhouseweb_loc_sec02_card img {
  1009. height: 250px;
  1010. -o-object-fit: cover;
  1011. object-fit: cover;
  1012. }
  1013. }
  1014. .bhouseweb_loc_sec02_card:hover .sec02-p-dec,
  1015. .bhouseweb_loc_sec02_card:hover .sec03-p-dec {
  1016. opacity: 1;
  1017. }
  1018. .bhouseweb_loc_sec02_card:hover img {
  1019. opacity: 0.2;
  1020. @media screen and (max-width: 767px) {
  1021. opacity: 1;
  1022. }
  1023. }
  1024. .bhouseweb_loc_sec02_card .slide_item_text {
  1025. background-color: rgba(128, 143, 76, 0.8);
  1026. padding: 15px;
  1027. }
  1028. .bhouseweb_loc_sec02_card .slide_item_text p {
  1029. color: #fff;
  1030. letter-spacing: 1px;
  1031. text-align: right;
  1032. }
  1033. /* 成家故事作品集-collection end */
  1034. /* 成家故事作品集內頁-simple_korean_style_hous start */
  1035. .bg-portfolio {
  1036. .bg-img {
  1037. background-image: url(/img/home/X-1-02.png);
  1038. }
  1039. }
  1040. .bg-serve {
  1041. .bg-img {
  1042. background-image: url(/img/home/X-1-03.png);
  1043. }
  1044. }
  1045. .bg-qa {
  1046. .bg-img {
  1047. background-image: url(/img/home/X-1-04.png);
  1048. }
  1049. }
  1050. .bg-store {
  1051. .bg-img {
  1052. background-image: url(/img/home/X-1-05.png);
  1053. }
  1054. }
  1055. .icon-box img {
  1056. margin-top: 0px;
  1057. width: 35px;
  1058. }
  1059. .style_house_ads {
  1060. padding: 15px;
  1061. background: #fff;
  1062. @media screen and (max-width: 991px) {
  1063. padding-top: 13px;
  1064. }
  1065. }
  1066. .style_house_ads .style_house_text {
  1067. width: 80.5%;
  1068. margin: 0 auto;
  1069. }
  1070. @media screen and (max-width: 767px) {
  1071. .style_house_ads .style_house_text {
  1072. width: 95%;
  1073. }
  1074. }
  1075. .style_house_line {
  1076. background: grey;
  1077. height: 1px;
  1078. opacity: 1 !important;
  1079. }
  1080. .title_underline {
  1081. border-bottom: 2px #fff solid;
  1082. padding-bottom: 5px;
  1083. }
  1084. .style_house_banner img {
  1085. width: 100%;
  1086. height: 80vh;
  1087. -o-object-fit: cover;
  1088. object-fit: cover;
  1089. }
  1090. @media screen and (max-width: 767px) {
  1091. .style_house_banner img {
  1092. height: 300px;
  1093. }
  1094. }
  1095. .style_house_title {
  1096. color: #4c660b;
  1097. font-size: 1.4rem;
  1098. letter-spacing: 3px;
  1099. margin-bottom: 25px;
  1100. font-family: NSJP-700;
  1101. }
  1102. @media screen and (max-width: 767px) {
  1103. .style_house_title {
  1104. font-size: 1rem;
  1105. }
  1106. }
  1107. .style_house_subtitle {
  1108. color: #4c660b;
  1109. font-size: 1.2rem;
  1110. font-weight: 600;
  1111. letter-spacing: 3px;
  1112. font-family: NSJP-700;
  1113. }
  1114. .style_house_content {
  1115. width: 50%;
  1116. margin: 0 auto;
  1117. }
  1118. @media screen and (max-width: 767px) {
  1119. .style_house_content {
  1120. width: 95%;
  1121. }
  1122. }
  1123. .style_house_sec01 {
  1124. margin-top: 100px;
  1125. text-align: center;
  1126. margin-bottom: 50px;
  1127. }
  1128. @media screen and (max-width: 767px) {
  1129. .style_house_sec01 {
  1130. margin-top: 30px;
  1131. }
  1132. }
  1133. .style_house_sec01 h3 {
  1134. font-size: 1.5rem;
  1135. font-family: NSJP-700;
  1136. letter-spacing: 2px;
  1137. }
  1138. @media screen and (max-width: 767px) {
  1139. .style_house_sec01 h3 {
  1140. font-size: 1rem;
  1141. }
  1142. }
  1143. .style_house_sec01 p {
  1144. color: #808e4c;
  1145. font-family: NSJP-500;
  1146. letter-spacing: 2px;
  1147. }
  1148. @media screen and (max-width: 767px) {
  1149. .style_house_sec01 p {
  1150. font-size: 0.6rem;
  1151. }
  1152. }
  1153. .style_house_sec01 .style_house_sec01_box {
  1154. margin-top: 30px;
  1155. }
  1156. @media screen and (max-width: 767px) {
  1157. .style_house_sec01 .style_house_sec01_box {
  1158. margin-top: 10px;
  1159. }
  1160. }
  1161. .style_house_sec01 .style_house_sec01_box-1 {
  1162. margin: auto;
  1163. // @media screen and (max-width: 767px) {
  1164. // margin-left: 4%;
  1165. // width: 90%;
  1166. // }
  1167. }
  1168. .style_house_sec02 {
  1169. margin-top: 50px;
  1170. margin-bottom: 50px;
  1171. }
  1172. .style_house_sec02 .style_house_sec02_content {
  1173. margin-top: 50px;
  1174. }
  1175. @media screen and (max-width: 767px) {
  1176. .style_house_sec02 .style_house_sec02_content {
  1177. margin-top: 10px;
  1178. }
  1179. }
  1180. .style_house_sec02 .style_house_sec02_slide {
  1181. margin-top: 30px;
  1182. }
  1183. .style_house_sec02 .style_house_sec02_slide .slide_item_text {
  1184. background-color: rgba(128, 143, 76, 0.8);
  1185. padding: 15px;
  1186. }
  1187. .style_house_sec02 .style_house_sec02_slide .slide_item_text p {
  1188. color: #fff;
  1189. padding: 0px 20px;
  1190. }
  1191. .style_house_sec02 p {
  1192. margin-bottom: 0;
  1193. font-size: 14px;
  1194. line-height: 28px;
  1195. letter-spacing: 2px;
  1196. font-family: NSJP-500;
  1197. }
  1198. @media screen and (max-width: 767px) {
  1199. .style_house_sec02 p {
  1200. font-size: 1rem;
  1201. }
  1202. }
  1203. .style_house_sec02 .style_house_sec02_slide_list {
  1204. margin-top: -50px;
  1205. }
  1206. .style_house_sec02 .style_house_sec02_slide_list .sec02_slide_item {
  1207. padding: 5px;
  1208. }
  1209. .style_house_sec02_slide .slick-dots {
  1210. display: none !important;
  1211. }
  1212. .style_house_sec03 {
  1213. letter-spacing: 1px;
  1214. }
  1215. .style_house_sec03 .table1 {
  1216. margin-top: 30px;
  1217. margin-bottom: 50px;
  1218. font-weight: 600;
  1219. border-color: grey;
  1220. border-spacing: 2px;
  1221. }
  1222. .style_house_sec03 .table1 th {
  1223. font-weight: 600;
  1224. width: 15%;
  1225. padding-left: 15px;
  1226. padding-top: 10px;
  1227. font-family: NSJP-400;
  1228. }
  1229. @media screen and (max-width: 767px) {
  1230. .style_house_sec03 .table1 th {
  1231. width: 15%;
  1232. font-size: 1rem;
  1233. }
  1234. }
  1235. .style_house_sec03 .table1 td {
  1236. font-weight: 600;
  1237. padding: 15px;
  1238. }
  1239. .style_house_sec03 .table1 td p {
  1240. font-weight: 600;
  1241. font-family: NSJP-400 !important;
  1242. }
  1243. @media screen and (max-width: 767px) {
  1244. .style_house_sec03 .table1 td {
  1245. padding: 5px;
  1246. font-size: 1rem;
  1247. font-family: NSJP-500 !important;
  1248. }
  1249. }
  1250. .style_house_sec03 .table2 {
  1251. margin-top: 30px;
  1252. margin-bottom: 50px;
  1253. font-weight: 600;
  1254. border-color: grey;
  1255. border-spacing: 2px;
  1256. }
  1257. .style_house_sec03 .table2 th {
  1258. width: 15%;
  1259. padding-left: 15px;
  1260. padding-top: 10px;
  1261. font-family: NSJP-500 !important;
  1262. }
  1263. .style_house_sec03 .table2 td {
  1264. font-family: NSJP-400;
  1265. }
  1266. @media screen and (max-width: 767px) {
  1267. .style_house_sec03 .table2 th {
  1268. width: 25%;
  1269. font-size: 1rem;
  1270. font-family: NSJP-500 !important;
  1271. }
  1272. }
  1273. .style_house_sec03 .table2 td p {
  1274. margin-bottom: 0;
  1275. line-height: 2;
  1276. font-weight: 600;
  1277. font-family: NSJP-500 !important;
  1278. }
  1279. @media screen and (max-width: 767px) {
  1280. .style_house_sec03 .table2 td p {
  1281. font-size: 1rem;
  1282. }
  1283. }
  1284. .style_house_sec04 {
  1285. margin-top: 50px;
  1286. margin-bottom: 100px;
  1287. }
  1288. @media screen and (max-width: 767px) {
  1289. .style_house_sec04 {
  1290. margin-top: 30px;
  1291. }
  1292. }
  1293. .style_house_sec04 p {
  1294. font-family: NSJP-500;
  1295. }
  1296. .style_house_sec05 {
  1297. margin-top: 50px;
  1298. margin-bottom: 100px;
  1299. }
  1300. @media screen and (max-width: 767px) {
  1301. .style_house_sec05 {
  1302. margin-bottom: 30px;
  1303. margin-top: 30px;
  1304. }
  1305. }
  1306. .style_house_sec05_box a {
  1307. text-decoration: none;
  1308. padding: 8px 5px;
  1309. background: #808e4c;
  1310. color: #fff;
  1311. margin-right: 5px;
  1312. -webkit-transition: 0.3s;
  1313. transition: 0.3s;
  1314. border: 1px solid #808e4c;
  1315. }
  1316. .style_house_sec05_box a:hover {
  1317. border: 1px solid #808e4c;
  1318. background: #fff;
  1319. color: #808e4c;
  1320. }
  1321. .style_house_sec06 {
  1322. margin: 30px 0;
  1323. }
  1324. /* 成家故事作品集內頁-simple_korean_style_hous end */
  1325. /* 成家設計服務-room_planner start */
  1326. .mt-03 {
  1327. margin-top: 0.3rem;
  1328. }
  1329. .f-78B142-20 {
  1330. color: #78b142;
  1331. font-size: 20px;
  1332. font-family: NSJP-700;
  1333. letter-spacing: 1.5px;
  1334. }
  1335. .f-2A2A2A-20 {
  1336. font-size: 20px;
  1337. font-family: NSJP-500;
  1338. color: #2a2a2a;
  1339. letter-spacing: 1.5px;
  1340. }
  1341. .f-2A2A2A-16 {
  1342. font-size: 16px;
  1343. font-family: NSJP-500;
  1344. color: #2a2a2a;
  1345. letter-spacing: 1.5px;
  1346. }
  1347. .f-2A2A2A-16-400 {
  1348. font-size: 16px;
  1349. font-family: NSJP-300 !important;
  1350. color: #2b2b2b;
  1351. letter-spacing: 1.5px;
  1352. }
  1353. .f-fff-18 {
  1354. font-family: NSJP-700;
  1355. color: #fff;
  1356. font-size: 18px;
  1357. }
  1358. .f-649E2E-24 {
  1359. font-family: NSJP-700;
  1360. color: #649e2e;
  1361. font-size: 24px;
  1362. }
  1363. .f-649E2E-18 {
  1364. font-family: NSJP-700;
  1365. color: #649e2e;
  1366. font-size: 18px;
  1367. }
  1368. .f-649E2E-20-q {
  1369. font-family: Quicksand;
  1370. font-weight: 700;
  1371. color: #649e2e;
  1372. font-size: 20px;
  1373. }
  1374. .f-2b2b2b-18-q {
  1375. font-family: Quicksand;
  1376. font-weight: 300;
  1377. color: #2b2b2b;
  1378. font-size: 18px;
  1379. }
  1380. .room-planner-service {
  1381. font-family: NSJP-500;
  1382. font-size: 28px;
  1383. letter-spacing: 2%;
  1384. mark {
  1385. padding: 2px 1px;
  1386. border-radius: 2%;
  1387. color: #2a2a2a;
  1388. font-family: NSJP-500;
  1389. background: linear-gradient(transparent 30%, #f0f6dd 70%);
  1390. }
  1391. }
  1392. .room-planner-service2 {
  1393. font-family: NSJP-500;
  1394. font-size: 28px;
  1395. mark {
  1396. padding: 2px 1px;
  1397. border-radius: 2%;
  1398. color: #000;
  1399. font-family: NSJP-500;
  1400. background: linear-gradient(transparent 50%, #e0ee79 100%);
  1401. }
  1402. }
  1403. .room-planner-service-no {
  1404. font-family: NSJP-500;
  1405. font-size: 36px;
  1406. color: #649e2e;
  1407. }
  1408. .room-planner-service-no-28 {
  1409. font-family: NSJP-500;
  1410. font-size: 28px;
  1411. color: #649e2e;
  1412. }
  1413. .room-planner-service-icon-box{
  1414. margin-top: 30px;
  1415. width: 650px;
  1416. padding: 0 20px;
  1417. text-align: center;
  1418. @media screen and (max-width: 767px) {
  1419. width: 80%;
  1420. margin:30px auto;
  1421. padding: 0 10px;
  1422. }
  1423. }
  1424. .room-planner-service-icon-box2{
  1425. margin-top: 30px;
  1426. width: 650px;
  1427. padding: 0 20px;
  1428. text-align: center;
  1429. p{
  1430. @media screen and (max-width: 767px) {
  1431. color:#2b2b2b !important;
  1432. }
  1433. }
  1434. @media screen and (max-width: 767px) {
  1435. width: 85%;
  1436. margin:30px auto;
  1437. padding: 0 10px;
  1438. }
  1439. .icon-radius-img04{
  1440. margin-top: 10px;
  1441. width: 68px;
  1442. @media screen and (max-width: 767px) {
  1443. margin-top: 15px;
  1444. width: 41px;
  1445. }
  1446. }
  1447. .icon-radius-img05{
  1448. margin-top: 10px;
  1449. width: 58px;
  1450. @media screen and (max-width: 767px) {
  1451. margin-top: 15px;
  1452. width: 35px;
  1453. }
  1454. }
  1455. .icon-radius-img06{
  1456. margin-top: 10px;
  1457. width: 66px;
  1458. @media screen and (max-width: 767px) {
  1459. // margin-top: 15px;
  1460. width: 40px;
  1461. }
  1462. }
  1463. }
  1464. .room-planner-service-icon-box,.room-planner-service-icon-box2{
  1465. .room-planner-service-icon-box-item{
  1466. @media screen and (max-width: 767px) {
  1467. margin-top: 15px;
  1468. }
  1469. }
  1470. .icon-radius-text {
  1471. color: #78b142;
  1472. font-size: 20px;
  1473. font-family: NSJP-700;
  1474. margin-top: 15px;
  1475. }
  1476. .icon-radius {
  1477. border: 1px solid #e0ee79;
  1478. border-radius: 100%;
  1479. padding: 20px;
  1480. width: 120px;
  1481. height: 120px;
  1482. margin: 0 auto;
  1483. @media screen and (max-width: 767px) {
  1484. width: 72px;
  1485. height: 72px;
  1486. padding: 5px;
  1487. }
  1488. img {
  1489. // margin-top: 10%;
  1490. // margin-top: 10px;
  1491. height: auto;
  1492. object-fit: cover;
  1493. }
  1494. .icon-radius-img01{
  1495. margin-top: 10px;
  1496. width: 55px;
  1497. @media screen and (max-width: 767px) {
  1498. margin-top: 15px;
  1499. width: 33px;
  1500. }
  1501. }
  1502. .icon-radius-img02{
  1503. margin-top: 10px;
  1504. width: 71px;
  1505. @media screen and (max-width: 767px) {
  1506. width: 42px;
  1507. }
  1508. }
  1509. .icon-radius-img03{
  1510. margin-top: 10px;
  1511. width: 56px;
  1512. @media screen and (max-width: 767px) {
  1513. width: 33.6px;
  1514. }
  1515. }
  1516. }
  1517. }
  1518. .room-planner-process {
  1519. position: relative;
  1520. background: #f0f6dd;
  1521. padding: 100px 0;
  1522. @media screen and (max-width: 767px) {
  1523. margin-top: 50px;
  1524. padding: 15px 0;
  1525. }
  1526. .room-planner-process-house {
  1527. position: absolute;
  1528. left: 100px;
  1529. top: -100px;
  1530. }
  1531. .room-planner-process-ruler2 {
  1532. position: absolute;
  1533. top: -70px;
  1534. right: 100px;
  1535. @media screen and (max-width: 767px) {
  1536. top:580px;
  1537. right: 20px;
  1538. }
  1539. }
  1540. .room-planner-process-box {
  1541. width: 60%;
  1542. margin: 0 auto;
  1543. @media screen and (max-width: 767px) {
  1544. width: 80%;
  1545. margin-top: 80px;
  1546. }
  1547. @media screen and (max-width: 375px) {
  1548. width: 90%;
  1549. }
  1550. .col {
  1551. position: relative;
  1552. @media screen and (max-width: 767px) {
  1553. margin-bottom: 50px;
  1554. }
  1555. }
  1556. .room-planner-process-icon-number {
  1557. position: absolute;
  1558. right: 25px;
  1559. top: -35px;
  1560. font-family: "Quicksand", sans-serif;
  1561. font-size: 40px;
  1562. color: #fff;
  1563. -webkit-text-stroke: 2px #78b142;
  1564. }
  1565. .room-planner-process-icon {
  1566. padding: 15px;
  1567. background: #fff;
  1568. border-radius: 16px;
  1569. width: 90px;
  1570. height: 90px;
  1571. margin: 0 auto;
  1572. text-align: center;
  1573. img {
  1574. height: auto;
  1575. object-fit: cover;
  1576. }
  1577. }
  1578. .room-planner-process-icon-text {
  1579. margin-top: 10px;
  1580. font-family: NSJP-500;
  1581. font-size: 16px;
  1582. color: #000;
  1583. text-align: center;
  1584. }
  1585. }
  1586. }
  1587. .bg-F0F6DD {
  1588. background: #f0f6dd;
  1589. }
  1590. .room_planner-sales-service-box {
  1591. width: 80%;
  1592. margin: 0 auto;
  1593. padding: 50px 0;
  1594. @media screen and (max-width: 767px) {
  1595. width: 100%;
  1596. margin: 0 auto;
  1597. }
  1598. .room-planner-service-content {
  1599. margin-top: 50px;
  1600. height: 188px;
  1601. p {
  1602. margin-bottom: 0.9rem;
  1603. }
  1604. }
  1605. img {
  1606. width: 21px;
  1607. height: 21px;
  1608. }
  1609. }
  1610. .divider {
  1611. width: 1px;
  1612. height: 350px !important;
  1613. border-left: 4px dotted #e0ee79;
  1614. position: relative;
  1615. }
  1616. .room-planner-service-5-service-inf {
  1617. ul {
  1618. list-style: none;
  1619. }
  1620. li {
  1621. font-size: 16px;
  1622. font-family: NSJP-500;
  1623. color: #2a2a2a;
  1624. letter-spacing: 1.5px;
  1625. margin-top: -5px;
  1626. }
  1627. li::before {
  1628. content: "\2022";
  1629. color: #e0ee79;
  1630. font-weight: bold;
  1631. display: inline-block;
  1632. width: 0.6em;
  1633. margin-left: -1em;
  1634. font-size: 28px;
  1635. }
  1636. }
  1637. .room_planner-sales-service-CTA {
  1638. width: 160px;
  1639. height: 50px;
  1640. border-radius: 16px;
  1641. background: #78b142;
  1642. background-image: url(/img/room_planner/icon.png);
  1643. background-repeat: no-repeat;
  1644. background-size: 14px 14px;
  1645. background-position: right 28px center;
  1646. transition: all 300ms ease-in-out;
  1647. box-shadow: 3px 5px #f0f6dd;
  1648. &:hover {
  1649. background-position: right 20px center;
  1650. box-shadow: none;
  1651. }
  1652. }
  1653. .main-border {
  1654. border: 1px solid #95cf54;
  1655. border-radius: 16px;
  1656. box-shadow: 3px 5px #f0f6dd;
  1657. }
  1658. .border-E0EE79 {
  1659. border: 1px solid #95cf54;
  1660. border-radius: 16px;
  1661. box-shadow: 5px 5px #e0ee79;
  1662. }
  1663. .room-planner-process-sub-title {
  1664. margin-top: -45px;
  1665. }
  1666. .step-sub-title {
  1667. color: #4b7718;
  1668. font-family: NSJP-700;
  1669. font-size: 36px;
  1670. }
  1671. // .dottedline{
  1672. // border-style: dotted;
  1673. // background-position: bottom;
  1674. // background-image: linear-gradient(to right, black 30%, rgba(255, 255, 255, 0) 0%);
  1675. // background-size: 10px 3px;
  1676. // background-repeat: repeat-x;
  1677. // // height: 3px;
  1678. // }
  1679. .main-content-bg-line {
  1680. position: absolute;
  1681. top: -95px;
  1682. right: -90px;
  1683. z-index: -5;
  1684. }
  1685. .dotted {
  1686. border: none;
  1687. border-top: 4px dotted #e0ee79;
  1688. color: #fff;
  1689. background-color: #fff;
  1690. // height:5px;
  1691. width: 100%;
  1692. opacity: 1 !important;
  1693. }
  1694. .fix-img {
  1695. position: absolute;
  1696. right: 180px;
  1697. bottom: -50px;
  1698. @media screen and (max-width: 767px) {
  1699. display: none;
  1700. }
  1701. }
  1702. .room-planner-process-main {
  1703. position: relative;
  1704. margin: 100px 0;
  1705. .bg01-hand {
  1706. margin-top: -100px;
  1707. }
  1708. .bg03-table {
  1709. position: absolute;
  1710. width: 304px;
  1711. right: 30px;
  1712. bottom: -130px;
  1713. }
  1714. .room-planner-process-main-box {
  1715. width: 95%;
  1716. margin: 0 auto;
  1717. .room-planner-process-main-content-left-box {
  1718. padding: 20px;
  1719. background: #fff;
  1720. border-radius: 16px;
  1721. }
  1722. .room-planner-process-main-content-left-step {
  1723. .room-planner-process-main-content-left-step-item {
  1724. margin-top: 30px;
  1725. }
  1726. p {
  1727. margin-bottom: 0.5rem;
  1728. }
  1729. }
  1730. .room-planner-process-main-title-box {
  1731. width: 431px;
  1732. padding: 10px 20px;
  1733. .room-planner-process-main-title {
  1734. font-style: oblique;
  1735. font-family: NSJP-700;
  1736. color: #4b7718;
  1737. font-size: 42px;
  1738. letter-spacing: 5px;
  1739. // font-style: oblique 20deg;
  1740. }
  1741. }
  1742. .step-number-circle {
  1743. background: #649e2e;
  1744. width: 26px;
  1745. height: 26px;
  1746. text-align: center;
  1747. border-radius: 100%;
  1748. padding: 1px 0;
  1749. .step-number {
  1750. font-size: 16px;
  1751. font-family: Quicksand;
  1752. font-weight: 700;
  1753. color: #fff;
  1754. }
  1755. }
  1756. .step-qa-circle-q {
  1757. background: #e0ee79;
  1758. width: 26px;
  1759. height: 26px;
  1760. text-align: center;
  1761. border-radius: 100%;
  1762. padding: 1px 0;
  1763. .step-qa-q {
  1764. font-size: 14px;
  1765. font-family: Quicksand;
  1766. font-weight: 700;
  1767. color: #54891d;
  1768. }
  1769. }
  1770. }
  1771. }
  1772. .room-planner-process-main-content-step-img {
  1773. margin-top: -50px;
  1774. }
  1775. .room-planner-process-main-content-step-4-6img {
  1776. margin-top: 380px;
  1777. }
  1778. .stepbox {
  1779. background: #4b7718;
  1780. border-radius: 100px;
  1781. padding: 5px 15px;
  1782. font-family: Quicksand;
  1783. color: #fff;
  1784. font-weight: 700;
  1785. font-size: 24px;
  1786. }
  1787. .room-planner {
  1788. display: -webkit-box;
  1789. display: -ms-flexbox;
  1790. display: flex;
  1791. -webkit-box-orient: vertical;
  1792. -webkit-box-direction: normal;
  1793. -ms-flex-direction: column;
  1794. flex-direction: column;
  1795. }
  1796. // .room-planner .row {
  1797. // -webkit-box-align: center;
  1798. // -ms-flex-align: center;
  1799. // align-items: center;
  1800. // -webkit-box-pack: center;
  1801. // -ms-flex-pack: center;
  1802. // justify-content: center;
  1803. // -ms-flex-wrap: nowrap;
  1804. // flex-wrap: nowrap;
  1805. // }
  1806. .room-planner .sub-banner {
  1807. margin: 210px auto 50px;
  1808. @media screen and (max-width: 767px) {
  1809. margin: 160px auto 50px;
  1810. }
  1811. }
  1812. .sub-banner2 {
  1813. width: 650px;
  1814. margin: 100px auto;
  1815. @media screen and (max-width: 767px) {
  1816. width: 100%;
  1817. }
  1818. }
  1819. // .room-planner .sub-banner img {
  1820. // width: 100%;
  1821. // max-width: 600px;
  1822. // padding: 0 20px;
  1823. // }
  1824. .room-planner .room-planner-images {
  1825. padding: 0 70px 100px;
  1826. position: relative;
  1827. }
  1828. .room-planner .room-planner-images .row {
  1829. padding: 50px 0;
  1830. }
  1831. .room-planner .room-planner-images .img-box {
  1832. border-radius: 40px;
  1833. background-color: #99a56f;
  1834. border: 3px solid var(--second-color);
  1835. background-size: cover;
  1836. background-position: center;
  1837. background-repeat: no-repeat;
  1838. }
  1839. .room-planner .room-planner-images .bg-item {
  1840. max-width: 830px;
  1841. height: 270px;
  1842. }
  1843. .room-planner .room-planner-images .step-01 {
  1844. background-image: url(/img/room_planner/step1.webp);
  1845. }
  1846. .room-planner .room-planner-images .step-02 {
  1847. background-image: url(/img/room_planner/step2.webp);
  1848. }
  1849. .room-planner .room-planner-images .step-03 {
  1850. background-position: right;
  1851. background-image: url(/img/room_planner/step3.webp);
  1852. }
  1853. .room-planner .room-planner-images .step-04 {
  1854. background-image: url(/img/room_planner/step4.webp);
  1855. }
  1856. .room-planner .room-planner-images .step-06 {
  1857. background-image: url(/img/room_planner/step6.webp);
  1858. }
  1859. .room-planner .room-planner-images .step-09 {
  1860. background-image: url(/img/room_planner/step9.webp);
  1861. }
  1862. .room-planner .room-planner-images .line-1,
  1863. .room-planner .room-planner-images .line-2,
  1864. .room-planner .room-planner-images .line-3,
  1865. .room-planner .room-planner-images .line-4,
  1866. .room-planner .room-planner-images .line-5 {
  1867. position: absolute;
  1868. z-index: -1;
  1869. }
  1870. .room-planner .room-planner-images .line-1 {
  1871. top: -50px;
  1872. width: 580px;
  1873. height: 200px;
  1874. border-left: 3px solid var(--second-color);
  1875. }
  1876. .room-planner .room-planner-images .line-2 {
  1877. top: 185px;
  1878. width: 585px;
  1879. height: 370px;
  1880. border: 3px solid var(--second-color);
  1881. border-left: none;
  1882. }
  1883. .room-planner .room-planner-images .line-3 {
  1884. top: 600px;
  1885. width: 580px;
  1886. height: 200px;
  1887. border-left: 3px solid var(--second-color);
  1888. }
  1889. .room-planner .room-planner-images .line-4 {
  1890. top: 930px;
  1891. width: 585px;
  1892. height: 380px;
  1893. border: 3px solid var(--second-color);
  1894. border-left: none;
  1895. }
  1896. .room-planner .room-planner-images .line-5 {
  1897. width: 590px;
  1898. height: 300px;
  1899. bottom: 300px;
  1900. border-left: 3px solid var(--second-color);
  1901. }
  1902. @media (max-width: 991px) {
  1903. .room-planner .room-planner-images .bg-item {
  1904. min-width: 750px;
  1905. }
  1906. .room-planner .room-planner-images .line-2,
  1907. .room-planner .room-planner-images .line-3 {
  1908. width: 540px;
  1909. }
  1910. .room-planner .room-planner-images .line-4 {
  1911. width: 510px;
  1912. }
  1913. }
  1914. @media (max-width: 767px) {
  1915. .room-planner .room-planner-images {
  1916. display: none;
  1917. }
  1918. }
  1919. .room-planner .room-planner-moblie .row {
  1920. margin-bottom: 50px;
  1921. padding: 0 65px;
  1922. }
  1923. .room-planner .room-planner-moblie .img-box {
  1924. border-radius: 30px;
  1925. background-color: #99a56f;
  1926. border: 3px solid var(--second-color);
  1927. }
  1928. .room-planner .room-planner-moblie .text-box {
  1929. margin-right: 10vw;
  1930. font-size: 20px;
  1931. font-weight: bold;
  1932. text-align: center;
  1933. }
  1934. .room-planner .room-planner-moblie .text-box span {
  1935. font-size: 44px;
  1936. color: #99a56f;
  1937. }
  1938. .room-planner .room-planner-moblie .line-6 {
  1939. height: 2800px;
  1940. position: absolute;
  1941. top: -50px;
  1942. right: 29%;
  1943. z-index: -1;
  1944. border-right: 2px solid var(--second-color);
  1945. }
  1946. @media (min-width: 767px) {
  1947. .room-planner .room-planner-moblie {
  1948. display: none;
  1949. }
  1950. }
  1951. @media (max-width: 575px) {
  1952. .room-planner .room-planner-moblie .line-6 {
  1953. right: 36%;
  1954. }
  1955. .room-planner .room-planner-moblie .text-box {
  1956. margin-right: 0;
  1957. }
  1958. }
  1959. .room-planner .rp-navs {
  1960. padding: 35px 25px;
  1961. }
  1962. .room-planner .rp-navs .home-content {
  1963. width: 100%;
  1964. max-width: 850px;
  1965. display: -webkit-box;
  1966. display: -ms-flexbox;
  1967. display: flex;
  1968. }
  1969. @media (max-width: 767px) {
  1970. .room-planner .rp-navs {
  1971. display: none;
  1972. }
  1973. }
  1974. /* 成家設計服務-room_planner end */
  1975. /* 成家知識專欄-categories start */
  1976. .w-80-auto {
  1977. width: 80%;
  1978. margin: 0 auto;
  1979. @media screen and (max-width: 767px) {
  1980. width: 100%;
  1981. margin: 0 auto;
  1982. }
  1983. }
  1984. .blog-categories .container {
  1985. width: 50%;
  1986. margin: 40px auto 25px;
  1987. }
  1988. .blog-categories .container .breadcrumb-item {
  1989. font-family: NSJP-500;
  1990. }
  1991. .blog-categories .container .breadcrumb-item a {
  1992. font-family: NSJP-500;
  1993. color: var(--main-color);
  1994. }
  1995. .blog-categories .container .link-list {
  1996. width: 100%;
  1997. }
  1998. .blog-categories .container .link-list button {
  1999. text-decoration: none;
  2000. margin: 0 0.1rem 0.5rem;
  2001. padding: 5px 10px;
  2002. background: #808e4c;
  2003. margin-right: 5px;
  2004. -webkit-transition: 0.3s;
  2005. transition: 0.3s;
  2006. border: 1px solid #808e4c;
  2007. }
  2008. .blog-categories .container .link-list button:hover {
  2009. border: 1px solid #808e4c;
  2010. background: #fff;
  2011. color: #808e4c;
  2012. a {
  2013. color: #808e4c;
  2014. }
  2015. }
  2016. .blog-categories .container .link-list a {
  2017. color: #fff;
  2018. }
  2019. .blog-categories .container .bhouseweb_search_form {
  2020. padding: 0;
  2021. }
  2022. .blog-categories .container .bhouseweb_search_form .bhouseweb_search_img img {
  2023. width: 38px;
  2024. }
  2025. .blog-categories .article {
  2026. width: 50%;
  2027. margin: auto;
  2028. display: -webkit-box;
  2029. display: -ms-flexbox;
  2030. display: flex;
  2031. -webkit-box-orient: vertical;
  2032. -webkit-box-direction: normal;
  2033. -ms-flex-direction: column;
  2034. flex-direction: column;
  2035. margin-top: 25px;
  2036. }
  2037. .blog-categories .article .article-item {
  2038. display: -webkit-box;
  2039. display: -ms-flexbox;
  2040. display: flex;
  2041. margin: 25px 0;
  2042. padding-bottom: 50px;
  2043. border-bottom: 1px solid var(--dark-gray);
  2044. align-items: center;
  2045. }
  2046. .blog-categories .article .article-item h4 {
  2047. font-size: 24px;
  2048. line-height: 32px;
  2049. color: #4c660b;
  2050. font-family: NSJP-700;
  2051. }
  2052. .blog-categories .article .article-item h4:hover {
  2053. opacity: 0.8;
  2054. }
  2055. .blog-categories .article .article-item .description {
  2056. color: var(--dark-color);
  2057. }
  2058. .blog-categories .article .article-item .description:hover {
  2059. opacity: 0.8;
  2060. }
  2061. // .blog-categories .article .article-item h4,
  2062. // .blog-categories .article .article-item p {
  2063. // font-weight: bold;
  2064. // }
  2065. .blog-categories .article .article-item img {
  2066. width: 240px;
  2067. height: auto;
  2068. margin-right: 35px;
  2069. }
  2070. .blog-categories .article .nav-link {
  2071. padding: 0;
  2072. margin-bottom: 50px;
  2073. text-align: center;
  2074. font-weight: bold;
  2075. font-size: 14px;
  2076. letter-spacing: 1px;
  2077. color: var(--dark-color);
  2078. }
  2079. @media (max-width: 991px) {
  2080. .blog-categories .container,
  2081. .blog-categories .article {
  2082. width: 75%;
  2083. }
  2084. }
  2085. @media (max-width: 575px) {
  2086. .blog-categories .container,
  2087. .blog-categories .article {
  2088. width: 90%;
  2089. }
  2090. .blog-categories .container .article-item,
  2091. .blog-categories .article .article-item {
  2092. -webkit-box-orient: vertical;
  2093. -webkit-box-direction: normal;
  2094. -ms-flex-direction: column;
  2095. flex-direction: column;
  2096. }
  2097. .blog-categories .container .article-item a,
  2098. .blog-categories .article .article-item a {
  2099. margin-top: 20px;
  2100. }
  2101. .blog-categories .container .article-item img,
  2102. .blog-categories .article .article-item img {
  2103. width: 100%;
  2104. margin-right: 15px;
  2105. }
  2106. }
  2107. .blog-main {
  2108. .text-box {
  2109. margin: 70px auto;
  2110. .title {
  2111. text-align: center;
  2112. font-family: NSJP-700;
  2113. font-size: 32px;
  2114. letter-spacing: 2%;
  2115. color: #649e2e;
  2116. }
  2117. div {
  2118. position: relative;
  2119. max-width: 480px;
  2120. margin: auto;
  2121. p {
  2122. max-width: 480px;
  2123. margin: 40px auto;
  2124. text-align: center;
  2125. font-family: NSJP-500;
  2126. font-size: 20px;
  2127. line-height: 36px;
  2128. color: #78b142;
  2129. }
  2130. img {
  2131. width: 2.5%;
  2132. }
  2133. .left_img {
  2134. position: absolute;
  2135. top: 0;
  2136. left: 0;
  2137. }
  2138. .right_img {
  2139. position: absolute;
  2140. top: 0;
  2141. right: 0;
  2142. }
  2143. }
  2144. .underline {
  2145. display: block;
  2146. background: #f0f6dd;
  2147. height: 10px;
  2148. width: 210px;
  2149. margin: auto;
  2150. margin-top: -35px;
  2151. }
  2152. }
  2153. .process {
  2154. padding: 85px 0 60px;
  2155. background-color: #f0f6dd;
  2156. display: flex;
  2157. flex-direction: column;
  2158. justify-content: center;
  2159. align-items: center;
  2160. position: relative;
  2161. div {
  2162. display: flex;
  2163. margin: 0 50px;
  2164. }
  2165. div:last-child {
  2166. padding: 0 145px;
  2167. margin-top: 58px;
  2168. @media (max-width: 890px) {
  2169. margin-top: 27px;
  2170. }
  2171. }
  2172. .house_img {
  2173. position: absolute;
  2174. top: -95px;
  2175. left: 100px;
  2176. max-width: 180px;
  2177. @media (max-width: 1200px) {
  2178. top: -8vw;
  2179. max-width: 15%;
  2180. }
  2181. }
  2182. .ruler_img {
  2183. position: absolute;
  2184. top: -70px;
  2185. right: 100px;
  2186. max-width: 110px;
  2187. }
  2188. .line_01 {
  2189. position: absolute;
  2190. width: 700px;
  2191. top: 25%;
  2192. @media (max-width: 890px) {
  2193. width: 600px;
  2194. }
  2195. }
  2196. .line_02 {
  2197. position: absolute;
  2198. width: 700px;
  2199. top: 85%;
  2200. right: 48%;
  2201. max-width: 700px;
  2202. height: 100%;
  2203. @media (max-width: 890px) {
  2204. width: 600px;
  2205. top: 67%;
  2206. }
  2207. }
  2208. section {
  2209. margin-right: 80px;
  2210. img {
  2211. width: 100%;
  2212. max-width: 90px;
  2213. height: 90px;
  2214. object-fit: contain;
  2215. position: relative;
  2216. z-index: 1;
  2217. }
  2218. span {
  2219. display: block;
  2220. position: absolute;
  2221. img {
  2222. width: 40px;
  2223. height: 45px;
  2224. position: absolute;
  2225. top: -110px;
  2226. left: 65px;
  2227. z-index: 10;
  2228. object-fit: contain;
  2229. }
  2230. }
  2231. h4 {
  2232. font-size: 16px;
  2233. text-align: center;
  2234. margin: 15px 0;
  2235. font-family: NSJP-500;
  2236. }
  2237. }
  2238. }
  2239. .article_list {
  2240. margin-top: 100px;
  2241. .article_item {
  2242. width: 65%;
  2243. display: flex;
  2244. justify-content: center;
  2245. align-items: center;
  2246. flex-direction: column;
  2247. @media (max-width: 1199px) {
  2248. width: 80%;
  2249. }
  2250. .row {
  2251. height: 500px;
  2252. @media (max-width: 991px) {
  2253. height: 530px;
  2254. }
  2255. }
  2256. .img_box {
  2257. position: relative;
  2258. img:first-child {
  2259. width: 100%;
  2260. }
  2261. img:last-child {
  2262. width: 55px;
  2263. position: absolute;
  2264. left: 15vw;
  2265. top: -10px;
  2266. }
  2267. }
  2268. .text_box {
  2269. display: flex;
  2270. flex-direction: column;
  2271. position: relative;
  2272. h4 {
  2273. color: #649e2e;
  2274. font-size: 35px;
  2275. font-family: NSJP-700;
  2276. span {
  2277. color: #78b142;
  2278. font-size: 28px;
  2279. font-family: NSJP-500;
  2280. }
  2281. }
  2282. ul {
  2283. list-style: none;
  2284. margin-top: 30px;
  2285. padding-left: 20px;
  2286. li {
  2287. display: flex;
  2288. align-items: center;
  2289. .blog_img {
  2290. position: relative;
  2291. img:first-child {
  2292. width: 120px;
  2293. height: 80px;
  2294. border-radius: 10px;
  2295. }
  2296. img:last-child {
  2297. position: absolute;
  2298. width: 50px;
  2299. left: -20px;
  2300. top: -20px;
  2301. }
  2302. }
  2303. .blog_text {
  2304. margin-left: 20px;
  2305. h5 a {
  2306. width: 130%;
  2307. font-size: 18px;
  2308. font-family: NSJP-500;
  2309. color: #000;
  2310. &:hover {
  2311. background: linear-gradient(to bottom, #fff 50%, #ffe55f 50%);
  2312. }
  2313. }
  2314. p {
  2315. margin: 0;
  2316. width: 100%;
  2317. color: #78b142;
  2318. line-height: 20px;
  2319. font-size: 14px;
  2320. }
  2321. }
  2322. span {
  2323. display: block;
  2324. margin: 10px 0;
  2325. img {
  2326. width: 120%;
  2327. }
  2328. }
  2329. }
  2330. }
  2331. .btn_box {
  2332. margin-top: 10px;
  2333. margin-left: 20px;
  2334. .read_more {
  2335. display: flex;
  2336. align-items: center;
  2337. justify-content: center;
  2338. width: 160px;
  2339. height: 50px;
  2340. color: #fff;
  2341. background-color: #78b142;
  2342. border: none;
  2343. border-radius: 12px;
  2344. position: relative;
  2345. bottom: 0;
  2346. left: 0;
  2347. transition: all 0.2s;
  2348. letter-spacing: 1px;
  2349. font-size: 18px;
  2350. font-family: NSJP-500;
  2351. p {
  2352. margin: 0;
  2353. margin-left: -10px;
  2354. }
  2355. &:hover {
  2356. bottom: -5px;
  2357. left: 4px;
  2358. img {
  2359. right: -15px;
  2360. }
  2361. }
  2362. img {
  2363. position: relative;
  2364. right: -10px;
  2365. transition: all 0.2s;
  2366. }
  2367. }
  2368. span {
  2369. width: 160px;
  2370. height: 50px;
  2371. background: #f0f6dd;
  2372. position: absolute;
  2373. z-index: -1;
  2374. bottom: -5px;
  2375. left: 25px;
  2376. border-radius: 12px;
  2377. }
  2378. }
  2379. }
  2380. .blog_divider {
  2381. position: relative;
  2382. .bg_img {
  2383. width: 45vw;
  2384. height: 5px;
  2385. margin: 50px 0;
  2386. background-image: url("/img/blog/Vector.png");
  2387. background-repeat: no-repeat;
  2388. @media (max-width: 1199px) {
  2389. width: 33vw;
  2390. }
  2391. @media (max-width: 991px) {
  2392. width: 25vw;
  2393. }
  2394. }
  2395. img {
  2396. width: 45vw;
  2397. margin: 50px 0;
  2398. }
  2399. .line_left {
  2400. position: absolute;
  2401. width: 311px;
  2402. height: 610px;
  2403. top: 0px;
  2404. right: -300px;
  2405. @media (max-width: 991px) {
  2406. height: 640px;
  2407. }
  2408. }
  2409. .line_right {
  2410. position: absolute;
  2411. width: 300px;
  2412. height: 590px;
  2413. top: -1px;
  2414. left: -290px;
  2415. @media (max-width: 991px) {
  2416. height: 620px;
  2417. }
  2418. }
  2419. }
  2420. }
  2421. .topic_list {
  2422. height: 295px;
  2423. margin-bottom: -50px;
  2424. background-color: #f0f6dd;
  2425. display: flex;
  2426. justify-content: center;
  2427. align-items: center;
  2428. position: relative;
  2429. img {
  2430. position: absolute;
  2431. top: -45px;
  2432. left: 100px;
  2433. max-width: 125px;
  2434. }
  2435. section {
  2436. display: flex;
  2437. flex-direction: column;
  2438. h5 {
  2439. width: 125px;
  2440. margin: auto;
  2441. font-size: 28px;
  2442. text-align: center;
  2443. font-family: NSJP-700;
  2444. background: linear-gradient(to bottom, #f0f6dd 50%, #e0ee79 50%);
  2445. margin-bottom: 25px;
  2446. }
  2447. div {
  2448. width: 100%;
  2449. max-width: 535px;
  2450. margin: auto;
  2451. a {
  2452. display: inline-block;
  2453. color: #000;
  2454. background-color: #fff;
  2455. padding: 10px 15px;
  2456. margin: 10px 5px;
  2457. border-radius: 100px;
  2458. transition: all 0.3s;
  2459. &:hover {
  2460. color: #fff;
  2461. background-color: #649e2e;
  2462. }
  2463. }
  2464. }
  2465. }
  2466. }
  2467. }
  2468. }
  2469. /* 成家知識專欄-categories end */
  2470. /* 成家知識專欄-article start */
  2471. .blog_article h3 {
  2472. color: #4c660b;
  2473. font-weight: bold;
  2474. font-family: NSJP-900;
  2475. margin-bottom: 50px;
  2476. }
  2477. .blog_article span {
  2478. font-weight: bold;
  2479. letter-spacing: 2px;
  2480. }
  2481. .blog_article ul {
  2482. margin: 0;
  2483. padding: 0;
  2484. list-style: none;
  2485. }
  2486. .blog_article p {
  2487. margin-bottom: 0;
  2488. line-height: 32px;
  2489. letter-spacing: 1px;
  2490. font-family: NSJP-400;
  2491. }
  2492. .blog_article .content {
  2493. width: 50%;
  2494. margin: 60px auto;
  2495. padding-bottom: 60px;
  2496. }
  2497. .blog_article .content section:first-child {
  2498. margin: 60px auto;
  2499. padding-bottom: 60px;
  2500. border-bottom: 1px solid var(--dark-gray);
  2501. }
  2502. @media (max-width: 1200px) {
  2503. .blog_article .content {
  2504. width: 70%;
  2505. }
  2506. }
  2507. @media (max-width: 992px) {
  2508. .blog_article .content {
  2509. width: 90%;
  2510. }
  2511. }
  2512. .blog_article hr {
  2513. margin: 50px 0;
  2514. }
  2515. .blog_article .question-box {
  2516. display: -webkit-box;
  2517. display: -ms-flexbox;
  2518. display: flex;
  2519. -webkit-box-align: center;
  2520. -ms-flex-align: center;
  2521. align-items: center;
  2522. -webkit-box-orient: vertical;
  2523. -webkit-box-direction: normal;
  2524. -ms-flex-direction: column;
  2525. flex-direction: column;
  2526. border: 2px solid var(--second-color);
  2527. margin-bottom: 50px;
  2528. padding: 20px 50px 10px;
  2529. }
  2530. // .blog_article .question-box ul {
  2531. // padding: 20px 40px;
  2532. // }
  2533. .blog_article .question-box ul li {
  2534. margin: 10px 0;
  2535. letter-spacing: 1px;
  2536. font-weight: bold;
  2537. }
  2538. .blog_article .question-box p {
  2539. font-size: 20px;
  2540. font-family: NSJP-700;
  2541. }
  2542. // .blog_article .question-box ul li:first-child {
  2543. // font-size: 20px;
  2544. // font-family: NSJP-700;
  2545. // }
  2546. .blog_article .question-box ul a {
  2547. margin-left: 5px;
  2548. color: #006e9a;
  2549. }
  2550. .blog_article .question-box ul a:hover {
  2551. opacity: 0.8;
  2552. }
  2553. .blog_article .img-text {
  2554. margin: 0;
  2555. margin-bottom: 50px;
  2556. padding: 20px 60px;
  2557. background-color: rgba(128, 143, 76, 0.8);
  2558. text-align: start;
  2559. color: #ffffff;
  2560. font-size: 14px;
  2561. line-height: 28px;
  2562. font-family: NSJP-500;
  2563. letter-spacing: 2px;
  2564. @media (max-width: 767px) {
  2565. padding: 20px 30px;
  2566. }
  2567. }
  2568. // .blog_article .img-box {
  2569. // margin: 50px 0;
  2570. // position: relative;
  2571. // }
  2572. .blog_article .content img {
  2573. width: 100%;
  2574. margin-top: 30px;
  2575. }
  2576. .blog_article .icon-box img {
  2577. margin-top: 0px;
  2578. width: 35px;
  2579. }
  2580. // .blog_article .img-box p {
  2581. // margin: 0;
  2582. // padding: 20px 60px;
  2583. // position: absolute;
  2584. // left: 0;
  2585. // right: 0;
  2586. // bottom: 0px;
  2587. // background-color: rgba(128, 143, 76, 0.6);
  2588. // text-align: start;
  2589. // color: #ffffff;
  2590. // font-size: 14px;
  2591. // line-height: 28px;
  2592. // font-family: NSJP-500;
  2593. // letter-spacing: 2px;
  2594. // }
  2595. .blog_article h2 {
  2596. margin-bottom: 30px;
  2597. font-size: 20px;
  2598. font-weight: bold;
  2599. font-family: NSJP-700;
  2600. color: var(--main-color);
  2601. }
  2602. .blog_article b {
  2603. font-family: NSJP-700;
  2604. }
  2605. .blog_article li,
  2606. .blog_article table td {
  2607. font-family: NSJP-400;
  2608. }
  2609. // .blog_article .section-01 {
  2610. // margin-bottom: 40px;
  2611. // padding-bottom: 20px;
  2612. // border-bottom: 1px solid var(--dark-gray);
  2613. // }
  2614. .blog_article li {
  2615. letter-spacing: 1px;
  2616. line-height: 32px;
  2617. }
  2618. .blog_article .list-title {
  2619. font-size: 20px;
  2620. font-weight: bold;
  2621. font-family: NSJP-700;
  2622. }
  2623. // .blog_article .section-02 li:first-child,
  2624. // .blog_article .section-03 li:first-child {
  2625. // margin-bottom: 20px;
  2626. // font-size: 20px;
  2627. // font-weight: bold;
  2628. // font-family: NSJP-700;
  2629. // }
  2630. // .blog_article .section-03 {
  2631. // padding-bottom: 10px;
  2632. // border-bottom: 1px solid var(--dark-gray);
  2633. // }
  2634. // .blog_article .section-03 span {
  2635. // line-height: 32px;
  2636. // }
  2637. // .blog_article .section-04 {
  2638. // padding-bottom: 40px;
  2639. // border-bottom: 1px solid var(--dark-gray);
  2640. // }
  2641. // .blog_article .section-04 h4 {
  2642. // margin-top: 30px;
  2643. // }
  2644. // .blog_article .section-04 span {
  2645. // line-height: 32px;
  2646. // }
  2647. // .blog_article .section-04 li:first-child {
  2648. // margin-bottom: 40px;
  2649. // }
  2650. .blog_article table {
  2651. width: 100%;
  2652. margin-bottom: 50px;
  2653. }
  2654. .blog_article table,
  2655. .blog_article table td,
  2656. .blog_article table th {
  2657. padding: 5px 10px;
  2658. border: 1px solid #333;
  2659. }
  2660. .blog_article .link-box {
  2661. margin-top: 50px;
  2662. padding-bottom: 50px;
  2663. border-bottom: 1px solid var(--dark-gray);
  2664. }
  2665. .blog_article .link-box .link-list {
  2666. width: 100%;
  2667. }
  2668. .blog_article .link-box .link-list a {
  2669. text-decoration: none;
  2670. padding: 7px 10px;
  2671. background: #808e4c;
  2672. color: #fff;
  2673. -webkit-transition: 0.3s;
  2674. transition: 0.3s;
  2675. border: 1px solid #808e4c;
  2676. font-weight: bold;
  2677. }
  2678. .blog_article .link-box .link-list a:hover {
  2679. border: 1px solid #808e4c;
  2680. background: #fff;
  2681. color: #808e4c;
  2682. }
  2683. .blog_article .readMore,
  2684. .blog_article .article_readMore {
  2685. margin: 25px 0;
  2686. }
  2687. .blog_article .read-more-list {
  2688. padding-top: 60px;
  2689. border-top: 1px solid var(--dark-gray);
  2690. font-size: 18px;
  2691. letter-spacing: 2px;
  2692. }
  2693. .blog_article .read-more-list li {
  2694. margin: 15px 0;
  2695. font-weight: bold;
  2696. @media (max-width: 575px) {
  2697. margin: 20px 0;
  2698. }
  2699. }
  2700. .blog_article .read-more-list a {
  2701. color: var(--main-color);
  2702. }
  2703. .blog_article button {
  2704. border: none;
  2705. margin: 1px;
  2706. }
  2707. /* 成家知識專欄-article end */
  2708. /* 最新消息公告-news start */
  2709. .news-content {
  2710. img {
  2711. margin-bottom: 30px;
  2712. }
  2713. p {
  2714. margin-bottom: 0;
  2715. line-height: 32px;
  2716. letter-spacing: 1px;
  2717. font-family: NSJP-400;
  2718. margin-top: 10px;
  2719. }
  2720. h2 {
  2721. margin-bottom: 30px;
  2722. font-size: 20px;
  2723. font-weight: bold;
  2724. font-family: NSJP-700;
  2725. color: #000;
  2726. letter-spacing: 1px;
  2727. }
  2728. }
  2729. .bhouseweb_loc_content {
  2730. .subtitle {
  2731. font-family: NSJP-900;
  2732. }
  2733. .bhouseWeb_news_content {
  2734. letter-spacing: 1px;
  2735. line-height: 28px;
  2736. }
  2737. }
  2738. .likeSee__state__filter p {
  2739. width: 110px;
  2740. margin-left: 50px;
  2741. font-family: NSJP-500;
  2742. letter-spacing: 1px;
  2743. }
  2744. .bhouseweb_loc_sec p {
  2745. font-family: NSJP-400;
  2746. }
  2747. .NewsDescription {
  2748. width: 100%;
  2749. .NewsDescription_p {
  2750. overflow: hidden;
  2751. white-space: nowrap;
  2752. text-overflow: ellipsis;
  2753. display: -webkit-box;
  2754. -webkit-line-clamp: 2;
  2755. -webkit-box-orient: vertical;
  2756. white-space: normal;
  2757. }
  2758. }
  2759. /* 最新消息公告-news end */
  2760. /* 小寶設計單品-furniture_design start */
  2761. .furniture_design_content {
  2762. width: 55%;
  2763. margin: 0 auto;
  2764. @media (max-width: 991px) {
  2765. width: 75%;
  2766. }
  2767. @media (max-width: 575px) {
  2768. width: 90%;
  2769. }
  2770. }
  2771. .furniture-design p {
  2772. padding-right: 15px;
  2773. text-align: justify;
  2774. font-family: NSJP-400;
  2775. }
  2776. .furniture-design h5 {
  2777. font-weight: bold;
  2778. color: var(--main-color);
  2779. font-family: NSJP-700;
  2780. }
  2781. .furniture-design p,
  2782. .furniture-design h5 {
  2783. line-height: 32px;
  2784. letter-spacing: 1px;
  2785. }
  2786. .furniture-design img {
  2787. width: 100%;
  2788. }
  2789. .furniture-design .text-box {
  2790. width: 380px;
  2791. text-align: center;
  2792. margin: auto;
  2793. @media screen and (max-width: 575px) {
  2794. width: auto;
  2795. }
  2796. }
  2797. .furniture-design .nav-link {
  2798. font-size: 14px;
  2799. color: var(--dark-color);
  2800. }
  2801. .furniture-design .tab-title .nav-item {
  2802. width: 200px;
  2803. justify-content: center;
  2804. }
  2805. .furniture-design .tab-title .nav-link {
  2806. margin: atuo;
  2807. font-size: 18px;
  2808. font-family: NSJP-400;
  2809. }
  2810. .furniture-design ul {
  2811. display: flex;
  2812. flex-wrap: nowrap;
  2813. list-style: none;
  2814. }
  2815. .furniture-design ul li {
  2816. display: flex;
  2817. flex-wrap: wrap;
  2818. list-style: none;
  2819. font-family: NSJP-400;
  2820. }
  2821. .furniture-design .design-list {
  2822. display: flex;
  2823. flex-wrap: wrap;
  2824. list-style: none;
  2825. @media (max-width: 767px) {
  2826. a {
  2827. border: 1px solid #d9d9d9;
  2828. &:hover {
  2829. background-color: #d9d9d9;
  2830. }
  2831. }
  2832. }
  2833. @media (max-width: 575px) {
  2834. width: 105%;
  2835. margin: 0;
  2836. margin-left: -20px;
  2837. }
  2838. @media (max-width: 413px) {
  2839. padding: 0;
  2840. margin-left: -9px;
  2841. justify-content: center;
  2842. }
  2843. @media (max-width: 361px) {
  2844. margin-left: -4px;
  2845. justify-content: flex-start;
  2846. }
  2847. }
  2848. .furniture-design .design-list li {
  2849. margin: 5px 10px 0px;
  2850. @media (max-width: 767px) {
  2851. margin: 5px 8px;
  2852. }
  2853. }
  2854. #cabinet {
  2855. padding-left: 37px;
  2856. padding-right: 37px;
  2857. }
  2858. #dining_chair {
  2859. padding-left: 22px;
  2860. padding-right: 22px;
  2861. }
  2862. .furniture-design .sub-tab-content h4 {
  2863. margin: 0;
  2864. color: #ffffff;
  2865. background-color: rgba(128, 142, 76, 0.8);
  2866. padding: 10px 20px;
  2867. transition: all 0.3s;
  2868. font-size: 1.3rem;
  2869. white-space: nowrap;
  2870. text-align: center;
  2871. letter-spacing: 2px;
  2872. font-family: NSJP-500;
  2873. }
  2874. // .furniture-design .sub-tab-content img {
  2875. // height: 350px;
  2876. // -o-object-fit: cover;
  2877. // object-fit: cover;
  2878. // -o-object-position: center;
  2879. // object-position: center;
  2880. // }
  2881. // @media screen and (max-width: 767px) {
  2882. // .furniture-design .sub-tab-content img {
  2883. // height: 350px;
  2884. // }
  2885. // }
  2886. .furniture-design .sub-tab-content .text-item div {
  2887. // position: absolute;
  2888. // top: 50%;
  2889. // left: 50%;
  2890. // -webkit-transform: translate(-50%, -50%);
  2891. // transform: translate(-50%, -50%);
  2892. // top: 0;
  2893. // left: 0;
  2894. // right: 0;
  2895. display: -webkit-box;
  2896. display: -ms-flexbox;
  2897. display: flex;
  2898. -webkit-box-pack: center;
  2899. -ms-flex-pack: center;
  2900. justify-content: center;
  2901. -webkit-box-align: center;
  2902. -ms-flex-align: center;
  2903. align-items: center;
  2904. -webkit-transition: all 0.3s;
  2905. transition: all 0.3s;
  2906. }
  2907. // .furniture-design .sub-tab-content .text-item:hover div {
  2908. // display: -webkit-box;
  2909. // display: -ms-flexbox;
  2910. // display: flex;
  2911. // -webkit-box-pack: center;
  2912. // -ms-flex-pack: center;
  2913. // justify-content: center;
  2914. // -webkit-box-align: center;
  2915. // -ms-flex-align: center;
  2916. // align-items: center;
  2917. // width: 100%;
  2918. // height: 100%;
  2919. // background: rgba(128, 142, 76, 0.8);
  2920. // cursor: pointer;
  2921. // }
  2922. // .furniture-design .sub-tab-content .text-item:hover div h4 {
  2923. // background-color: transparent;
  2924. // }
  2925. .furniture-design .sub-tab-content .mattress-text-box {
  2926. width: 400px;
  2927. }
  2928. @media (max-width: 575px) {
  2929. .furniture-design .sub-tab-content .mattress-text-box {
  2930. width: auto;
  2931. }
  2932. }
  2933. .furniture-design .mattress-price {
  2934. p {
  2935. text-align: center;
  2936. margin-bottom: 5px;
  2937. }
  2938. .price-item {
  2939. font-size: 18px;
  2940. font-family: NSJP-500;
  2941. }
  2942. }
  2943. .furniture-design .nav-pills .nav-link.active {
  2944. color: var(--dark-color);
  2945. background-color: transparent;
  2946. border-bottom: 2px solid var(--second-color);
  2947. border-radius: 0;
  2948. }
  2949. @media (max-width: 991px) {
  2950. .furniture-design .nav-pills {
  2951. padding-top: 30px;
  2952. }
  2953. }
  2954. @media (max-width: 767px) {
  2955. .furniture-design .nav-pills {
  2956. padding-top: 15px;
  2957. }
  2958. }
  2959. .furniture-design #systeam-furniture .cabinet-03 {
  2960. height: 500px;
  2961. display: -webkit-box;
  2962. display: -ms-flexbox;
  2963. display: flex;
  2964. -webkit-box-orient: vertical;
  2965. -webkit-box-direction: normal;
  2966. -ms-flex-direction: column;
  2967. flex-direction: column;
  2968. -webkit-box-align: center;
  2969. -ms-flex-align: center;
  2970. align-items: center;
  2971. }
  2972. .furniture-design #systeam-furniture .cabinet-03 h5 {
  2973. margin: 20px;
  2974. }
  2975. .furniture-design #systeam-furniture .cabinet-03 img {
  2976. width: 150px;
  2977. height: 150px;
  2978. -o-object-fit: contain;
  2979. object-fit: contain;
  2980. }
  2981. @media (max-width: 991px) {
  2982. .furniture-design #systeam-furniture .cabinet-03 {
  2983. height: auto;
  2984. }
  2985. }
  2986. .b-bottom {
  2987. border-bottom: 1px solid var(--dark-gray);
  2988. }
  2989. .furniture-design .bg-text {
  2990. position: absolute;
  2991. left: 0;
  2992. width: 100%;
  2993. background-color: #80a251;
  2994. }
  2995. .furniture-design .bg-text p {
  2996. margin: 0;
  2997. padding: 70px 0;
  2998. font-size: 24px;
  2999. text-align: center;
  3000. line-height: 50px;
  3001. color: #fff;
  3002. font-family: NSJP-700;
  3003. letter-spacing: 2px;
  3004. }
  3005. .furniture-design .mobile-tab {
  3006. padding: 20px;
  3007. letter-spacing: 1px;
  3008. @media (max-width: 475px) {
  3009. padding: 10px;
  3010. }
  3011. ul {
  3012. padding-bottom: 20px;
  3013. }
  3014. #all-design-tab {
  3015. text-align: center;
  3016. font-weight: bold;
  3017. font-size: 18px;
  3018. }
  3019. #pills-tab {
  3020. .nav-item {
  3021. width: 100%;
  3022. transition: all 0.3s;
  3023. @media (max-width: 475px) {
  3024. width: auto;
  3025. margin: auto;
  3026. }
  3027. &:hover {
  3028. background: #68686b;
  3029. }
  3030. }
  3031. .nav-active {
  3032. background: #68686b;
  3033. }
  3034. a {
  3035. font-size: 1rem !important;
  3036. }
  3037. }
  3038. .nav-link {
  3039. margin: auto;
  3040. }
  3041. .tab-title {
  3042. display: flex;
  3043. flex-wrap: nowrap;
  3044. }
  3045. }
  3046. .tw-85 {
  3047. width: 85%;
  3048. }
  3049. .tw-15 {
  3050. width: 15%;
  3051. }
  3052. /* 小寶設計單品-furniture_design end */
  3053. /* 設計家具 start */
  3054. .design-container {
  3055. padding-top: 50px;
  3056. }
  3057. /* @media (max-width: 991px) {
  3058. .design-container {
  3059. padding-top: 150px;
  3060. }
  3061. } */
  3062. .design-container p {
  3063. line-height: 32px;
  3064. }
  3065. .design-container h3,
  3066. .design-container h6 {
  3067. font-weight: bold;
  3068. color: var(--main-color);
  3069. font-family: NSJP-700;
  3070. }
  3071. .design-container h6 {
  3072. font-size: 20px;
  3073. }
  3074. .design-container div {
  3075. font-family: NSJP-400;
  3076. }
  3077. .design-container ul {
  3078. display: flex;
  3079. flex-direction: column;
  3080. padding: 0;
  3081. list-style: none;
  3082. }
  3083. .design-container ul li {
  3084. line-height: 32px;
  3085. }
  3086. .design-container .slider-box {
  3087. width: 60%;
  3088. .slider {
  3089. margin-right: 20px;
  3090. }
  3091. }
  3092. @media (max-width: 767px) {
  3093. .design-container .slider-box {
  3094. width: 100%;
  3095. }
  3096. }
  3097. // .design-container .slider-design .design-img img {
  3098. // width: 96.3%;
  3099. // max-height: 400px;
  3100. // -o-object-fit: cover;
  3101. // object-fit: cover;
  3102. // }
  3103. // @media (max-width: 991px) {
  3104. // .design-container .slider-design .design-img img {
  3105. // margin: auto;
  3106. // max-width: 98%;
  3107. // }
  3108. // }
  3109. // @media (max-width: 767px) {
  3110. // .design-container .slider-design .design-img img {
  3111. // width: 530px;
  3112. // max-width: 100%;
  3113. // padding-right: 1%;
  3114. // }
  3115. // }
  3116. // @media (max-width: 575px) {
  3117. // .design-container .slider-design .design-img img {
  3118. // padding-right: 0;
  3119. // padding: 0 1.5% 0 1%;
  3120. // }
  3121. // }
  3122. .design-container .slider-nav img {
  3123. // width: 90%;
  3124. // height: 130px;
  3125. // -o-object-fit: cover;
  3126. // object-fit: cover;
  3127. cursor: pointer;
  3128. }
  3129. // .design-container .slider-nav .slick-slide {
  3130. // width: 33% !important;
  3131. // }
  3132. // .design-container .slider-nav .slick-list {
  3133. // padding: 0 !important;
  3134. // }
  3135. .design-container .slider-nav .middle-item {
  3136. padding: 0 5px;
  3137. }
  3138. // .design-container .slider-nav .middle-item img {
  3139. // padding: 0 5px;
  3140. // }
  3141. .furniture-design .design-border {
  3142. border-bottom: 2px solid var(--second-color);
  3143. border-radius: 0;
  3144. }
  3145. @media (max-width: 991px) {
  3146. .design-container .slider-nav img {
  3147. width: 95%;
  3148. height: auto;
  3149. margin: auto;
  3150. }
  3151. .design-container .slider-nav .middle-item {
  3152. margin: 0;
  3153. }
  3154. }
  3155. /* 設計家具 end */
  3156. .bhouse_line {
  3157. background: #000;
  3158. height: 1px;
  3159. opacity: 1 !important;
  3160. }
  3161. .bhouse_title {
  3162. font-size: 1.3rem;
  3163. letter-spacing: 2px;
  3164. text-align: justify;
  3165. color: #4c660b;
  3166. font-family: NSJP-700;
  3167. }
  3168. @media screen and (max-width: 767px) {
  3169. .bhouse_title {
  3170. font-size: 1rem;
  3171. }
  3172. }
  3173. .bhouse_subtitle {
  3174. color: #4c660b;
  3175. font-size: 1.2rem;
  3176. font-weight: 600;
  3177. letter-spacing: 3px;
  3178. }
  3179. .brand_sec02_content {
  3180. margin: 50px 0;
  3181. }
  3182. .brand_sec02_content p {
  3183. letter-spacing: 2px;
  3184. line-height: 28px;
  3185. font-family: NSJP-400;
  3186. }
  3187. .brand_content {
  3188. width: 50%;
  3189. margin: 0 auto;
  3190. }
  3191. @media screen and (max-width: 767px) {
  3192. .brand_content {
  3193. width: 95%;
  3194. }
  3195. .store-line {
  3196. margin: 35px 20px;
  3197. }
  3198. }
  3199. .brand_sec01,
  3200. .brand_sec02 {
  3201. margin: 50px 0;
  3202. }
  3203. .likeSee__state {
  3204. display: -webkit-box;
  3205. display: -ms-flexbox;
  3206. display: flex;
  3207. -webkit-box-pack: justify;
  3208. -ms-flex-pack: justify;
  3209. justify-content: space-between;
  3210. -webkit-box-align: center;
  3211. -ms-flex-align: center;
  3212. align-items: center;
  3213. }
  3214. .likeSee__state img {
  3215. width: 40px;
  3216. }
  3217. @media screen and (max-width: 767px) {
  3218. .likeSee__state img {
  3219. width: 30px;
  3220. }
  3221. }
  3222. .mt-15 {
  3223. margin-top: 15px;
  3224. }
  3225. .mt-30 {
  3226. margin-top: 30px;
  3227. }
  3228. .my-80 {
  3229. margin: 80px 0;
  3230. }
  3231. .my-50 {
  3232. margin: 50px 0;
  3233. }
  3234. .mt-80 {
  3235. margin-top: 80px;
  3236. }
  3237. .mb-80 {
  3238. margin-bottom: 80px;
  3239. }
  3240. .article__readMore {
  3241. color: #656565;
  3242. font-size: 0.9rem;
  3243. font-family: NSJP-500;
  3244. cursor: pointer;
  3245. }
  3246. .sec01_store_map_img {
  3247. width: 100%;
  3248. height: 700px;
  3249. margin: 0 auto;
  3250. position: relative;
  3251. object-fit: contain;
  3252. @media screen and (max-width: 767px) {
  3253. width: 80%;
  3254. height: 400px;
  3255. }
  3256. @media screen and (max-width: 575px) {
  3257. margin-left: 20px;
  3258. }
  3259. }
  3260. .store_cta_box_reserve {
  3261. // width: 150px;
  3262. // margin-top: 80px;
  3263. // position: relative;
  3264. // left: 50px;
  3265. position: absolute;
  3266. left: 30px;
  3267. top: 100px;
  3268. @media screen and (max-width: 1200px) {
  3269. left: -10px;
  3270. top: 130px;
  3271. }
  3272. @media screen and (max-width: 767px) {
  3273. left: 30px;
  3274. top: 50px;
  3275. }
  3276. @media screen and (max-width: 575px) {
  3277. left: 15px;
  3278. }
  3279. }
  3280. .store_cta_box_reserve .store_cta {
  3281. background: #808f4c;
  3282. width: 150px;
  3283. padding: 16px;
  3284. color: #fff;
  3285. border-radius: 15px;
  3286. text-align: center;
  3287. font-size: 18px;
  3288. letter-spacing: 2px;
  3289. font-family: NSJP-500;
  3290. }
  3291. @media screen and (max-width: 767px) {
  3292. .store_cta_box_reserve .store_cta {
  3293. width: 120px;
  3294. padding: 10px;
  3295. font-size: 12px;
  3296. }
  3297. }
  3298. .store_cta_box_reserve p {
  3299. text-align: center;
  3300. color: #68686b;
  3301. font-weight: bold;
  3302. letter-spacing: 2px;
  3303. font-size: 14px;
  3304. a {
  3305. font-family: NSJP-400;
  3306. }
  3307. }
  3308. @media screen and (max-width: 767px) {
  3309. .store_cta_box_reserve p {
  3310. font-size: 12px;
  3311. }
  3312. }
  3313. .store_cta_box_reserve a {
  3314. color: #2980b8;
  3315. }
  3316. @media screen and (max-width: 767px) {
  3317. .store_cta_box_reserve a {
  3318. font-size: 12px;
  3319. }
  3320. }
  3321. .store_cta_box {
  3322. position: absolute;
  3323. top: 40%;
  3324. right: -70px;
  3325. @media screen and (max-width: 1200px) {
  3326. right: -170px;
  3327. }
  3328. @media screen and (max-width: 767px) {
  3329. right: 0px;
  3330. }
  3331. }
  3332. .store_cta_box_form {
  3333. margin-top: 70px;
  3334. position: relative;
  3335. }
  3336. @media screen and (max-width: 767px) {
  3337. .store_cta_box_form {
  3338. left: -10px;
  3339. }
  3340. }
  3341. .store_cta_box_form .store_cta {
  3342. background-color: var(--dark-gray);
  3343. width: 160px;
  3344. padding: 15px 5px;
  3345. color: #fff;
  3346. border-radius: 15px;
  3347. text-align: center;
  3348. margin: 0 auto;
  3349. font-size: 18px;
  3350. letter-spacing: 2px;
  3351. font-family: NSJP-500;
  3352. }
  3353. @media screen and (max-width: 767px) {
  3354. .store_cta_box_form .store_cta {
  3355. width: 125px;
  3356. padding: 10px 5px;
  3357. font-size: 12px;
  3358. }
  3359. }
  3360. .store_cta_box_form p {
  3361. text-align: center;
  3362. color: #68686b;
  3363. font-weight: bold;
  3364. letter-spacing: 2px;
  3365. font-size: 14px;
  3366. a {
  3367. font-family: NSJP-400;
  3368. }
  3369. }
  3370. @media screen and (max-width: 767px) {
  3371. .store_cta_box_form p {
  3372. width: 130px;
  3373. font-size: 12px;
  3374. }
  3375. }
  3376. .store_cta_box_form a {
  3377. color: #2980b8;
  3378. }
  3379. @media screen and (max-width: 767px) {
  3380. .store_cta_box_form a {
  3381. font-size: 12px;
  3382. }
  3383. }
  3384. .store-link {
  3385. color: #2980b8 !important;
  3386. &:hover {
  3387. opacity: 0.7;
  3388. }
  3389. }
  3390. .store-tab #pills-tab a,
  3391. .mobile-tab #pills-tab a {
  3392. color: #fff;
  3393. text-decoration: none;
  3394. font-size: 1.2rem;
  3395. font-family: NSJP-400;
  3396. -webkit-appearance: none;
  3397. border-radius: 0;
  3398. }
  3399. .store-tab #pills-tab .nav-item,
  3400. .mobile-tab #pills-tab .nav-item {
  3401. margin: 0 0.8rem;
  3402. width: auto;
  3403. background: #808e4c;
  3404. @media screen and (max-width: 575px) {
  3405. margin: 0 0.5rem;
  3406. }
  3407. }
  3408. .store-tab #pills-tab .nav-item-link,
  3409. .mobile-tab #pills-tab .nav-item-link {
  3410. display: block;
  3411. text-decoration: none;
  3412. margin: 0 0.1rem;
  3413. padding: 0.4rem 1.8rem;
  3414. background: #808e4c;
  3415. color: #fff;
  3416. margin-right: 5px;
  3417. transition: 0.3s;
  3418. // border: 1px solid #808e4c;
  3419. font-family: NSJP-400;
  3420. letter-spacing: 2px;
  3421. text-align: center;
  3422. margin: 0;
  3423. &:hover {
  3424. background: #68686b !important;
  3425. }
  3426. @media screen and (max-width: 575px) {
  3427. font-size: 16px;
  3428. padding: 0.4rem 1rem;
  3429. }
  3430. }
  3431. // #pills-tab .nav-item-link {
  3432. // display: block;
  3433. // padding: 0.5rem 1rem;
  3434. // margin: 0 2rem;
  3435. // text-decoration: none;
  3436. // background-color: transparent;
  3437. // font-size: 1.2rem;
  3438. // color: #68686b;
  3439. // -webkit-transition: all 0.3s;
  3440. // transition: all 0.3s;
  3441. // -webkit-appearance: none !important;
  3442. // border-bottom: 2px solid #fff;
  3443. // font-family: NSJP-500;
  3444. // }
  3445. // @media screen and (max-width: 1200px) {
  3446. // #pills-tab .nav-item-link {
  3447. // padding: 0.5rem 0.8rem;
  3448. // }
  3449. // }
  3450. @media screen and (max-width: 767px) {
  3451. .store-tab #pills-tab .nav-item-link {
  3452. margin: 0 0rem;
  3453. }
  3454. }
  3455. // @media screen and (max-width: 375px) {
  3456. // #pills-tab .nav-item-link {
  3457. // padding: 0rem 0.5rem;
  3458. // }
  3459. // }
  3460. .store-tab #pills-tab .nav-item-link.active,
  3461. .mobile-tab #pills-tab .nav-item-link.active {
  3462. color: #fff;
  3463. background: #68686b !important;
  3464. // 取消 Safari 預設樣式
  3465. -webkit-appearance: none;
  3466. border-radius: 0 !important;
  3467. }
  3468. /* .tab-content {
  3469. margin-bottom: 40vh;
  3470. }
  3471. @media screen and (max-width: 767px) {
  3472. .tab-content {
  3473. margin-bottom: 20vh;
  3474. }
  3475. } */
  3476. .store_title {
  3477. color: #4c660b;
  3478. font-size: 1.8rem;
  3479. font-family: NSJP-700;
  3480. }
  3481. @media screen and (max-width: 767px) {
  3482. .store_title {
  3483. margin-top: 15px;
  3484. }
  3485. }
  3486. .store_content {
  3487. font-weight: 600;
  3488. letter-spacing: 2px;
  3489. }
  3490. .store_content a {
  3491. color: #68686b;
  3492. font-weight: 600;
  3493. }
  3494. .store_content .reservation-link {
  3495. margin-top: 15px;
  3496. color: #4c660b;
  3497. font-weight: 600;
  3498. font-size: 17px;
  3499. }
  3500. .store_content .store_content_item {
  3501. margin-bottom: 10px;
  3502. }
  3503. .store_content_item span {
  3504. font-family: NSJP-500;
  3505. }
  3506. .assign-link {
  3507. border-bottom: 2px solid var(--second-color);
  3508. @media (max-width: 767px) {
  3509. border-bottom: none;
  3510. background-color: #d9d9d9;
  3511. }
  3512. }
  3513. .card-img,
  3514. .card-img-top {
  3515. border-radius: 0 !important;
  3516. }
  3517. .breadcrumb-item + .breadcrumb-item::before {
  3518. content: ">" !important;
  3519. }