style.scss 16 KB

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