style.css 14 KB

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