main.scss 24 KB

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