style.css 21 KB

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