style.css 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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: 50vw;
  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: 150px;
  93. height: 150px;
  94. }
  95. .banner #text .banner-slider .banner1 {
  96. background-image: url(./img/banner/00.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: 20px;
  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 a {
  152. display: inline-block;
  153. text-decoration: none;
  154. color: #fff;
  155. letter-spacing: 1px;
  156. font-size: 0.9rem;
  157. font-weight: 600;
  158. cursor: pointer;
  159. padding: 15px;
  160. position: relative;
  161. }
  162. .banner .Navigation .link a :hover {
  163. opacity: 0.8;
  164. }
  165. .banner .Navigation .link a:after {
  166. content: "";
  167. display: block;
  168. width: 80%;
  169. height: 3px;
  170. background-color: #fff;
  171. position: absolute;
  172. left: 12%;
  173. bottom: 0;
  174. -webkit-transition: all 0.3s;
  175. transition: all 0.3s;
  176. opacity: 0;
  177. }
  178. .banner .Navigation .link a:hover:after {
  179. width: 80%;
  180. opacity: 1;
  181. }
  182. .banner hr {
  183. width: 85vw;
  184. position: absolute;
  185. top: 90px;
  186. left: 100px;
  187. height: 1px;
  188. z-index: 5;
  189. }
  190. #contact-us {
  191. margin: 0 auto;
  192. width: 100vw;
  193. background: #eee;
  194. position: relative;
  195. }
  196. #contact-us .contact-text {
  197. margin: 0 auto;
  198. width: 68vw;
  199. }
  200. #contact-us .contact-text .text-p {
  201. font-size: 16px;
  202. font-weight: 600;
  203. }
  204. #contact-us .form-title {
  205. width: 70vw;
  206. margin: 0 auto;
  207. padding-top: 100px;
  208. margin-bottom: 120px;
  209. color: #5c5248;
  210. }
  211. #contact-us .form-title h1 {
  212. text-align: center;
  213. font-size: 32px;
  214. font-weight: 900;
  215. }
  216. #contact-us #contact-form {
  217. width: 75vw;
  218. display: -ms-grid;
  219. display: grid;
  220. -ms-grid-columns: (1fr)[2];
  221. grid-template-columns: repeat(2, 1fr);
  222. margin-top: 10px;
  223. margin: 0 auto;
  224. position: relative;
  225. }
  226. #contact-us #contact-form hr {
  227. position: absolute;
  228. width: 34vw;
  229. -webkit-transform: rotate(90deg);
  230. transform: rotate(90deg);
  231. left: 20vw;
  232. top: 19vw;
  233. }
  234. #contact-us #contact-form #location,
  235. #contact-us #contact-form #type,
  236. #contact-us #contact-form #modal,
  237. #contact-us #contact-form #budget,
  238. #contact-us #contact-form #square,
  239. #contact-us #contact-form #style,
  240. #contact-us #contact-form #date,
  241. #contact-us #contact-form #email,
  242. #contact-us #contact-form #name,
  243. #contact-us #contact-form #phone,
  244. #contact-us #contact-form #gender {
  245. width: 100%;
  246. height: 50px;
  247. margin: 10px 0;
  248. padding-left: 10px;
  249. border: 1px solid rgba(0, 0, 0, 0.3);
  250. padding: 10px 15px;
  251. font-size: 16px;
  252. border-radius: 3px;
  253. -webkit-appearance: none;
  254. -moz-appearance: none;
  255. appearance: none;
  256. background: url(./img/icondown.webp) 95% 50% no-repeat scroll transparent;
  257. background-size: 10px 10px;
  258. background-color: #fff;
  259. }
  260. #contact-us #contact-form #form-left {
  261. width: 28vw;
  262. margin-left: 3vw;
  263. }
  264. #contact-us #contact-form #form-left #rooms,
  265. #contact-us #contact-form #form-left #livingroom,
  266. #contact-us #contact-form #form-left #bathroom {
  267. width: 28.5%;
  268. border: 1px solid rgba(0, 0, 0, 0.3);
  269. height: 50px;
  270. margin: 15px 0;
  271. padding-right: 50px;
  272. padding: 10px 15px;
  273. font-size: 16px;
  274. border-radius: 3px;
  275. -webkit-appearance: none;
  276. -moz-appearance: none;
  277. appearance: none;
  278. background: url(./img/icondown.webp) 85% 50% no-repeat scroll transparent;
  279. background-size: 10px 10px;
  280. background-color: #fff;
  281. }
  282. #contact-us #contact-form #form-left #square,
  283. #contact-us #contact-form #form-left #date {
  284. background: none;
  285. background-color: #fff;
  286. }
  287. #contact-us #contact-form #form-right {
  288. width: 29vw;
  289. margin-left: 5vw;
  290. }
  291. #contact-us #contact-form #form-right #facebook {
  292. margin-top: 12px;
  293. width: 29vw;
  294. height: 50px;
  295. border: 1px solid #3b5998;
  296. text-align: right;
  297. padding-right: 50px;
  298. line-height: 50px;
  299. background-color: #fff;
  300. -webkit-transition: 0.3s;
  301. transition: 0.3s;
  302. position: relative;
  303. }
  304. #contact-us #contact-form #form-right #facebook img {
  305. position: absolute;
  306. left: 50px;
  307. top: 7px;
  308. width: 32px;
  309. height: 32px;
  310. }
  311. #contact-us #contact-form #form-right #facebook:hover {
  312. background-color: #2a4f91;
  313. color: #fff;
  314. }
  315. #contact-us #contact-form #form-right #facebook:hover img {
  316. -webkit-filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  317. filter: invert(100%) sepia(100%) saturate(19%) hue-rotate(334deg) brightness(106%) contrast(106%);
  318. }
  319. #contact-us #contact-form #form-right a {
  320. text-decoration: none;
  321. color: #ee751b;
  322. font-weight: 900;
  323. }
  324. #contact-us #contact-form #form-right #checkbox {
  325. margin: 15px;
  326. }
  327. #contact-us #contact-form #form-right #email,
  328. #contact-us #contact-form #form-right #name,
  329. #contact-us #contact-form #form-right #phone {
  330. background: none;
  331. background-color: #fff;
  332. }
  333. #contact-us .btn {
  334. margin: 50px auto;
  335. border: none;
  336. padding: 15px;
  337. background: #edbc96;
  338. color: #4b515e;
  339. font-size: 20px;
  340. width: 450px;
  341. border-radius: 10px;
  342. }
  343. #contact-us .btn:hover {
  344. color: #fff;
  345. background-color: #745c54;
  346. }
  347. #contact-us .form-btn {
  348. text-align: center;
  349. position: relative;
  350. width: 75vw;
  351. margin: 0 auto;
  352. }
  353. #contact-us .form-btn #phone {
  354. position: absolute;
  355. left: 500px;
  356. }
  357. #feedback {
  358. width: 100vw;
  359. padding-bottom: 200px;
  360. }
  361. #feedback h1 {
  362. margin-top: 50px;
  363. margin-bottom: 50px;
  364. }
  365. #feedback #feedback-box {
  366. width: 80vw;
  367. margin: 0 auto;
  368. display: -ms-grid;
  369. display: grid;
  370. -ms-grid-columns: (1fr)[3];
  371. grid-template-columns: repeat(3, 1fr);
  372. }
  373. #feedback #feedback-box .box {
  374. width: 25vw;
  375. -webkit-transition: 0.5s;
  376. transition: 0.5s;
  377. text-align: center;
  378. padding-bottom: 1vw;
  379. position: relative;
  380. }
  381. #feedback #feedback-box .box .play {
  382. position: absolute;
  383. left: 12vw !important;
  384. top: 5vw !important;
  385. width: 3vw;
  386. height: 3vw;
  387. opacity: 0.8;
  388. z-index: 10;
  389. }
  390. #feedback #feedback-box .box img {
  391. width: 25vw;
  392. margin: 0 auto;
  393. -o-object-fit: cover;
  394. object-fit: cover;
  395. -webkit-transition: 0.5s;
  396. transition: 0.5s;
  397. }
  398. #feedback #feedback-box .box p {
  399. text-align: center;
  400. font-size: 18px;
  401. font-weight: 600;
  402. margin: 10px;
  403. }
  404. #footer {
  405. width: 100vw;
  406. background-color: #ebe6e2;
  407. color: #9f5000;
  408. text-align: center;
  409. font-size: 18px;
  410. line-height: 130px;
  411. }
  412. #footer a {
  413. text-decoration: none;
  414. color: #9f5000;
  415. }
  416. #footer p {
  417. display: inline;
  418. }
  419. /*# sourceMappingURL=style.css.map */