style.css 15 KB

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