style.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858
  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: 60vw;
  333. background-color: #f7f7f7;
  334. }
  335. @media screen and (max-width: 767px) {
  336. #service-process {
  337. width: 80vw;
  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: 60vw;
  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: 70vw;
  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. }
  412. }
  413. @media screen and (max-width: 1024px) {
  414. #service-process .process-title img {
  415. margin-top: 80px;
  416. width: 40px;
  417. height: 40px;
  418. }
  419. }
  420. @media screen and (max-width: 767px) {
  421. #service-process .process-title img {
  422. width: 8vw;
  423. height: 8vw;
  424. margin-top: 10px;
  425. }
  426. }
  427. #feedback {
  428. margin: auto;
  429. width: 70vw;
  430. padding-top: 50px;
  431. }
  432. @media screen and (max-width: 767px) {
  433. #feedback {
  434. width: 90vw;
  435. }
  436. }
  437. #feedback .feedback-slider1 {
  438. width: 70vw;
  439. }
  440. @media screen and (max-width: 767px) {
  441. #feedback .feedback-slider1 {
  442. width: 90vw;
  443. }
  444. }
  445. #feedback h1 {
  446. margin-bottom: 50px;
  447. }
  448. #feedback .box {
  449. position: relative;
  450. }
  451. #feedback .box p {
  452. margin: 20px;
  453. text-align: center;
  454. font-size: 18px;
  455. font-weight: 600;
  456. }
  457. #feedback .box img {
  458. width: 390px;
  459. height: 195px;
  460. -o-object-fit: cover;
  461. object-fit: cover;
  462. }
  463. @media screen and (max-width: 1024px) {
  464. #feedback .box img {
  465. width: 70vw;
  466. height: 30vh;
  467. }
  468. }
  469. @media screen and (max-width: 767px) {
  470. #feedback .box img {
  471. width: 90vw;
  472. }
  473. }
  474. #feedback .box .play {
  475. position: absolute;
  476. left: 40vw;
  477. top: 20vw;
  478. width: 15vw;
  479. height: 15vw;
  480. opacity: 0.8;
  481. z-index: 10;
  482. }
  483. #contact-us {
  484. margin-top: 100px;
  485. }
  486. #contact-us p {
  487. font-size: 16px;
  488. font-weight: 600;
  489. margin: 0px 10px;
  490. }
  491. @media screen and (max-width: 1024px) {
  492. #contact-us p {
  493. font-size: 24px;
  494. text-align: center;
  495. }
  496. }
  497. @media screen and (max-width: 767px) {
  498. #contact-us p {
  499. font-size: 16px;
  500. }
  501. }
  502. #contact-us #form-title {
  503. padding-top: 100px;
  504. margin-bottom: 50px;
  505. color: #4b515e;
  506. }
  507. #contact-us #form-text {
  508. width: 100vw;
  509. margin: 30px auto;
  510. }
  511. @media screen and (max-width: 1024px) {
  512. #contact-us #form-text {
  513. font-size: 24px;
  514. text-align: center;
  515. margin: 30px auto;
  516. }
  517. }
  518. @media screen and (max-width: 767px) {
  519. #contact-us #form-text {
  520. font-size: 16px;
  521. margin: 30px auto;
  522. }
  523. }
  524. #contact-us h1 {
  525. text-align: center;
  526. font-size: 24px;
  527. font-weight: 900;
  528. }
  529. @media screen and (max-width: 1024px) {
  530. #contact-us h1 {
  531. font-size: 36px;
  532. }
  533. }
  534. @media screen and (max-width: 767px) {
  535. #contact-us h1 {
  536. font-size: 24px;
  537. }
  538. }
  539. #contact-us #contact-form {
  540. text-align: center;
  541. }
  542. #contact-us #contact-form .btn {
  543. margin: 50px auto;
  544. border: none;
  545. padding: 15px;
  546. background: #ffaf60;
  547. color: #404854;
  548. font-size: 20px;
  549. width: 300px;
  550. border-radius: 30px;
  551. }
  552. #contact-us #contact-form .btn:hover {
  553. color: #fff;
  554. background-color: #745c54;
  555. }
  556. #contact-us #contact-form #location,
  557. #contact-us #contact-form #type,
  558. #contact-us #contact-form #modal,
  559. #contact-us #contact-form #budget,
  560. #contact-us #contact-form #square,
  561. #contact-us #contact-form #style,
  562. #contact-us #contact-form #date,
  563. #contact-us #contact-form #email,
  564. #contact-us #contact-form #name,
  565. #contact-us #contact-form #phone,
  566. #contact-us #contact-form #gender,
  567. #contact-us #contact-form #rooms,
  568. #contact-us #contact-form #livingroom,
  569. #contact-us #contact-form #bathroom {
  570. border-radius: 3px;
  571. width: 85%;
  572. height: 60px;
  573. margin: 15px 0;
  574. padding-left: 15px;
  575. border: 1px solid rgba(0, 0, 0, 0.3);
  576. font-size: 18px;
  577. -webkit-appearance: none;
  578. -moz-appearance: none;
  579. appearance: none;
  580. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  581. background-size: 10px 10px;
  582. background-color: #fff;
  583. }
  584. #contact-us #contact-form #square,
  585. #contact-us #contact-form #date,
  586. #contact-us #contact-form #email,
  587. #contact-us #contact-form #name,
  588. #contact-us #contact-form #phone {
  589. font-size: 18px;
  590. width: 85%;
  591. background: none;
  592. }
  593. #contact-us #contact-form #gender {
  594. display: block;
  595. margin: 0 auto;
  596. }
  597. #contact-us #contact-form #000 {
  598. margin: 15px auto;
  599. width: 85vw;
  600. height: 60px;
  601. border: 1px solid #3B5998;
  602. text-align: right;
  603. background-color: #fff;
  604. -webkit-transition: 0.3s;
  605. transition: 0.3s;
  606. position: relative;
  607. }
  608. #contact-us #contact-form #000 p {
  609. position: absolute;
  610. right: 30px;
  611. font-weight: normal;
  612. }
  613. @media screen and (max-width: 1024px) {
  614. #contact-us #contact-form #000 p {
  615. top: 10px;
  616. }
  617. }
  618. @media screen and (max-width: 767px) {
  619. #contact-us #contact-form #000 p {
  620. top: 15px;
  621. }
  622. }
  623. #contact-us #contact-form #000 img {
  624. position: absolute;
  625. left: 30px;
  626. top: 15px;
  627. width: 32px;
  628. height: 32px;
  629. }
  630. #contact-us #contact-form #000:hover {
  631. background-color: #2a4f91;
  632. color: #fff;
  633. }
  634. #contact-us #contact-form #000:hover img {
  635. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  636. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  637. }
  638. #contact-us #contact-form a {
  639. text-decoration: none;
  640. color: #ee751b;
  641. }
  642. #contact-us #contact-form #checkbox {
  643. margin-top: 30px;
  644. }
  645. #contact-us #contact-form #email,
  646. #contact-us #contact-form #name,
  647. #contact-us #contact-form #phone {
  648. background: none;
  649. background-color: #fff;
  650. }
  651. #contact-us #contact-form .option {
  652. width: 85%;
  653. }
  654. #contact-us #form {
  655. text-align: center;
  656. position: relative;
  657. }
  658. #contact-us #form #phone {
  659. position: absolute;
  660. left: 500px;
  661. }
  662. #footer {
  663. padding-top: 50px;
  664. width: 100vw;
  665. height: 150px;
  666. background-color: #ebe6e2;
  667. color: #4b515e;
  668. text-align: center;
  669. font-size: 16px;
  670. line-height: 2;
  671. font-weight: 900;
  672. }
  673. #footer a {
  674. text-decoration: none;
  675. color: #4b515e;
  676. }
  677. #footer p {
  678. margin-left: 5px;
  679. display: inline;
  680. }
  681. #menu-box {
  682. top: 60px;
  683. height: 45vh;
  684. width: 100vw;
  685. position: fixed;
  686. z-index: 5;
  687. overflow: hidden;
  688. }
  689. #menu-box hr {
  690. margin-left: 10px;
  691. width: 350px;
  692. background: #65584c;
  693. }
  694. #menu-box #menu-box2 {
  695. width: 100vw;
  696. height: 45vh;
  697. background-color: #f4f4f3;
  698. opacity: 0.9;
  699. z-index: 7;
  700. text-align: center;
  701. }
  702. #menu-box #menu-box2 #menu-link {
  703. display: -ms-grid;
  704. display: grid;
  705. -ms-grid-columns: (1fr)[3];
  706. grid-template-columns: repeat(3, 1fr);
  707. width: 350px;
  708. margin: 0 auto;
  709. }
  710. #menu-box #menu-box2 .menu-logo {
  711. opacity: 1;
  712. }
  713. #menu-box #menu-box2 .menu-logo img {
  714. width: 40px;
  715. height: 40px;
  716. -webkit-filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  717. filter: invert(34%) sepia(7%) saturate(1111%) hue-rotate(347deg) brightness(98%) contrast(88%);
  718. }
  719. #menu-box #menu-box2 a {
  720. display: inline-block;
  721. text-decoration: none;
  722. color: #65584c;
  723. font-size: 16px;
  724. margin-top: 20px;
  725. }
  726. #menu-box #menu-box2 .menu-text {
  727. width: 100vw;
  728. text-align: center;
  729. margin-bottom: 10px;
  730. }
  731. /*# sourceMappingURL=style.css.map */