style.scss 17 KB

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