style.scss 14 KB

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