main.scss 22 KB

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