style.scss 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995
  1. @charset "UTF-8";
  2. /*custom font*/
  3. @import url(https://fonts.googleapis.com/css?family=Montserrat);
  4. @import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
  5. /*basic reset*/
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. $moblie: 767px;
  11. $desktop: 1025px;
  12. html {
  13. min-height: 100%;
  14. height: auto;
  15. /*Image only BG fallback*/
  16. /*background = gradient + image pattern combo*/
  17. /* background:
  18. linear-gradient(rgba(196, 102, 0, 0.6), rgba(155, 89, 182, 0.6)); */
  19. }
  20. body {
  21. font-family: "Montserrat", sans-serif;
  22. background-color: white;
  23. font-size: 1.05rem;
  24. }
  25. .ml {
  26. margin-left: 10px;
  27. }
  28. .mr {
  29. margin-right: 10px;
  30. }
  31. .mb {
  32. margin-bottom: 12px;
  33. }
  34. .top {
  35. margin-top: 20px;
  36. position: sticky;
  37. top: 0;
  38. left: 50%;
  39. z-index: 20;
  40. background-color: inherit;
  41. }
  42. .copy {
  43. cursor: pointer;
  44. }
  45. .navbar {
  46. background-color: white;
  47. .menu-bar {
  48. @media screen and(min-width:$desktop) {
  49. display: none;
  50. }
  51. }
  52. }
  53. .navbar-des {
  54. @media screen and(max-width:$moblie) {
  55. display: none;
  56. }
  57. }
  58. /* .imf {
  59. position: fixed;
  60. top: 0;
  61. left: 50%;
  62. transform: translateX(-50%);
  63. z-index: 3;
  64. } */
  65. .img_banner {
  66. background-image: url("images/banner_top1.jpg");
  67. background-repeat: no-repeat;
  68. background-size: contain;
  69. background-position: center;
  70. width: 100%;
  71. height: 65px;
  72. }
  73. /*form styles*/
  74. .img_logo {
  75. display: inline-block;
  76. margin: 0 auto;
  77. margin-bottom: 10px;
  78. }
  79. .title__block {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. margin: 0px auto;
  84. }
  85. .sub-logo {
  86. display: inline-block;
  87. font-weight: 700;
  88. font-size: 1.4rem;
  89. color: white;
  90. }
  91. .slogan {
  92. display: block;
  93. font-weight: 700;
  94. font-size: 1.2rem;
  95. color: white;
  96. }
  97. .notice_card {
  98. box-sizing: border-box;
  99. width: 80%;
  100. margin: 0 10%;
  101. margin-bottom: 1.5rem;
  102. background: white;
  103. border: 0 none;
  104. border-radius: 3px;
  105. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  106. padding: 10px 20px;
  107. line-height: 1.5rem;
  108. }
  109. #myProgress {
  110. width: 100%;
  111. background-color: #ddd;
  112. }
  113. #myBar {
  114. width: 10%;
  115. height: 30px;
  116. background-color: #1c7ce0;
  117. text-align: center;
  118. line-height: 30px;
  119. color: white;
  120. }
  121. .go_title {
  122. color: white;
  123. font-family: "Montserrat", sans-serif;
  124. padding: 1rem;
  125. }
  126. .nav-list {
  127. color: white;
  128. margin-top: 1.5rem;
  129. }
  130. .nav-list-item {
  131. font-size: 1.2rem;
  132. cursor: pointer;
  133. position: relative;
  134. }
  135. .nav-list-item::after {
  136. content: " ";
  137. position: absolute;
  138. width: 100%;
  139. height: 100%;
  140. left: 0;
  141. top: 0;
  142. border-bottom: 1px solid white;
  143. opacity: 0;
  144. transition: all 0.4s;
  145. }
  146. .nav-list-item:hover::after {
  147. opacity: 1;
  148. }
  149. .loader {
  150. position: absolute;
  151. top: 30%;
  152. left: 45%;
  153. }
  154. .imgfr {
  155. width: 90px;
  156. height: 90px;
  157. border-radius: 50%;
  158. overflow: hidden;
  159. margin: 1rem auto 0 auto;
  160. }
  161. .card-title {
  162. font-family: "Montserrat", sans-serif;
  163. font-size: 1rem;
  164. }
  165. .strong {
  166. font-weight: 600;
  167. }
  168. .card {
  169. border: none;
  170. position: relative;
  171. }
  172. .card.active {
  173. border: 1px solid gray;
  174. }
  175. .card.active::before {
  176. position: absolute;
  177. content: "✓";
  178. bottom: 0;
  179. right: 5px;
  180. }
  181. .zoomin {
  182. display: none;
  183. position: absolute;
  184. bottom: 0;
  185. left: 0;
  186. }
  187. .script_err {
  188. display: none;
  189. }
  190. /* .history-modal {
  191. height: 80vh;
  192. }
  193. .history-modal .modal-content{
  194. height: 80vh;
  195. }
  196. .history-modal .modal-conten .modal-terms {
  197. height: 90%;
  198. overflow: scroll;
  199. } */
  200. .input-sec {
  201. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  202. -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  203. }
  204. .upload-cta.box-active {
  205. height: 80px;
  206. width: 80px;
  207. background-size: cover !important;
  208. background-repeat: no-repeat;
  209. border-radius: 1rem;
  210. }
  211. .history {
  212. height: 75vh;
  213. overflow: scroll;
  214. }
  215. .historyList-item {
  216. padding: 1rem;
  217. display: block;
  218. width: 80%;
  219. margin: 1rem auto;
  220. border-radius: 10px;
  221. display: flex;
  222. font-size: 0.9rem;
  223. box-shadow: 1px 1px 4px 1px rgb(207, 207, 207);
  224. background-color: white;
  225. }
  226. .historyList-link {
  227. text-decoration: none;
  228. color: rgb(73, 73, 73);
  229. }
  230. .historyList-link:hover {
  231. color: rgb(124, 124, 124);
  232. }
  233. .listimg__fr {
  234. width: 50px;
  235. height: 50px;
  236. border-radius: 50%;
  237. overflow: hidden;
  238. margin: auto 0.5rem;
  239. }
  240. .listimg__fr img {
  241. width: 100%;
  242. height: 100%;
  243. }
  244. .content {
  245. width: calc(100% - 250px);
  246. }
  247. /*form styles*/
  248. #msform {
  249. max-width: 1000px;
  250. min-width: 370px;
  251. margin: 50px auto;
  252. margin-bottom: 20px;
  253. text-align: center;
  254. position: relative;
  255. }
  256. #msform fieldset {
  257. background: white;
  258. border: 0 none;
  259. border-radius: 3px;
  260. box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  261. padding: 20px 30px;
  262. box-sizing: border-box;
  263. width: 80%;
  264. margin: 3rem 10%;
  265. /*stacking fieldsets above each other*/
  266. position: relative;
  267. @media screen and(max-width:$moblie) {
  268. width: 90%;
  269. margin: 3rem auto;
  270. padding: 10px 15px;
  271. }
  272. }
  273. /*Hide all except first fieldset*/
  274. /*inputs*/
  275. #msform input[type="text"],
  276. #msform textarea,
  277. #msform input[type="email"] {
  278. padding: 15px;
  279. border: 1px solid #ccc;
  280. border-radius: 3px;
  281. margin-bottom: 16px;
  282. width: 100%;
  283. box-sizing: border-box;
  284. font-family: montserrat;
  285. color: #2c3e50;
  286. font-size: 14px;
  287. }
  288. #msform input[type="text"],
  289. #msform textarea,
  290. #msform input[type="email"] {
  291. padding: 15px;
  292. border: 1px solid #ccc;
  293. border-radius: 3px;
  294. margin-bottom: 16px;
  295. width: 100%;
  296. box-sizing: border-box;
  297. font-family: montserrat;
  298. color: #2c3e50;
  299. font-size: 14px;
  300. }
  301. #msform .img-inputTest input[type="text"],
  302. #msform .img-inputTest textarea,
  303. #msform .img-inputTest input[type="email"] {
  304. width: 80%;
  305. }
  306. /*buttons*/
  307. #msform .action-button {
  308. width: 100px;
  309. background: #1c7ce0;
  310. font-weight: bold;
  311. color: white;
  312. border: 0 none;
  313. border-radius: 1px;
  314. cursor: pointer;
  315. padding: 10px 5px;
  316. margin: 10px auto;
  317. display: block;
  318. }
  319. #msform .action-button:hover,
  320. #msform .action-button:focus {
  321. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  322. }
  323. #msform .next[disabled] {
  324. background-color: grey;
  325. }
  326. #msform .sender[disabled] {
  327. background-color: grey;
  328. }
  329. .draft-btn {
  330. padding: 10px 5px;
  331. background-color: rgb(209, 209, 209);
  332. display: inline-block;
  333. position: absolute;
  334. left: 1rem;
  335. bottom: 1rem;
  336. font-size: 1rem;
  337. transition: all 0.3s;
  338. cursor: pointer;
  339. &:hover {
  340. background-color: rgb(170, 170, 170);
  341. }
  342. }
  343. /*headings*/
  344. .fs-title {
  345. font-size: 15px;
  346. text-transform: uppercase;
  347. color: #2c3e50;
  348. margin-bottom: 10px;
  349. }
  350. .fs-subtitle {
  351. display: inline-block;
  352. font-weight: normal;
  353. font-size: 18px;
  354. color: #666;
  355. margin-bottom: 20px;
  356. padding-bottom: 3px;
  357. border-bottom: 2px solid #1c7ce0;
  358. margin-left: 2rem;
  359. margin-right: 2rem;
  360. }
  361. .fs-label {
  362. display: block;
  363. text-align: left;
  364. margin-bottom: 8px;
  365. }
  366. .fs-label > i {
  367. margin-right: 3px;
  368. }
  369. /*progressbar*/
  370. #progressbar {
  371. margin-bottom: 30px;
  372. overflow: hidden;
  373. /*CSS counters to number the steps*/
  374. counter-reset: step;
  375. }
  376. #progressbar li {
  377. list-style-type: none;
  378. color: black;
  379. text-transform: uppercase;
  380. font-size: 12px;
  381. width: 33.33%;
  382. float: left;
  383. position: relative;
  384. }
  385. #progressbar li:before {
  386. content: counter(step);
  387. counter-increment: step;
  388. width: 20px;
  389. line-height: 20px;
  390. display: block;
  391. font-size: 12px;
  392. color: #333;
  393. background: white;
  394. border-radius: 3px;
  395. margin: 0 auto 5px auto;
  396. }
  397. /*progressbar connectors*/
  398. #progressbar li:after {
  399. content: "";
  400. width: 100%;
  401. height: 2px;
  402. background: white;
  403. position: absolute;
  404. left: -50%;
  405. top: 9px;
  406. z-index: -1; /*put it behind the numbers*/
  407. }
  408. #progressbar li:first-child:after {
  409. /*connector not needed before the first step*/
  410. content: none;
  411. }
  412. /*marking active/completed steps green*/
  413. /*The number of the step and the connector before it = green*/
  414. #progressbar li.active:before,
  415. #progressbar li.active:after {
  416. background: #27ae60;
  417. color: white;
  418. }
  419. p.error-text {
  420. bottom: -23px;
  421. left: 24px;
  422. color: rgba(255, 0, 0, 0.7);
  423. font-size: 0.8em;
  424. margin-bottom: 0;
  425. }
  426. #term-error {
  427. color: rgba(255, 0, 0, 0.7);
  428. font-size: 0.8em;
  429. bottom: -23px;
  430. left: 24px;
  431. }
  432. select {
  433. padding: 15px;
  434. border: 1px solid #ccc;
  435. border-radius: 3px;
  436. margin-bottom: 10px;
  437. width: 100%;
  438. box-sizing: border-box;
  439. font-family: montserrat;
  440. color: #2c3e50;
  441. font-size: 13px;
  442. background-color: transparent;
  443. }
  444. .pl-0 {
  445. padding-left: 0;
  446. }
  447. .terms {
  448. font-size: 0.9rem;
  449. width: 95%;
  450. min-width: 250px;
  451. height: auto;
  452. overflow: scroll;
  453. margin-bottom: 1rem;
  454. margin-left: auto;
  455. margin-right: auto;
  456. border: 1px solid rgb(163, 163, 163);
  457. line-height: 1.5rem;
  458. }
  459. .term-link a {
  460. text-decoration: none;
  461. color: black;
  462. }
  463. .h2 {
  464. text-align: center;
  465. font-size: 1.2rem;
  466. font-weight: 500;
  467. margin-top: 2rem;
  468. }
  469. .left_align {
  470. font-size: 18px;
  471. text-align: left;
  472. }
  473. #overlay {
  474. position: fixed; /* Sit on top of the page content */
  475. display: none;
  476. width: 100%;
  477. height: 100%;
  478. top: 0;
  479. left: 0;
  480. right: 0;
  481. bottom: 0;
  482. background-color: rgba(0, 0, 0, 0.5);
  483. z-index: 2;
  484. cursor: pointer;
  485. }
  486. .thankyou {
  487. margin: auto;
  488. min-width: 350px;
  489. height: 250px;
  490. margin-top: 190px;
  491. background: #fff;
  492. padding: 15px 20px;
  493. line-height: 25px;
  494. border-radius: 4px;
  495. text-align: center;
  496. }
  497. .thankyou input {
  498. margin-top: 40px;
  499. }
  500. .thankyou h3 {
  501. font-size: 2rem;
  502. font-weight: 700;
  503. color: #21ba45;
  504. line-height: 2.5rem;
  505. margin-bottom: 1.5rem;
  506. }
  507. .check_button {
  508. display: none;
  509. }
  510. .fs-label-type {
  511. background: transparent;
  512. padding: 5px;
  513. border: 1px solid black;
  514. border-radius: 5px;
  515. display: inline-block;
  516. }
  517. .check_button:checked + .fs-label-type {
  518. background-color: #27ae60;
  519. color: white;
  520. padding: 5px;
  521. border: 1px solid #27ae60;
  522. border-radius: 5px;
  523. }
  524. #checker1,
  525. #checker2 {
  526. display: inline;
  527. }
  528. .fs-label-info {
  529. background: transparent;
  530. padding: 5px;
  531. border: 1px solid black;
  532. border-radius: 5px;
  533. display: inline-block;
  534. margin-bottom: 8px;
  535. }
  536. input[type="radio"] {
  537. display: none;
  538. }
  539. input[type="radio"]:checked + .fs-label-info {
  540. background-color: #27ae60;
  541. color: white;
  542. padding: 5px;
  543. border: 1px solid #27ae60;
  544. border-radius: 5px;
  545. }
  546. input[type="checkbox"]:checked + .fs-label-info {
  547. background-color: #27ae60;
  548. color: white;
  549. padding: 5px;
  550. border: 1px solid #27ae60;
  551. border-radius: 5px;
  552. }
  553. .btn-exit {
  554. padding: 0.5rem 0.75rem;
  555. background-color: transparent;
  556. border: 1px solid black;
  557. margin-top: 0.3rem;
  558. }
  559. .btn-term-exit {
  560. padding: 0.5rem 0.75rem;
  561. background-color: transparent;
  562. border: 1px solid black;
  563. margin-top: 0.3rem;
  564. display: block;
  565. margin-left: auto;
  566. margin-right: auto;
  567. margin-bottom: 2rem;
  568. }
  569. footer {
  570. padding: 2rem;
  571. padding-top: 0.5rem;
  572. }
  573. .footer {
  574. display: flex;
  575. justify-content: center;
  576. }
  577. .img_fr {
  578. width: 80%;
  579. max-width: 850px;
  580. min-width: 300px;
  581. height: 60px;
  582. object-fit: contain;
  583. object-position: center;
  584. }
  585. .img_fr img {
  586. width: 100%;
  587. height: 90%;
  588. }
  589. #msform #userid,
  590. #msform #area {
  591. height: 0;
  592. padding: 0;
  593. margin: 0;
  594. border: none;
  595. }
  596. #msform input[type="text"].error {
  597. border-color: red;
  598. }
  599. .modal-header {
  600. border-bottom: none;
  601. }
  602. .btn-dismiss {
  603. background: linear-gradient(90deg, #0162c8, #55e7fc);
  604. font-weight: bold;
  605. color: white;
  606. border: 0 none;
  607. border-radius: 20px;
  608. cursor: pointer;
  609. padding: 10px 35px;
  610. margin: 10px auto;
  611. display: block;
  612. }
  613. #avatarmega .modal-content {
  614. background-color: transparent;
  615. border: none;
  616. }
  617. #avatarmega .modal-title {
  618. color: white;
  619. }
  620. #avatarmega .modal-header {
  621. position: absolute;
  622. top: -0.5rem;
  623. right: 1.5rem;
  624. }
  625. .linker__box {
  626. padding: 0.5rem 1rem;
  627. border-radius: 1rem;
  628. box-shadow: 1px 1px 5px 1px rgb(201, 201, 201);
  629. width: max-content;
  630. margin: 0 auto;
  631. display: none;
  632. }
  633. .linker__box p {
  634. margin-bottom: 0;
  635. color: gray;
  636. }
  637. .linker__box i {
  638. color: gray;
  639. position: relative;
  640. }
  641. .linker__box i::after {
  642. position: absolute;
  643. content: " ";
  644. right: -5px;
  645. top: -10%;
  646. border-right: 2px solid rgb(163, 163, 163);
  647. width: 1px;
  648. height: 120%;
  649. }
  650. .item_imgfr {
  651. width: 15%;
  652. height: 50px;
  653. border-radius: 50%;
  654. overflow: hidden;
  655. margin: auto 0.5rem;
  656. }
  657. .item_imgfr img {
  658. height: 100%;
  659. width: 100%;
  660. }
  661. .content-box {
  662. width: 75%;
  663. }
  664. .box-title {
  665. margin-bottom: 0.2rem;
  666. cursor: pointer;
  667. }
  668. .box-title:hover {
  669. color: grey;
  670. text-decoration: underline;
  671. }
  672. .box-link {
  673. cursor: pointer;
  674. }
  675. .img_uploader {
  676. display: none;
  677. }
  678. #msform input[type="text"].imgsrc {
  679. width: 80%;
  680. }
  681. .upload-btn {
  682. display: inline-block;
  683. width: 6rem;
  684. background-color: #75a7dd;
  685. color: white;
  686. padding: 0.4rem 0.5rem;
  687. font-size: 0.9rem;
  688. border-radius: 3px;
  689. transition: all 0.3s;
  690. cursor: pointer;
  691. }
  692. #msform .input-sec {
  693. position: relative;
  694. }
  695. #msform .img-inputTest .upload-btn {
  696. display: inline-block;
  697. position: absolute;
  698. left: 0;
  699. top: 0;
  700. width: 20%;
  701. height: 100%;
  702. background-color: #75a7dd;
  703. background-position: center;
  704. background-size: cover;
  705. background-image: url(../img/upload_img.png);
  706. color: white;
  707. padding: 0.4rem 0.5rem;
  708. font-size: 0.9rem;
  709. -webkit-transition: all 0.3s;
  710. transition: all 0.3s;
  711. cursor: pointer;
  712. border-radius: 0;
  713. }
  714. .upload-btn img {
  715. width: 30px;
  716. height: 30px;
  717. }
  718. .upload-btn:hover {
  719. background-color: #3b86d6;
  720. }
  721. .add,
  722. .add-subline,
  723. .addimg,
  724. .addsec {
  725. cursor: pointer;
  726. display: inline-block;
  727. width: 2rem;
  728. height: 2rem;
  729. background-color: #67abf3;
  730. font-size: 1.2rem;
  731. color: white;
  732. border-radius: 50%;
  733. transition: all 0.3s;
  734. }
  735. .add:hover,
  736. .add-subline:hover,
  737. .addimg:hover,
  738. .addsec:hover {
  739. background-color: #398ee9;
  740. }
  741. body {
  742. font-family: "Lato", sans-serif;
  743. }
  744. #mySidenav::-webkit-scrollbar-track {
  745. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  746. border-radius: 10px;
  747. background-color: #f5f5f5;
  748. }
  749. #mySidenav::-webkit-scrollbar {
  750. width: 12px;
  751. background-color: #f5f5f5;
  752. display: none;
  753. }
  754. #mySidenav::-webkit-scrollbar:hover {
  755. display: block;
  756. }
  757. #mySidenav::-webkit-scrollbar-thumb {
  758. border-radius: 10px;
  759. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  760. background-color: #aaa;
  761. }
  762. // .sidenav {
  763. // height: 100%;
  764. // width: 250px;
  765. // position: fixed;
  766. // z-index: 1;
  767. // top: 0;
  768. // left: 0;
  769. // background: linear-gradient(to bottom, #1c7ce0, #150051);
  770. // overflow-x: hidden;
  771. // transition: 0.5s;
  772. // }
  773. .sidenav a {
  774. text-decoration: none;
  775. font-size: 25px;
  776. color: #818181;
  777. display: block;
  778. transition: 0.3s;
  779. }
  780. .sidenav a:hover {
  781. color: #f1f1f1;
  782. }
  783. .sidenav .closebtn {
  784. position: absolute;
  785. top: 0;
  786. right: 25px;
  787. font-size: 36px;
  788. margin-left: 50px;
  789. }
  790. @media screen and(max-width: 576px) {
  791. #msform input[type="text"].imgsrc,
  792. #msform input[type="text"].txtsrc,
  793. #msform input[type="text"].subsrc {
  794. width: 100%;
  795. }
  796. #msform .input-sec>input[type="text"]:nth-of-type(1) {
  797. margin-top: 77%;
  798. }
  799. #msform .input_eng .input-sec>input[type="text"]:nth-of-type(1) {
  800. margin-top: 80%;
  801. }
  802. #msform .input-sec .upload-btn {
  803. width: 100%;
  804. height: 60%;
  805. }
  806. #msform .input_eng .input-sec .upload-btn {
  807. height: 45%;
  808. }
  809. }
  810. .container-login {
  811. width: 100vw;
  812. height: 100vh;
  813. display: grid;
  814. grid-template-columns: repeat(2, 1fr);
  815. grid-gap: 7rem;
  816. padding: 0rem;
  817. }
  818. .navbar-nav button {
  819. background: white;
  820. border: none;
  821. outline: none;
  822. }
  823. .img-wave {
  824. position: fixed;
  825. bottom: 0;
  826. left: 0;
  827. height: 100%;
  828. z-index: -1;
  829. }
  830. .img-wave-profile {
  831. height: 80%;
  832. }
  833. .row-img {
  834. position: relative;
  835. display: flex;
  836. justify-content: center;
  837. align-items: center;
  838. background-image: linear-gradient(to right bottom, rgba(#10448e, 0.7), rgba(#10448e, 0.7));
  839. background-size: cover;
  840. background-position: center;
  841. overflow: hidden;
  842. .video {
  843. height: 100%;
  844. z-index: -1;
  845. position: absolute;
  846. left: -10%;
  847. top: 0;
  848. }
  849. .row-img-box {
  850. color: white;
  851. }
  852. .row-img-txt {
  853. position: absolute;
  854. bottom: 2rem;
  855. color: white;
  856. left: 2rem;
  857. font-size: 1.3rem;
  858. }
  859. }
  860. .row-login {
  861. display: flex;
  862. justify-content: flex-start;
  863. align-items: center;
  864. text-align: center;
  865. position: relative;
  866. @media screen and(max-width:$moblie) {
  867. align-items: start;
  868. margin-top: 50px;
  869. }
  870. .title {
  871. position: relative;
  872. color: #052859;
  873. &::after {
  874. position: absolute;
  875. content: "";
  876. left: 45%;
  877. top: 20%;
  878. width: 10%;
  879. height: 100%;
  880. border-bottom: 4px solid #052859;
  881. }
  882. }
  883. .login-top {
  884. position: absolute;
  885. right: 1rem;
  886. top: 1rem;
  887. .navbar-nav {
  888. flex-direction: row;
  889. .nav-item {
  890. margin: 0 0.5rem;
  891. a {
  892. color: black;
  893. }
  894. }
  895. }
  896. }
  897. }
  898. .login-content {
  899. width: 80%;
  900. min-width: 350px;
  901. box-shadow: 0 0 12px 5px rgb(221, 221, 221);
  902. padding: 1.5rem;
  903. border-radius: 2rem;
  904. }
  905. .link_privacy {
  906. color: black;
  907. }
  908. .login-content img {
  909. height: 80px;
  910. }
  911. .row-img img {
  912. width: 450px;
  913. }
  914. .login-content .form-floating input {
  915. border: none;
  916. border-bottom: 2px solid #d9d9d9;
  917. border-radius: 0;
  918. }
  919. .login-content .form-floating input:focus {
  920. box-shadow: none;
  921. }
  922. .login-content #btn_login {
  923. background: linear-gradient(90deg, #0162c8, #55e7fc);
  924. font-weight: bold;
  925. color: white;
  926. border: 0 none;
  927. border-radius: 40px;
  928. cursor: pointer;
  929. padding: 10px 50px;
  930. margin: 10px auto;
  931. display: block;
  932. }
  933. .login-content #btn_login:hover {
  934. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  935. }
  936. .login-content .btn-register {
  937. background: linear-gradient(90deg, #0162c8, #55e7fc);
  938. font-weight: bold;
  939. color: white;
  940. border: 0 none;
  941. border-radius: 40px;
  942. cursor: pointer;
  943. padding: 10px 50px;
  944. margin: 10px auto;
  945. display: block;
  946. }
  947. .login-content .btn-register:hover {
  948. box-shadow: 0 0 0 2px white, 0 0 0 3px #1c7ce0;
  949. }
  950. .login-content .nav-tabs {
  951. border-bottom: none;
  952. }
  953. .login-content .nav {
  954. flex-direction: column;
  955. align-items: center;
  956. }
  957. .login-content .nav-tabs .nav-link {
  958. color: grey;
  959. }
  960. .login-content .nav-tabs .nav-link.active {
  961. border-color: #fff;
  962. text-transform: uppercase;
  963. color: black;
  964. }
  965. .navbar .btn-gocreate {
  966. background: linear-gradient(90deg, #0162c8, #55e7fc);
  967. color: white;
  968. border: 0 none;
  969. border-radius: 40px;
  970. cursor: pointer;
  971. padding: 10px 50px;
  972. }
  973. .container-bg {
  974. position: absolute;
  975. width: 600px;
  976. height: 400px;
  977. right: 0;
  978. bottom: 0;
  979. z-index: -1;
  980. }
  981. .container-profile .card-profile {
  982. margin-top: 4rem;
  983. border-radius: 10px;
  984. padding: 2rem;
  985. text-align: center;
  986. box-shadow: 0px 0px 20px 1px rgb(180, 180, 180);
  987. }
  988. .container-profile .card-profile img {
  989. width: 120px;
  990. margin: 1rem auto;
  991. }
  992. .card-profile-txt {
  993. color: rgb(109, 109, 109);
  994. font-size: 1.2rem;
  995. font-weight: 500;
  996. }
  997. .card-profile-cnt {
  998. font-size: 1.5rem;
  999. font-weight: 700;
  1000. }
  1001. @media screen and (max-width: 900px) {
  1002. .container-login {
  1003. grid-template-columns: 1fr;
  1004. }
  1005. .row-img {
  1006. display: none;
  1007. }
  1008. .img-wave {
  1009. display: none;
  1010. }
  1011. .row-login {
  1012. justify-content: center;
  1013. }
  1014. .container-bg {
  1015. width: 400px;
  1016. height: 300px;
  1017. right: 0;
  1018. bottom: 0;
  1019. }
  1020. }
  1021. @media screen and (max-height: 450px) {
  1022. .sidenav {
  1023. padding-top: 15px;
  1024. }
  1025. .sidenav a {
  1026. font-size: 18px;
  1027. }
  1028. }
  1029. /* Pricing */
  1030. #pricing-nav {
  1031. @media screen and(max-width:$moblie) {
  1032. display: none;
  1033. }
  1034. }
  1035. .pricingTable {
  1036. background: #fff;
  1037. font-family: "Open Sans", sans-serif;
  1038. text-align: center;
  1039. padding: 30px 15px 15px;
  1040. border-radius: 25px;
  1041. overflow: hidden;
  1042. position: relative;
  1043. z-index: 1;
  1044. }
  1045. .pricingTable:before,
  1046. .pricingTable:after {
  1047. content: "";
  1048. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1049. height: 170px;
  1050. width: 150%;
  1051. outline: 5px solid #fff;
  1052. outline-offset: -10px;
  1053. opacity: 0.9;
  1054. transform: translateX(-50%) rotate(7deg);
  1055. position: absolute;
  1056. left: 50%;
  1057. top: -65px;
  1058. z-index: -1;
  1059. }
  1060. .pricingTable:after {
  1061. height: 250px;
  1062. transform: translateX(-50%) rotate(-20deg) rotateX(180deg);
  1063. top: auto;
  1064. bottom: -150px;
  1065. }
  1066. .pricingTable .pricingTable-header {
  1067. color: #fff;
  1068. margin: 0 0 75px;
  1069. }
  1070. .pricingTable .title {
  1071. font-size: 40px;
  1072. font-weight: 700;
  1073. text-transform: uppercase;
  1074. letter-spacing: 1px;
  1075. margin: 0;
  1076. @media screen and(max-width:767px) {
  1077. font-size: 30px;
  1078. }
  1079. }
  1080. .pricingTable .pricing-content {
  1081. text-align: left;
  1082. padding: 0;
  1083. margin: 0 0 10px;
  1084. display: inline-block;
  1085. }
  1086. .pricingTable .pricing-content li {
  1087. color: #333;
  1088. font-size: 17px;
  1089. font-weight: 500;
  1090. line-height: 22px;
  1091. text-transform: uppercase;
  1092. padding: 0 40px 0 0;
  1093. margin: 0 0 15px;
  1094. list-style-position: inside;
  1095. position: relative;
  1096. }
  1097. .pricingTable .pricing-content li:after {
  1098. content: "\f00c";
  1099. color: #e58e26;
  1100. font-family: "Font Awesome 5 Free";
  1101. font-size: 18px;
  1102. font-weight: 900;
  1103. position: absolute;
  1104. top: 0;
  1105. right: 0;
  1106. }
  1107. .pricingTable .pricing-content li.disable:after {
  1108. content: "\f00d";
  1109. }
  1110. .pricingTable .price-value {
  1111. margin: 0 0 15px;
  1112. }
  1113. .pricingTable .price-title {
  1114. color: #c70039;
  1115. font-size: 30px;
  1116. text-align: left;
  1117. text-transform: uppercase;
  1118. line-height: 30px;
  1119. width: calc(100% - 130px);
  1120. padding: 15px 0 0;
  1121. display: inline-block;
  1122. }
  1123. .pricingTable .price-title b {
  1124. display: block;
  1125. }
  1126. .pricingTable .price-amount {
  1127. color: #3f64fa;
  1128. background: #fff;
  1129. font-size: 30px;
  1130. font-weight: 700;
  1131. line-height: 30px;
  1132. width: 120px;
  1133. height: 120px;
  1134. padding: 33px 10px 10px;
  1135. display: inline-block;
  1136. vertical-align: top;
  1137. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1138. position: relative;
  1139. z-index: 1;
  1140. }
  1141. .pricingTable .price-amount:before,
  1142. .pricingTable .price-amount:after {
  1143. content: "";
  1144. background: linear-gradient(-45deg, #5a98fb, #5a98fb, #3f64fa, #3f64fa);
  1145. width: calc(100% - 12px);
  1146. height: calc(100% - 12px);
  1147. transform: translateX(-50%) translateY(-50%);
  1148. position: absolute;
  1149. top: 50%;
  1150. left: 50%;
  1151. z-index: -1;
  1152. clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  1153. }
  1154. .pricingTable .price-amount:after {
  1155. background: #fff;
  1156. width: calc(100% - 16px);
  1157. height: calc(100% - 16px);
  1158. }
  1159. .pricingTable .price-amount .duration {
  1160. font-size: 16px;
  1161. font-weight: 600;
  1162. text-transform: capitalize;
  1163. display: block;
  1164. }
  1165. .pricingTable .pricingTable-signup a {
  1166. color: #fff;
  1167. font-size: 20px;
  1168. font-weight: 700;
  1169. letter-spacing: 2px;
  1170. text-transform: uppercase;
  1171. padding: 10px 20px;
  1172. border: 2px solid #fff;
  1173. border-radius: 50px;
  1174. display: inline-block;
  1175. transition: all 0.3s;
  1176. }
  1177. .pricingTable .pricingTable-signup a:hover {
  1178. text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.5);
  1179. box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  1180. }
  1181. .pricingTable.green:before,
  1182. .pricingTable.green:after,
  1183. .pricingTable.green .price-amount:before {
  1184. background: linear-gradient(-45deg, #76d243, #76d243, #109739, #109739);
  1185. }
  1186. .pricingTable.green .price-amount {
  1187. color: #109739;
  1188. }
  1189. .pricingTable.pink:before,
  1190. .pricingTable.pink:after,
  1191. .pricingTable.pink .price-amount:before {
  1192. background: linear-gradient(-45deg, #e969a6, #e969a6, #ed2e96, #ed2e96);
  1193. }
  1194. .pricingTable.pink .price-amount {
  1195. color: #ed2e96;
  1196. }
  1197. @media only screen and (max-width: 990px) {
  1198. .pricingTable {
  1199. margin: 0 0 40px;
  1200. }
  1201. }
  1202. // new user_profile
  1203. .profile-bgimg {
  1204. @media screen and(max-width:$moblie) {
  1205. width: 100%;
  1206. height: 300px;
  1207. object-fit: cover;
  1208. display: none;
  1209. }
  1210. }
  1211. .profile-bgimg-m {
  1212. @media screen and(min-width:$desktop) {
  1213. display: none;
  1214. }
  1215. }
  1216. .navbar {
  1217. background: none !important;
  1218. }
  1219. .arrowdoup {
  1220. transform: rotate(180deg);
  1221. }
  1222. .arrowdown {
  1223. cursor: pointer;
  1224. }
  1225. .userprofile {
  1226. position: relative;
  1227. top: -80px;
  1228. z-index: 20;
  1229. @media screen and(max-width:$moblie) {
  1230. top: 10px;
  1231. z-index: 0;
  1232. }
  1233. .userprofile-content {
  1234. width: 83vw;
  1235. @media screen and(max-width:$moblie) {
  1236. width: 95vw;
  1237. }
  1238. .user-information {
  1239. .information {
  1240. width: 50%;
  1241. margin: 0 auto;
  1242. @media screen and(max-width:$moblie) {
  1243. width: 100%;
  1244. }
  1245. h1 {
  1246. color: #707070;
  1247. font-size: 56px;
  1248. }
  1249. .share {
  1250. font-size: 16px;
  1251. .facebook {
  1252. @media screen and(max-width:$moblie) {
  1253. left: 15px;
  1254. top: 1px;
  1255. }
  1256. }
  1257. a {
  1258. text-decoration: none;
  1259. color: #183790;
  1260. }
  1261. }
  1262. }
  1263. .card {
  1264. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  1265. border-radius: 15px;
  1266. }
  1267. .check-history {
  1268. cursor: pointer;
  1269. }
  1270. .historical-record {
  1271. th {
  1272. border-bottom: none !important;
  1273. color: #183790;
  1274. font-weight: 900;
  1275. }
  1276. td {
  1277. font-size: 15px;
  1278. }
  1279. }
  1280. .draft {
  1281. color: #183790;
  1282. font-weight: 900;
  1283. }
  1284. .draft-table {
  1285. th {
  1286. border-bottom: none !important;
  1287. color: #183790;
  1288. font-weight: 900;
  1289. }
  1290. .draft-content {
  1291. &-icon {
  1292. cursor: pointer;
  1293. }
  1294. }
  1295. }
  1296. }
  1297. }
  1298. }
  1299. // 側邊欄選單
  1300. .sidenav {
  1301. width: 250px;
  1302. position: fixed;
  1303. height: 100%;
  1304. z-index: 50;
  1305. top: 0;
  1306. overflow-x: hidden;
  1307. transition: 0.5s;
  1308. text-align: center;
  1309. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1310. @media screen and(min-width:$desktop) {
  1311. left: 0;
  1312. }
  1313. @media screen and(max-width:767px) {
  1314. display: none;
  1315. right: 0px;
  1316. }
  1317. .sidenav-content {
  1318. // @media only screen and (min-width: 1439px) {
  1319. // transform: scale(1);
  1320. // }
  1321. // @media only screen and (max-width: 1280px) {
  1322. // margin-top: -50px;
  1323. // transform: scale(0.85);
  1324. // }
  1325. .close-btn {
  1326. @media screen and(min-width:$desktop) {
  1327. display: none;
  1328. // opacity: 0;
  1329. }
  1330. }
  1331. .Mobile-nav {
  1332. @media screen and(min-width:$desktop) {
  1333. display: none;
  1334. }
  1335. }
  1336. .choozmologo {
  1337. @media screen and(max-width:$moblie) {
  1338. margin-top: 10px;
  1339. }
  1340. }
  1341. .reply {
  1342. margin-left: 70px;
  1343. @media screen and(min-width:$desktop) {
  1344. display: none;
  1345. }
  1346. }
  1347. }
  1348. hr {
  1349. background: #fff;
  1350. opacity: 1 !important;
  1351. height: 1px;
  1352. width: 85%;
  1353. margin: 15px auto;
  1354. }
  1355. .sidebar {
  1356. width: 80%;
  1357. margin: 0 auto;
  1358. }
  1359. .user {
  1360. object-fit: cover;
  1361. width: 8vw;
  1362. @media screen and(max-width:767px) {
  1363. width: 20vw;
  1364. }
  1365. }
  1366. .user-name {
  1367. font-size: 1.5rem;
  1368. }
  1369. .navbar-nav {
  1370. flex-direction: row;
  1371. .btn-gocreate {
  1372. font-size: 1.7vmin;
  1373. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1374. // background:#31426C;
  1375. color: white;
  1376. border: 0 none;
  1377. border-radius: 10px;
  1378. cursor: pointer;
  1379. margin: 10px 3px;
  1380. display: inline;
  1381. @media screen and(max-width:$moblie) {
  1382. font-size: 3.5vmin;
  1383. }
  1384. }
  1385. .active {
  1386. background: linear-gradient(90deg, #0162c8, #55e7fc);
  1387. }
  1388. }
  1389. a {
  1390. text-decoration: none;
  1391. font-size: 32px;
  1392. color: #f1f1f1;
  1393. display: block;
  1394. transition: 0.3s;
  1395. &:hover {
  1396. color: #818181;
  1397. }
  1398. }
  1399. .sidenav .closebtn {
  1400. position: absolute;
  1401. top: 0;
  1402. right: 25px;
  1403. font-size: 36px;
  1404. margin-left: 50px;
  1405. }
  1406. .nav-list {
  1407. color: white;
  1408. list-style: none;
  1409. text-align: center;
  1410. .nav-list-item {
  1411. font-size: 18px;
  1412. cursor: pointer;
  1413. position: relative;
  1414. }
  1415. .nav-list-item::after {
  1416. content: " ";
  1417. position: absolute;
  1418. width: 50%;
  1419. height: 100%;
  1420. left: 25%;
  1421. top: 5px;
  1422. border-bottom: 1px solid white;
  1423. opacity: 0;
  1424. transition: all 0.4s;
  1425. }
  1426. .nav-list-item:hover::after {
  1427. opacity: 1;
  1428. }
  1429. }
  1430. .right-text {
  1431. padding-top: 150px;
  1432. // position: absolute;
  1433. // bottom: 0;
  1434. // left: 0;
  1435. color: #fff;
  1436. @media screen and(max-width:$moblie) {
  1437. padding-top: 50px;
  1438. }
  1439. @media only screen and (max-width: 1280px) {
  1440. // left: 10px;
  1441. }
  1442. a {
  1443. font-size: 16px;
  1444. display: inline;
  1445. margin: 2px;
  1446. img {
  1447. filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(102%) contrast(101%);
  1448. }
  1449. }
  1450. p {
  1451. @media only screen and (max-width: 1280px) {
  1452. font-size: 16px;
  1453. }
  1454. }
  1455. }
  1456. }
  1457. // 首頁介紹
  1458. .index-banner {
  1459. width: 85vw;
  1460. margin: 0 auto;
  1461. margin-top: 50px;
  1462. @media screen and(max-width:$moblie) {
  1463. margin-top: 30px;
  1464. width: 100vw;
  1465. }
  1466. .PC-img {
  1467. width: 100%;
  1468. @media screen and(max-width:$moblie) {
  1469. margin-top: 30px;
  1470. width: 100vw;
  1471. }
  1472. }
  1473. h1 {
  1474. font-size: 48px;
  1475. @media screen and(max-width:$moblie) {
  1476. font-size: 36px;
  1477. text-align: center;
  1478. }
  1479. }
  1480. p {
  1481. margin-top: 30px;
  1482. font-size: 24px;
  1483. width: 30vw;
  1484. @media screen and(max-width:$moblie) {
  1485. width: 90vw;
  1486. font-size: 18px;
  1487. text-align: center;
  1488. margin: 0 auto;
  1489. }
  1490. }
  1491. .index-CTA {
  1492. margin-top: 50px;
  1493. @media screen and(max-width:$moblie) {
  1494. margin-top: 30px;
  1495. text-align: center;
  1496. }
  1497. .CTA-btnA {
  1498. margin-right: 10px;
  1499. @media screen and(max-width:$moblie) {
  1500. // margin-right: 0px;
  1501. }
  1502. }
  1503. }
  1504. }
  1505. .CTA-btnA {
  1506. text-decoration: none;
  1507. border-radius: 30px;
  1508. border: none;
  1509. padding: 10px;
  1510. background: #fff;
  1511. width: 200px;
  1512. color: #ea5413;
  1513. font-size: 24px;
  1514. @media screen and(max-width:$moblie) {
  1515. margin: 10px;
  1516. }
  1517. }
  1518. .CTA-btnB {
  1519. text-decoration: none;
  1520. border-radius: 30px;
  1521. border: none;
  1522. padding: 10px;
  1523. background: #ea5413;
  1524. width: 200px;
  1525. color: #fff;
  1526. font-size: 24px;
  1527. @media screen and(max-width:$moblie) {
  1528. margin: 10px;
  1529. }
  1530. }
  1531. .index-sec02 {
  1532. background: linear-gradient(to top, #d4daec 80%, #fff 80% 100%);
  1533. padding-bottom: 50px;
  1534. @media screen and(max-width:$moblie) {
  1535. background: linear-gradient(to top, #d4daec 30%, #fff 30% 100%);
  1536. padding-bottom: 10px;
  1537. }
  1538. .make-video {
  1539. // margin-top: 200px;
  1540. width: 90vw;
  1541. margin: 0 auto;
  1542. .makeVideo-text {
  1543. margin-top: 150px;
  1544. h1 {
  1545. font-size: 48px;
  1546. color: #2a3863;
  1547. @media screen and(max-width:$moblie) {
  1548. font-size: 36px;
  1549. text-align: center;
  1550. }
  1551. }
  1552. p {
  1553. margin-top: 30px;
  1554. font-size: 24px;
  1555. color: #2a3863;
  1556. @media screen and(max-width:$moblie) {
  1557. font-size: 18px;
  1558. text-align: center;
  1559. }
  1560. }
  1561. }
  1562. }
  1563. }
  1564. .sec-usecase {
  1565. margin-top: 100px;
  1566. margin-bottom: 100px;
  1567. h1 {
  1568. text-align: center;
  1569. font-weight: 900;
  1570. font-size: 2rem;
  1571. color: #2a3863;
  1572. }
  1573. hr {
  1574. width: 7vw;
  1575. height: 6px;
  1576. background: #2a3863;
  1577. opacity: 1 !important;
  1578. margin: 0 auto;
  1579. @media screen and(max-width:$moblie) {
  1580. width: 15vw;
  1581. }
  1582. }
  1583. .usecase-block {
  1584. border: none;
  1585. position: relative;
  1586. background-color: transparent;
  1587. z-index: 1;
  1588. margin-top: 30px;
  1589. @media screen and(max-width:$moblie) {
  1590. margin-top: 15px;
  1591. }
  1592. &::after {
  1593. position: absolute;
  1594. bottom: 1rem;
  1595. left: 5%;
  1596. width: 90%;
  1597. height: 10rem;
  1598. background-color: #d4daec;
  1599. content: " ";
  1600. z-index: -1;
  1601. border-radius: 2rem;
  1602. margin-left: auto;
  1603. margin-right: auto;
  1604. @media screen and(max-width:1281px) {
  1605. bottom: 0rem;
  1606. }
  1607. @media screen and(max-width:$moblie) {
  1608. // margin-top: -50px;
  1609. height: 7rem;
  1610. bottom: 3rem;
  1611. }
  1612. }
  1613. .usecase-imgfr {
  1614. width: 80%;
  1615. margin: 0 auto;
  1616. height: 40vh;
  1617. background-position: center center;
  1618. background-size: contain;
  1619. background-repeat: no-repeat;
  1620. // margin-bottom: 1.5rem;
  1621. @media screen and(max-width:$moblie) {
  1622. width: 80%;
  1623. }
  1624. }
  1625. .usecase-sub {
  1626. background-color: transparent;
  1627. color: #193179;
  1628. // margin-bottom: 30px;
  1629. position: relative;
  1630. bottom: 25px;
  1631. font-size: 1rem;
  1632. font-weight: 900;
  1633. @media screen and(max-width:1281px) {
  1634. bottom: 5px;
  1635. }
  1636. @media screen and(max-width:$moblie) {
  1637. bottom: 50px;
  1638. }
  1639. i {
  1640. color: #193179;
  1641. }
  1642. }
  1643. }
  1644. }
  1645. .indxe-CTA {
  1646. background: #f0f0f0;
  1647. h2 {
  1648. color: #ea5413;
  1649. }
  1650. .CTA-btnB {
  1651. text-decoration: none;
  1652. border-radius: 30px;
  1653. border: none;
  1654. padding: 10px;
  1655. background: #ea5413;
  1656. width: 200px;
  1657. color: #fff;
  1658. font-size: 24px;
  1659. }
  1660. }
  1661. .price-int {
  1662. padding: 8vw 0px;
  1663. // padding-bottom: 3vw;
  1664. @media screen and(max-width:767px) {
  1665. padding: 20vw 0px;
  1666. }
  1667. .price-content {
  1668. width: 80vw;
  1669. @media screen and(max-width:767px) {
  1670. width: 90vw;
  1671. }
  1672. .CTA-btnB {
  1673. margin-top: 30px;
  1674. }
  1675. hr {
  1676. width: 7vw;
  1677. height: 6px;
  1678. background: #2a3863;
  1679. opacity: 1 !important;
  1680. margin: 0 auto;
  1681. @media screen and(max-width:$moblie) {
  1682. width: 15vw;
  1683. }
  1684. }
  1685. h1 {
  1686. text-align: center;
  1687. font-weight: 900;
  1688. font-size: 2rem;
  1689. color: #2a3863;
  1690. }
  1691. .price-content-1 {
  1692. // margin-top: 50px;
  1693. .price-item {
  1694. margin-top: 50px;
  1695. @media screen and(max-width:$moblie) {
  1696. margin-top: 30px;
  1697. }
  1698. }
  1699. img {
  1700. width: 128px;
  1701. @media screen and(max-width:$moblie) {
  1702. width: 100px;
  1703. }
  1704. }
  1705. h2 {
  1706. margin-top: 15px;
  1707. font-weight: 600;
  1708. font-size: 1.3rem;
  1709. color: #ea5413;
  1710. @media screen and(max-width:767px) {
  1711. text-align: left;
  1712. font-size: 5.5vmin;
  1713. }
  1714. }
  1715. ul {
  1716. text-align: left;
  1717. color: #ea5413;
  1718. li {
  1719. list-style-type: disc;
  1720. @media screen and(max-width:767px) {
  1721. font-size: 4vmin;
  1722. }
  1723. }
  1724. }
  1725. .price-text {
  1726. padding-left: 80px;
  1727. @media screen and(max-width:767px) {
  1728. padding-left: 0px;
  1729. }
  1730. }
  1731. }
  1732. .get-started {
  1733. border: none;
  1734. border-radius: 3rem;
  1735. padding: 1rem 2.5rem;
  1736. background: linear-gradient(20deg, #ea5413, #920783);
  1737. color: #fff;
  1738. font-size: 1.2rem;
  1739. font-weight: 900;
  1740. }
  1741. p {
  1742. font-size: 24px;
  1743. }
  1744. }
  1745. }
  1746. .register_btn {
  1747. @media screen and(min-width:$desktop) {
  1748. display: none;
  1749. }
  1750. }
  1751. .register_text {
  1752. @media screen and(max-width:$moblie) {
  1753. display: none;
  1754. }
  1755. }
  1756. // 頁尾
  1757. .footer {
  1758. background-color: #f0f0f0;
  1759. padding: 3rem;
  1760. padding-left: 13rem;
  1761. @media screen and(max-width:767px) {
  1762. padding: 0.5rem;
  1763. text-align: center;
  1764. padding-top: 3rem;
  1765. padding-left: 0;
  1766. }
  1767. h5 {
  1768. font-size: 16px;
  1769. font-weight: 700;
  1770. color: #555555;
  1771. }
  1772. }
  1773. .footer .row {
  1774. display: flex;
  1775. align-items: center;
  1776. }
  1777. .footer .footer-aigirl {
  1778. font-weight: 600;
  1779. font-size: 1.5rem;
  1780. margin-top: 1rem;
  1781. margin-bottom: 2.5rem;
  1782. color: #555555;
  1783. @media screen and(max-width:767px) {
  1784. font-size: 1.3rem;
  1785. margin-bottom: 2rem;
  1786. }
  1787. }
  1788. .footer .footer-follow {
  1789. font-size: 1rem;
  1790. margin-bottom: 1rem;
  1791. }
  1792. .footer-socials {
  1793. @media screen and(max-width:767px) {
  1794. margin-bottom: 2rem;
  1795. }
  1796. }
  1797. .footer .footer-socials a {
  1798. margin-right: 5px;
  1799. @media screen and(max-width:767px) {
  1800. margin-right: 10px;
  1801. }
  1802. }
  1803. .footer-contacts {
  1804. @media screen and(max-width:767px) {
  1805. font-size: 14px;
  1806. }
  1807. }
  1808. // 登入頁面
  1809. // 行動版彈跳式選單
  1810. .menu-box {
  1811. width: 40vw;
  1812. right: 0px;
  1813. position: fixed;
  1814. z-index: 20;
  1815. overflow: hidden;
  1816. display: none;
  1817. top:0px;
  1818. @media screen and(min-width:$desktop) {
  1819. display: none;
  1820. }
  1821. .menu-box2 {
  1822. padding-bottom: 5vw;
  1823. position: relative;
  1824. width: 40vw;
  1825. background: linear-gradient(to bottom, #1c7ce0, #150051);
  1826. z-index: 7;
  1827. text-align: center;
  1828. a {
  1829. display: inline-block;
  1830. text-decoration: none;
  1831. color: #fff;
  1832. font-size: 18px;
  1833. text-align: center;
  1834. }
  1835. }
  1836. }