style.css 22 KB

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