style.scss 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  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(./drechifont-proportional.ttf);
  13. font-weight: 900;
  14. }
  15. $Font-color: #fff;
  16. $toggle: #9c857b;
  17. $title-color: #4b515e;
  18. body {
  19. .title {
  20. font-weight: 900;
  21. padding: 15px;
  22. font-family: "Times New Roman", Times, serif;
  23. color: $title-color;
  24. text-align: center;
  25. @media screen and(max-width:$table) {
  26. font-size: 48px;
  27. }
  28. @media screen and(max-width:$moblie) {
  29. font-size: 34px;
  30. }
  31. @media screen and(max-width:400px) {
  32. font-size: 25px !important;
  33. }
  34. }
  35. .btn {
  36. width: 100vw;
  37. text-align: center;
  38. margin-top: 20px;
  39. }
  40. .btn-main {
  41. box-shadow: 0 10px 9px rgba(0, 0, 0, 0.5);
  42. border: none;
  43. padding: 15px;
  44. background: rgb(64, 72, 84);
  45. color: $Font-color;
  46. font-size: 16px;
  47. letter-spacing: 1px;
  48. width: 280px;
  49. border-radius: 30px;
  50. transition: 0.3s;
  51. margin-top: 50px;
  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: 20px;
  60. }
  61. }
  62. }
  63. #banner-box {
  64. height: 75vh;
  65. overflow: hidden;
  66. position: relative;
  67. hr{
  68. width: 100vw;
  69. position: absolute;
  70. top: 12vw;
  71. z-index: 5;
  72. height: 2px;
  73. background:#fff;
  74. }
  75. .logo {
  76. padding: 5px;
  77. margin-bottom: 5px;
  78. position: absolute;
  79. z-index:5;
  80. img {
  81. width: 128px;
  82. }
  83. }
  84. .menu-btn1 {
  85. padding: 10px;
  86. position: absolute;
  87. right:5px;
  88. z-index:5;
  89. top:5px;
  90. img{
  91. margin: 2px;
  92. width: 6vw;
  93. filter: invert(100%) sepia(0%) saturate(10%) hue-rotate(238deg) brightness(104%) contrast(103%);
  94. transition: 0.3s;
  95. &:hover{
  96. filter:none;
  97. }
  98. }
  99. }
  100. @media screen and(max-width:$moblie) {
  101. height: 75vh;
  102. }
  103. .banner-slider {
  104. .slick-dots {
  105. margin-bottom: 50px;
  106. ::before {
  107. color: #fff;
  108. }
  109. @media screen and(max-width:$table) {
  110. font-size: 48px;
  111. }
  112. }
  113. .banner1,
  114. .banner2,
  115. .banner3 {
  116. width: 100vw;
  117. height: 75vh;
  118. // background-size: contain;
  119. background-repeat: no-repeat;
  120. background-size: 100vw 70vh;
  121. .banner-titleh1 {
  122. text-align: center;
  123. color: #fff;
  124. font-size: 25px;
  125. font-weight: 900;
  126. }
  127. .process-box {
  128. display: grid;
  129. grid-template-columns: repeat(2, 1fr);
  130. width: 65vw;
  131. margin: auto;
  132. .box-text {
  133. font-family: 微軟正黑體;
  134. text-align: center;
  135. font-size: 12px;
  136. font-weight: 900;
  137. color: $Font-color;
  138. padding-right: 5vw;
  139. }
  140. img {
  141. width: 28vw;
  142. }
  143. }
  144. @media screen and(max-width:$moblie) {
  145. height: 75vh;
  146. background-size: cover;
  147. background-position: center center;
  148. }
  149. @media screen and(max-width:$table) {
  150. height: 75vh;
  151. }
  152. }
  153. .banner1 {
  154. background-image: url(./img/banner/001.webp);
  155. }
  156. .banner2 {
  157. background-image: url(./img/banner/002.webp);
  158. }
  159. .banner3 {
  160. background-image: url(./img/banner/003.webp);
  161. }
  162. }
  163. }
  164. #contact-us {
  165. p {
  166. font-size: 16px;
  167. font-weight: 600;
  168. margin: 0px 10px;
  169. @media screen and(max-width:$table) {
  170. font-size: 24px;
  171. text-align: center;
  172. }
  173. @media screen and(max-width:$moblie) {
  174. font-size: 16px;
  175. }
  176. }
  177. #form-title {
  178. padding-top: 100px;
  179. margin-bottom: 50px;
  180. color: #5c5248;
  181. }
  182. #form-text {
  183. width: 100vw;
  184. margin: 30px auto;
  185. @media screen and(max-width:$table) {
  186. font-size: 24px;
  187. text-align: center;
  188. margin: 30px auto;
  189. }
  190. @media screen and(max-width:$moblie) {
  191. font-size: 16px;
  192. margin: 30px auto;
  193. }
  194. }
  195. h1 {
  196. text-align: center;
  197. font-size: 24px;
  198. @media screen and(max-width:$table) {
  199. font-size: 36px;
  200. }
  201. @media screen and(max-width:$moblie) {
  202. font-size: 24px;
  203. }
  204. }
  205. #contact-form {
  206. text-align: center;
  207. .btn {
  208. margin: 50px auto;
  209. border: none;
  210. padding: 15px;
  211. background: #ffaf60;
  212. color: rgb(64, 72, 84);
  213. font-size: 20px;
  214. width: 300px;
  215. border-radius: 30px;
  216. &:hover {
  217. color: #fff;
  218. background-color: #745c54;
  219. }
  220. }
  221. #location,
  222. #type,
  223. #modal,
  224. #budget,
  225. #square,
  226. #style,
  227. #date,
  228. #email,
  229. #name,
  230. #phone,
  231. #gender,
  232. #rooms,
  233. #livingroom,
  234. #bathroom {
  235. border-radius: 3px;
  236. width: 85%;
  237. height: 60px;
  238. margin: 15px 0;
  239. padding-left: 15px;
  240. border: 1px solid rgba(0, 0, 0, 0.3);
  241. font-size: 18px;
  242. appearance: none;
  243. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  244. background-size: 10px 10px;
  245. background-color: #fff;
  246. }
  247. #square,
  248. #date,
  249. #email,
  250. #name,
  251. #phone {
  252. font-size: 18px;
  253. width: 85%;
  254. background: none;
  255. }
  256. #gender {
  257. display: block;
  258. margin: 0 auto;
  259. }
  260. #facebook {
  261. margin: 15px auto;
  262. width: 85vw;
  263. height: 60px;
  264. border: 1px solid #3b5998;
  265. text-align: right;
  266. // background: url(./img/facebook.png) 10% 50% no-repeat scroll transparent;
  267. // background-size: 32px 32px;
  268. background-color: #fff;
  269. transition: 0.3s;
  270. position: relative;
  271. p {
  272. position: absolute;
  273. right: 30px;
  274. font-weight: normal;
  275. @media screen and(max-width:$table) {
  276. top: 10px;
  277. }
  278. @media screen and(max-width:$moblie) {
  279. top: 15px;
  280. }
  281. }
  282. img {
  283. position: absolute;
  284. left: 30px;
  285. top: 15px;
  286. width: 32px;
  287. height: 32px;
  288. }
  289. &:hover {
  290. background-color: #2a4f91;
  291. color: #fff;
  292. img {
  293. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  294. }
  295. }
  296. }
  297. a {
  298. text-decoration: none;
  299. color: #ee751b;
  300. }
  301. #checkbox {
  302. margin-top: 50px;
  303. padding: 20px;
  304. width: 15px;
  305. height: 15px;
  306. }
  307. #email,
  308. #name,
  309. #phone {
  310. background: none;
  311. background-color: #fff;
  312. }
  313. .option {
  314. width: 85%;
  315. }
  316. }
  317. #form {
  318. text-align: center;
  319. position: relative;
  320. #phone {
  321. position: absolute;
  322. left: 500px;
  323. }
  324. }
  325. }
  326. #feedback {
  327. margin: auto;
  328. width: 70vw;
  329. padding-bottom: 100px;
  330. @media screen and(max-width:$moblie) {
  331. width: 90vw;
  332. }
  333. .feedback-slider1 {
  334. width: 70vw;
  335. @media screen and(max-width:$moblie) {
  336. width: 90vw;
  337. }
  338. }
  339. h1 {
  340. margin-top: 50px;
  341. }
  342. .box {
  343. position: relative;
  344. p {
  345. margin: 20px;
  346. text-align: center;
  347. font-size: 18px;
  348. font-weight: 600;
  349. }
  350. img {
  351. width: 390px;
  352. height: 195px;
  353. object-fit: cover;
  354. @media screen and(max-width:$table) {
  355. width: 70vw;
  356. height: 30vh;
  357. }
  358. @media screen and(max-width:$moblie) {
  359. width: 90vw;
  360. }
  361. }
  362. .play {
  363. position: absolute;
  364. left: 40vw;
  365. top: 25vw;
  366. width: 15vw;
  367. height: 15vw;
  368. opacity: 0.8;
  369. z-index: 10;
  370. }
  371. }
  372. }
  373. #footer {
  374. margin-top: 50px;
  375. padding-top: 50px;
  376. width: 100vw;
  377. height: 150px;
  378. background-color: #ebe6e2;
  379. color: $title-color;
  380. text-align: center;
  381. font-size: 16px;
  382. line-height: 2;
  383. font-weight: 900;
  384. a {
  385. text-decoration: none;
  386. color: $title-color;
  387. }
  388. p {
  389. margin-left: 5px;
  390. display: inline;
  391. }
  392. }