style.css 15 KB

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