style.scss 15 KB

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