style.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889
  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. .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: .6rem; }
  292. @media screen and (max-width: 576px) {
  293. .designers__card__text {
  294. margin-top: .6rem;
  295. padding-left: 3px;
  296. padding-right: 3px; } }
  297. .designers__card__text strong {
  298. font-weight: bold;
  299. font-size: 1rem;
  300. letter-spacing: 1px; }
  301. @media screen and (max-width: 576px) {
  302. .designers__card__text strong {
  303. font-size: 1.05rem; } }
  304. .designers__card__text p {
  305. font-size: .8rem; }
  306. .designers__card__text p:nth-of-type(1) {
  307. padding-bottom: 3px; }
  308. .designers__card__text p small {
  309. font-size: .7rem; }
  310. @media screen and (max-width: 576px) {
  311. .designers__card__text p {
  312. font-size: .95rem; } }
  313. .designers .container-fluid {
  314. padding-left: 0;
  315. padding-right: 0; }
  316. .personal {
  317. padding: 4rem 0;
  318. padding-top: 0;
  319. text-align: center;
  320. color: #707070;
  321. position: relative; }
  322. @media screen and (max-width: 576px) {
  323. .personal {
  324. padding-top: 0rem;
  325. padding-bottom: 2rem; } }
  326. .personal__title {
  327. padding: .5rem 0 1rem 0;
  328. font-size: 1.8rem;
  329. font-weight: 700;
  330. margin-bottom: 2rem;
  331. display: block;
  332. position: relative;
  333. letter-spacing: 1px; }
  334. @media screen and (max-width: 576px) {
  335. .personal__title {
  336. font-size: 2rem;
  337. padding-top: .5rem; } }
  338. .personal__title::before, .personal__title::after {
  339. content: " ";
  340. position: absolute;
  341. width: 25%;
  342. height: 1px;
  343. background-color: #E0E0E0;
  344. top: 42%; }
  345. @media screen and (max-width: 576px) {
  346. .personal__title::before, .personal__title::after {
  347. width: 18%;
  348. top: 40%; } }
  349. .personal__title::before {
  350. left: 18%; }
  351. @media screen and (max-width: 576px) {
  352. .personal__title::before {
  353. left: 6%; } }
  354. .personal__title::after {
  355. right: 18%; }
  356. @media screen and (max-width: 576px) {
  357. .personal__title::after {
  358. right: 6%; } }
  359. .personal__small {
  360. font-weight: 300; }
  361. .personal__box {
  362. min-width: 350px;
  363. width: 60%;
  364. padding: 3rem;
  365. background-color: #F7F7F7;
  366. color: #707070;
  367. box-shadow: 1px 1px 10px 1px #cccccc, inset 0em 3px white;
  368. border-radius: 3rem;
  369. height: fit-content;
  370. min-height: 630px;
  371. margin: 0 auto; }
  372. @media screen and (max-width: 576px) {
  373. .personal__box {
  374. padding: .5rem;
  375. padding-top: 2rem;
  376. border-radius: 2rem;
  377. min-height: 750px; } }
  378. .personal__triangle {
  379. position: absolute;
  380. top: 1rem;
  381. right: 9%;
  382. transform: rotate(43deg);
  383. z-index: -1; }
  384. .personal__wave {
  385. position: absolute;
  386. bottom: 8rem;
  387. left: 13%;
  388. z-index: -1; }
  389. .personal__left {
  390. position: absolute;
  391. left: -1rem;
  392. top: -1.5rem;
  393. z-index: -1; }
  394. .personal #msform select {
  395. -webkit-appearance: none;
  396. -moz-appearance: none;
  397. appearance: none; }
  398. .modal {
  399. background-color: rgba(0, 0, 0, 0.7); }
  400. .modal-body {
  401. color: #707070;
  402. padding: 2rem; }
  403. @media screen and (max-width: 576px) {
  404. .modal-body {
  405. padding: 1rem; } }
  406. .modal-title {
  407. text-align: center;
  408. font-size: 22px;
  409. display: block;
  410. width: 16rem;
  411. margin: 1rem auto; }
  412. .modal-dialog {
  413. max-width: 800px;
  414. border-radius: 3rem;
  415. margin-top: calc(50vh - 297px); }
  416. @media screen and (max-width: 576px) {
  417. .modal-dialog {
  418. padding: 1rem;
  419. margin-top: 2rem;
  420. margin-left: 0;
  421. margin-right: 0; } }
  422. .modal-content {
  423. border-radius: 1.3rem; }
  424. .modal-closer {
  425. width: 30px;
  426. height: 30px;
  427. position: absolute;
  428. right: -2.1rem;
  429. top: -2.1rem; }
  430. @media screen and (max-width: 576px) {
  431. .modal-closer {
  432. right: -.75rem;
  433. top: -2.2rem; } }
  434. .modal-terms {
  435. font-size: 1rem;
  436. line-height: 2rem; }
  437. .owl-carousel .owl-item img {
  438. display: inline-block;
  439. width: 100px; }
  440. @media screen and (max-width: 576px) {
  441. .owl-carousel .owl-item img {
  442. width: 125px; } }
  443. .owl-carousel .owl-stage-outer {
  444. overflow: unset; }
  445. .owl-theme .owl-nav {
  446. margin-top: 0;
  447. text-align: unset; }
  448. .owl-theme .owl-nav .owl-prev .owl-prev-icon, .owl-theme .owl-nav .owl-next .owl-next-icon {
  449. background-color: transparent;
  450. margin: 0;
  451. padding: 0; }
  452. .owl-theme .owl-nav span i {
  453. font-size: 2rem;
  454. color: #bebebe; }
  455. .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  456. position: absolute;
  457. top: 50%;
  458. transform: translateY(-50%); }
  459. .owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
  460. background-color: transparent; }
  461. .owl-carousel .owl-nav button.owl-next:hover i, .owl-carousel .owl-nav button.owl-prev:hover i {
  462. color: grey; }
  463. .owl-carousel .owl-nav button.owl-prev {
  464. left: 0px;
  465. margin: 0; }
  466. .owl-carousel .owl-nav button.owl-next {
  467. right: 0px;
  468. margin: 0; }
  469. .owl-theme .owl-dots {
  470. margin-top: 2rem; }
  471. @media screen and (max-width: 576px) {
  472. .owl-theme .owl-dots {
  473. margin-top: .5rem; } }
  474. .owl-theme .owl-dots .owl-dot span {
  475. width: 25px;
  476. height: 3px;
  477. margin: 5px 3px; }
  478. @media screen and (max-width: 576px) {
  479. .owl-theme .owl-dots .owl-dot span {
  480. width: 15px; } }
  481. .owl-theme .owl-dots .owl-dot.active span {
  482. background-color: #F39800; }
  483. .mb {
  484. margin-bottom: 8px; }
  485. .mt {
  486. margin-top: 8px; }
  487. .mr {
  488. margin-right: 5px; }
  489. /*form styles*/
  490. #msform {
  491. min-width: 370px;
  492. max-width: 1000px;
  493. margin: auto;
  494. text-align: center;
  495. position: relative;
  496. font-family: 'Taipei Sans TC Beta'; }
  497. @media screen and (max-width: 576px) {
  498. #msform {
  499. min-width: 340px; } }
  500. #msform fieldset {
  501. background: transparent;
  502. box-sizing: border-box;
  503. width: 85%;
  504. margin: 0 7.5%;
  505. /*stacking fieldsets above each other*/
  506. position: relative; }
  507. /*Hide all except first fieldset*/
  508. #msform fieldset:not(:first-of-type) {
  509. display: none;
  510. margin-top: 2rem; }
  511. /*inputs*/
  512. #msform input[type="text"], #msform textarea, #msform input[type="email"], #msform select {
  513. padding: 8px;
  514. padding-left: 1rem;
  515. border: 1px solid #C4C4C4;
  516. border-radius: 0px;
  517. margin-bottom: 16px;
  518. width: 100%;
  519. box-sizing: border-box;
  520. font-family: montserrat;
  521. color: #2C3E50;
  522. font-size: 14px; }
  523. #msform select {
  524. background-color: white;
  525. color: #C4C4C4; }
  526. #msform input {
  527. color: black; }
  528. #msform input::placeholder {
  529. color: #C4C4C4; }
  530. /*buttons*/
  531. #msform .action-button {
  532. width: 90px;
  533. background: #F7F7F7;
  534. font-weight: 400;
  535. color: #707070;
  536. border: 1px solid #707070;
  537. border-radius: 5px;
  538. cursor: pointer;
  539. padding: 4px 9px;
  540. margin: 10px auto;
  541. display: inline-block; }
  542. #msform .action-button:hover, #msform .action-button:focus {
  543. background: #707070;
  544. color: #F7F7F7; }
  545. #msform .action-button.btn-margin {
  546. margin-top: 1.5rem; }
  547. @media screen and (max-width: 576px) {
  548. #msform .action-button.btn-margin {
  549. margin-top: 160px; } }
  550. /*headings*/
  551. .fs-title {
  552. font-size: 15px;
  553. text-transform: uppercase;
  554. color: #2C3E50;
  555. margin-bottom: 10px; }
  556. .fs-subtitle {
  557. display: inline-block;
  558. font-weight: normal;
  559. font-size: 13px;
  560. color: #666;
  561. margin-bottom: 20px;
  562. padding-bottom: 3px;
  563. border-bottom: 2px solid #27AE60; }
  564. .fs-label {
  565. display: block;
  566. text-align: left;
  567. font-weight: bold; }
  568. /*progressbar*/
  569. #progressbar {
  570. width: 85%;
  571. margin: 0 auto;
  572. overflow: hidden;
  573. /*CSS counters to number the steps*/
  574. counter-reset: step; }
  575. #progressbar li {
  576. list-style-type: none;
  577. color: #C4C4C4;
  578. font-size: .9rem;
  579. width: 33.33%;
  580. float: left;
  581. position: relative; }
  582. @media screen and (max-width: 576px) {
  583. #progressbar li {
  584. font-size: .8rem; } }
  585. #progressbar span {
  586. display: block; }
  587. /* #progressbar li:before {
  588. content: counter(step);
  589. counter-increment: step;
  590. width: 20px;
  591. line-height: 20px;
  592. display: block;
  593. font-size: 12px;
  594. color: #333;
  595. background: white;
  596. border-radius: 3px;
  597. margin: 0 auto 5px auto;
  598. }
  599. /* progressbar connectors*/
  600. #progressbar li:after {
  601. content: '';
  602. width: 60%;
  603. height: 1px;
  604. background: #C4C4C4;
  605. position: absolute;
  606. left: -30%;
  607. top: 17px;
  608. z-index: 2;
  609. /*put it behind the numbers*/ }
  610. @media screen and (max-width: 576px) {
  611. #progressbar li:after {
  612. width: 35%;
  613. height: 1px;
  614. background: #C4C4C4;
  615. position: absolute;
  616. left: -20%;
  617. top: 14px; } }
  618. #progressbar li:first-child:after {
  619. /*connector not needed before the first step*/
  620. content: none; }
  621. /*marking active/completed steps green*/
  622. /*The number of the step and the connector before it = green*/
  623. #progressbar li.active:after {
  624. background-color: #F39800;
  625. color: white; }
  626. #progressbar li.active {
  627. color: #F39800;
  628. font-weight: 600; }
  629. p.error-text {
  630. bottom: -23px;
  631. left: 24px;
  632. color: rgba(255, 0, 0, 0.7);
  633. font-size: .8em; }
  634. #term-error {
  635. color: rgba(255, 0, 0, 0.7);
  636. font-size: .8em;
  637. bottom: -23px;
  638. left: 24px; }
  639. select {
  640. padding: 15px;
  641. border: 1px solid #ccc;
  642. border-radius: 3px;
  643. margin-bottom: 10px;
  644. width: 100%;
  645. box-sizing: border-box;
  646. font-family: montserrat;
  647. color: #2C3E50;
  648. font-size: 13px;
  649. background-color: transparent; }
  650. .pl-0 {
  651. padding-left: 0; }
  652. .terms {
  653. font-size: .9rem;
  654. width: 95%;
  655. min-width: 250px;
  656. height: auto;
  657. overflow: scroll;
  658. margin-bottom: 1rem;
  659. margin-left: auto;
  660. margin-right: auto;
  661. border: 1px solid #a3a3a3;
  662. line-height: 1.5rem; }
  663. @media screen and (max-width: 576px) {
  664. .term-link {
  665. font-size: .8rem; } }
  666. .term-link span {
  667. color: black;
  668. display: inline-block;
  669. margin-left: 4px;
  670. text-decoration: underline;
  671. cursor: pointer; }
  672. .h2 {
  673. text-align: center;
  674. font-size: 1.2rem;
  675. font-weight: 500;
  676. margin-top: 2rem; }
  677. .left_align {
  678. font-size: 18px;
  679. text-align: left; }
  680. #overlay {
  681. position: fixed;
  682. /* Sit on top of the page content */
  683. display: none;
  684. width: 100%;
  685. height: 100%;
  686. top: 0;
  687. left: 0;
  688. right: 0;
  689. bottom: 0;
  690. background-color: rgba(0, 0, 0, 0.5);
  691. z-index: 2;
  692. cursor: pointer; }
  693. .check_button {
  694. display: none; }
  695. .fs-label-type {
  696. background: white;
  697. padding: 5px 11px;
  698. border: 1px solid #C4C4C4;
  699. border-radius: 8px;
  700. display: inline-block;
  701. font-weight: lighter;
  702. font-size: 1rem; }
  703. .check_button:checked + .fs-label-type {
  704. background-color: #FFC107;
  705. color: black;
  706. border-color: #FFC107; }
  707. input[type="checkbox"] {
  708. display: none; }
  709. #checker1, #checker2 {
  710. display: inline; }
  711. .fs-label-info {
  712. background: white;
  713. padding: 5px 11px;
  714. border: 1px solid #C4C4C4;
  715. border-radius: 8px;
  716. display: inline-block;
  717. font-weight: lighter;
  718. font-size: 1rem; }
  719. input[type="radio"] {
  720. display: none; }
  721. input[type="radio"]:checked + .fs-label-info {
  722. background-color: #FFC107;
  723. color: black;
  724. border-color: #FFC107; }
  725. input[type="checkbox"]:checked + .fs-label-info {
  726. background-color: #FFC107;
  727. color: black;
  728. border-color: #FFC107; }
  729. #msform .submit {
  730. background-color: #0D6EFD;
  731. color: white;
  732. border: 1px solid #0D6EFD; }
  733. #msform .submit:hover, #msform .submit:focus {
  734. background-color: #0D6EFD;
  735. color: white; }
  736. .btn-exit {
  737. padding: .5rem .75rem;
  738. background-color: transparent;
  739. border: 1px solid black;
  740. margin-top: .3rem; }
  741. .btn-term-exit {
  742. padding: .5rem .75rem;
  743. background-color: transparent;
  744. border: 1px solid black;
  745. margin-top: .3rem;
  746. display: block;
  747. margin-left: auto;
  748. margin-right: auto;
  749. margin-bottom: 2rem; }
  750. #msform #userid, #msform #area {
  751. height: 0;
  752. padding: 0;
  753. margin: 0;
  754. border: none; }
  755. .footer {
  756. text-align: center;
  757. padding: 1.5rem;
  758. color: #707070;
  759. font-size: 1rem;
  760. position: relative;
  761. font-family: 'Taipei Sans TC Beta'; }
  762. @media screen and (max-width: 576px) {
  763. .footer {
  764. padding-bottom: 3rem;
  765. background-color: transparent;
  766. font-size: .9rem; } }
  767. .footer .deco__bottomdiv {
  768. position: absolute;
  769. right: 15%;
  770. bottom: 0rem;
  771. z-index: -2;
  772. width: 920px;
  773. overflow: hidden; }
  774. .footer .deco__rightdiv {
  775. width: 710px;
  776. position: absolute;
  777. right: 0;
  778. bottom: 0rem;
  779. z-index: -2;
  780. overflow: hidden; }
  781. @media screen and (max-width: 576px) {
  782. .footer .deco__rightdiv {
  783. width: 270px; } }
  784. .footer .deco__right {
  785. width: 100%;
  786. transform: translateY(2rem); }
  787. .footer .deco__bottom {
  788. width: 100%;
  789. transform: translateY(2rem); }
  790. .footer .deco__linediv {
  791. width: 310px;
  792. position: absolute;
  793. bottom: 0rem;
  794. left: -8rem;
  795. z-index: -1;
  796. overflow: hidden; }
  797. @media screen and (max-width: 576px) {
  798. .footer .deco__linediv {
  799. width: 140px;
  800. left: -3rem; } }
  801. .footer .deco__line3 {
  802. width: 100%;
  803. height: 110%;
  804. transform: translateY(3rem);
  805. opacity: .5; }
  806. .footer .deco__rightlinediv {
  807. width: 650px;
  808. position: absolute;
  809. bottom: 0rem;
  810. right: -4rem;
  811. z-index: -1;
  812. overflow: hidden; }
  813. @media screen and (max-width: 576px) {
  814. .footer .deco__rightlinediv {
  815. width: 300px; } }
  816. .footer .deco__rightline {
  817. width: 100%;
  818. opacity: .6;
  819. transform: translateY(2rem); }
  820. @media screen and (max-width: 576px) {
  821. .footer .deco__rightline {
  822. opacity: 1; } }