style.css 14 KB

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