style.css 10 KB

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