style.css 14 KB

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