style.css 9.6 KB

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