style.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  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: 20px;
  70. bottom: 100px;
  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: 20vw;
  129. }
  130. }
  131. @media screen and (max-width: 400px) {
  132. #banner-box .bannertitlebox {
  133. padding-top: 20vw;
  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 70vh;
  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: 30px;
  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: 90vh;
  237. background-size: cover;
  238. background-position: center center;
  239. }
  240. }
  241. @media screen and (max-width: 1024px) {
  242. #banner-box .banner1 {
  243. height: 90vh;
  244. }
  245. }
  246. #banner-box .banner1 {
  247. background-image: url(./img/banner/001.webp);
  248. }
  249. #contact-us p {
  250. font-size: 16px;
  251. font-weight: 600;
  252. margin: 0px 10px;
  253. }
  254. @media screen and (max-width: 1024px) {
  255. #contact-us p {
  256. font-size: 24px;
  257. text-align: center;
  258. }
  259. }
  260. @media screen and (max-width: 767px) {
  261. #contact-us p {
  262. font-size: 16px;
  263. }
  264. }
  265. #contact-us #form-title {
  266. padding-top: 100px;
  267. margin-bottom: 50px;
  268. color: #5c5248;
  269. }
  270. #contact-us #form-text {
  271. width: 100vw;
  272. margin: 30px auto;
  273. }
  274. @media screen and (max-width: 1024px) {
  275. #contact-us #form-text {
  276. font-size: 24px;
  277. text-align: center;
  278. margin: 30px auto;
  279. }
  280. }
  281. @media screen and (max-width: 767px) {
  282. #contact-us #form-text {
  283. font-size: 16px;
  284. margin: 30px auto;
  285. }
  286. }
  287. #contact-us h1 {
  288. text-align: center;
  289. font-size: 24px;
  290. }
  291. @media screen and (max-width: 1024px) {
  292. #contact-us h1 {
  293. font-size: 36px;
  294. }
  295. }
  296. @media screen and (max-width: 767px) {
  297. #contact-us h1 {
  298. font-size: 24px;
  299. }
  300. }
  301. #contact-us #contact-form {
  302. text-align: center;
  303. }
  304. #contact-us #contact-form .btn {
  305. margin: 50px auto;
  306. border: none;
  307. padding: 15px;
  308. background: #ffaf60;
  309. color: #404854;
  310. font-size: 20px;
  311. width: 300px;
  312. border-radius: 30px;
  313. }
  314. #contact-us #contact-form .btn:hover {
  315. color: #fff;
  316. background-color: #745c54;
  317. }
  318. #contact-us #contact-form #location,
  319. #contact-us #contact-form #type,
  320. #contact-us #contact-form #modal,
  321. #contact-us #contact-form #budget,
  322. #contact-us #contact-form #square,
  323. #contact-us #contact-form #style,
  324. #contact-us #contact-form #date,
  325. #contact-us #contact-form #email,
  326. #contact-us #contact-form #name,
  327. #contact-us #contact-form #phone,
  328. #contact-us #contact-form #gender,
  329. #contact-us #contact-form #rooms,
  330. #contact-us #contact-form #livingroom,
  331. #contact-us #contact-form #bathroom {
  332. border-radius: 3px;
  333. width: 85%;
  334. height: 60px;
  335. margin: 15px 0;
  336. padding-left: 15px;
  337. border: 1px solid rgba(0, 0, 0, 0.3);
  338. font-size: 18px;
  339. -webkit-appearance: none;
  340. -moz-appearance: none;
  341. appearance: none;
  342. background: url(./img/icondown1.webp) 95% 50% no-repeat scroll transparent;
  343. background-size: 10px 10px;
  344. background-color: #fff;
  345. }
  346. #contact-us #contact-form #square,
  347. #contact-us #contact-form #date,
  348. #contact-us #contact-form #email,
  349. #contact-us #contact-form #name,
  350. #contact-us #contact-form #phone {
  351. font-size: 18px;
  352. width: 85%;
  353. background: none;
  354. }
  355. #contact-us #contact-form #gender {
  356. display: block;
  357. margin: 0 auto;
  358. }
  359. #contact-us #contact-form #facebook {
  360. border-radius: 3px;
  361. margin: 15px auto;
  362. width: 85vw;
  363. height: 60px;
  364. border: 1px solid #3b5998;
  365. text-align: right;
  366. background-color: #fff;
  367. -webkit-transition: 0.3s;
  368. transition: 0.3s;
  369. position: relative;
  370. }
  371. #contact-us #contact-form #facebook p {
  372. position: absolute;
  373. right: 30px;
  374. font-weight: normal;
  375. }
  376. @media screen and (max-width: 1024px) {
  377. #contact-us #contact-form #facebook p {
  378. top: 10px;
  379. }
  380. }
  381. @media screen and (max-width: 767px) {
  382. #contact-us #contact-form #facebook p {
  383. top: 15px;
  384. }
  385. }
  386. #contact-us #contact-form #facebook img {
  387. position: absolute;
  388. left: 30px;
  389. top: 15px;
  390. width: 32px;
  391. height: 32px;
  392. }
  393. #contact-us #contact-form #facebook:hover {
  394. background-color: #2a4f91;
  395. color: #fff;
  396. }
  397. #contact-us #contact-form #facebook:hover img {
  398. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  399. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  400. }
  401. #contact-us #contact-form a {
  402. text-decoration: none;
  403. color: #ee751b;
  404. }
  405. #contact-us #contact-form #checkbox {
  406. margin-top: 50px;
  407. padding: 20px;
  408. }
  409. #contact-us #contact-form #email,
  410. #contact-us #contact-form #name,
  411. #contact-us #contact-form #phone {
  412. background: none;
  413. background-color: #fff;
  414. }
  415. #contact-us #contact-form .option {
  416. width: 85%;
  417. }
  418. #contact-us #form {
  419. text-align: center;
  420. position: relative;
  421. }
  422. #contact-us #form #phone {
  423. position: absolute;
  424. left: 500px;
  425. }
  426. #feedback {
  427. margin: auto;
  428. width: 70vw;
  429. padding-bottom: 100px;
  430. }
  431. @media screen and (max-width: 767px) {
  432. #feedback {
  433. width: 90vw;
  434. }
  435. }
  436. #feedback .feedback-slider1 {
  437. width: 70vw;
  438. }
  439. @media screen and (max-width: 767px) {
  440. #feedback .feedback-slider1 {
  441. width: 90vw;
  442. }
  443. }
  444. #feedback h1 {
  445. margin-top: 50px;
  446. }
  447. #feedback .box {
  448. position: relative;
  449. }
  450. #feedback .box p {
  451. margin: 20px;
  452. text-align: center;
  453. font-size: 18px;
  454. font-weight: 600;
  455. }
  456. #feedback .box img {
  457. width: 390px;
  458. height: 195px;
  459. -o-object-fit: cover;
  460. object-fit: cover;
  461. }
  462. @media screen and (max-width: 1024px) {
  463. #feedback .box img {
  464. width: 70vw;
  465. height: 30vh;
  466. }
  467. }
  468. @media screen and (max-width: 767px) {
  469. #feedback .box img {
  470. width: 90vw;
  471. }
  472. }
  473. #feedback .box .play {
  474. position: absolute;
  475. left: 40vw;
  476. top: 25vw;
  477. width: 15vw;
  478. height: 15vw;
  479. opacity: 0.8;
  480. z-index: 10;
  481. }
  482. #footer {
  483. margin-top: 50px;
  484. padding-top: 50px;
  485. width: 100vw;
  486. height: 150px;
  487. background-color: #ebe6e2;
  488. color: #4b515e;
  489. text-align: center;
  490. font-size: 16px;
  491. line-height: 2;
  492. font-weight: 900;
  493. }
  494. #footer a {
  495. text-decoration: none;
  496. color: #4b515e;
  497. }
  498. #footer p {
  499. margin-left: 5px;
  500. display: inline;
  501. }
  502. /*# sourceMappingURL=style.css.map */