style.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. @charset "UTF-8";
  2. @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;600&display=swap");
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. -webkit-box-sizing: border-box;
  7. box-sizing: border-box;
  8. }
  9. @font-face {
  10. font-family: 追奇手寫體;
  11. src: url(./drechifont-proportional.ttf);
  12. font-weight: 900;
  13. }
  14. body .title {
  15. font-weight: 900;
  16. padding: 15px;
  17. font-family: "Times New Roman", Times, serif;
  18. color: #4b515e;
  19. text-align: center;
  20. }
  21. @media screen and (max-width: 1024px) {
  22. body .title {
  23. font-size: 48px;
  24. }
  25. }
  26. @media screen and (max-width: 767px) {
  27. body .title {
  28. font-size: 34px;
  29. }
  30. }
  31. @media screen and (max-width: 400px) {
  32. body .title {
  33. font-size: 25px !important;
  34. }
  35. }
  36. body .btn {
  37. width: 100vw;
  38. text-align: center;
  39. margin-top: 20px;
  40. }
  41. body .btn-main {
  42. -webkit-box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  43. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  44. border: none;
  45. padding: 15px;
  46. background: #404854;
  47. color: #fff;
  48. font-size: 16px;
  49. letter-spacing: 1px;
  50. width: 280px;
  51. border-radius: 30px;
  52. -webkit-transition: 0.3s;
  53. transition: 0.3s;
  54. margin-top: 50px;
  55. }
  56. body .btn-main:hover {
  57. background-color: #9c857b;
  58. width: 285px;
  59. font-size: 16px;
  60. }
  61. @media screen and (max-width: 1024px) {
  62. body .btn-main {
  63. font-size: 16px;
  64. padding: 20px;
  65. }
  66. }
  67. body .arrow {
  68. position: fixed;
  69. right: 3vw;
  70. bottom: 50px;
  71. width: 45px;
  72. height: 40px;
  73. z-index: 10;
  74. background-color: #E06649;
  75. }
  76. body .arrow:hover {
  77. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  78. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  79. }
  80. #banner-box {
  81. height: 50vh;
  82. overflow: hidden;
  83. position: relative;
  84. }
  85. @media screen and (max-width: 767px) {
  86. #banner-box {
  87. height: 90vh;
  88. }
  89. }
  90. @media screen and (max-width: 550px) {
  91. #banner-box {
  92. height: 100vh;
  93. }
  94. }
  95. #banner-box hr {
  96. width: 100vw;
  97. position: absolute;
  98. top: 7vw;
  99. z-index: 5;
  100. height: 2px;
  101. background: #fff;
  102. }
  103. @media screen and (max-width: 767px) {
  104. #banner-box hr {
  105. top: 12vw;
  106. }
  107. }
  108. #banner-box .logo {
  109. padding: 5px;
  110. margin-bottom: 6px;
  111. padding-left: 10px;
  112. position: absolute;
  113. z-index: 5;
  114. }
  115. #banner-box .logo img {
  116. width: 128px;
  117. }
  118. @media screen and (max-width: 767px) {
  119. #banner-box .logo {
  120. padding-left: 10px;
  121. }
  122. }
  123. #banner-box .bannertitlebox {
  124. padding-top: 10vw;
  125. }
  126. @media screen and (max-width: 767px) {
  127. #banner-box .bannertitlebox {
  128. padding-top: 25vw;
  129. }
  130. }
  131. @media screen and (max-width: 400px) {
  132. #banner-box .bannertitlebox {
  133. padding-top: 25vw;
  134. }
  135. }
  136. #banner-box .menu-btn1 {
  137. padding: 10px;
  138. position: absolute;
  139. right: 5px;
  140. z-index: 5;
  141. top: 5px;
  142. }
  143. #banner-box .menu-btn1 img {
  144. margin: 2px;
  145. width: 4vw;
  146. -webkit-filter: invert(100%) sepia(0%) saturate(10%) hue-rotate(238deg) brightness(104%) contrast(103%);
  147. filter: invert(100%) sepia(0%) saturate(10%) hue-rotate(238deg) brightness(104%) contrast(103%);
  148. -webkit-transition: 0.3s;
  149. transition: 0.3s;
  150. }
  151. #banner-box .menu-btn1 img:hover {
  152. -webkit-filter: none;
  153. filter: none;
  154. }
  155. @media screen and (max-width: 767px) {
  156. #banner-box .menu-btn1 img {
  157. width: 6vw;
  158. }
  159. }
  160. #banner-box .banner1 {
  161. width: 100vw;
  162. height: 50vh;
  163. background-size: contain;
  164. background-repeat: no-repeat;
  165. background-size: 100vw 50vh;
  166. }
  167. @media screen and (max-width: 767px) {
  168. #banner-box .banner1 {
  169. height: 80vh;
  170. background-size: 100vw 80vh;
  171. }
  172. }
  173. #banner-box .banner1 .black {
  174. width: 5vw;
  175. display: block;
  176. margin: 1vw auto;
  177. }
  178. @media screen and (max-width: 767px) {
  179. #banner-box .banner1 .black {
  180. width: 10vw;
  181. }
  182. }
  183. #banner-box .banner1 .banner-titleh1 {
  184. text-align: center;
  185. color: #fff;
  186. font-size: 35px;
  187. font-weight: bolder;
  188. font-family: 'Noto Serif TC', serif;
  189. }
  190. #banner-box .banner1 .process-box {
  191. display: -ms-grid;
  192. display: grid;
  193. width: 90vw;
  194. -ms-grid-columns: (1fr)[4];
  195. grid-template-columns: repeat(4, 1fr);
  196. margin: 0 auto;
  197. }
  198. @media screen and (max-width: 767px) {
  199. #banner-box .banner1 .process-box {
  200. -ms-grid-columns: (1fr)[2];
  201. grid-template-columns: repeat(2, 1fr);
  202. width: 65vw;
  203. margin: 0 auto;
  204. width: 70vw;
  205. }
  206. }
  207. #banner-box .banner1 .process-box .box-text {
  208. font-family: 微軟正黑體;
  209. text-align: center;
  210. font-size: 16px;
  211. font-weight: 900;
  212. color: #fff;
  213. }
  214. @media screen and (max-width: 767px) {
  215. #banner-box .banner1 .process-box .box-text {
  216. font-size: 16px;
  217. }
  218. }
  219. @media screen and (max-width: 400px) {
  220. #banner-box .banner1 .process-box .box-text {
  221. font-size: 12px;
  222. }
  223. }
  224. #banner-box .banner1 .process-box img {
  225. display: block;
  226. margin: 0 auto;
  227. width: 15vw;
  228. }
  229. @media screen and (max-width: 767px) {
  230. #banner-box .banner1 .process-box img {
  231. width: 30vw;
  232. }
  233. }
  234. @media screen and (max-width: 767px) {
  235. #banner-box .banner1 {
  236. height: 100vh;
  237. background-size: cover;
  238. background-position: center center;
  239. }
  240. }
  241. #banner-box .banner1 {
  242. background-image: url(./img/banner/001.webp);
  243. }
  244. #contact-us {
  245. padding-top: 50px;
  246. }
  247. #contact-us p {
  248. font-size: 16px;
  249. font-weight: 600;
  250. margin: 0px 10px;
  251. color: #5c5248;
  252. }
  253. @media screen and (max-width: 1024px) {
  254. #contact-us p {
  255. font-size: 24px;
  256. text-align: center;
  257. }
  258. }
  259. @media screen and (max-width: 767px) {
  260. #contact-us p {
  261. font-size: 16px;
  262. }
  263. }
  264. #contact-us #form-title {
  265. margin-bottom: 50px;
  266. }
  267. #contact-us #form-text {
  268. width: 100vw;
  269. margin: 30px auto;
  270. }
  271. @media screen and (max-width: 1024px) {
  272. #contact-us #form-text {
  273. font-size: 24px;
  274. text-align: center;
  275. margin: 30px auto;
  276. }
  277. }
  278. @media screen and (max-width: 767px) {
  279. #contact-us #form-text {
  280. font-size: 16px;
  281. margin: 30px auto;
  282. }
  283. }
  284. #contact-us h1 {
  285. text-align: center;
  286. font-family: 'Noto Serif TC', serif;
  287. color: #4b515e;
  288. font-weight: bolder;
  289. }
  290. @media screen and (max-width: 1024px) {
  291. #contact-us h1 {
  292. font-size: 36px;
  293. }
  294. }
  295. @media screen and (max-width: 767px) {
  296. #contact-us h1 {
  297. font-size: 20px;
  298. }
  299. }
  300. #contact-us #contact-form {
  301. text-align: center;
  302. }
  303. #contact-us #contact-form .btn {
  304. margin: 50px auto;
  305. border: none;
  306. padding: 15px;
  307. background: #ffaf60;
  308. color: #404854;
  309. font-size: 20px;
  310. width: 300px;
  311. border-radius: 30px;
  312. }
  313. #contact-us #contact-form .btn:hover {
  314. color: #fff;
  315. background-color: #745c54;
  316. }
  317. #contact-us #contact-form #location,
  318. #contact-us #contact-form #type,
  319. #contact-us #contact-form #modal,
  320. #contact-us #contact-form #budget,
  321. #contact-us #contact-form #square,
  322. #contact-us #contact-form #style,
  323. #contact-us #contact-form #datepicker,
  324. #contact-us #contact-form #email,
  325. #contact-us #contact-form #name,
  326. #contact-us #contact-form #phone,
  327. #contact-us #contact-form #gender,
  328. #contact-us #contact-form #rooms,
  329. #contact-us #contact-form #livingroom,
  330. #contact-us #contact-form #bathroom {
  331. border-radius: 3px;
  332. width: 85%;
  333. height: 60px;
  334. margin: 15px 0;
  335. padding-left: 15px;
  336. border: 1px solid rgba(0, 0, 0, 0.3);
  337. font-size: 18px;
  338. -webkit-appearance: none;
  339. -moz-appearance: none;
  340. appearance: none;
  341. background: url(./img/icondown1.webp) 95% 50% no-repeat scroll transparent;
  342. background-size: 10px 10px;
  343. background-color: #fff;
  344. }
  345. #contact-us #contact-form #square,
  346. #contact-us #contact-form #datepicker,
  347. #contact-us #contact-form #email,
  348. #contact-us #contact-form #name,
  349. #contact-us #contact-form #phone {
  350. font-size: 18px;
  351. width: 85%;
  352. background: none;
  353. }
  354. #contact-us #contact-form #gender {
  355. display: block;
  356. margin: 0 auto;
  357. }
  358. #contact-us #contact-form #fb-button {
  359. border-radius: 3px;
  360. margin: 15px auto;
  361. width: 85vw;
  362. height: 60px;
  363. border: 1px solid #3b5998;
  364. text-align: right;
  365. background-color: #fff;
  366. -webkit-transition: 0.3s;
  367. transition: 0.3s;
  368. position: relative;
  369. }
  370. #contact-us #contact-form #fb-button p {
  371. position: absolute;
  372. right: 2vw;
  373. font-weight: normal;
  374. color: #626262;
  375. }
  376. @media screen and (max-width: 1024px) {
  377. #contact-us #contact-form #fb-button p {
  378. top: 2vw;
  379. right: 10vw;
  380. font-size: 20px;
  381. }
  382. }
  383. @media screen and (max-width: 767px) {
  384. #contact-us #contact-form #fb-button p {
  385. top: 3vw;
  386. right: 1vw;
  387. }
  388. }
  389. #contact-us #contact-form #fb-button img {
  390. position: absolute;
  391. left: 30px;
  392. top: 15px;
  393. width: 32px;
  394. height: 32px;
  395. -webkit-filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  396. filter: invert(29%) sepia(70%) saturate(712%) hue-rotate(186deg) brightness(89%) contrast(81%);
  397. }
  398. #contact-us #contact-form #fb-button:hover {
  399. background-color: #2a4f91;
  400. color: #fff;
  401. }
  402. #contact-us #contact-form #fb-button:hover p {
  403. color: #fff;
  404. }
  405. #contact-us #contact-form #fb-button:hover img {
  406. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  407. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  408. }
  409. #contact-us #contact-form a {
  410. text-decoration: none;
  411. color: #ee751b;
  412. }
  413. #contact-us #contact-form #checkbox {
  414. margin-top: 50px;
  415. }
  416. #contact-us #contact-form #email,
  417. #contact-us #contact-form #name,
  418. #contact-us #contact-form #phone {
  419. background: none;
  420. background-color: #fff;
  421. }
  422. #contact-us #contact-form .option {
  423. width: 85%;
  424. }
  425. #contact-us #form {
  426. text-align: center;
  427. position: relative;
  428. }
  429. #contact-us #form #phone {
  430. position: absolute;
  431. left: 500px;
  432. }
  433. #feedback {
  434. margin: auto;
  435. width: 70vw;
  436. padding-bottom: 100px;
  437. }
  438. @media screen and (max-width: 767px) {
  439. #feedback {
  440. width: 90vw;
  441. }
  442. }
  443. #feedback .feedback-slider1 {
  444. width: 70vw;
  445. }
  446. @media screen and (max-width: 767px) {
  447. #feedback .feedback-slider1 {
  448. width: 90vw;
  449. }
  450. }
  451. #feedback h1 {
  452. margin-top: 50px;
  453. }
  454. #feedback .box {
  455. position: relative;
  456. }
  457. #feedback .box p {
  458. margin: 20px;
  459. text-align: center;
  460. font-size: 18px;
  461. font-weight: 600;
  462. }
  463. #feedback .box img {
  464. width: 390px;
  465. height: 195px;
  466. -o-object-fit: cover;
  467. object-fit: cover;
  468. }
  469. @media screen and (max-width: 1024px) {
  470. #feedback .box img {
  471. width: 70vw;
  472. height: 30vh;
  473. }
  474. }
  475. @media screen and (max-width: 767px) {
  476. #feedback .box img {
  477. width: 90vw;
  478. }
  479. }
  480. #feedback .box .play {
  481. position: absolute;
  482. left: 40vw;
  483. top: 20vw;
  484. width: 15vw;
  485. height: 15vw;
  486. opacity: 0.8;
  487. z-index: 10;
  488. }
  489. #footer {
  490. margin-top: 50px;
  491. padding-top: 50px;
  492. width: 100vw;
  493. height: 150px;
  494. background-color: #ebe6e2;
  495. color: #4b515e;
  496. text-align: center;
  497. font-size: 16px;
  498. line-height: 2;
  499. font-weight: 900;
  500. }
  501. #footer a {
  502. text-decoration: none;
  503. color: #4b515e;
  504. }
  505. #footer p {
  506. margin-left: 5px;
  507. display: inline;
  508. }
  509. /*# sourceMappingURL=style.css.map */