style.css 16 KB

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