style.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898
  1. @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");
  2. @font-face {
  3. font-family: drechifont;
  4. src: url(../drechifont-Proportional.woff);
  5. font-weight: 300;
  6. font-display: swap; }
  7. @font-face {
  8. font-family: 'Taipei Sans TC Beta';
  9. src: local("Taipei Sans TC Beta");
  10. font-weight: 300; }
  11. body {
  12. background-color: #F7F7F7;
  13. overflow-x: hidden !important;
  14. font-family: 'Taipei Sans TC Beta'; }
  15. .header {
  16. z-index: 5;
  17. height: 94vh;
  18. background-image: url("../images/hero.webp");
  19. background-repeat: no-repeat;
  20. background-position: center;
  21. background-size: cover;
  22. border-bottom-right-radius: 18rem;
  23. border-bottom-left-radius: 18rem;
  24. position: relative;
  25. box-shadow: 0px 8px 25px 5px #a8a8a8; }
  26. @media screen and (max-width: 576px) {
  27. .header {
  28. border-bottom-right-radius: 4rem;
  29. border-bottom-left-radius: 4rem;
  30. height: 90vh; } }
  31. .header__logo {
  32. display: block;
  33. width: 120px;
  34. height: 35px; }
  35. .header__logo img {
  36. width: 100%;
  37. height: 100%; }
  38. .header__logo-box {
  39. padding: 1rem;
  40. margin: 0rem 4.5rem; }
  41. @media screen and (max-width: 576px) {
  42. .header__logo-box {
  43. margin: 0rem .4rem; } }
  44. .header__line {
  45. background-color: white;
  46. height: 2px;
  47. border-top: 1px solid #ffff; }
  48. .header__text-box {
  49. position: absolute;
  50. width: 40vw;
  51. text-align: center;
  52. left: 50%;
  53. top: 50%;
  54. transform: translate(-50%, -60%); }
  55. .header__text-box::after {
  56. position: absolute;
  57. left: 50%;
  58. top: 50%;
  59. transform: translate(-50%, -50%);
  60. width: 125%;
  61. height: 125%;
  62. border-radius: 70%;
  63. content: ' ';
  64. background: #E5A982;
  65. opacity: .5;
  66. mix-blend-mode: darken;
  67. -webkit-filter: blur(80px);
  68. -moz-filter: blur(80px);
  69. -o-filter: blur(80px);
  70. -ms-filter: blur(80px);
  71. filter: blur(80px);
  72. z-index: -1; }
  73. @media screen and (max-width: 576px) {
  74. .header__text-box {
  75. width: 98vw; } }
  76. .header__text-box .title__img {
  77. width: 100%;
  78. animation-duration: 2s;
  79. animation-name: fadein;
  80. animation-iteration-count: 1; }
  81. .header__text-box .pen__img {
  82. position: absolute;
  83. width: 110px;
  84. height: 109px;
  85. left: 90%;
  86. top: 44%; }
  87. @media screen and (max-width: 576px) {
  88. .header__text-box .pen__img {
  89. width: 70px;
  90. height: 80px;
  91. left: 80%;
  92. top: 75%;
  93. transform: rotate(5deg); } }
  94. .header__polygon-box {
  95. position: absolute;
  96. bottom: 3%;
  97. left: 50%;
  98. display: flex;
  99. flex-direction: column; }
  100. @media screen and (max-width: 576px) {
  101. .header__polygon-box {
  102. transform: translateX(-50%); } }
  103. .header__polygon-box img {
  104. margin-top: -6px; }
  105. .deco__path1 {
  106. z-index: -1;
  107. width: 100%;
  108. position: absolute;
  109. top: 60%; }
  110. @media screen and (max-width: 576px) {
  111. .deco__path1 {
  112. top: 80%; } }
  113. .deco__path1 img {
  114. width: 100%; }
  115. .regulation {
  116. z-index: 5;
  117. padding: 10rem .5rem 9rem .5rem;
  118. padding-bottom: 7rem;
  119. position: relative; }
  120. @media screen and (max-width: 576px) {
  121. .regulation {
  122. padding: 6rem .5rem 7rem .5rem;
  123. padding-bottom: 7rem; } }
  124. .regulation__box {
  125. transform: translateX(35%);
  126. width: 52%;
  127. padding: 3rem;
  128. background-color: #F7F7F7;
  129. border-radius: 50px;
  130. padding-bottom: 6rem;
  131. padding-top: 4rem;
  132. color: #707070;
  133. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  134. position: relative; }
  135. @media screen and (max-width: 576px) {
  136. .regulation__box {
  137. width: 95%;
  138. padding: 1.5rem;
  139. border-radius: 20px;
  140. transform: none;
  141. margin: 0 auto; } }
  142. .regulation__box::after {
  143. content: " ";
  144. position: absolute;
  145. bottom: 3rem;
  146. right: 3rem;
  147. width: 27%;
  148. height: 1px;
  149. background: #707070; }
  150. @media screen and (max-width: 576px) {
  151. .regulation__box::after {
  152. bottom: 2rem;
  153. right: 1.5rem; } }
  154. .regulation__box__title {
  155. font-weight: 600;
  156. margin-bottom: 1.5rem;
  157. font-size: 1.4rem; }
  158. @media screen and (max-width: 576px) {
  159. .regulation__box__title {
  160. font-size: 1.6rem; } }
  161. .regulation__box__list {
  162. font-family: 'Taipei Sans TC Beta';
  163. margin-bottom: 1.5rem;
  164. font-size: 1rem;
  165. color: #707070;
  166. line-height: 2rem;
  167. font-weight: 300; }
  168. @media screen and (max-width: 576px) {
  169. .regulation__box__list {
  170. font-size: 1.1rem; } }
  171. .regulation__imgbox {
  172. width: 43vw;
  173. height: 60%;
  174. background-image: url("../images/plant.jpg");
  175. background-repeat: no-repeat;
  176. background-position: center;
  177. background-size: cover;
  178. -webkit-filter: blur(3px);
  179. -moz-filter: blur(3px);
  180. -o-filter: blur(3px);
  181. -ms-filter: blur(3px);
  182. filter: blur(3px);
  183. opacity: 0.75;
  184. position: absolute;
  185. right: 0;
  186. bottom: 3rem;
  187. z-index: -1;
  188. border-radius: 3rem 0 0 2rem; }
  189. @media screen and (max-width: 576px) {
  190. .regulation__imgbox {
  191. width: 70vw; } }
  192. .regulation__square {
  193. position: absolute;
  194. bottom: 2.4rem;
  195. left: 11%; }
  196. .regulation__cricle {
  197. position: absolute;
  198. top: 12rem;
  199. right: 20%; }
  200. .regulation__line {
  201. position: absolute;
  202. left: -4rem;
  203. opacity: 0.5; }
  204. .designers {
  205. padding: 4rem 0;
  206. text-align: center;
  207. color: #707070;
  208. font-family: 'TaipeiSansTCBeta';
  209. position: relative; }
  210. @media screen and (max-width: 576px) {
  211. .designers {
  212. padding-top: 0rem; } }
  213. .designers .row {
  214. margin: 1px 0; }
  215. .designers__left {
  216. position: absolute;
  217. top: 75%;
  218. left: -1rem;
  219. z-index: -2; }
  220. .designers__cricle {
  221. position: absolute;
  222. bottom: -5rem;
  223. left: 10%;
  224. z-index: -1; }
  225. .designers__title {
  226. padding: .5rem 0 1rem 0;
  227. font-size: 1.8rem;
  228. font-weight: 700;
  229. margin-bottom: 2rem;
  230. display: block;
  231. position: relative;
  232. letter-spacing: 1px; }
  233. @media screen and (max-width: 576px) {
  234. .designers__title {
  235. font-size: 2rem;
  236. padding-top: .5rem;
  237. margin-bottom: 1rem; } }
  238. .designers__title::before, .designers__title::after {
  239. content: " ";
  240. position: absolute;
  241. width: 25%;
  242. height: 1px;
  243. background-color: #E0E0E0;
  244. top: 42%; }
  245. @media screen and (max-width: 576px) {
  246. .designers__title::before, .designers__title::after {
  247. width: 18%;
  248. top: 40%; } }
  249. .designers__title::before {
  250. left: 18%; }
  251. @media screen and (max-width: 576px) {
  252. .designers__title::before {
  253. left: 6%; } }
  254. .designers__title::after {
  255. right: 18%; }
  256. @media screen and (max-width: 576px) {
  257. .designers__title::after {
  258. right: 6%; } }
  259. .designers__small {
  260. font-family: 'Taipei Sans TC Beta'; }
  261. .designers__card {
  262. height: 14rem;
  263. padding: 0rem 0 1.5rem 0;
  264. color: #707070;
  265. background-color: #F7F7F7;
  266. margin-right: 10px;
  267. margin-left: 10px;
  268. text-decoration: none;
  269. text-align: center; }
  270. .designers__card:hover {
  271. color: #707070; }
  272. @media screen and (max-width: 576px) {
  273. .designers__card {
  274. margin-right: 5px;
  275. margin-left: 5px;
  276. padding: 0rem 0 1.5rem 0;
  277. height: 16rem; } }
  278. .designers__card__imgfr {
  279. display: inline-block;
  280. width: 100px;
  281. height: 100px;
  282. border-radius: 50%;
  283. overflow: hidden;
  284. box-shadow: 0px 3px 20px 6px rgba(214, 214, 214, 0.8); }
  285. @media screen and (max-width: 576px) {
  286. .designers__card__imgfr {
  287. width: 125px;
  288. height: 125px; } }
  289. @media screen and (max-width: 576px) {
  290. .designers__card__imgfr img {
  291. width: 120px; } }
  292. .designers__card__text {
  293. font-weight: 350;
  294. margin-top: .6rem; }
  295. @media screen and (max-width: 576px) {
  296. .designers__card__text {
  297. margin-top: .6rem;
  298. padding-left: 3px;
  299. padding-right: 3px; } }
  300. .designers__card__text strong {
  301. font-weight: bold;
  302. font-size: 1rem;
  303. letter-spacing: 1px; }
  304. @media screen and (max-width: 576px) {
  305. .designers__card__text strong {
  306. font-size: 1.05rem; } }
  307. .designers__card__text p {
  308. font-size: .8rem; }
  309. .designers__card__text p:nth-of-type(1) {
  310. padding-bottom: 3px; }
  311. .designers__card__text p small {
  312. font-size: .7rem; }
  313. @media screen and (max-width: 576px) {
  314. .designers__card__text p {
  315. font-size: .95rem; } }
  316. .designers .container-fluid {
  317. padding-left: 0;
  318. padding-right: 0; }
  319. .personal {
  320. padding: 4rem 0;
  321. padding-top: 0;
  322. text-align: center;
  323. color: #707070;
  324. position: relative; }
  325. @media screen and (max-width: 576px) {
  326. .personal {
  327. padding-top: 0rem;
  328. padding-bottom: 2rem; } }
  329. .personal__title {
  330. padding: .5rem 0 1rem 0;
  331. font-size: 1.8rem;
  332. font-weight: 700;
  333. margin-bottom: 2rem;
  334. display: block;
  335. position: relative;
  336. letter-spacing: 1px; }
  337. @media screen and (max-width: 576px) {
  338. .personal__title {
  339. font-size: 2rem;
  340. padding-top: .5rem; } }
  341. .personal__title::before, .personal__title::after {
  342. content: " ";
  343. position: absolute;
  344. width: 25%;
  345. height: 1px;
  346. background-color: #E0E0E0;
  347. top: 42%; }
  348. @media screen and (max-width: 576px) {
  349. .personal__title::before, .personal__title::after {
  350. width: 18%;
  351. top: 40%; } }
  352. .personal__title::before {
  353. left: 18%; }
  354. @media screen and (max-width: 576px) {
  355. .personal__title::before {
  356. left: 6%; } }
  357. .personal__title::after {
  358. right: 18%; }
  359. @media screen and (max-width: 576px) {
  360. .personal__title::after {
  361. right: 6%; } }
  362. .personal__small {
  363. font-weight: 300; }
  364. .personal__box {
  365. min-width: 350px;
  366. width: 60%;
  367. padding: 3rem;
  368. background-color: #F7F7F7;
  369. color: #707070;
  370. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  371. border-radius: 3rem;
  372. height: fit-content;
  373. min-height: 630px;
  374. margin: 0 auto; }
  375. @media screen and (max-width: 576px) {
  376. .personal__box {
  377. padding: .5rem;
  378. padding-top: 2rem;
  379. border-radius: 2rem;
  380. min-height: 750px; } }
  381. .personal__triangle {
  382. position: absolute;
  383. top: 1rem;
  384. right: 9%;
  385. transform: rotate(43deg);
  386. z-index: -1; }
  387. .personal__wave {
  388. position: absolute;
  389. bottom: 8rem;
  390. left: 13%;
  391. z-index: -1; }
  392. .personal__left {
  393. position: absolute;
  394. left: -1rem;
  395. top: -1.5rem;
  396. z-index: -1; }
  397. .personal #msform select {
  398. -webkit-appearance: none;
  399. -moz-appearance: none;
  400. appearance: none; }
  401. .modal {
  402. background-color: rgba(0, 0, 0, 0.7); }
  403. .modal-body {
  404. color: #707070;
  405. padding: 2rem; }
  406. @media screen and (max-width: 576px) {
  407. .modal-body {
  408. padding: 1rem; } }
  409. .modal-title {
  410. text-align: center;
  411. font-size: 22px;
  412. display: block;
  413. width: 16rem;
  414. margin: 1rem auto; }
  415. .modal-dialog {
  416. max-width: 800px;
  417. border-radius: 3rem;
  418. margin-top: calc(50vh - 297px); }
  419. @media screen and (max-width: 576px) {
  420. .modal-dialog {
  421. padding: 1rem;
  422. margin-top: 2rem;
  423. margin-left: 0;
  424. margin-right: 0; } }
  425. .modal-content {
  426. border-radius: 1.3rem; }
  427. .modal-closer {
  428. width: 30px;
  429. height: 30px;
  430. position: absolute;
  431. right: -2.1rem;
  432. top: -2.1rem; }
  433. @media screen and (max-width: 576px) {
  434. .modal-closer {
  435. right: -.75rem;
  436. top: -2.2rem; } }
  437. .modal-terms {
  438. font-size: 1rem;
  439. line-height: 2rem; }
  440. .owl-carousel .owl-item img {
  441. display: inline-block;
  442. width: 100px; }
  443. @media screen and (max-width: 576px) {
  444. .owl-carousel .owl-item img {
  445. width: 125px; } }
  446. .owl-carousel .owl-stage-outer {
  447. overflow: unset; }
  448. .owl-theme .owl-nav {
  449. margin-top: 0;
  450. text-align: unset; }
  451. .owl-theme .owl-nav .owl-prev .owl-prev-icon, .owl-theme .owl-nav .owl-next .owl-next-icon {
  452. background-color: transparent;
  453. margin: 0;
  454. padding: 0; }
  455. .owl-theme .owl-nav span i {
  456. font-size: 2rem;
  457. color: #bebebe; }
  458. .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  459. position: absolute;
  460. top: 50%;
  461. transform: translateY(-50%); }
  462. .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
  463. background-color: transparent; }
  464. .owl-carousel .owl-nav button.owl-next:hover i, .owl-carousel .owl-nav button.owl-prev:hover i {
  465. color: grey; }
  466. .owl-carousel .owl-nav button.owl-prev {
  467. left: 0px;
  468. margin: 0; }
  469. .owl-carousel .owl-nav button.owl-next {
  470. right: 0px;
  471. margin: 0; }
  472. .owl-theme .owl-dots {
  473. margin-top: 2rem; }
  474. @media screen and (max-width: 576px) {
  475. .owl-theme .owl-dots {
  476. margin-top: .5rem; } }
  477. .owl-theme .owl-dots .owl-dot span {
  478. width: 25px;
  479. height: 3px;
  480. margin: 5px 3px; }
  481. @media screen and (max-width: 576px) {
  482. .owl-theme .owl-dots .owl-dot span {
  483. width: 15px; } }
  484. .owl-theme .owl-dots .owl-dot.active span {
  485. background-color: #F39800; }
  486. .mb {
  487. margin-bottom: 8px; }
  488. .mt {
  489. margin-top: 8px; }
  490. .mr {
  491. margin-right: 5px; }
  492. /*form styles*/
  493. #msform {
  494. min-width: 370px;
  495. max-width: 1000px;
  496. margin: auto;
  497. text-align: center;
  498. position: relative;
  499. font-family: 'Taipei Sans TC Beta'; }
  500. @media screen and (max-width: 576px) {
  501. #msform {
  502. min-width: 340px; } }
  503. #msform fieldset {
  504. background: transparent;
  505. box-sizing: border-box;
  506. width: 85%;
  507. margin: 0 7.5%;
  508. /*stacking fieldsets above each other*/
  509. position: relative; }
  510. /*Hide all except first fieldset*/
  511. #msform fieldset:not(:first-of-type) {
  512. display: none;
  513. margin-top: 2rem; }
  514. /*inputs*/
  515. #msform input[type="text"], #msform textarea, #msform input[type="email"], #msform select {
  516. padding: 8px;
  517. padding-left: 1rem;
  518. border: 1px solid #C4C4C4;
  519. border-radius: 0px;
  520. margin-bottom: 16px;
  521. width: 100%;
  522. box-sizing: border-box;
  523. font-family: montserrat;
  524. color: #2C3E50;
  525. font-size: 14px; }
  526. #msform select {
  527. background-color: white;
  528. color: #C4C4C4; }
  529. #msform input {
  530. color: black; }
  531. #msform input::placeholder {
  532. color: #C4C4C4; }
  533. /*buttons*/
  534. #msform .action-button {
  535. width: 90px;
  536. background: #F7F7F7;
  537. font-weight: 400;
  538. color: #707070;
  539. border: 1px solid #707070;
  540. border-radius: 5px;
  541. cursor: pointer;
  542. padding: 4px 9px;
  543. margin: 10px auto;
  544. display: inline-block; }
  545. #msform .action-button:hover, #msform .action-button:focus {
  546. background: #707070;
  547. color: #F7F7F7; }
  548. #msform .action-button.btn-margin {
  549. margin-top: 1.5rem; }
  550. @media screen and (max-width: 576px) {
  551. #msform .action-button.btn-margin {
  552. margin-top: 160px; } }
  553. /*headings*/
  554. .fs-title {
  555. font-size: 15px;
  556. text-transform: uppercase;
  557. color: #2C3E50;
  558. margin-bottom: 10px; }
  559. .fs-subtitle {
  560. display: inline-block;
  561. font-weight: normal;
  562. font-size: 13px;
  563. color: #666;
  564. margin-bottom: 20px;
  565. padding-bottom: 3px;
  566. border-bottom: 2px solid #27AE60; }
  567. .fs-label {
  568. display: block;
  569. text-align: left;
  570. font-weight: bold; }
  571. /*progressbar*/
  572. #progressbar {
  573. width: 85%;
  574. margin: 0 auto;
  575. overflow: hidden;
  576. /*CSS counters to number the steps*/
  577. counter-reset: step; }
  578. #progressbar li {
  579. list-style-type: none;
  580. color: #C4C4C4;
  581. font-size: .9rem;
  582. width: 33.33%;
  583. float: left;
  584. position: relative; }
  585. @media screen and (max-width: 576px) {
  586. #progressbar li {
  587. font-size: .8rem; } }
  588. #progressbar span {
  589. display: block; }
  590. /* #progressbar li:before {
  591. content: counter(step);
  592. counter-increment: step;
  593. width: 20px;
  594. line-height: 20px;
  595. display: block;
  596. font-size: 12px;
  597. color: #333;
  598. background: white;
  599. border-radius: 3px;
  600. margin: 0 auto 5px auto;
  601. }
  602. /* progressbar connectors*/
  603. #progressbar li:after {
  604. content: '';
  605. width: 60%;
  606. height: 1px;
  607. background: #C4C4C4;
  608. position: absolute;
  609. left: -30%;
  610. top: 17px;
  611. z-index: 2;
  612. /*put it behind the numbers*/ }
  613. @media screen and (max-width: 576px) {
  614. #progressbar li:after {
  615. width: 35%;
  616. height: 1px;
  617. background: #C4C4C4;
  618. position: absolute;
  619. left: -20%;
  620. top: 14px; } }
  621. #progressbar li:first-child:after {
  622. /*connector not needed before the first step*/
  623. content: none; }
  624. /*marking active/completed steps green*/
  625. /*The number of the step and the connector before it = green*/
  626. #progressbar li.active:after {
  627. background-color: #F39800;
  628. color: white; }
  629. #progressbar li.active {
  630. color: #F39800;
  631. font-weight: 600; }
  632. p.error-text {
  633. bottom: -23px;
  634. left: 24px;
  635. color: rgba(255, 0, 0, 0.7);
  636. font-size: .8em; }
  637. #term-error {
  638. color: rgba(255, 0, 0, 0.7);
  639. font-size: .8em;
  640. bottom: -23px;
  641. left: 24px; }
  642. select {
  643. padding: 15px;
  644. border: 1px solid #ccc;
  645. border-radius: 3px;
  646. margin-bottom: 10px;
  647. width: 100%;
  648. box-sizing: border-box;
  649. font-family: montserrat;
  650. color: #2C3E50;
  651. font-size: 13px;
  652. background-color: transparent; }
  653. .pl-0 {
  654. padding-left: 0; }
  655. .terms {
  656. font-size: .9rem;
  657. width: 95%;
  658. min-width: 250px;
  659. height: auto;
  660. overflow: scroll;
  661. margin-bottom: 1rem;
  662. margin-left: auto;
  663. margin-right: auto;
  664. border: 1px solid #a3a3a3;
  665. line-height: 1.5rem; }
  666. @media screen and (max-width: 576px) {
  667. .term-link {
  668. font-size: .8rem; } }
  669. .term-link span {
  670. color: black;
  671. display: inline-block;
  672. margin-left: 4px;
  673. text-decoration: underline;
  674. cursor: pointer; }
  675. .h2 {
  676. text-align: center;
  677. font-size: 1.2rem;
  678. font-weight: 500;
  679. margin-top: 2rem; }
  680. .left_align {
  681. font-size: 18px;
  682. text-align: left; }
  683. #overlay {
  684. position: fixed;
  685. /* Sit on top of the page content */
  686. display: none;
  687. width: 100%;
  688. height: 100%;
  689. top: 0;
  690. left: 0;
  691. right: 0;
  692. bottom: 0;
  693. background-color: rgba(0, 0, 0, 0.5);
  694. z-index: 2;
  695. cursor: pointer; }
  696. .check_button {
  697. display: none; }
  698. .fs-label-type {
  699. background: white;
  700. padding: 5px 11px;
  701. border: 1px solid #C4C4C4;
  702. border-radius: 8px;
  703. display: inline-block;
  704. font-weight: lighter;
  705. font-size: 1rem; }
  706. .check_button:checked + .fs-label-type {
  707. background-color: #FFC107;
  708. color: black;
  709. border-color: #FFC107; }
  710. input[type="checkbox"] {
  711. display: none; }
  712. #checker1, #checker2 {
  713. display: inline; }
  714. .fs-label-info {
  715. background: white;
  716. padding: 5px 11px;
  717. border: 1px solid #C4C4C4;
  718. border-radius: 8px;
  719. display: inline-block;
  720. font-weight: lighter;
  721. font-size: 1rem; }
  722. input[type="radio"] {
  723. display: none; }
  724. input[type="radio"]:checked + .fs-label-info {
  725. background-color: #FFC107;
  726. color: black;
  727. border-color: #FFC107; }
  728. input[type="checkbox"]:checked + .fs-label-info {
  729. background-color: #FFC107;
  730. color: black;
  731. border-color: #FFC107; }
  732. #msform .submit {
  733. background-color: #0D6EFD;
  734. color: white;
  735. border: 1px solid #0D6EFD; }
  736. #msform .submit:hover, #msform .submit:focus {
  737. background-color: #0D6EFD;
  738. color: white; }
  739. .btn-exit {
  740. padding: .5rem .75rem;
  741. background-color: transparent;
  742. border: 1px solid black;
  743. margin-top: .3rem; }
  744. .btn-term-exit {
  745. padding: .5rem .75rem;
  746. background-color: transparent;
  747. border: 1px solid black;
  748. margin-top: .3rem;
  749. display: block;
  750. margin-left: auto;
  751. margin-right: auto;
  752. margin-bottom: 2rem; }
  753. #msform #userid, #msform #area {
  754. height: 0;
  755. padding: 0;
  756. margin: 0;
  757. border: none; }
  758. .footer {
  759. text-align: center;
  760. padding: 1.5rem;
  761. color: #707070;
  762. font-size: 1rem;
  763. position: relative;
  764. font-family: 'Taipei Sans TC Beta'; }
  765. @media screen and (max-width: 576px) {
  766. .footer {
  767. padding-bottom: 3rem;
  768. background-color: transparent;
  769. font-size: .9rem; } }
  770. .footer .deco__bottomdiv {
  771. position: absolute;
  772. right: 15%;
  773. bottom: 0rem;
  774. z-index: -2;
  775. width: 920px;
  776. overflow: hidden; }
  777. .footer .deco__rightdiv {
  778. width: 710px;
  779. position: absolute;
  780. right: 0;
  781. bottom: 0rem;
  782. z-index: -2;
  783. overflow: hidden; }
  784. @media screen and (max-width: 576px) {
  785. .footer .deco__rightdiv {
  786. width: 270px; } }
  787. .footer .deco__right {
  788. width: 100%;
  789. transform: translateY(2rem); }
  790. .footer .deco__bottom {
  791. width: 100%;
  792. transform: translateY(2rem); }
  793. .footer .deco__linediv {
  794. width: 310px;
  795. position: absolute;
  796. bottom: 0rem;
  797. left: -8rem;
  798. z-index: -1;
  799. overflow: hidden; }
  800. @media screen and (max-width: 576px) {
  801. .footer .deco__linediv {
  802. width: 140px;
  803. left: -3rem; } }
  804. .footer .deco__line3 {
  805. width: 100%;
  806. height: 110%;
  807. transform: translateY(3rem);
  808. opacity: .5; }
  809. .footer .deco__rightlinediv {
  810. width: 650px;
  811. position: absolute;
  812. bottom: 0rem;
  813. right: -4rem;
  814. z-index: -1;
  815. overflow: hidden; }
  816. @media screen and (max-width: 576px) {
  817. .footer .deco__rightlinediv {
  818. width: 300px; } }
  819. .footer .deco__rightline {
  820. width: 100%;
  821. opacity: .6;
  822. transform: translateY(2rem); }
  823. @media screen and (max-width: 576px) {
  824. .footer .deco__rightline {
  825. opacity: 1; } }
  826. @keyframes fadein {
  827. 0% {
  828. opacity: 0; }
  829. 100% {
  830. opacity: 1; } }