style.scss 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  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: 30vw;
  266. text-align: left;
  267. display: grid;
  268. grid-template-columns: 1fr 1fr;
  269. .img-icon {
  270. width: 12vw;
  271. }
  272. }
  273. #text-right {
  274. padding-left: 1vw;
  275. }
  276. .icon-text {
  277. width: 25vw;
  278. margin-top: 15px;
  279. font-weight: 600;
  280. }
  281. img {
  282. width: 128px;
  283. height: 128px;
  284. // filter: invert(69%) sepia(15%) saturate(301%) hue-rotate(175deg) brightness(90%) contrast(85%);
  285. }
  286. .text-p {
  287. font-size: 18px;
  288. color: $title-color;
  289. }
  290. }
  291. #service-img {
  292. width: 75vw;
  293. display: grid;
  294. grid-template-columns: 1fr 1fr;
  295. grid-gap: 10px;
  296. img {
  297. width: 38vw;
  298. object-fit: cover;
  299. }
  300. }
  301. }
  302. .btn {
  303. text-align: center;
  304. margin-bottom: 100px;
  305. margin-top: 50px;
  306. }
  307. }
  308. // service-process
  309. #service-process {
  310. width: 100vw;
  311. background-color: #f7f7f7;
  312. padding-bottom: 150px;
  313. h1 {
  314. padding: 15px;
  315. margin-left: 10vw;
  316. padding-top: 100px;
  317. margin-bottom: 80px;
  318. }
  319. #process-box {
  320. display: grid;
  321. grid-template-columns: repeat(6, 1fr);
  322. width: 78vw;
  323. margin: auto;
  324. .box-text {
  325. font-family: 微軟正黑體;
  326. text-align: center;
  327. font-size: 18px;
  328. font-weight: 900;
  329. padding-right: 3vw;
  330. color: $process;
  331. }
  332. img {
  333. width: 180px;
  334. height: 180px;
  335. filter: invert(42%) sepia(12%) saturate(490%) hue-rotate(347deg) brightness(89%) contrast(86%);
  336. }
  337. }
  338. }
  339. // feedback
  340. #feedback {
  341. width: 100vw;
  342. padding-bottom: 200px;
  343. h1 {
  344. margin-top: 50px;
  345. margin-bottom: 50px;
  346. }
  347. #feedback-box {
  348. width: 80vw;
  349. margin: 0 auto;
  350. display: grid;
  351. grid-template-columns: repeat(3, 1fr);
  352. .box {
  353. width: 25vw;
  354. transition: 0.5s;
  355. text-align: center;
  356. padding-bottom: 1vw;
  357. position: relative;
  358. .play{
  359. position: absolute;
  360. left:12vw !important;
  361. top: 5vw !important;;
  362. width: 3vw;
  363. height: 3vw;
  364. opacity: 0.8;
  365. z-index: 10;
  366. }
  367. img {
  368. width: 25vw;
  369. margin: 0 auto;
  370. object-fit: cover;
  371. transition: 0.5s;
  372. // &:hover {
  373. // width: 400px;
  374. // height: 200px;
  375. // }
  376. }
  377. p {
  378. text-align: center;
  379. font-size: 18px;
  380. font-weight: 600;
  381. margin: 10px;
  382. }
  383. }
  384. }
  385. }
  386. #contact-us {
  387. margin: 0 auto;
  388. width: 100vw;
  389. background: #eee;
  390. position: relative;
  391. .contact-text {
  392. margin: 0 auto;
  393. width: 68vw;
  394. .text-p {
  395. font-size: 16px;
  396. font-weight: 600;
  397. }
  398. }
  399. .form-title {
  400. width: 70vw;
  401. margin: 0 auto;
  402. padding-top: 100px;
  403. margin-bottom: 120px;
  404. color: #5c5248;
  405. h1 {
  406. text-align: center;
  407. font-size: 32px;
  408. font-weight: 900;
  409. }
  410. }
  411. #contact-form {
  412. width: 75vw;
  413. display: grid;
  414. grid-template-columns: repeat(2, 1fr);
  415. margin-top: 10px;
  416. margin: 0 auto;
  417. position: relative;
  418. hr {
  419. position: absolute;
  420. width: 34vw;
  421. transform: rotate(90deg);
  422. left: 20vw;
  423. top:19vw;
  424. }
  425. #location,
  426. #type,
  427. #modal,
  428. #budget,
  429. #square,
  430. #style,
  431. #date,
  432. #email,
  433. #name,
  434. #phone,
  435. #gender {
  436. width: 100%;
  437. height: 50px;
  438. margin: 10px 0;
  439. padding-left: 10px;
  440. border: 1px solid rgba(0, 0, 0, 0.3);
  441. padding: 10px 15px;
  442. font-size: 16px;
  443. border-radius: 3px;
  444. appearance: none;
  445. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  446. background-size: 10px 10px;
  447. background-color: #fff;
  448. }
  449. #form-left {
  450. width: 28vw;
  451. margin-left: 3vw;
  452. #rooms,
  453. #livingroom,
  454. #bathroom {
  455. width: 28.5%;
  456. border: 1px solid rgba(0, 0, 0, 0.3);
  457. height: 50px;
  458. margin: 15px 0;
  459. padding-right: 50px;
  460. padding: 10px 15px;
  461. font-size: 16px;
  462. border-radius: 3px;
  463. appearance: none;
  464. background: url(./img/icondown.webp) 85% 50% no-repeat scroll transparent;
  465. background-size: 10px 10px;
  466. background-color: #fff;
  467. }
  468. #square,
  469. #date{
  470. background:none;
  471. background-color: #fff;
  472. }
  473. }
  474. #form-right {
  475. width: 29vw;
  476. margin-left: 5vw;
  477. #facebook {
  478. margin-top: 12px;
  479. width: 29vw;
  480. height: 50px;
  481. border: 1px solid #3B5998;
  482. text-align: right;
  483. padding-right: 50px;
  484. line-height: 50px;
  485. // background: url(./img/facebook.png) 10% 50% no-repeat scroll transparent;
  486. // background-size: 32px 32px;
  487. background-color: #fff;
  488. transition: 0.3s;
  489. position: relative;
  490. img {
  491. position: absolute;
  492. left: 50px;
  493. top: 7px;
  494. width: 32px;
  495. height: 32px;
  496. }
  497. &:hover {
  498. background-color: #2a4f91;
  499. color: #fff;
  500. img {
  501. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%)
  502. contrast(106%);
  503. }
  504. }
  505. }
  506. a {
  507. text-decoration: none;
  508. color: #ee751b;
  509. font-weight:900;
  510. }
  511. #checkbox {
  512. margin: 15px;
  513. }
  514. #email,
  515. #name,
  516. #phone{
  517. background: none;
  518. background-color: #fff;
  519. }
  520. }
  521. }
  522. .btn {
  523. margin: 50px auto;
  524. border: none;
  525. padding: 15px;
  526. background: #edbc96;
  527. color: #4b515e;
  528. font-size: 20px;
  529. width: 450px;
  530. border-radius: 10px;
  531. &:hover {
  532. color: #fff;
  533. background-color: #745c54;
  534. }
  535. }
  536. .form-btn {
  537. text-align: center;
  538. position: relative;
  539. width: 75vw;
  540. margin: 0 auto;
  541. #phone1 {
  542. position: absolute;
  543. left: 500px;
  544. }
  545. }
  546. }
  547. #footer {
  548. width: 100vw;
  549. background-color: #ebe6e2;
  550. color: #9f5000;
  551. text-align: center;
  552. font-size: 18px;
  553. line-height: 130px;
  554. a {
  555. text-decoration: none;
  556. color: #9f5000;
  557. }
  558. p {
  559. display: inline;
  560. }
  561. }
  562. .animation-h1 {
  563. animation-name: fade;
  564. animation-duration: 1s;
  565. animation-fill-mode: forwards;
  566. animation-delay: 0.5s;
  567. opacity: 0;
  568. @keyframes fade {
  569. from {
  570. transform: translateY(0px);
  571. }
  572. to {
  573. transform: translateY(20px);
  574. opacity: 1;
  575. }
  576. }
  577. }
  578. .animation-btn {
  579. animation-name: fade2;
  580. animation-duration: 1s;
  581. animation-fill-mode: forwards;
  582. animation-delay: 1s;
  583. opacity: 0;
  584. @keyframes fade2 {
  585. from {
  586. transform: translateY(0px);
  587. }
  588. to {
  589. transform: translateY(-10px);
  590. opacity: 1;
  591. }
  592. }
  593. }