style.css 21 KB

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