style.css 22 KB

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