style.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  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: bolder;
  16. padding: 15px;
  17. font-family: 'Noto Serif TC', serif !important;
  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: 40px;
  29. }
  30. }
  31. @media screen and (max-width: 400px) {
  32. body .title {
  33. font-size: 30px !important;
  34. }
  35. }
  36. body .btn {
  37. width: 100vw;
  38. text-align: center;
  39. }
  40. body .btn-main {
  41. -webkit-box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  42. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  43. border: none;
  44. padding: 15px;
  45. background: #404854;
  46. color: #fff;
  47. font-size: 16px;
  48. letter-spacing: 1px;
  49. width: 280px;
  50. border-radius: 30px;
  51. -webkit-transition: 0.3s;
  52. transition: 0.3s;
  53. }
  54. body .btn-main:hover {
  55. background-color: #9c857b;
  56. width: 285px;
  57. font-size: 16px;
  58. }
  59. @media screen and (max-width: 1024px) {
  60. body .btn-main {
  61. font-size: 16px;
  62. padding: 20px;
  63. }
  64. }
  65. body .arrow {
  66. position: fixed;
  67. right: 20px;
  68. bottom: 100px;
  69. width: 45px;
  70. height: 40px;
  71. z-index: 10;
  72. background-color: #E06649;
  73. }
  74. body .arrow:hover {
  75. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  76. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  77. }
  78. .navigation {
  79. width: auto;
  80. height: 60px;
  81. -webkit-box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
  82. box-shadow: 0 5px 9px rgba(0, 0, 0, 0.3);
  83. position: relative;
  84. z-index: 5;
  85. }
  86. .navigation .logo {
  87. padding: 10px;
  88. margin-bottom: 5px;
  89. }
  90. .navigation .logo img {
  91. width: 128px;
  92. }
  93. .navigation #menu-btn1 {
  94. position: absolute;
  95. right: 40px;
  96. top: 15px;
  97. width: 32px;
  98. height: 32px;
  99. z-index: 6;
  100. }
  101. #banner-box {
  102. height: 45vh;
  103. overflow: hidden;
  104. position: relative;
  105. }
  106. @media screen and (max-width: 767px) {
  107. #banner-box {
  108. height: 50vh;
  109. }
  110. }
  111. #banner-box .banner-slider .slick-dots {
  112. margin-bottom: 50px;
  113. }
  114. #banner-box .banner-slider .slick-dots ::before {
  115. color: #fff;
  116. }
  117. @media screen and (max-width: 1024px) {
  118. #banner-box .banner-slider .slick-dots {
  119. font-size: 48px;
  120. }
  121. }
  122. #banner-box .banner-slider .banner1,
  123. #banner-box .banner-slider .banner2,
  124. #banner-box .banner-slider .banner3 {
  125. width: 100vw;
  126. height: 50vh;
  127. background-size: contain;
  128. background-repeat: no-repeat;
  129. background-size: 100vw 70vh;
  130. }
  131. @media screen and (max-width: 767px) {
  132. #banner-box .banner-slider .banner1,
  133. #banner-box .banner-slider .banner2,
  134. #banner-box .banner-slider .banner3 {
  135. height: 50vh;
  136. background-size: cover;
  137. background-position: center center;
  138. }
  139. }
  140. @media screen and (max-width: 1024px) {
  141. #banner-box .banner-slider .banner1,
  142. #banner-box .banner-slider .banner2,
  143. #banner-box .banner-slider .banner3 {
  144. height: 45vh;
  145. }
  146. }
  147. #banner-box .banner-slider .banner1 h1,
  148. #banner-box .banner-slider .banner2 h1,
  149. #banner-box .banner-slider .banner3 h1 {
  150. line-height: 40vh;
  151. text-align: center;
  152. padding: 15px;
  153. color: #fff;
  154. font-family: 追奇手寫體;
  155. font-size: 72px;
  156. }
  157. #banner-box .banner-slider .banner1 .img,
  158. #banner-box .banner-slider .banner2 .img,
  159. #banner-box .banner-slider .banner3 .img {
  160. width: 20px;
  161. }
  162. #banner-box .banner-slider .banner1 {
  163. background-image: url(./img/banner/001.webp);
  164. }
  165. #banner-box .banner-slider .banner2 {
  166. background-image: url(./img/banner/002.webp);
  167. }
  168. #banner-box .banner-slider .banner3 {
  169. background-image: url(./img/banner/003.webp);
  170. }
  171. #content1 {
  172. margin-top: 100px;
  173. text-align: center;
  174. }
  175. #content1 .title {
  176. margin: 30px 0px;
  177. font-family: "Times New Roman", Times, serif;
  178. }
  179. @media screen and (max-width: 767px) {
  180. #content1 .title {
  181. font-size: 30px;
  182. }
  183. }
  184. @media screen and (max-width: 400px) {
  185. #content1 .title {
  186. font-size: 25px;
  187. }
  188. }
  189. #content1 .text {
  190. position: relative;
  191. }
  192. #content1 .text .text2 {
  193. position: absolute;
  194. top: 15vw;
  195. left: 20vw;
  196. z-index: 1;
  197. }
  198. @media screen and (max-width: 1024px) {
  199. #content1 .text .text2 {
  200. width: 60vw;
  201. height: 30vw;
  202. }
  203. }
  204. @media screen and (max-width: 767px) {
  205. #content1 .text .text2 {
  206. width: 80vw;
  207. left: 10vw;
  208. }
  209. }
  210. #content1 .text .text2 h2 {
  211. line-height: 1.5;
  212. color: #fff;
  213. text-align-last: left;
  214. font-size: 20px;
  215. letter-spacing: 1px;
  216. }
  217. @media screen and (max-width: 1024px) {
  218. #content1 .text .text2 h2 {
  219. font-size: 32px;
  220. }
  221. }
  222. @media screen and (max-width: 767px) {
  223. #content1 .text .text2 h2 {
  224. font-size: 1.3rem;
  225. }
  226. }
  227. @media screen and (max-width: 400px) {
  228. #content1 .text .text2 h2 {
  229. font-size: 1.1rem;
  230. }
  231. }
  232. #content1 img {
  233. margin: 15px auto;
  234. width: 70vw;
  235. height: 30vh;
  236. -o-object-fit: cover;
  237. object-fit: cover;
  238. -webkit-filter: brightness(70%);
  239. filter: brightness(70%);
  240. }
  241. @media screen and (max-width: 767px) {
  242. #content1 img {
  243. width: 85vw;
  244. }
  245. }
  246. #service {
  247. width: 100vw;
  248. text-align: center;
  249. }
  250. @media screen and (max-width: 400px) {
  251. #service h1 {
  252. margin: 50px 0;
  253. padding: 0;
  254. font-size: 30px !important;
  255. }
  256. }
  257. #service .text {
  258. font-size: 1.5rem;
  259. display: inline;
  260. text-align: left;
  261. }
  262. @media screen and (max-width: 767px) {
  263. #service .text {
  264. font-size: 1rem;
  265. }
  266. }
  267. @media screen and (max-width: 576px) {
  268. #service .text {
  269. font-size: 0.8rem;
  270. }
  271. }
  272. #service .text .left-box .left-text {
  273. color: #000;
  274. font-weight: 900;
  275. }
  276. @media screen and (max-width: 769px) {
  277. #service .text .left-box .left-text {
  278. padding-top: 3vw;
  279. }
  280. }
  281. @media screen and (max-width: 576px) {
  282. #service .text .left-box .left-text {
  283. font-size: 0.9rem;
  284. padding-top: 5vw;
  285. }
  286. }
  287. @media screen and (max-width: 400px) {
  288. #service .text .left-box .left-text {
  289. font-size: 0.7rem;
  290. }
  291. }
  292. @media screen and (max-width: 769px) {
  293. #service .text .left-box {
  294. width: 45vw;
  295. padding-left: 50px;
  296. margin-top: 30px;
  297. }
  298. }
  299. @media screen and (max-width: 576px) {
  300. #service .text .left-box {
  301. padding-left: 30px;
  302. margin-top: 20px;
  303. }
  304. }
  305. @media screen and (max-width: 400px) {
  306. #service .text .left-box {
  307. padding-top: 5px;
  308. margin-top: 15px;
  309. padding-left: 10px;
  310. }
  311. }
  312. #service .icon {
  313. width: 20vw;
  314. }
  315. #service h1 {
  316. margin: 50px;
  317. }
  318. @media screen and (max-width: 767px) {
  319. #service h1 {
  320. font-size: 34px;
  321. }
  322. }
  323. @media screen and (max-width: 400px) {
  324. #service h1 {
  325. font-size: 30px !important;
  326. }
  327. }
  328. #service-process {
  329. margin: 0 auto;
  330. width: 60vw;
  331. background-color: #f7f7f7;
  332. }
  333. @media screen and (max-width: 767px) {
  334. #service-process {
  335. width: 80vw;
  336. }
  337. }
  338. @media screen and (max-width: 1024px) {
  339. #service-process h1 {
  340. margin-bottom: 150px;
  341. }
  342. }
  343. @media screen and (max-width: 767px) {
  344. #service-process h1 {
  345. font-size: 32px;
  346. margin-bottom: 30px;
  347. }
  348. }
  349. #service-process .process-box {
  350. width: 60vw;
  351. display: -ms-grid;
  352. display: grid;
  353. margin: 0px auto;
  354. -ms-grid-columns: (1fr)[2];
  355. grid-template-columns: repeat(2, 1fr);
  356. }
  357. @media screen and (max-width: 767px) {
  358. #service-process .process-box {
  359. width: 70vw;
  360. }
  361. }
  362. #service-process img {
  363. width: 128px;
  364. height: 128px;
  365. -o-object-fit: cover;
  366. object-fit: cover;
  367. }
  368. @media screen and (max-width: 1024px) {
  369. #service-process img {
  370. height: 256px;
  371. width: 256px;
  372. }
  373. }
  374. @media screen and (max-width: 767px) {
  375. #service-process img {
  376. width: 128px;
  377. height: 128px;
  378. }
  379. }
  380. #service-process .process-title {
  381. text-align: center;
  382. width: 190px;
  383. }
  384. @media screen and (max-width: 1024px) {
  385. #service-process .process-title {
  386. width: 30vw;
  387. }
  388. }
  389. @media screen and (max-width: 1024px) {
  390. #service-process .process-title {
  391. width: 40vw;
  392. }
  393. }
  394. #service-process .process-title .p-text {
  395. font-size: 20px;
  396. font-family: 微軟正黑體;
  397. font-weight: bolder;
  398. color: #6f645a;
  399. }
  400. @media screen and (max-width: 1024px) {
  401. #service-process .process-title .p-text {
  402. width: 40vw;
  403. font-size: 38px;
  404. }
  405. }
  406. @media screen and (max-width: 767px) {
  407. #service-process .process-title .p-text {
  408. font-size: 18px;
  409. }
  410. }
  411. @media screen and (max-width: 1024px) {
  412. #service-process .process-title img {
  413. margin-top: 80px;
  414. width: 40px;
  415. height: 40px;
  416. }
  417. }
  418. @media screen and (max-width: 767px) {
  419. #service-process .process-title img {
  420. width: 8vw;
  421. height: 8vw;
  422. margin-top: 10px;
  423. }
  424. }
  425. #feedback {
  426. margin: auto;
  427. width: 70vw;
  428. padding-top: 50px;
  429. }
  430. @media screen and (max-width: 767px) {
  431. #feedback {
  432. width: 90vw;
  433. }
  434. }
  435. #feedback .feedback-slider1 {
  436. width: 70vw;
  437. }
  438. @media screen and (max-width: 767px) {
  439. #feedback .feedback-slider1 {
  440. width: 90vw;
  441. }
  442. }
  443. #feedback h1 {
  444. margin-bottom: 50px;
  445. }
  446. #feedback .box {
  447. position: relative;
  448. }
  449. #feedback .box p {
  450. margin: 20px;
  451. text-align: center;
  452. font-size: 18px;
  453. font-weight: 600;
  454. }
  455. #feedback .box img {
  456. width: 390px;
  457. height: 195px;
  458. -o-object-fit: cover;
  459. object-fit: cover;
  460. }
  461. @media screen and (max-width: 1024px) {
  462. #feedback .box img {
  463. width: 70vw;
  464. height: 30vh;
  465. }
  466. }
  467. @media screen and (max-width: 767px) {
  468. #feedback .box img {
  469. width: 90vw;
  470. }
  471. }
  472. #feedback .box .play {
  473. position: absolute;
  474. left: 40vw;
  475. top: 20vw;
  476. width: 15vw;
  477. height: 15vw;
  478. opacity: 0.8;
  479. z-index: 10;
  480. }
  481. #contact-us {
  482. margin-top: 100px;
  483. }
  484. #contact-us p {
  485. font-size: 16px;
  486. font-weight: 600;
  487. margin: 0px 10px;
  488. }
  489. @media screen and (max-width: 1024px) {
  490. #contact-us p {
  491. font-size: 24px;
  492. text-align: center;
  493. }
  494. }
  495. @media screen and (max-width: 767px) {
  496. #contact-us p {
  497. font-size: 16px;
  498. }
  499. }
  500. #contact-us #form-title {
  501. padding-top: 100px;
  502. margin-bottom: 50px;
  503. color: #4b515e;
  504. }
  505. #contact-us #form-text {
  506. width: 100vw;
  507. margin: 30px auto;
  508. }
  509. @media screen and (max-width: 1024px) {
  510. #contact-us #form-text {
  511. font-size: 24px;
  512. text-align: center;
  513. margin: 30px auto;
  514. }
  515. }
  516. @media screen and (max-width: 767px) {
  517. #contact-us #form-text {
  518. font-size: 16px;
  519. margin: 30px auto;
  520. }
  521. }
  522. #contact-us h1 {
  523. text-align: center;
  524. font-size: 24px;
  525. font-weight: 900;
  526. }
  527. @media screen and (max-width: 1024px) {
  528. #contact-us h1 {
  529. font-size: 36px;
  530. }
  531. }
  532. @media screen and (max-width: 767px) {
  533. #contact-us h1 {
  534. font-size: 24px;
  535. }
  536. }
  537. #contact-us #contact-form {
  538. text-align: center;
  539. }
  540. #contact-us #contact-form .btn {
  541. margin: 50px auto;
  542. border: none;
  543. padding: 15px;
  544. background: #ffaf60;
  545. color: #404854;
  546. font-size: 20px;
  547. width: 300px;
  548. border-radius: 30px;
  549. }
  550. #contact-us #contact-form .btn:hover {
  551. color: #fff;
  552. background-color: #745c54;
  553. }
  554. #contact-us #contact-form #location,
  555. #contact-us #contact-form #type,
  556. #contact-us #contact-form #modal,
  557. #contact-us #contact-form #budget,
  558. #contact-us #contact-form #square,
  559. #contact-us #contact-form #style,
  560. #contact-us #contact-form #date,
  561. #contact-us #contact-form #email,
  562. #contact-us #contact-form #name,
  563. #contact-us #contact-form #phone,
  564. #contact-us #contact-form #gender,
  565. #contact-us #contact-form #rooms,
  566. #contact-us #contact-form #livingroom,
  567. #contact-us #contact-form #bathroom {
  568. border-radius: 3px;
  569. width: 85%;
  570. height: 60px;
  571. margin: 15px 0;
  572. padding-left: 15px;
  573. border: 1px solid rgba(0, 0, 0, 0.3);
  574. font-size: 18px;
  575. -webkit-appearance: none;
  576. -moz-appearance: none;
  577. appearance: none;
  578. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  579. background-size: 10px 10px;
  580. background-color: #fff;
  581. }
  582. #contact-us #contact-form #square,
  583. #contact-us #contact-form #date,
  584. #contact-us #contact-form #email,
  585. #contact-us #contact-form #name,
  586. #contact-us #contact-form #phone {
  587. font-size: 18px;
  588. width: 85%;
  589. background: none;
  590. }
  591. #contact-us #contact-form #gender {
  592. display: block;
  593. margin: 0 auto;
  594. }
  595. #contact-us #contact-form #000 {
  596. margin: 15px auto;
  597. width: 85vw;
  598. height: 60px;
  599. border: 1px solid #3B5998;
  600. text-align: right;
  601. background-color: #fff;
  602. -webkit-transition: 0.3s;
  603. transition: 0.3s;
  604. position: relative;
  605. }
  606. #contact-us #contact-form #000 p {
  607. position: absolute;
  608. right: 30px;
  609. font-weight: normal;
  610. }
  611. @media screen and (max-width: 1024px) {
  612. #contact-us #contact-form #000 p {
  613. top: 10px;
  614. }
  615. }
  616. @media screen and (max-width: 767px) {
  617. #contact-us #contact-form #000 p {
  618. top: 15px;
  619. }
  620. }
  621. #contact-us #contact-form #000 img {
  622. position: absolute;
  623. left: 30px;
  624. top: 15px;
  625. width: 32px;
  626. height: 32px;
  627. }
  628. #contact-us #contact-form #000:hover {
  629. background-color: #2a4f91;
  630. color: #fff;
  631. }
  632. #contact-us #contact-form #000:hover img {
  633. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  634. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  635. }
  636. #contact-us #contact-form a {
  637. text-decoration: none;
  638. color: #ee751b;
  639. }
  640. #contact-us #contact-form #checkbox {
  641. margin-top: 30px;
  642. }
  643. #contact-us #contact-form #email,
  644. #contact-us #contact-form #name,
  645. #contact-us #contact-form #phone {
  646. background: none;
  647. background-color: #fff;
  648. }
  649. #contact-us #contact-form .option {
  650. width: 85%;
  651. }
  652. #contact-us #form {
  653. text-align: center;
  654. position: relative;
  655. }
  656. #contact-us #form #phone {
  657. position: absolute;
  658. left: 500px;
  659. }
  660. #footer {
  661. padding-top: 50px;
  662. width: 100vw;
  663. height: 150px;
  664. background-color: #ebe6e2;
  665. color: #4b515e;
  666. text-align: center;
  667. font-size: 16px;
  668. line-height: 2;
  669. font-weight: 900;
  670. }
  671. #footer a {
  672. text-decoration: none;
  673. color: #4b515e;
  674. }
  675. #footer p {
  676. margin-left: 5px;
  677. display: inline;
  678. }
  679. #menu-box {
  680. top: 60px;
  681. height: 45vh;
  682. width: 100vw;
  683. position: fixed;
  684. z-index: 5;
  685. overflow: hidden;
  686. }
  687. #menu-box hr {
  688. margin-left: 10px;
  689. width: 350px;
  690. background: #65584c;
  691. }
  692. #menu-box #menu-box2 {
  693. width: 100vw;
  694. height: 45vh;
  695. background-color: #f4f4f3;
  696. opacity: 0.9;
  697. z-index: 7;
  698. text-align: center;
  699. }
  700. #menu-box #menu-box2 #menu-link {
  701. display: -ms-grid;
  702. display: grid;
  703. -ms-grid-columns: (1fr)[3];
  704. grid-template-columns: repeat(3, 1fr);
  705. width: 350px;
  706. margin: 0 auto;
  707. }
  708. #menu-box #menu-box2 .menu-logo {
  709. opacity: 1;
  710. }
  711. #menu-box #menu-box2 .menu-logo img {
  712. width: 40px;
  713. height: 40px;
  714. -webkit-filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  715. filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  716. }
  717. #menu-box #menu-box2 a {
  718. display: inline-block;
  719. text-decoration: none;
  720. color: #65584c;
  721. font-size: 16px;
  722. margin-top: 20px;
  723. }
  724. #menu-box #menu-box2 .menu-text {
  725. width: 100vw;
  726. text-align: center;
  727. margin-bottom: 10px;
  728. }
  729. /*# sourceMappingURL=style.css.map */