style.css 9.1 KB

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