style.css 9.8 KB

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