main.scss 23 KB

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