style.css 22 KB

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